/* ========================================
   Oasis Capital Finance - Main Stylesheet
   Pixel-perfect match to Durable original
   ======================================== */

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 400;
    color: #111827;
    font-size: 18px;
    line-height: 28px;
    background: #fff;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- CSS Variables --- */
:root {
    --color1: #020626;
    --color2: #292929;
    --color3: #FFFFFF;
    --color4: #F5F5F5;
    --accent-dark: #111827;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Playfair Display', Georgia, serif;
    --header-height: 128px;
    --max-width: 1200px;
    --slope: calc(100vw / 16.34);
    --slope-neg: calc(-100vw / 16.34);
}

/* ========================================
   HEADER (Durable exact match)
   Position: static, height: 128px
   Transparent on home, navy on inner pages
   ======================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 2000;
    background: var(--color1);
    height: var(--header-height);
    transition: background 0.3s ease;
}
.header-inner {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 40px;
    max-width: none;
    margin: 0 auto;
    padding: 24px 48px;
    height: var(--header-height);
}
.logo {
    display: flex;
    align-items: center;
    color: #fff;
    white-space: nowrap;
}
.logo img {
    height: 80px;
    width: auto;
}
.main-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
}
.main-nav ul {
    display: flex;
    align-items: center;
    gap: 0;
}
.main-nav a {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    padding: 8px 16px;
    border-radius: 0;
    transition: opacity 0.2s;
    display: block;
}
.main-nav a:hover,
.main-nav a.active {
    opacity: 0.8;
}

/* --- Contact Link in Nav (same style as other nav items) --- */
.btn-contact {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    padding: 8px 16px;
    color: #fff;
    transition: opacity 0.2s;
    margin-left: 4px;
}
.btn-contact:hover {
    opacity: 0.8;
}

/* --- Client Login Button in Nav --- */
.btn-client-login {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 400;
    padding: 10px 20px;
    border: none;
    border-radius: 0;
    color: #fff;
    background: transparent;
    cursor: pointer;
    transition: all 0.2s;
    margin-left: 12px;
    white-space: nowrap;
}
.btn-client-login:hover {
    color: #fff;
    background: transparent;
    opacity: 0.8;
}
.btn-client-login svg {
    flex-shrink: 0;
}

/* --- Mobile Toggle --- */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}
.mobile-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ========================================
   DIAGONAL DIVIDERS (SVG-based)
   ======================================== */
.slant-divider {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: var(--slope);
    z-index: 5;
    pointer-events: none;
}
.slant-divider svg {
    display: block;
    width: 100%;
    height: 100%;
}
.slant-divider-bottom { bottom: -1px; }
.slant-divider-top { top: -1px; }

/* ========================================
   HERO CAROUSEL (Home page)
   Full-screen with centered text
   ======================================== */
.hero-carousel {
    position: relative;
    min-height: calc(100vh - var(--header-height));
    overflow: hidden;
    background: var(--color1);
}
.carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
}
.carousel-slide.active { opacity: 1; z-index: 1; }
.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.carousel-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.carousel-content {
    max-width: 672px;
    margin: 0 auto;
    padding: 0 32px;
    color: #fff;
    text-align: center;
    width: 100%;
}
.carousel-content .hero-badge {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    line-height: 21px;
    color: #fff;
    margin-bottom: 16px;
    display: inline-block;
    background: rgba(255,255,255,0.1);
    padding: 4px 12px;
    border-radius: 9999px;
}
.carousel-content h1 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 400;
    line-height: 56px;
    margin-bottom: 20px;
}
.carousel-content p {
    font-family: var(--font-body);
    font-size: 24px;
    line-height: 36px;
    max-width: 700px;
    margin: 0 auto;
}

/* Carousel Dots */
.carousel-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}
.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 9999px;
    background: rgba(255,255,255,0.2);
    cursor: pointer;
    border: none;
    padding: 0;
    transition: all 0.3s;
}
.carousel-dot.active {
    width: 24px;
    background: #fff;
}

/* ========================================
   SECTION LAYOUTS
   ======================================== */
.section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}
.section-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 48px;
    position: relative;
    z-index: 2;
}

/* --- Two Column --- */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.two-col-text h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 400;
    line-height: 56px;
    margin-bottom: 28px;
}
.two-col-text p {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 20px;
}
.two-col-image img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

/* --- Track Record (full-width split layout) --- */
.track-record {
    position: relative;
    display: flex;
    overflow: hidden;
    min-height: 628px;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--slope)), 0 100%);
    margin-bottom: var(--slope-neg);
    z-index: 1;
}
.track-record-text {
    flex: 1;
    background: var(--color1);
    color: #fff;
    display: flex;
    align-items: center;
}
.track-record-text-content {
    padding: 160px 80px;
    max-width: 928px; /* 768px content + 80px padding each side */
    margin-left: auto;
    margin-right: 0;
}
.track-record-text h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 400;
    line-height: 56px;
    margin-bottom: 16px;
}
.track-record-text p {
    font-family: var(--font-body);
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 16px;
}
.track-record-text p:last-child {
    margin-bottom: 0;
}
.track-record-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}
.track-record-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Section Color Palettes --- */
.section-color1 {
    background: var(--color1);
    color: #fff;
}
.section-color2 {
    background: var(--color2);
    color: #fff;
}
.section-color3 {
    background: var(--color3);
    color: var(--accent-dark);
}
.section-color4 {
    background: var(--color4);
    color: var(--accent-dark);
}

/* --- Decorative Background --- */
.section-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
.section-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.section-bg-overlay {
    position: absolute;
    inset: 0;
}

/* --- Decorative Swirl Pattern --- */
.deco-pattern {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.08;
}
.deco-pattern svg {
    width: 100%;
    height: 100%;
}

/* ========================================
   CTA SECTION (Light bg, dark text, no button)
   Matches Durable: color4 background,
   dark text, decorative swirl pattern
   ======================================== */
.section-cta {
    position: relative;
    padding: 197px 0 196px;
    overflow: hidden;
    background: #fff;
    color: var(--accent-dark);
}
.section-cta .section-inner {
    position: relative;
    z-index: 2;
}
.section-cta h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 400;
    line-height: 56px;
    margin-bottom: 16px;
    color: rgb(17, 24, 39);
}
.section-cta p {
    font-family: var(--font-body);
    font-size: 24px;
    line-height: 36px;
    color: rgb(17, 24, 39);
}
.section-cta.cta-centered {
    text-align: center;
}
.section-cta.cta-centered .section-inner {
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
}
.section-cta.cta-centered p {
    margin: 0 auto;
}

/* --- Services/Team CTA (left-aligned, 18px body) --- */
.section-cta.cta-left .section-inner {
    max-width: 768px;
    padding-left: 0;
    padding-right: 0;
}
.section-cta.cta-left p {
    font-size: 18px;
    line-height: 28px;
}

/* --- About page CTA with background image + slantLeft clip --- */
.section-cta.cta-about {
    padding: 70px 0 var(--slope);
    min-height: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--slope)), 0 100%);
    margin-bottom: var(--slope-neg);
    z-index: 1;
}
.section-cta.cta-about .section-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
.section-cta.cta-about .section-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========================================
   HERO BANNER (Inner pages)
   ======================================== */
.page-hero {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--color1);
    padding-bottom: var(--slope);
}
.page-hero .section-bg { z-index: 0; }
.page-hero .section-bg img {
    object-position: 50% 90%;
}
.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 40px 32px;
}
.page-hero-content h1 {
    font-family: var(--font-heading);
    font-size: 72px;
    font-weight: 400;
    line-height: 80px;
}

/* ========================================
   ABOUT PAGE - Mission Section
   Full-height hero with clip-path slantRight.
   Flex column: text block + BUILD MOMENTUM image
   ======================================== */
.mission-section {
    position: relative;
    height: calc(593px + var(--slope));
    overflow: hidden;
    background: var(--color1);
    color: #fff;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - var(--slope)));
    margin-bottom: var(--slope-neg);
    z-index: 4;
}
.mission-section .section-bg img { opacity: 1; }
.mission-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 100px 48px 0;
    gap: 80px;
}
.mission-text {
    text-align: center;
    max-width: 768px;
}
.mission-heading {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 400;
    line-height: 56px;
    margin-bottom: 16px;
}
.mission-body {
    font-family: var(--font-body);
    font-size: 24px;
    line-height: 36px;
}
.mission-image {
    max-width: 488px;
    width: 100%;
    height: 275px;
}
.mission-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* --- About Home Section (centered text, no image) --- */
.home-about {
    position: relative;
    padding: calc(100px + var(--slope)) 0 calc(100px + var(--slope));
    background: var(--color3);
    overflow: hidden;
    clip-path: polygon(0 var(--slope), 100% 0, 100% 100%, 0 calc(100% - var(--slope)));
    margin-top: var(--slope-neg);
    margin-bottom: var(--slope-neg);
    z-index: 2;
}
.home-about .section-inner {
    text-align: center;
    position: relative;
    z-index: 2;
}
.home-about p {
    font-family: var(--font-body);
    font-size: 24px;
    line-height: 36px;
    color: var(--accent-dark);
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.home-about p:last-child { margin-bottom: 0; }

/* --- Services Hero section overrides (matches Durable reference) --- */
.services-hero {
    padding: 192px 0 calc(192px + var(--slope));
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - var(--slope)));
    margin-top: 0;
    margin-bottom: var(--slope-neg);
    z-index: 3; /* must sit above services-split so clip creates visible top slope */
}
.services-hero .section-inner {
    max-width: 1536px;
    padding: 0 24px;
    text-align: left;
}
.services-hero .two-col {
    gap: 80px;
    align-items: center;
}
.services-hero .two-col-text h2 {
    color: var(--accent-dark);
    white-space: nowrap;
}
.services-hero .two-col-text p {
    color: var(--accent-dark);
    font-size: 18px;
    line-height: 28px;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
}
.services-hero .two-col-image img {
    border-radius: 32px;
    aspect-ratio: 16 / 9;
    max-height: none;
    object-fit: cover;
    object-position: center 85%;
}

/* --- About Specialise section: diagonal bottom edge (matches reference) --- */
.section-color1.about-specialise {
    padding-top: 117px; /* match reference outer wrapper top padding */
    padding-bottom: calc(80px + var(--slope)); /* 80px content spacing + slope for diagonal area */
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--slope)), 0 100%);
    margin-bottom: var(--slope-neg);
    z-index: 3;
}
.about-specialise .section-inner {
    max-width: 1536px;
    padding: 80px 24px; /* match reference container: 80px vertical + 24px horizontal */
}
.about-specialise .two-col {
    gap: 80px;
}
.about-specialise .two-col-image img {
    border-radius: 32px;
}

/* --- Nordic Bonds Section (bg image with text overlay, clip-path slantRight) --- */
.nordic-section {
    position: relative;
    min-height: 850px;
    overflow: hidden;
    color: #fff;
    background: var(--color2);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - var(--slope)));
    margin-bottom: var(--slope-neg);
    z-index: 2;
}
.nordic-section .section-bg img {
    opacity: 1;
    object-position: 50% 60%; /* match reference - show more of the upper landscape */
}
.nordic-section .section-inner {
    position: relative;
    z-index: 2;
    max-width: 1024px;
    /* slope overlap zone (behind swoopLeft curve) + 80px content gap */
    padding: calc(80px + var(--slope)) 24px var(--slope);
}
.nordic-section h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 400;
    line-height: 56px;
    margin-bottom: 28px;
}
.nordic-section p {
    font-family: var(--font-body);
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 28px;
}
.nordic-section p:last-child {
    margin-bottom: 0;
}

/* ========================================
   SERVICES
   ======================================== */
/* --- Services Split Section (matches Durable reference: 50/50 flex) --- */
.services-split {
    display: flex;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--slope)), 0 100%);
    margin-bottom: var(--slope-neg);
    z-index: 2;
}
.services-split-left {
    flex: 1;
    background: var(--color1);
    color: #fff;
    padding: 117px 0 116px;
    position: relative;
}
.services-split-content {
    padding: 80px 80px 80px 80px;
    max-width: 928px; /* 768px text area + 80px padding each side */
    margin-left: auto;
    margin-right: 0;
}
.services-split-content h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 400;
    line-height: 56px;
    color: #fff;
    margin-bottom: 28px;
    padding-bottom: 8px;
}
.services-split-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}
.services-split-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.services-list {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 28px;
    color: #fff;
    list-style: none;
    padding: 0;
    margin: 0;
}
.services-list li {
    padding: 0;
}

/* --- Specialise List (About) --- */
.specialise-list {
    list-style: none;
    padding: 0;
    margin-top: 8px;
}
.specialise-list li {
    position: relative;
    padding: 0 0 0 24px;
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 28px;
}
.specialise-list li::before {
    content: '\2013';
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 400;
    color: inherit;
}

/* ========================================
   TEAM (Durable team-list layout)
   3 alternating sections (2+2+3)
   Centered text, small photos
   ======================================== */
.team-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}
.team-section:nth-of-type(4) {
    padding-bottom: calc(120px + var(--slope));
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--slope)), 0 100%);
    margin-bottom: var(--slope-neg);
    z-index: 2;
}
.team-section .section-inner {
    position: relative;
    z-index: 2;
}
.team-row {
    display: grid;
    gap: 60px;
    align-items: start;
    justify-items: center;
}
.team-row-2 { grid-template-columns: 1fr 1fr; }
.team-row-3 { grid-template-columns: 1fr 1fr 1fr; }

.team-item {
    text-align: center;
    max-width: 400px;
}
.team-item-photo {
    width: 100%;
    aspect-ratio: 16/9;
    margin: 0 auto 24px;
    overflow: hidden;
    border-radius: 0;
}
.team-item-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.team-item h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 400;
    line-height: 40px;
    margin-bottom: 16px;
}
.team-item .role {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 20px;
}
.team-item p {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 20px;
}
/* Full-strength text colors matching Durable original */
.section-color1 .team-item h3,
.section-color2 .team-item h3 {
    color: #fff;
}
.section-color1 .team-item .role,
.section-color2 .team-item .role {
    color: #fff;
}
.section-color1 .team-item p,
.section-color2 .team-item p {
    color: #fff;
}
.section-color4 .team-item h3,
.section-color3 .team-item h3 {
    color: rgb(17,24,39);
}
.section-color4 .team-item .role,
.section-color3 .team-item .role {
    color: rgb(17,24,39);
}
.section-color4 .team-item p,
.section-color3 .team-item p {
    color: rgb(17,24,39);
}

/* ========================================
   CONTACT FORM
   ======================================== */
.contact-section {
    padding: 80px 0;
    background: var(--color4);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.contact-info h1 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 400;
    line-height: 56px;
    margin-bottom: 20px;
    color: var(--color1);
}
.contact-info p {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 24px;
}
.contact-info .info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-family: var(--font-body);
    font-size: 16px;
}
.contact-info .info-item strong {
    min-width: 60px;
    color: var(--color1);
}
.contact-form {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 6px;
    color: var(--color2);
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--color2);
    background: #fff;
    transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color1);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-success {
    background: #dcfce7;
    color: #166534;
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 600;
}
.form-error {
    background: #ffe0e0;
    color: #a00;
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 600;
}
.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    padding: 14px 32px;
    border: none;
    border-radius: 0;
    background: var(--color1);
    color: #fff;
    cursor: pointer;
    transition: background 0.2s;
    width: 100%;
}
.btn-submit:hover {
    background: var(--color2);
}

/* ========================================
   FOOTER (Durable exact match)
   Logo + stacked addresses + italic labels
   ======================================== */
.site-footer {
    background: var(--color1);
    color: rgba(255,255,255,0.8);
    padding: 140px 0 60px; /* increased top padding for more space above logo */
    text-align: center;
}
.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 48px;
}
.footer-logo {
    margin-bottom: 40px;
}
.footer-logo img {
    height: 80px;
    width: auto;
    margin: 0 auto;
}
.footer-brand {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}
.footer-offices {
    margin-bottom: 0;
}
.footer-office {
    margin-bottom: 4px;
}
.footer-office strong {
    display: block;
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    color: #fff;
}
.footer-office em {
    font-family: var(--font-body);
    font-size: 18px;
    font-style: italic;
    line-height: 28px;
    color: #fff;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .two-col { gap: 40px; }
    .team-row-3 { grid-template-columns: 1fr 1fr; }
    .header-inner { padding: 16px 32px; }
}

@media (max-width: 768px) {
    :root { --header-height: 80px; }
    .logo img { height: 50px; }
    .mobile-toggle { display: flex; }
    .main-nav {
        position: fixed;
        top: var(--header-height);
        left: 0; right: 0; bottom: 0;
        background: var(--color1);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 40px;
        gap: 8px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 9999;
    }
    .main-nav.open { transform: translateX(0); }
    .main-nav ul {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .main-nav a { font-size: 18px; padding: 14px 24px; }
    .btn-client-login { margin-left: 0; margin-top: 8px; font-size: 16px; }
    .two-col,
    .contact-grid { grid-template-columns: 1fr; }
    .two-col-image { order: -1; }
    .section { padding: 60px 0; }
    .section-inner { padding: 0 24px; }
    .header-inner { padding: 16px 24px; }
    .hero-carousel { min-height: 80vh; }
    .carousel-content h1 { font-size: 28px; line-height: 34px; }
    .page-hero-content h1 { font-size: 36px; line-height: 42px; }
    .section-cta h2 { font-size: 28px; line-height: 34px; }
    .two-col-text h2 { font-size: 28px; line-height: 34px; }
    .team-row-2,
    .team-row-3 { grid-template-columns: 1fr; }
    .team-item h3 { font-size: 24px; line-height: 30px; }
    .form-row { grid-template-columns: 1fr; }
    .services-list { columns: 1; }
    .site-header { height: var(--header-height); }
    .mission-section { height: auto; min-height: 600px; }
    .mission-content { gap: 40px; padding: var(--header-height) 24px 0; }
    .mission-heading { font-size: 28px; line-height: 34px; }
    .mission-image { max-width: 300px; }
    .track-record { flex-direction: column; }
    .track-record-text-content { padding: 60px 24px; max-width: none; margin-left: 0; }
    .track-record-text h2 { font-size: 28px; line-height: 34px; }
    .track-record-image { min-height: 300px; }
}

@media (max-width: 480px) {
    .carousel-content h1 { font-size: 24px; line-height: 30px; }
    .page-hero-content h1 { font-size: 24px; line-height: 30px; }
    .contact-form { padding: 24px; }
}
