/* ==========================================
   LEAD EDGE LTD - EPAO WEBSITE STYLES
   Modern, professional, accessible design
   ========================================== */

/* ==========================================
   ROOT VARIABLES & RESET
   ========================================== */
:root {
    /* Primary Colours - Deep Teal */
    --navy: #114C5C;
    --navy-dark: #0f3a42;
    --navy-light: #1a5f6a;
    
    /* Accent Colours - Warm Beige/Tan */
    --gold: #B7A08B;
    --gold-dark: #a08970;
    --gold-light: #c9b9a6;
    
    /* Neutral Colours */
    --white: #FFFFFF;
    --off-white: #FEFAF7;
    --light-grey: #e5e7eb;
    --mid-grey: #6b7280;
    --dark-grey: #374151;
    --black: #000000;
    
    /* Functional Colours */
    --success: #10B981;
    --error: #EF4444;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-normal);
    line-height: 1.6;
    color: var(--dark-grey);
    background-color: var(--white);
    overflow-x: hidden;
}

/* ==========================================
   TYPOGRAPHY
   ========================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    color: var(--navy);
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    font-size: 1.0625rem;
    line-height: 1.7;
}

a {
    color: var(--navy);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--gold);
}

/* ==========================================
   LAYOUT UTILITIES
   ========================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: var(--spacing-lg) 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: var(--spacing-md) 0;
    }
}

.bg-light {
    background-color: var(--off-white);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-lg) auto;
}

.section-title {
    color: var(--navy);
    margin-bottom: 1rem;
}

.section-intro {
    font-size: 1.125rem;
    color: var(--mid-grey);
    line-height: 1.8;
}

/* ==========================================
   NAVIGATION
   ========================================== */
.navbar {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition-normal);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
}

.logo a {
    display: flex;
    align-items: center;
    line-height: 1;
}

.logo-image {
    height: 70px;
    width: auto;
    display: block;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--navy);
    letter-spacing: 0.05em;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: var(--mid-grey);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    color: var(--dark-grey);
    font-weight: var(--font-weight-semibold);
    font-size: 0.9375rem;
    transition: var(--transition-fast);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--gold);
}

.btn-nav {
    background-color: var(--gold);
    color: var(--navy) !important;
    padding: 0.625rem 1.5rem;
    border-radius: 6px;
    font-weight: var(--font-weight-semibold);
    transition: var(--transition-fast);
}

.btn-nav:hover {
    background-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--navy);
    margin: 3px 0;
    transition: var(--transition-fast);
    border-radius: 3px;
}

@media (max-width: 768px) {
    .logo-image {
        height: 40px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition-normal);
        gap: 0;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .nav-menu li {
        padding: 1rem;
        border-bottom: 1px solid var(--light-grey);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0d3a47 0%, #114C5C 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(17, 76, 92, 0.7) 0%, rgba(17, 76, 92, 0.5) 100%);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(212, 175, 55, 0.03) 50px, rgba(212, 175, 55, 0.03) 51px),
        repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(212, 175, 55, 0.03) 50px, rgba(212, 175, 55, 0.03) 51px);
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 2rem;
}

.hero-title {
    color: var(--white);
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1.5rem;
    font-weight: var(--font-weight-bold);
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: var(--font-weight-light);
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@media (max-width: 768px) {
    .hero {
        height: 80vh;
        min-height: 500px;
    }
    
    .scroll-indicator {
        display: none;
    }
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 6px;
    font-weight: var(--font-weight-semibold);
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-fast);
    border: 2px solid transparent;
    text-decoration: none;
}

.btn-primary {
    background-color: #E5E7EB;
    color: #000000;
    border-color: #E5E7EB;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #d1d5db;
    border-color: #d1d5db;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary-large {
    background-color: #E5E7EB;
    color: #000000;
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.btn-primary-large:hover {
    background-color: #d1d5db;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary-large {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

.btn-secondary-large:hover {
    background-color: #ffffff;
    color: var(--navy);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* ==========================================
   FEATURES / WHY CHOOSE US
   ========================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 1px solid var(--light-grey);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--gold);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #E5E7EB;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #114C5C;
}

.feature-card h3 {
    color: var(--navy);
    font-size: 1.375rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--mid-grey);
    line-height: 1.7;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   SECTORS OVERVIEW
   ========================================== */
.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.sector-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.sector-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.sector-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.sector-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.sector-card:hover .sector-image img {
    transform: scale(1.08);
}

.sector-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(10, 36, 99, 0.7) 100%);
}

.sector-content {
    padding: 2rem;
}

.sector-content h3 {
    color: var(--navy);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.sector-content p {
    color: var(--mid-grey);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.link-arrow {
    color: var(--gold);
    font-weight: var(--font-weight-semibold);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-fast);
}

.link-arrow::after {
    content: '→';
    font-size: 1.25rem;
    transition: var(--transition-fast);
}

.link-arrow:hover {
    gap: 0.75rem;
}

.link-arrow:hover::after {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .sectors-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   PROMISE SECTION
   ========================================== */
.promise-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.promise-values {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.promise-item {
    display: flex;
    gap: 1.5rem;
    align-items: start;
}

.promise-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.promise-item h3 {
    color: var(--navy);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.promise-item p {
    color: var(--mid-grey);
    margin-bottom: 0;
}

.promise-visual {
    position: relative;
}

.promise-visual img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
}

@media (max-width: 968px) {
    .promise-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ==========================================
   CALL TO ACTION SECTION
   ========================================== */
.cta-section {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(212, 175, 55, 0.03) 60px, rgba(212, 175, 55, 0.03) 61px),
        repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(212, 175, 55, 0.03) 60px, rgba(212, 175, 55, 0.03) 61px);
}

.cta-content {
    position: relative;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background-color: var(--navy-dark);
    color: var(--white);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: var(--gold);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    font-weight: var(--font-weight-semibold);
}

.footer-logo {
    height: 100px;
    width: auto;
    margin-bottom: 1.5rem;
    display: block;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
    font-size: 0.9375rem;
}

.footer-col ul li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin: 0;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ==========================================
   RESPONSIVE UTILITIES
   ========================================== */
@media (max-width: 968px) {
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn {
        width: 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}

/* ==========================================
   PAGE HEADER (for internal pages)
   ========================================== */
.page-header {
    position: relative;
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, #0d3a47 0%, #114C5C 100%);
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(212, 175, 55, 0.03) 60px, rgba(212, 175, 55, 0.03) 61px),
        repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(212, 175, 55, 0.03) 60px, rgba(212, 175, 55, 0.03) 61px);
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(17, 76, 92, 0.9) 0%, rgba(17, 76, 92, 0.8) 100%);
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: clamp(2rem, 5vw, 3rem);
}

.page-header p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* ==========================================
   CONTENT GRID (for text/image layouts)
   ========================================== */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.content-text h2 {
    margin-bottom: 1.5rem;
}

.content-text p {
    margin-bottom: 1rem;
    color: var(--dark-grey);
}

.content-image {
    position: relative;
}

.content-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.checklist {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.checklist li {
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    position: relative;
    color: var(--dark-grey);
}

.checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: var(--font-weight-bold);
    font-size: 1.25rem;
}

@media (max-width: 968px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content-grid.reverse {
        direction: ltr;
    }
}

/* ==========================================
   VALUES GRID
   ========================================== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.value-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition-normal);
    border: 1px solid var(--light-grey);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    color: var(--navy);
    margin-bottom: 1rem;
    font-size: 1.375rem;
}

.value-card p {
    color: var(--mid-grey);
    margin: 0;
    line-height: 1.7;
}

/* ==========================================
   QUALITY GRID
   ========================================== */
.quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.quality-item h3 {
    color: var(--navy);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.quality-item p {
    color: var(--mid-grey);
    line-height: 1.7;
    margin: 0;
}

/* ==========================================
   CTA BOX
   ========================================== */
.cta-box {
    background-color: var(--off-white);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--light-grey);
}

.cta-box h2 {
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.cta-box p {
    font-size: 1.125rem;
    color: var(--mid-grey);
    margin-bottom: 2rem;
}

.benefits-list {
    list-style: none;
    text-align: left;
    max-width: 600px;
    margin: 2rem auto;
    padding: 0;
}

.benefits-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--light-grey);
    color: var(--dark-grey);
}

.benefits-list li:last-child {
    border-bottom: none;
}

/* ==========================================
   PROCESS STEPS
   ========================================== */
.process-steps {
    max-width: 900px;
    margin: 3rem auto 0;
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    left: 30px;
    top: 70px;
    bottom: -3rem;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #E5E7EB;
    color: #114C5C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.step-content h3 {
    color: var(--navy);
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
}

.step-content p {
    color: var(--mid-grey);
    margin: 0;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .process-step {
        flex-direction: column;
        gap: 1rem;
    }
    
    .process-step::after {
        display: none;
    }
}

/* ==========================================
   METHODS GRID
   ========================================== */
.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.method-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--light-grey);
    transition: var(--transition-normal);
}

.method-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.method-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--navy-light), var(--navy));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.method-card h3 {
    color: var(--navy);
    margin-bottom: 1rem;
    font-size: 1.375rem;
}

.method-card p {
    color: var(--mid-grey);
    margin: 0;
    line-height: 1.7;
}

.methods-note {
    background-color: var(--off-white);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 3rem;
    border-left: 4px solid var(--gold);
}

.methods-note p {
    margin: 0;
    color: var(--dark-grey);
}

/* ==========================================
   PROVIDER BENEFITS
   ========================================== */
.provider-benefits {
    max-width: 900px;
    margin: 3rem auto 0;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--white);
    border-radius: 8px;
    border: 1px solid var(--light-grey);
    transition: var(--transition-fast);
}

.benefit-item:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background-color: var(--gold);
    color: var(--navy);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    flex-shrink: 0;
}

.benefit-text h3 {
    color: var(--navy);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.benefit-text p {
    color: var(--mid-grey);
    margin: 0;
    line-height: 1.6;
}

/* ==========================================
   SECTOR DETAILS
   ========================================== */
.sector-detail {
    background-color: var(--white);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: var(--shadow-md);
}

.sector-detail-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--light-grey);
}

.sector-detail-icon {
    font-size: 4rem;
    flex-shrink: 0;
}

.sector-subtitle {
    color: var(--mid-grey);
    font-size: 1.125rem;
    margin: 0;
}

.sector-detail-content h3 {
    color: var(--navy);
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

.standards-list {
    margin-top: 2rem;
}

.standard-item {
    background-color: var(--off-white);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--gold);
}

.standard-item h4 {
    color: var(--navy);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.standard-item p {
    color: var(--mid-grey);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.standard-methods {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.method-tag {
    background-color: var(--navy);
    color: var(--white);
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: var(--font-weight-semibold);
}

.sector-strengths {
    background-color: var(--off-white);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2.5rem;
}

.sector-strengths h3 {
    color: var(--navy);
    margin-top: 0;
}

.sector-strengths ul {
    list-style: none;
    padding: 0;
}

.sector-strengths li {
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    position: relative;
    color: var(--dark-grey);
}

.sector-strengths li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: var(--font-weight-bold);
}

.expanding-notice {
    text-align: center;
    padding: 3rem;
    background-color: var(--off-white);
    border-radius: 12px;
    border: 2px dashed var(--gold);
}

.expanding-notice h2 {
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.expanding-notice p {
    color: var(--dark-grey);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.expanding-notice a:not(.btn) {
    color: var(--gold);
    font-weight: var(--font-weight-semibold);
}

@media (max-width: 768px) {
    .sector-detail {
        padding: 1.5rem;
    }
    
    .sector-detail-header {
        flex-direction: column;
        text-align: center;
    }
}

/* ==========================================
   CONTACT PAGE
   ========================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
}

.contact-form-container h2 {
    color: var(--navy);
    margin-bottom: 1rem;
}

.contact-form-container > p {
    color: var(--mid-grey);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: var(--font-weight-semibold);
    color: var(--navy);
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 2px solid var(--light-grey);
    border-radius: 6px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    outline: none;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.checkbox-group {
    flex-direction: row;
    align-items: start;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.25rem;
    width: auto;
}

.checkbox-group label {
    margin: 0;
    font-weight: var(--font-weight-normal);
    font-size: 0.875rem;
}

.form-note {
    font-size: 0.875rem;
    color: var(--mid-grey);
    margin-top: 1rem;
    margin-bottom: 0;
}

.contact-info-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    margin-bottom: 1.5rem;
}

.contact-info-card h3 {
    color: var(--navy);
    margin-bottom: 1.5rem;
    font-size: 1.375rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--navy);
}

.contact-item h4 {
    color: var(--navy);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.contact-item p,
.contact-item a {
    color: var(--mid-grey);
    font-size: 0.9375rem;
    margin: 0;
}

.contact-item a:hover {
    color: var(--gold);
}

.contact-hours {
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.response-time {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--white);
}

.response-time h3 {
    color: var(--gold);
}

.response-time p {
    color: rgba(255, 255, 255, 0.9);
}

.next-steps {
    padding-left: 1.5rem;
    margin: 1rem 0 0;
}

.next-steps li {
    color: var(--dark-grey);
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--light-grey);
}

.faq-item h3 {
    color: var(--navy);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.faq-item p {
    color: var(--mid-grey);
    margin: 0;
    line-height: 1.7;
}

@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   ACCESSIBILITY
   ========================================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Focus styles for keyboard navigation */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 3px solid var(--gold);
    outline-offset: 2px;
}

/* Reduced motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
