:root {
    --color-primary: #071A3D;
    --color-primary-dark: #041127;
    --color-accent: #F47B20;
    --color-accent-light: #FFF1E6;
    --color-white: #FFFFFF;
    --color-background: #F6F7F9;
    --color-text: #171A1F;
    --color-text-muted: #626A75;
    --color-border: #E4E7EB;
    
    --font-heading: 'Manrope', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --container-max-width: 1200px;
    --nav-height: 80px;
    --transition-speed: 300ms;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-white);
    line-height: 1.6;
    padding-top: var(--nav-height); /* Offset for fixed navbar */
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 40px;
}

/* Navbar Styles */
.nav-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background-color: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
    transition: box-shadow var(--transition-speed) ease;
}

.nav-header.is-sticky {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: var(--container-max-width);
    height: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--color-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    height: 100%;
}

.logo-img {
    height: 45px;
    width: auto;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-links a {
    font-weight: 500;
    font-size: 1rem;
    color: var(--color-text);
    padding: 8px 15px;
    border-radius: 6px;
    transition: color var(--transition-speed) ease, background-color var(--transition-speed) ease;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--color-accent);
    background-color: var(--color-accent-light);
}

/* CTA Button */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 6px;
    transition: all var(--transition-speed) ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: #d9691b;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

a:focus-visible, button:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: var(--color-primary);
    border-radius: 2px;
    transition: all var(--transition-speed) ease;
}

.nav-toggle.active .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle.active .bar:nth-child(2) { opacity: 0; }
.nav-toggle.active .bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* Mobile Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(7, 26, 61, 0.6);
    z-index: 999;
    opacity: 0;
    transition: opacity var(--transition-speed) ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-container { padding: 0 30px; }
}

@media (max-width: 768px) {
    .nav-container { padding: 0 20px; }
    .nav-menu {
        position: fixed;
        top: 0; right: -100%;
        width: 320px; max-width: 85vw;
        height: 100vh;
        background-color: var(--color-white);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        transition: right var(--transition-speed) ease;
        padding-top: var(--nav-height);
    }
    .nav-menu.active { right: 0; }
    .nav-links {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        padding: 20px;
        gap: 10px;
    }
    .nav-links li { width: 100%; }
    .nav-links a {
        display: block;
        padding: 15px;
        border-radius: 8px;
        border: 1px solid var(--color-border);
    }
    .nav-cta-item { margin-top: 15px; }
    .btn-primary { width: 100%; justify-content: center; }
    .nav-toggle { display: flex; }
}

/* CTA Button */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 6px;
    transition: all var(--transition-speed) ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: #d9691b;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

a:focus-visible, button:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: var(--color-primary);
    border-radius: 2px;
    transition: all var(--transition-speed) ease;
}


.nav-toggle.active .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle.active .bar:nth-child(2) { opacity: 0; }
.nav-toggle.active .bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* Mobile Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(7, 26, 61, 0.6);
    z-index: 999;
    opacity: 0;
    transition: opacity var(--transition-speed) ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-container { padding: 0 30px; }
}

@media (max-width: 768px) {
    .nav-container { padding: 0 20px; }
    .nav-menu {
        position: fixed;
        top: 0; right: -100%;
        width: 320px; max-width: 85vw;
        height: 100vh;
        background-color: var(--color-white);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        transition: right var(--transition-speed) ease;
        padding-top: var(--nav-height);
    }
    .nav-menu.active { right: 0; }
    .nav-links {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        padding: 20px;
        gap: 10px;
    }
    .nav-links li { width: 100%; }
    .nav-links a {
        display: block;
        padding: 15px;
        border-radius: 8px;
        border: 1px solid var(--color-border);
    }
    .nav-cta-item { margin-top: 15px; }
    .btn-primary { width: 100%; justify-content: center; }
    .nav-toggle { display: flex; }
}

/* Footer Main */

.footer-map {
    width: calc(100% - 40px); /* Keeps it full width while allowing 20px margin on sides */
    height: 400px;
    margin: 0 20px 20px;
    border-radius: 10px;
    overflow: hidden; /* Ensures the iframe respects the rounded corners */
    position: relative;
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    transition: filter 0.3s ease;
}

.footer-map iframe:hover {
    filter: none; /* Reverts to normal colors on hover */
}
.site-footer {
    background-color: var(--color-primary-dark);
    color: var(--color-white);
    padding: 80px 0 0;
    margin-top: 80px; /* Adds space before the footer */
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 60px;
}

.footer-brand .footer-logo {
    margin-bottom: 20px;
}

.footer-brand .logo-img {
    height: 45px;
    filter: brightness(0) invert(1); /* Make logo white for dark bg */
}

.footer-brand-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: background-color var(--transition-speed) ease;
}

.footer-social a:hover {
    background-color: var(--color-accent);
}

.footer-links-group h4.footer-links-title {
    font-family: var(--font-heading);
    color: var(--color-white);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.footer-links, .footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li, .footer-contact-list li {
    margin-bottom: 12px;
}

.footer-links a, .footer-contact-list a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: color var(--transition-speed) ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover, .footer-contact-list a:hover, .footer-link--active {
    color: var(--color-accent) !important;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-contact-list i {
    color: var(--color-accent);
    margin-top: 4px;
}

.footer-contact-cta {
    margin-top: 20px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
}

.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    transition: color var(--transition-speed) ease;
}

.footer-legal a:hover {
    color: var(--color-white);
}

.footer-legal-divider {
    color: rgba(255, 255, 255, 0.2);
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-bottom-row {
        flex-direction: column;
        text-align: center;
    }
}
/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo-img {
    height: 45px; /* Adjust this value based on your logo's aspect ratio */
    width: auto;
    transition: filter var(--transition-speed) ease;
}
/* =========================================
   CTA & Contact Preview Component
   ========================================= */

/* CTA Section */
.cta-section {
    background-color: var(--color-primary-dark);
    color: var(--color-white);
    padding: 100px 0;
    border-top: 4px solid var(--color-accent);
}

.cta-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.cta-text .eyebrow { color: var(--color-accent); }

.cta-text h2 {
    color: var(--color-white);
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 500px;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
    width: 100%;
    justify-content: center;
}

.cta-secondary {
    display: flex;
    gap: 15px;
}

.btn-outline-light {
    background-color: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.486) !important;
    flex: 1;
    justify-content: center;
    padding: 12px 16px;
    font-size: 0.9rem;
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--color-white);
}

/* Contact Preview */
.contact-preview {
    padding: 100px 0;
    background-color: var(--color-white);
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.contact-card {
    background-color: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(7, 26, 61, 0.05);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px; /* Use gap for borders */
    background-color: var(--color-border); /* Border color */
}

.contact-info {
    background-color: var(--color-background);
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: background-color 0.3s ease;
}

.contact-info:hover {
    background-color: var(--color-white);
}

.info-icon {
    width: 40px;
    height: 40px;
    background-color: var(--color-accent-light);
    color: var(--color-accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-content h4 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.info-content p { color: var(--color-text); line-height: 1.5; font-size: 0.95rem; }
.info-content a { color: var(--color-text); transition: color 0.3s ease; }
.info-content a:hover { color: var(--color-accent); }

.highlight-info {
    grid-column: span 2;
    background-color: var(--color-primary);
    flex-direction: column;
    justify-content: center;
}

.highlight-info:hover { background-color: var(--color-primary); }

.highlight-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    line-height: 1.6;
}

.highlight-info .link-arrow { color: var(--color-accent); }
/* =========================================
   MOBILE FIXES FOR CTA & CONTACT
   ========================================= */
@media (max-width: 768px) {
    /* CTA Section */
    .cta-section {
        padding: 60px 0;
        text-align: left; /* Center text for mobile */
    }
    .contact-header {
    text-align: left;
    margin-bottom: 60px;
}
    .cta-layout {
        grid-template-columns: 1fr; /* Stack vertically */
        gap: 30px;
    }
    
    .cta-text .eyebrow {
        margin-left: auto;
        margin-right: auto;
    }
    
    .cta-text p {
        max-width: 100%;
    }
    
    .cta-actions {
        width: 100%;
    }
    
    .cta-secondary {
        flex-direction: column; /* Stack the buttons */
        gap: 12px;
    }
    
    /* Contact Preview */
    .contact-preview {
        padding: 60px 0;
    }
    
    .contact-header h2 {
        font-size: 1.8rem; /* Smaller heading on mobile */
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr; /* Stack all contact cards vertically */
    }
    
    .contact-info {
        flex-direction: column; /* Stack icon above text */
        text-align: left;
        align-items: left;
        padding: 25px;
    }
    
    /* Reset the highlight box to span full width on mobile */
    .highlight-info {
        grid-column: span 1;
    }
    
    .highlight-info .info-content {
        align-items: left;
        display: flex;
        flex-direction: column;
    }
}
/* =========================================
   GLOBAL LAYOUT & COMPONENTS (basic.css)
   ========================================= */

/* Main Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Eyebrow (Section Labels) */
.eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--color-accent);
}

/* Section Header (Left Aligned) */
.section-header {
    text-align: left;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: 0;
    margin-right: 0;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--color-primary);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: #d9691b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(244, 123, 32, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-border);
}

.btn-secondary:hover {
    border-color: var(--color-primary);
    background-color: var(--color-background);
}

/* Link Arrow */
.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-accent);
    margin-top: 20px;
    transition: gap 0.3s ease;
    text-decoration: none;
}

.link-arrow:hover {
    gap: 12px;
    color: #d9691b;
}

/* Split Layout (Standardized for all pages) */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.split-layout.reverse .split-content {
    order: 2;
}

.split-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
    color: var(--color-primary);
}

.split-content p {
    color: var(--color-text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 1.05rem;
    padding-left: 30px;
}

.split-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(7, 26, 61, 0.1);
    display: block;
}

/* Responsive Global Layouts */
@media (max-width: 1024px) {
    .container { padding: 0 30px; }
    .section-header h2, .split-content h2 { font-size: 2rem; }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .split-layout { grid-template-columns: 1fr; gap: 40px; }
    .split-layout.reverse .split-content { order: 0; }
    .split-image img { height: 350px; }
    .section-header h2, .split-content h2 { font-size: 1.8rem; }
}
.approval-note {
    background: rgba(244, 123, 32, 0.1);
    border: 1px solid var(--color-accent);
    padding: 24px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.approval-note i { color: var(--color-accent); font-size: 1.5rem; }
.approval-note p { margin: 0; color: rgba(255, 255, 255, 0.9); font-size: 0.95rem; }

/* =========================================
   GLOBAL ACCORDION (basic.css)
   ========================================= */
.accordion-list {
    margin-top: 30px;
    border-top: 1px solid var(--color-border);
}

.acc-item {
    border-bottom: 1px solid var(--color-border);
}

.acc-item summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-primary);
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.acc-item summary::-webkit-details-marker { display: none; }
.acc-item summary:hover { color: var(--color-accent); }

.acc-title { display: flex; align-items: center; }

.acc-icon {
    color: var(--color-accent);
    transition: transform 0.3s ease;
    font-size: 1rem;
}

.acc-item[open] .acc-icon {
    transform: rotate(45deg);
}

.acc-content {
    padding-bottom: 20px;
    padding-right: 40px;
    animation: slideDown 0.3s ease forwards;
}

.acc-content p {
    color: var(--color-text-muted);
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
/* =========================================
   LEGAL PAGES (Privacy & Terms)
   ========================================= */
.legal-hero {
    padding: 100px 0 40px;
    background-color: var(--color-white);
    border-bottom: 1px solid var(--color-border);
}

.legal-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.legal-updated {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    font-style: italic;
}

.legal-section {
    padding: 60px 0 100px;
    background-color: var(--color-white);
}

.legal-container {
    max-width: 800px;
}

.legal-container > p:first-child {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
}

.legal-block {
    margin-bottom: 35px;
}

.legal-block h2 {
    font-size: 1.4rem;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.legal-block p {
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 15px;
}

.legal-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.legal-block ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.legal-block ul li::before {
    content: "\f111"; /* fa-circle */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--color-accent);
    font-size: 0.4rem;
    position: absolute;
    left: 0;
    top: 10px;
}

.legal-block a {
    color: var(--color-accent);
    text-decoration: none;
}

.legal-block a:hover {
    text-decoration: underline;
}