:root {
    --navy: #0B1F3A;
    --navy-light: #122848;
    --gold: #C9A84C;
    --gold-light: #E8C96A;
    --white: #FFFFFF;
    --gray-50: #F7F8FA;
    --gray-100: #EEF0F4;
    --gray-400: #9CA3AF;
    --gray-600: #4B5563;
    --gray-800: #1F2937;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --radius-full: 9999px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--gray-800);
    background: var(--white);
    overflow-x: hidden
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    line-height: 1.15
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem
}

img {
    display: block;
    max-width: 100%
}

/* REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: all .9s cubic-bezier(.16, .84, .44, 1)
}

.reveal.active {
    opacity: 1;
    transform: none
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all .9s cubic-bezier(.16, .84, .44, 1)
}

.reveal-left.active {
    opacity: 1;
    transform: none
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all .9s cubic-bezier(.16, .84, .44, 1)
}

.reveal-right.active {
    opacity: 1;
    transform: none
}

/* NAVBAR */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: all .35s
}

nav.scrolled {
    background: rgba(11, 31, 58, .97);
    backdrop-filter: blur(16px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, .18);
    padding: .8rem 0
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: .75rem;
    text-decoration: none
}

.nav-logo img {
    height: 48px;
    width: auto;
    transition: height .3s
}

nav.scrolled .nav-logo img {
    height: 40px
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2rem
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, .88);
    font-weight: 500;
    font-size: .9rem;
    letter-spacing: .03em;
    transition: color .2s
}

.nav-links a:hover {
    color: var(--gold)
}

.btn-nav {
    background: var(--gold);
    color: var(--navy) !important;
    padding: .6rem 1.6rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: .85rem;
    transition: all .25s
}

.btn-nav:hover {
    background: var(--gold-light);
    transform: translateY(-1px)
}

.nav-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: white;
    font-size: 1.4rem
}

@media(max-width:768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--navy);
        flex-direction: column;
        justify-content: center;
        gap: 2.5rem;
        z-index: 999
    }

    .nav-links.open {
        display: flex
    }

    .nav-hamburger {
        display: block
    }
}

/* HERO */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 70px;
    box-sizing: border-box
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    background-size: cover;
    background-position: center
}

.hero-slide.active {
    opacity: 1
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11, 31, 58, .85) 0%, rgba(11, 31, 58, .5) 60%, rgba(0, 0, 0, .3) 100%);
    z-index: 1
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 1rem 2rem;
    max-width: 98vw;
    width: 100%
}

.hero-logo-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: .8rem
}

.hero-logo-wrap::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: radial-gradient(ellipse at center, rgba(201, 168, 76, .2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none
}

.hero-rule {
    width: 90px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 0 auto .7rem
}

.hero-tagline {
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: rgba(201, 168, 76, .85);
    margin-bottom: .5rem
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(201, 168, 76, .35);
    color: rgba(255, 255, 255, .9);
    font-family: 'Inter', sans-serif;
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: .08em;
    padding: .4rem 1.2rem;
    border-radius: var(--radius-full);
    margin-bottom: .9rem;
    backdrop-filter: blur(8px)
}

.hero-badge::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0
}

.hero-title {
    font-size: clamp(1rem, 2.6vw, 2.6rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: .8rem;
    text-shadow: 0 4px 24px rgba(0, 0, 0, .5);
    letter-spacing: -.01em;
    white-space: nowrap
}

.hero-title span {
    color: var(--gold)
}

.hero-sub {
    font-size: clamp(.82rem, 1.4vw, 1rem);
    color: rgba(255, 255, 255, .78);
    max-width: 600px;
    margin: 0 auto 1.4rem;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: .01em
}

.hero-cta {
    display: flex;
    gap: .9rem;
    justify-content: center;
    flex-wrap: wrap
}

.btn-primary {
    background: var(--gold);
    color: var(--navy) !important;
    padding: .8rem 2.2rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: .92rem;
    text-decoration: none;
    display: inline-block;
    transition: all .3s;
    box-shadow: 0 8px 24px rgba(201, 168, 76, .4);
    letter-spacing: .03em
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(201, 168, 76, .55)
}

.btn-outline-white {
    border: 1px solid rgba(255, 255, 255, .45);
    color: white !important;
    padding: .8rem 2.2rem;
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: .92rem;
    text-decoration: none;
    display: inline-block;
    transition: all .3s;
    backdrop-filter: blur(6px);
    background: rgba(255, 255, 255, .06);
    letter-spacing: .03em
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, .14);
    border-color: rgba(255, 255, 255, .8);
    transform: translateY(-3px)
}

.hero-scroll {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center
}

.hero-scroll span {
    font-size: .6rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4);
    display: block;
    margin-bottom: .4rem
}

.hero-scroll-dot {
    width: 18px;
    height: 28px;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 10px;
    margin: 0 auto;
    position: relative
}

.hero-scroll-dot::before {
    content: '';
    position: absolute;
    width: 3px;
    height: 6px;
    background: var(--gold);
    border-radius: 4px;
    left: 50%;
    transform: translateX(-50%);
    top: 4px;
    animation: scrollDown 1.6s infinite
}

@keyframes scrollDown {
    0% {
        opacity: 1;
        top: 4px
    }

    60% {
        opacity: 0;
        top: 14px
    }

    100% {
        opacity: 0;
        top: 4px
    }
}

.hero-slide-indicators {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: .5rem
}

.hero-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .25);
    cursor: pointer;
    transition: all .3s
}

.hero-dot.active {
    background: var(--gold);
    width: 24px;
    border-radius: 3px
}

/* MARQUEE */
.marquee-section {
    background: var(--navy);
    padding: 1rem 0;
    overflow: hidden
}

.marquee-track {
    display: flex;
    animation: marquee 30s linear infinite;
    white-space: nowrap
}

.marquee-track:hover {
    animation-play-state: paused
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    padding: 0 2.5rem;
    color: rgba(255, 255, 255, .6);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase
}

.marquee-item .dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%
}

@keyframes marquee {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

/* STATS */
.stats-section {
    background: var(--gray-50);
    padding: 5rem 0
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem
}

.stat-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .05);
    border-bottom: 4px solid var(--gold)
}

.stat-card .num {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1
}

.stat-card .label {
    margin-top: .6rem;
    font-size: .82rem;
    font-weight: 600;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: .1em
}

@media(max-width:768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

/* ABOUT */
.about-section {
    padding: 8rem 0;
    background: var(--white)
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center
}

.about-img-wrap {
    position: relative
}

.about-img-wrap img {
    width: 100%;
    border-radius: var(--radius-xl);
    object-fit: cover;
    aspect-ratio: 4/5;
    box-shadow: 0 40px 80px rgba(11, 31, 58, .18)
}

.about-img-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--gold);
    color: var(--navy);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 16px 32px rgba(201, 168, 76, .4)
}

.about-img-badge .big {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 800;
    display: block;
    line-height: 1
}

.about-img-badge .sm {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-top: .3rem;
    display: block
}

.section-label {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
    display: block
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: var(--navy);
    margin-bottom: 1.5rem
}

.section-title span {
    color: var(--gold)
}

.about-text {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.85;
    margin-bottom: 1.5rem
}

.about-features {
    list-style: none;
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.about-features li {
    display: flex;
    align-items: center;
    gap: .9rem;
    font-size: .97rem;
    font-weight: 500;
    color: var(--gray-800)
}

.about-features li i {
    color: var(--gold);
    font-size: 1.1rem;
    width: 1.2rem
}

@media(max-width:900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem
    }

    .about-img-wrap {
        max-width: 480px;
        margin: 0 auto
    }
}

/* SERVICES */
.services-section {
    padding: 8rem 0;
    background: var(--gray-50)
}

.section-header {
    text-align: center;
    margin-bottom: 5rem
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 560px;
    margin: 1rem auto 0
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.8rem 2.2rem;
    border: 1px solid var(--gray-100);
    transition: all .35s;
    position: relative;
    overflow: hidden
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    opacity: 0;
    transition: opacity .35s
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(11, 31, 58, .15);
    border-color: transparent
}

.service-card:hover::before {
    opacity: 1
}

.service-card:hover .svc-icon,
.service-card:hover h3,
.service-card:hover p {
    color: white;
    position: relative;
    z-index: 1
}

.service-card:hover .svc-icon {
    background: rgba(255, 255, 255, .15) !important
}

.svc-icon {
    width: 64px;
    height: 64px;
    background: rgba(11, 31, 58, .07);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.8rem;
    transition: all .35s
}

.service-card h3 {
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    transition: color .35s
}

.service-card p {
    font-size: .95rem;
    color: var(--gray-600);
    line-height: 1.75;
    position: relative;
    z-index: 1;
    transition: color .35s
}

@media(max-width:768px) {
    .services-grid {
        grid-template-columns: 1fr
    }
}

/* PROCESS / IMAGERY BAND */
.process-section {
    padding: 8rem 0;
    background: var(--white)
}

.process-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 280px 280px;
    gap: 1.5rem;
    margin-top: 4rem
}

.mosaic-img {
    border-radius: var(--radius-lg);
    overflow: hidden
}

.mosaic-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s
}

.mosaic-img:hover img {
    transform: scale(1.05)
}

.mosaic-img.tall {
    grid-row: span 2
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 5rem
}

.proc-step {
    text-align: center;
    padding: 2rem 1rem
}

.proc-num {
    width: 48px;
    height: 48px;
    background: var(--navy);
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem
}

.proc-step h4 {
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: .5rem
}

.proc-step p {
    font-size: .88rem;
    color: var(--gray-600);
    line-height: 1.6
}

@media(max-width:900px) {
    .process-mosaic {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto
    }

    .mosaic-img.tall {
        grid-row: span 1
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:600px) {
    .process-mosaic {
        grid-template-columns: 1fr
    }
}

/* DESTINATIONS */
.destinations-section {
    padding: 8rem 0;
    background: var(--navy)
}

.destinations-section .section-label {
    color: var(--gold)
}

.destinations-section .section-title {
    color: var(--white)
}

.dest-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem
}

.dest-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    aspect-ratio: 3/4
}

.dest-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s
}

.dest-card:hover img {
    transform: scale(1.08)
}

.dest-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 31, 58, .9) 0%, rgba(11, 31, 58, .2) 60%, transparent 100%)
}

.dest-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.8rem 1.5rem
}

.dest-flag {
    font-size: 2.5rem;
    margin-bottom: .6rem;
    display: block
}

.dest-card-info h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: .3rem
}

.dest-card-info span {
    color: var(--gold);
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .08em
}

@media(max-width:900px) {
    .dest-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:500px) {
    .dest-grid {
        grid-template-columns: 1fr
    }
}

/* JOB CARDS */
.jobs-section {
    padding: 8rem 0;
    background: var(--gray-50)
}

.jobs-scroll-wrap {
    position: relative
}

.job-cards-wrapper {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 2rem .5rem 4rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth
}

.job-cards-wrapper::-webkit-scrollbar {
    display: none
}

.job-card {
    background: linear-gradient(to bottom right, #ffffff, #fcfcfc);
    border-radius: 24px;
    padding: 2.2rem;
    border: 1px solid rgba(59, 130, 246, 0.1);
    box-shadow: 0 10px 30px rgba(11, 31, 58, 0.04);
    flex: 0 0 calc(50% - .75rem);
    min-width: 340px;
    scroll-snap-align: start;
    transition: all .3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.job-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
    background: linear-gradient(90deg, #3B82F6, #60A5FA);
    opacity: 0;
    transition: opacity 0.3s;
}

.job-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.12);
    border-color: rgba(59, 130, 246, 0.3);
}

.job-card:hover::before {
    opacity: 1;
}

.job-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start
}

.job-logo {
    width: 52px;
    height: 52px;
    background: #EFF6FF;
    color: #2563EB;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    box-shadow: inset 0 2px 4px rgba(255,255,255,0.5);
}

.job-badge {
    background: #EEF2FF;
    color: #4F46E5;
    padding: .35rem .9rem;
    border-radius: var(--radius-full);
    font-size: .75rem;
    font-weight: 700
}

.job-title {
    font-size: 1.3rem;
    color: var(--navy);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.job-company {
    color: var(--gray-400);
    font-size: .85rem;
    margin-top: .2rem
}

.job-salary {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--navy)
}

.job-desc {
    font-size: .9rem;
    color: var(--gray-600);
    line-height: 1.65;
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical
}

.job-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .8rem;
    margin-top: .5rem
}

.btn-apply {
    background: linear-gradient(135deg, #3B82F6, #2563EB);
    color: white !important;
    padding: .9rem;
    border-radius: var(--radius-full);
    text-align: center;
    font-weight: 700;
    font-size: .95rem;
    text-decoration: none;
    transition: all .3s;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.25);
}

.btn-apply:hover {
    background: linear-gradient(135deg, #2563EB, #1D4ED8);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

.btn-save {
    background: var(--gray-100);
    color: var(--gray-800) !important;
    padding: .9rem;
    border-radius: var(--radius-full);
    text-align: center;
    font-weight: 700;
    font-size: .9rem;
    text-decoration: none;
    transition: background .2s
}

.btn-save:hover {
    background: var(--gray-100)
}

.scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .07);
    z-index: 5;
    transition: all .2s
}

.scroll-arrow:hover {
    background: var(--navy);
    color: var(--gold)
}

.scroll-prev {
    left: -22px
}

.scroll-next {
    right: -22px
}

@media(max-width:768px) {
    .scroll-arrow {
        display: none
    }

    .job-card {
        min-width: 85vw
    }
}

/* TESTIMONIALS */
.testimonials-section {
    padding: 8rem 0;
    background: var(--white)
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem
}

.testi-card {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid var(--gray-100);
    position: relative
}

.testi-card::before {
    content: '\201C';
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    color: var(--gold);
    opacity: .3;
    line-height: 1
}

.testi-stars {
    color: var(--gold);
    font-size: .9rem;
    margin-bottom: 1.2rem
}

.testi-card p {
    font-size: .97rem;
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: 1.8rem;
    font-style: italic
}

.testi-author {
    display: flex;
    align-items: center;
    gap: .9rem
}

.testi-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center
}

.testi-author h5 {
    font-size: .95rem;
    color: var(--navy)
}

.testi-author span {
    font-size: .8rem;
    color: var(--gray-400)
}

@media(max-width:768px) {
    .testi-grid {
        grid-template-columns: 1fr
    }
}

/* CTA */
.cta-section {
    padding: 0 1.5rem 8rem
}

.cta-box {
    background: linear-gradient(135deg, var(--navy) 0%, #1a3a6e 60%, var(--navy) 100%);
    border-radius: var(--radius-xl);
    padding: 7rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden
}

.cta-box::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border: 2px solid rgba(201, 168, 76, .15);
    border-radius: 50%;
    top: -250px;
    right: -250px
}

.cta-box::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border: 2px solid rgba(201, 168, 76, .1);
    border-radius: 50%;
    bottom: -150px;
    left: -150px
}

.cta-box h2 {
    color: white;
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1
}

.cta-box p {
    color: rgba(255, 255, 255, .75);
    font-size: 1.1rem;
    max-width: 520px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 1
}

.cta-box .btn-primary {
    position: relative;
    z-index: 1
}

/* FOOTER */
footer {
    background: var(--navy);
    color: rgba(255, 255, 255, .7);
    padding: 5rem 0 2rem
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem
}

.footer-logo-img {
    height: 48px;
    margin-bottom: 1.2rem
}

.footer-about {
    font-size: .92rem;
    line-height: 1.75;
    max-width: 280px
}

footer h5 {
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: .82rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-bottom: 1.5rem
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .75rem
}

.footer-links a {
    color: rgba(255, 255, 255, .6);
    text-decoration: none;
    font-size: .92rem;
    transition: color .2s
}

.footer-links a:hover {
    color: var(--gold)
}

.footer-contact p {
    font-size: .9rem;
    margin-bottom: .8rem;
    display: flex;
    align-items: flex-start;
    gap: .75rem
}

.footer-contact i {
    color: var(--gold);
    margin-top: .15rem;
    width: 1rem;
    flex-shrink: 0
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .85rem
}

.footer-social {
    display: flex;
    gap: 1rem
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, .08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .6);
    text-decoration: none;
    transition: all .2s;
    font-size: .9rem
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--navy)
}

@media(max-width:900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center
    }
}

@media(max-width:500px) {
    .footer-grid {
        grid-template-columns: 1fr
    }
}

.hero-logo {
    height: 162px;
    width: auto;
    margin: 0 auto 2rem;
    display: block;
    filter: drop-shadow(0 6px 24px rgba(0, 0, 0, .55));
    transition: transform .3s
}

.hero-logo:hover {
    transform: scale(1.04)
}

@media(max-width:600px) {
    .hero-logo {
        height: 96px;
    }
}

/* INTERNAL PAGES HERO */
.internal-hero {
    padding: 100px 0 60px;
    background: var(--navy);
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    text-align: center;
    position: relative;
    overflow: hidden
}

.internal-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(201, 168, 76, .1) 0%, transparent 50%);
    pointer-events: none
}

.internal-hero h1 {
    color: white;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem
}

.internal-hero p {
    color: rgba(255, 255, 255, .7);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto
}

/* TABBED SECTION */
.tab-section {
    background: var(--white);
    padding: 8rem 0;
    overflow: hidden
}

.tab-nav-wrap {
    border-bottom: 1px solid var(--gray-100);
    margin-bottom: 4rem
}

.tab-nav {
    display: flex;
    justify-content: center;
    gap: 3rem
}

.htab {
    background: none;
    border: none;
    padding: 1.5rem 0;
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gray-400);
    cursor: pointer;
    position: relative;
    transition: all .3s;
    border-bottom: 3px solid transparent
}

.htab.active {
    color: var(--navy);
    border-bottom-color: var(--gold)
}

.tab-slider-wrap {
    overflow: hidden
}

.tab-slider {
    display: flex;
    transition: transform .6s cubic-bezier(.16, 1, .3, 1)
}

.tab-panel {
    min-width: 100%;
    flex-shrink: 0
}

/* FORMS */
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
    padding: 3rem;
    border: 1px solid var(--gray-100)
}

.form-group {
    margin-bottom: 1.5rem
}

.form-label {
    display: block;
    font-size: .85rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: .5rem;
    text-transform: uppercase;
    letter-spacing: .05em
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid var(--gray-100);
    border-radius: 12px;
    font-family: inherit;
    font-size: .95rem;
    transition: all .3s;
    background: var(--gray-50)
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: white;
    box-shadow: 0 8px 24px rgba(201, 168, 76, .1)
}

.form-textarea {
    min-height: 120px;
    resize: vertical
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem
}

@media(max-width:600px) {
    .grid-2 {
        grid-template-columns: 1fr
    }
}

/* JOB SEARCH & FILTER */
.job-search-wrap {
    margin-top: -4rem;
    position: relative;
    z-index: 10
}

.search-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1.5rem
}

@media(max-width:900px) {
    .search-grid {
        grid-template-columns: 1fr
    }
}

/* JOB LISTINGS FULL PAGE */
.job-listings-section {
    padding: 6rem 0 10rem;
    background: var(--gray-50)
}

.job-full-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem
}

@media(max-width:400px) {
    .job-full-grid {
        grid-template-columns: 1fr
    }
}

.no-results {
    text-align: center;
    padding: 5rem 0;
    color: var(--gray-400)
}

.no-results i {
    font-size: 3rem;
    opacity: .5
}

/* FORM ENHANCEMENTS */
.form-section-title {
    font-size: 1.25rem;
    color: var(--navy);
    margin: 2.5rem 0 1.5rem;
    padding-bottom: .75rem;
    border-bottom: 2px solid var(--gray-100);
    display: flex;
    align-items: center;
    gap: .75rem
}

.form-section-title:first-child {
    margin-top: 0
}

.form-section-title i {
    color: var(--gold);
    font-size: 1.1rem
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    cursor: pointer;
    font-size: .9rem;
    color: var(--gray-600);
    line-height: 1.5
}

.checkbox-group input {
    margin-top: .25rem;
    accent-color: var(--gold)
}

.file-input-wrapper {
    position: relative;
    margin-bottom: 1.5rem
}

.file-input-label {
    display: block;
    padding: 1.5rem;
    background: var(--gray-50);
    border: 2px dashed var(--gray-100);
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all .3s
}

.file-input-label:hover {
    border-color: var(--gold);
    background: white
}

.file-input-label i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: .5rem;
    display: block
}
/* DARK THEME JOB CARD (EVERNOTE STYLE) */
.job-card-dark {
    background: linear-gradient(135deg, #1b2120 0%, #151618 50%, #111111 100%);
    border-radius: 30px;
    padding: 2.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    color: white;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.03);
}

.job-card-dark::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 40%; height: 40%;
    background: radial-gradient(circle, rgba(16,185,129,0.1) 0%, rgba(0,0,0,0) 70%);
    border-top-left-radius: 30px;
    pointer-events: none;
}

/* The Cutout */
.corner-cutout {
    position: absolute;
    top: -1px;
    right: -1px;
    width: 130px;
    height: 50px;
    background: var(--gray-50); /* Matches the section background */
    border-bottom-left-radius: 28px;
    z-index: 2;
}
.corner-cutout::before {
    content: '';
    position: absolute;
    left: -28px;
    top: 0;
    width: 28px;
    height: 28px;
    background: transparent;
    border-top-right-radius: 28px;
    box-shadow: 10px -10px 0 10px var(--gray-50);
}

.job-card-header-dark {
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 3;
}

.job-logo-box {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.job-company-name {
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.text-blue {
    color: #3B82F6;
    font-size: 0.9rem;
}

.job-title-dark {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    color: white;
    margin: 0;
    line-height: 1.2;
    z-index: 3;
}

.job-meta-grid {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    z-index: 3;
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.meta-label {
    font-size: 0.8rem;
    color: #8c9096;
    font-weight: 500;
}

.meta-value {
    font-size: 0.95rem;
    color: white;
    font-weight: 600;
}

.meta-divider {
    width: 1px;
    height: 28px;
    background: #33363d;
}

.job-desc-dark {
    color: #8c9096;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    z-index: 3;
}

.job-footer-dark {
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 3;
}

.job-salary-dark {
    font-size: 1.6rem;
    font-weight: 800;
    color: white;
    font-family: 'Inter', sans-serif;
}

.btn-neon-green {
    background: linear-gradient(135deg, #86efac, #4ade80);
    color: #064e3b;
    font-weight: 700;
    padding: 0.9rem 2rem;
    border-radius: 99px;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(74, 222, 128, 0.3);
}

.btn-neon-green:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(74, 222, 128, 0.4);
    background: linear-gradient(135deg, #4ade80, #22c55e);
    color: #064e3b;
}

@media(max-width: 600px) {
    .job-meta-grid {
        flex-wrap: wrap;
        gap: 1rem;
    }
    .meta-divider {
        display: none;
    }
    .job-footer-dark {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    .btn-neon-green {
        width: 100%;
        text-align: center;
    }
}
