/* ========================================
   CAREER 2000 — Fresh Design System
   Brand: Light Teal + Navy + Orange
   ======================================== */

/* ---------- CSS Variables (Inherited from theme.css) ---------- */
:root {
    --nav-height: 90px;
    --border: rgba(31, 111, 102, 0.15);
    --shadow: 0 4px 24px rgba(30, 58, 74, 0.10);
    --shadow-lg: 0 12px 48px rgba(30, 58, 74, 0.18);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
    /* Prevent iOS/mobile Safari from automatically inflating text sizes */
    -webkit-text-size-adjust: 100%;
}

body {
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
    position: relative;
    /* Cross-browser rendering smoothing for exact color/weight matches on Mac vs PC */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

/* ---------- Container ---------- */
.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    box-sizing: border-box;
}


/* Partners Section (Services Page) */
.partners-section {
    background: var(--navy);
    color: var(--white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.partners-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(234, 198, 175, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.partners-section h2 {
    color: var(--white);
}

.partners-section p.lead-light {
    color: rgba(255, 255, 255, 0.7);
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.15rem;
}

.client-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 32px;
    margin-top: 64px;
}

.client-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 48px 20px;
    transition: var(--transition);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.client-card:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-10px);
    border-color: rgba(234, 198, 175, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(234, 198, 175, 0.1);
}

.client-card i {
    font-size: 2.8rem;
    color: var(--soft-orange);
    margin-bottom: 28px;
    transition: transform 0.3s ease;
}

.client-card:hover i {
    transform: scale(1.1);
}

.client-card h3 {
    color: var(--white);
    font-family: var(--ff-serif);
    font-size: 1.45rem;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.client-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ---------- Typography ---------- */
p {
    text-align: left;
}

.text-center p,
.text-center .lead,
.hero-text p,
.page-hero p,
.hero-text h1,
.page-hero h1,
.hero-label,
footer p {
    text-align: center;
    text-justify: none;
}

h1,
h2,
h3,
h4 {
    line-height: 1.25;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.4rem);
}

h2 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
}

h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
}

.highlight {
    color: var(--teal);
}

.text-muted {
    color: var(--text-muted);
}

.lead {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto;
}

.section-label {
    display: inline-block;
    font-family: var(--ff-sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--teal);
    background: rgba(31, 111, 102, 0.10);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
}

/* Light version for dark hero backgrounds */
.hero-label {
    background: rgba(255, 255, 255, 0.15);
    color: var(--soft-orange);
    backdrop-filter: blur(4px);
}

.section-title {
    margin-bottom: 16px;
}

.text-center {
    text-align: center;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--ff-sans);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 13px 28px;
    border-radius: 100px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-teal,
.btn-orange,
.btn-navy {
    background: var(--btn-bg);
    color: var(--btn-text);
    border-color: var(--btn-bg);
}

.btn-teal:hover,
.btn-orange:hover,
.btn-navy:hover {
    background: var(--btn-hover-bg);
    border-color: var(--btn-hover-bg);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--soft-orange);
    border-color: var(--soft-orange);
}

.btn-outline:hover {
    background: var(--soft-orange);
    color: var(--navy);
}

/* Contrast exception for soft-orange backgrounds */
.contact-snippet .btn,
.contact-snippet .btn-teal,
.contact-snippet .btn-orange {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.contact-snippet .btn:hover,
.contact-snippet .btn-teal:hover,
.contact-snippet .btn-orange:hover {
    background: var(--teal);
    border-color: var(--teal);
}

/* ---------- Navbar ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(250, 246, 244, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0;

    padding-bottom: 20px;
    transition: box-shadow 0.3s ease;
    box-sizing: border-box;
    overflow: visible;
}

.navbar.scrolled {
    box-shadow: var(--shadow);
}

.nav-inner {
    display: flex;
    justify-content: center;
    /* Clusters items in the middle */
    align-items: flex-start;
    /* Changed to flex-start for precise vertical placement via margins */
    height: var(--nav-height);
    max-width: 100%;
    /* Restored 100% to fix the layout structure */
    margin: 0 auto;
    padding: 20px;
    padding-bottom: 91px;

    /* Restored original padding */
    position: relative;
    box-sizing: border-box;
    gap: clamp(10px, 2vw, 40px);
    /* Smart dynamic space between logo, menu, and CTA */
}



/* ==============================================
   LOGO — DESKTOP (> 1024px)
   Overflows below the navbar bar intentionally.
   Uses <picture> + 6250×6250px PNG source so the
   browser always downscales rather than upscales,
   guaranteeing perfect sharpness on 4K TVs.
   ============================================== */


/* Style the <picture> wrapper so it acts as the size container */
.nav-logo-desktop picture {
    display: block;
    width: 166px;
    flex-shrink: 0;
}

/* The <img> inside fills the picture container */
.nav-logo-desktop picture img,
.nav-logo-desktop img {
    width: 166px;
    height: auto;
    display: block;
    object-fit: contain;
    margin-top: 7vh;
}


/* ==============================================
   LOGO — MOBILE (≤ 1024px)
   Stays inside the nav bar, small & crisp.
   ============================================== */
.nav-logo-mobile {
    display: none;
    /* hidden on desktop */
    align-items: center;
    flex-shrink: 0;
    z-index: 1002;
}

.nav-logo-mobile img {
    width: clamp(44px, 12vw, 60px);
    height: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-logo-mobile img:hover {
    transform: scale(1.04);
    opacity: 0.9;
}



.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(12px, 2vw, 32px);
    /* Responsive gap */
    white-space: nowrap;

    /* Removed absolute positioning to prevent overlaps! */
    position: static;
    transform: none;

    margin-top: 48px;
    /* Pushed down further safely below the absolute social icons */
    margin-bottom: 0px;
    /* Removed flex: 1 so it shrinks and allows logo/CTA closer */
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
    padding: 8px 0;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--teal);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}





.nav-links a.active::after {
    background: #d4a017;
}



/* ---------- Special Menu Image ---------- */
.menu-wording-img {
    height: 1.1rem;
    /* Balanced with the 0.95rem text menu items */
    width: auto;
    aspect-ratio: 899 / 181;
    min-width: 5.5rem;
    /* Prevents 0px collapse in flex browsers */
    transition: transform 0.3s ease;
    display: inline-block;
    vertical-align: middle;
}

.nav-links a:hover .menu-wording-img {
    transform: scale(1.05);
}

.mobile-menu .menu-wording-img {
    height: 1.2rem;
    /* Matches the 1.2rem font size of the mobile menu links */
    width: auto;
    min-width: 6rem;
    margin: 8px 0;
}

.footer-nav .menu-wording-img {
    height: 0.9rem;
    /* Matches the 0.9rem footer font size */
    width: auto;
    min-width: 4.5rem;
    filter: brightness(0) invert(1);
}

.gold-sub {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 4px;
    font-family: Arial, sans-serif;

    background: linear-gradient(to bottom,
            #e6c76b 0%,
            #c9a227 50%,
            #a67c00 100%);

    -webkit-background-clip: text;
    background-clip: text;
    /* Fix lint warning */
    -webkit-text-fill-color: transparent;

    text-shadow:
        0 1px 0 #fff2a6,
        0 2px 3px rgba(0, 0, 0, 0.3);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 16px;

    /* Removed fixed positioning so it doesn't overlap on resize! */
    position: static;
    flex-shrink: 0;
    margin-top: 10px;
    /* Vertically aligns top edge with the logo */
}

.nav-cta .btn {
    padding: 13px 28px;
    font-size: 0.9rem;
    margin-top: 3vh;
}

@media (max-width: 1320px) {
    .nav-cta .btn {
        padding: 11px 20px;
        font-size: 0.84rem;
    }
}

@media (max-width: 1280px) {
    .nav-links {
        gap: 18px;
    }

    .nav-links a {
        font-size: 0.88rem;
    }

    .nav-socials {
        gap: 6px;
    }

    .nav-socials a {
        width: 28px;
        height: 28px;
        font-size: 0.78rem;
    }
}

@media (max-width: 1024px) {
    .navbar {
        height: 70px;
        padding-bottom: 0;
    }

    .nav-inner {
        height: 70px;
        padding: 0 20px;
        align-items: center;
        justify-content: space-between;
        gap: 0;
    }

    /* Switch logos */
    .nav-logo-desktop {
        display: none !important;
    }

    .nav-logo-mobile {
        display: flex !important;
    }

    .nav-links,
    .nav-cta,
    .nav-socials {
        display: none !important;
    }

    .hamburger {
        display: flex !important;
    }

    main {
        padding-top: 70px;
    }
}

.nav-socials {
    display: flex;
    gap: 8px;
    align-items: center;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.nav-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(0, 107, 102, 0.08);
    border-radius: 50%;
    color: var(--teal);
    transition: all 0.3s ease;
    font-size: 0.85rem;
    text-decoration: none;
}

.nav-socials a:hover {
    background: var(--teal);
    color: var(--white);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
    margin-right: -10px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 4px;
    transition: var(--transition);
}

@media (max-width: 1180px) {

    /* Logo handled by clamp() — no override needed */
    .nav-links {
        gap: 10px;
        top: 44px;
    }

    .nav-links a {
        font-size: 0.78rem;
    }

    .menu-wording-img {
        height: 0.95rem;
        min-width: 4.8rem;
    }

    .nav-socials {
        gap: 4px;
        top: 6px;
    }

    .nav-socials a {
        width: 24px;
        height: 24px;
        font-size: 0.7rem;
    }

    .nav-cta {
        right: 12px;
        top: 26px;
    }

    .nav-cta .btn {
        padding: 8px 14px;
        font-size: 0.76rem;
    }
}

@media (max-width: 1100px) {

    /* Logo handled by clamp() — no override needed */
    .nav-links {
        gap: 8px;
        top: 42px;
    }

    .nav-links a {
        font-size: 0.74rem;
    }

    .menu-wording-img {
        height: 0.88rem;
        min-width: 4.4rem;
    }

    .nav-socials a {
        width: 22px;
        height: 22px;
        font-size: 0.68rem;
    }

    .nav-cta .btn {
        padding: 7px 12px;
        font-size: 0.72rem;
    }
}

/* ---------- Mobile Menu ---------- */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    z-index: 9999;
    background: var(--bg);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 80px 16px 40px;
    gap: 8px;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

.mobile-menu.open {
    display: flex;
}

.mobile-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2.2rem;
    color: var(--white);
    background: var(--teal);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.mobile-close:hover {
    background: var(--navy);
    transform: scale(1.1) rotate(90deg);
}

.mobile-menu>a {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--navy);
    padding: 12px 24px;
    border-radius: var(--radius);
    width: 90%;
    max-width: 320px;
    text-align: center;
    transition: var(--transition);
    display: block;
}

.mobile-menu>a:hover {
    background: rgba(31, 111, 102, 0.1);
    color: var(--teal);
}

.mobile-socials {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    width: 90%;
    max-width: 320px;
}

.mobile-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(0, 107, 102, 0.08);
    border-radius: 50%;
    color: var(--teal);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.mobile-socials a:hover {
    background: var(--teal);
    color: white;
}

/* Ensure close button is styled consistently */
.mobile-close {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 2rem;
    color: var(--white);
    background: var(--teal);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10001;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    border: none;
    padding: 0;
}

.mobile-close:hover {
    background: var(--navy);
    transform: scale(1.1) rotate(90deg);
}

/* ---------- Page Offset ---------- */
main {
    padding-top: var(--nav-height);
}

@media (max-width: 768px) {
    main {
        padding-top: 70px;
    }
}

/* ========================================
   HERO SECTION (index.html)
   ======================================== */
.hero,
.page-hero {
    background: var(--hero-bg);
    padding: 110px 0 100px;
    overflow: visible !important;
    position: relative;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100%;
    min-width: 100%;
    box-sizing: border-box;
}

.hero .container,
.page-hero .container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 24px !important;
    position: relative;
    z-index: 1;
    overflow: visible !important;
}

/* Decorative glowing orb top-right */
.hero::before,
.page-hero::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(31, 111, 102, 0.35) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Decorative orb bottom-left */
.hero::after,
.page-hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(230, 122, 46, 0.18) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    position: relative;
    z-index: 1;
}

.hero-text {
    padding: 0;
    width: 100%;
    max-width: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: var(--soft-orange);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.hero-text h1,
.page-hero h1 {
    color: var(--hero-text);
    margin: 0 auto 20px;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    max-width: 820px;
    text-align: center;
}

.hero-text h1 span,
.page-hero h1 span {
    color: var(--soft-orange);
}

.hero-text p,
.page-hero p,
.hero p {
    color: var(--hero-text-muted);
    font-size: 1.15rem;
    margin: 0 auto 36px !important;
    max-width: 820px;
    white-space: normal !important;
    text-align: center !important;
    display: block !important;
    width: auto !important;
    word-break: break-word;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-image {
    display: none;
}

/* ========================================
   SNIPPET SECTIONS (index.html)
   ======================================== */
.section {
    padding: 96px 0;
}

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

/* About Snippet */
.about-snippet {
    background: var(--white);
}

.about-snippet-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.founder-img-wrap {
    position: relative;
}

.founder-img-wrap img {
    width: 100%;
    max-width: 440px;

    box-shadow: var(--shadow-lg);
}

.founder-badge {
    position: absolute;
    bottom: -20px;
    left: 60px;
    background: var(--teal);
    color: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    font-size: 0.85rem;
}

.founder-badge strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 2px;
}

.about-text .lead {
    margin: 0;
}

.about-text p {
    color: var(--text-muted);
    margin: 20px 0 28px;
    font-size: 1.05rem;
}

/* Stats Row */
.stats-row {
    display: flex;
    gap: 32px;
    padding: 40px 0 60px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin: 48px 0;
}

.stat {
    text-align: center;
    flex: 1;
}

.stat-num {
    font-family: var(--ff-serif);
    font-size: 2.4rem;
    color: var(--teal);
    font-weight: 700;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Services Snippet */
.services-snippet {
    background: var(--bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 52px;
}

.service-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--teal);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: rgba(31, 111, 102, 0.1);
    color: var(--teal);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 10px;
    font-size: 1.15rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Timeline Snippet */
.timeline-snippet {
    background: var(--navy);
}

.timeline-snippet .section-label {
    background: rgba(255, 255, 255, 0.1);
    color: var(--soft-orange);
}

.timeline-snippet h2 {
    color: var(--white);
}

.timeline-snippet .lead {
    color: rgba(255, 255, 255, 0.7);
}

.timeline-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    margin-top: 52px;
}

.timeline-step {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 24px;
    transition: var(--transition);
}

.timeline-step:hover {
    background: rgba(255, 255, 255, 0.1);
}

.timeline-year {
    font-family: var(--ff-serif);
    font-size: 1.5rem;
    color: var(--soft-orange);
    margin-bottom: 10px;
}

.timeline-step p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    text-align: center left;
}

/* Jobs Snippet */
.jobs-snippet {
    background: var(--white);
}

.jobs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 52px;
}

.jobs-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    transition: var(--transition);
}

.jobs-card:hover {
    box-shadow: var(--shadow);
}

.jobs-card-icon {
    font-size: 2rem;
    margin-bottom: 18px;
}

.jobs-card h3 {
    margin-bottom: 12px;
}

.jobs-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

/* Contact Snippet */
.contact-snippet {
    background: var(--soft-orange);
}

.contact-snippet-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.contact-snippet h2 {
    color: var(--navy);
}

.contact-snippet p {
    color: var(--navy);
    opacity: 0.8;
    margin: 16px 0 28px;
    font-size: 1.05rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 8px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 500;
    color: var(--navy);
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: rgba(30, 58, 74, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--navy);
    flex-shrink: 0;
}

.contact-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.contact-card h3 {
    margin-bottom: 24px;
}

.action-row {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.action-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
    color: var(--navy);
}

.action-item:hover {
    border-color: var(--teal);
    background: rgba(31, 111, 102, 0.04);
}

.action-item i {
    font-size: 1.2rem;
    color: var(--teal);
    width: 24px;
    text-align: center;
}

.action-item span {
    font-weight: 500;
    font-size: 0.95rem;
}

/* ========================================
   ABOUT PAGE (about.html)
   ======================================== */
.page-hero {
    padding: 100px 0 80px;
}

.page-hero h1 {
    margin-bottom: 14px;
}

.page-hero p {
    font-size: 1.1rem;
    max-width: 540px;
}

.founder-section {
    background: var(--white);
}

.founder-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 64px;
    align-items: start;
}

.founder-photo {
    position: relative;
}

.founder-photo img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.quote-block {
    margin-top: 24px;
    padding: 20px 24px;
    background: var(--bg);
    border-left: 4px solid var(--teal);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
    color: var(--text-muted);
    font-size: 1rem;
}

.founder-bio h2 {
    margin-bottom: 8px;
}

.founder-bio .role {
    color: var(--teal);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 20px;
}

.founder-bio p {
    color: var(--text-muted);
    margin-bottom: 14px;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.value-chip {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.value-chip i {
    color: var(--teal);
    font-size: 1.1rem;
}

.value-chip span {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--navy);
}

.history-section {
    background: var(--bg);
}

.history-body {
    max-width: 780px;
}

.history-body p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.timeline-full {
    background: var(--white);
}

.timeline-list {
    position: relative;
    margin-top: 52px;
}

.timeline-list::before {
    content: '';
    position: absolute;
    left: 90px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.tl-item {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.tl-year {
    width: 90px;
    text-align: right;
    font-family: var(--ff-serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--teal);
    padding-top: 2px;
    flex-shrink: 0;
    margin-left: -15px;
}

.tl-dot {
    width: 14px;
    height: 14px;
    background: var(--teal);
    border: 3px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0 2px var(--teal);
    flex-shrink: 0;
    margin-top: 5px;
    position: relative;
    z-index: 1;
}

.tl-text h4 {
    color: var(--navy);
    margin-bottom: 6px;
    font-size: 1rem;
    font-family: var(--ff-sans);
    font-weight: 700;
}

.tl-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ========================================
   SERVICES PAGE (services.html)
   ======================================== */
.services-full {
    background: var(--white);
}

.services-full-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 52px;
}

.service-full-card {
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--bg);
    transition: var(--transition);
}

.service-full-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--teal);
}

.service-full-card .service-icon {
    margin-bottom: 20px;
}

.service-full-card h3 {
    margin-bottom: 12px;
}

.service-full-card p {
    color: var(--text-muted);
    margin-bottom: 0;
}

.service-spec-list {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-spec-list li {
    display: flex;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.service-spec-list li i {
    color: var(--teal);
    margin-top: 3px;
    flex-shrink: 0;
}

.partners-section {
    background: var(--navy);
    padding: 80px 0;
}

.partners-section h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.partners-section p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 640px;
    margin: 0 auto;
}

/* ========================================
   CONTACT PAGE (contact.html)
   ======================================== */
.contact-full {
    background: var(--white);
}

.contact-full-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}

.contact-full-text h2 {
    margin-bottom: 12px;
}

.contact-full-text p {
    color: var(--text-muted);
    margin-bottom: 32px;
    font-size: 1.05rem;
}

.contact-detail-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 500;
}

.contact-detail-item i {
    width: 44px;
    height: 44px;
    background: rgba(31, 111, 102, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    font-size: 1rem;
}

.contact-actions-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.partner-action-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.partner-action-card:hover {
    border-color: var(--teal);
    box-shadow: var(--shadow);
}

.partner-action-card .pa-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: rgba(31, 111, 102, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    font-size: 1.2rem;
}

.partner-action-card h4 {
    margin-bottom: 4px;
    font-size: 1rem;
    font-family: var(--ff-sans);
    font-weight: 700;
}

.partner-action-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

/* Candidate Action Card (Unified Style) */
.candidate-action-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.candidate-action-card .section-label {
    margin-bottom: 16px;
    align-self: flex-start;
}

.candidate-action-card h3 {
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.candidate-action-card .candidate-steps {
    margin-bottom: 32px;
}

/* WhatsApp Brand Button */
.btn-whatsapp {
    background: #25D366 !important;
    border-color: #25D366 !important;
    color: white !important;
    width: 100%;
    justify-content: center;
    font-size: 1.05rem;
    padding: 16px 24px;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
    background: #20BA5A !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

/* Jobs Section (contact page) */
.jobs-full {
    background: var(--bg);
}

.jobs-full-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.jobs-text h2 {
    margin-bottom: 16px;
}

.jobs-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.jobs-steps-list {
    margin: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.jobs-step {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.jobs-step-num {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    background: var(--teal);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.jobs-step p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.jobs-note {
    background: rgba(31, 111, 102, 0.08);
    border: 1px solid rgba(31, 111, 102, 0.2);
    border-radius: var(--radius);
    padding: 14px 18px;
    font-size: 0.9rem;
    color: var(--teal);
    margin-top: 16px;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
    border-color: #25D366;
}

.whatsapp-btn:hover {
    background: #1da851;
    border-color: #1da851;
}

/* Video Submission */
.video-full {
    background: var(--white);
}

.video-full-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.checklist-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.checklist-card h4 {
    margin-bottom: 18px;
}

.check-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.check-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.check-item i {
    color: var(--teal);
    margin-top: 3px;
    flex-shrink: 0;
}

.form-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
}

.form-card h3 {
    margin-bottom: 6px;
}

.form-card>p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 7px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--text);
    font-family: var(--ff-sans);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(31, 111, 102, 0.12);
}

.form-group input[type="file"] {
    padding: 10px;
    cursor: pointer;
}

.form-message {
    font-size: 0.9rem;
    margin-top: 12px;
    font-weight: 500;
}

.form-message.success {
    color: var(--teal);
}

.form-message.error {
    color: #e53935;
}

/* ========================================
   FOOTER
   ======================================== */
footer {
    background: #1E3A4A;
    padding: 60px 0 32px;

}

.footer-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    margin: 0 auto 48px;
    max-width: 1180px;
    flex-wrap: nowrap;
}

.footer-brand {
    flex: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    max-width: 320px;
}

.brand-images {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-logo {
    width: 12vw;
    height: auto;

}

.brand-images img {
    height: 5vh;
    max-height: 80px;
    width: auto;
    object-fit: contain;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-nav {
    flex: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.footer-nav ul {
    display: flex;
    flex-direction: column;
    gap: 1px;
    align-items: flex-start;
    justify-content: flex-start;
}

.footer-nav ul li {
    display: block;

}

.footer-nav h5,
.footer-col h5 {
    color: var(--white);
    font-family: var(--ff-sans);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.footer-nav ul li a,
.footer-col ul li a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-nav ul li a:hover,
.footer-col ul li a:hover {
    color: var(--soft-orange);
}

.footer-col ul li a:hover {
    color: var(--soft-orange);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85rem;
    transition: var(--transition);
}

.social-links a:hover {
    border-color: var(--soft-orange);
    color: var(--soft-orange);
}

/* ========================================
   SCROLL REVEAL
   ======================================== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

/* ========================================
   CONTACT PAGE LAYOUT
   ======================================== */
.two-col-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-image {
        display: none;
    }

    .hero-text {
        padding: 40px 0;
    }

    .about-snippet-inner,
    .contact-snippet-inner,
    .services-full-grid,
    .contact-full-inner,
    .jobs-full-inner,
    .video-full-inner,
    .founder-layout {
        grid-template-columns: 1fr;
    }

    .founder-layout {
        gap: 40px;
    }

    .footer-inner {
        gap: 40px;
    }

    .timeline-list::before {
        left: 60px;
    }

    .tl-year {
        width: 60px;
        font-size: 0.95rem;

    }
}

@media (max-width: 768px) {

    .navbar {
        height: 70px;
    }

    .nav-inner {
        height: 70px;
        padding: 0 20px;
    }


    /* Logo switching handled in the @media (max-width: 1024px) block above */

    .nav-links,
    .nav-cta {
        display: none;
    }

    .nav-socials {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        display: flex !important;
        gap: 8px;
        z-index: 10;
        margin: 0;
    }

    .nav-socials a {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }

    .hamburger {
        display: flex;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .timeline-steps {
        grid-template-columns: 1fr 1fr;
    }

    .jobs-grid {
        grid-template-columns: 1fr;
    }

    .stats-row {
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat {
        min-width: 120px;
    }

    .footer-inner {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 30px;
        width: 100%;
        max-width: 100%;
        flex-wrap: nowrap;
    }

    .footer-brand,
    .footer-nav {
        align-items: flex-start;
        text-align: left;
        max-width: none;
        flex: none;
    }

    .footer-nav {
        margin: 0;
        width: auto;
    }

    .footer-nav ul {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        width: 100%;
        max-width: 340px;
        margin: 32px auto 0;
    }

    .two-col-contact {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .timeline-steps {
        grid-template-columns: 1fr;
    }

    .footer-nav ul {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        justify-content: flex-start;
    }

    .footer-nav ul li {
        min-width: 0;
    }

    .footer-logo {
        width: 170px;
    }

    .footer-inner {
        gap: 15px;
        flex-wrap: nowrap;
        flex-direction: row;
    }
}

/* ---------- Forms ---------- */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 24px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--navy);
    text-transform: capitalize;
    letter-spacing: 0.05em;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--ff-sans);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg);
}

.form-control:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(31, 111, 102, 0.1);
}

.checkbox-group {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    text-align: left;
    margin: 24px 0;
    padding: 20px;
    background: rgba(31, 111, 102, 0.05);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.checkbox-group input {
    margin-top: 5px;
    cursor: pointer;
}

.checkbox-group label {
    font-size: 0.9rem;
    color: var(--text-muted);
    cursor: pointer;
    text-transform: capitalize;
}

.success-banner {
    display: none;
    margin-top: 24px;
    padding: 24px;
    background: #eef7f6;
    border: 1px solid var(--teal);
    border-radius: var(--radius);
    color: var(--navy);
    text-align: center;
    animation: fadeIn 0.5s ease forwards;
}

.success-banner h4 {
    color: var(--teal);
    margin-bottom: 8px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1080px) and (max-height: 500px) and (orientation: landscape) {
    .navbar {
        height: 60px;
    }

    .nav-inner {
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    /* Logo switching handled in the @media (max-width: 1024px) block above */
    /* Mobile logo image clamp() handles the 45px size automatically at this viewport */

    .nav-links,
    .nav-cta {
        display: none !important;
    }

    .nav-socials {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        display: flex !important;
        gap: 8px;
        z-index: 10;
        margin: 0;
    }

    .nav-socials a {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }

    .hamburger {
        display: flex !important;
    }

    main {
        padding-top: 60px;
    }

    .page-hero {
        padding: 40px 0 30px;
    }

    .mobile-menu {
        padding-top: 70px;
        gap: 8px;
    }

    .mobile-menu a {
        font-size: 1.1rem;
        padding: 8px 20px;
    }

    .mobile-close {
        top: 15px;
        right: 15px;
        font-size: 1.8rem;
        width: 44px;
        height: 44px;
    }
}