/* ============================================
   Immiknow — Premium Global Website
   Design System & Styles
   ============================================ */

/* ---- Local Fonts ---- */
@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url('../fonts/playfair-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url('../fonts/playfair-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300 700;
    font-display: swap;
    src: url('../fonts/inter-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300 700;
    font-display: swap;
    src: url('../fonts/inter-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---- Design Tokens ---- */
:root {
    /* Colors — Navy + Gold premium palette */
    --navy-900: #0A1A2E;
    --navy-800: #0B1F3A;
    --navy-700: #122B4A;
    --navy-600: #1A3A5C;
    --navy-500: #2A4D72;

    --gold-600: #A88A56;
    --gold-500: #C5A572;
    --gold-400: #D4B886;
    --gold-300: #E3CDA0;

    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --light-gray: #F0F1F3;
    --border-gray: #E2E5E9;

    --gray-900: #111827;
    --gray-700: #374151;
    --gray-500: #6B7280;
    --gray-400: #9CA3AF;
    --gray-300: #D1D5DB;

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --container-max: 1200px;
    --section-padding: 100px 0;
    --section-padding-sm: 60px 0;

    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.25s ease;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(11, 31, 58, 0.06);
    --shadow-md: 0 8px 30px rgba(11, 31, 58, 0.10);
    --shadow-lg: 0 20px 60px rgba(11, 31, 58, 0.15);
}

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

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

body {
    font-family: var(--font-body);
    color: var(--gray-900);
    background: var(--white);
    line-height: 1.7;
    font-size: 15px;
    font-weight: 400;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul { list-style: none; }

/* ---- Container ---- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- Section Base ---- */
.section {
    padding: var(--section-padding);
    position: relative;
}

.section-dark {
    background: var(--navy-800);
    color: var(--white);
}

.section-light-gray {
    background: var(--off-white);
}

/* ---- Section Header ---- */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
}

.section-eyebrow {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-bottom: 14px;
    display: block;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.25;
    color: var(--navy-800);
    margin-bottom: 16px;
}

.section-dark .section-title {
    color: var(--white);
}

.section-desc {
    font-size: 16px;
    color: var(--gray-500);
    line-height: 1.7;
}

.section-desc-light {
    color: rgba(255, 255, 255, 0.7);
}

.text-gold {
    color: var(--gold-500);
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
}

.btn-gold {
    background: var(--gold-500);
    color: var(--navy-900);
    border: 1px solid var(--gold-500);
}

.btn-gold:hover {
    background: var(--gold-600);
    border-color: var(--gold-600);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(197, 165, 114, 0.35);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 44px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
}

/* ---- Header ---- */
/* Premium light header: warm off-white base, gold accents. Logo (navy text)
   reads perfectly on the light backdrop — no logo modification needed. */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    transition: var(--transition);
    background: linear-gradient(180deg, rgba(250, 248, 244, 0.93) 0%, rgba(248, 245, 240, 0.93) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(197, 165, 114, 0.15);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
}

/* Gold gradient accent line — very refined, centered glow */
#header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    max-width: 800px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(197, 165, 114, 0.40) 30%, rgba(197, 165, 114, 0.60) 50%, rgba(197, 165, 114, 0.40) 70%, transparent 100%);
    pointer-events: none;
}

#header.scrolled {
    background: linear-gradient(180deg, rgba(250, 248, 244, 0.98) 0%, rgba(248, 245, 240, 0.98) 100%);
    padding: 12px 0;
    box-shadow:
        0 4px 24px rgba(10, 26, 46, 0.06),
        0 1px 0 rgba(197, 165, 114, 0.08);
}

/* Scrolled: gold accent line intensifies slightly */
#header.scrolled::after {
    background: linear-gradient(90deg, transparent 0%, rgba(197, 165, 114, 0.55) 30%, rgba(197, 165, 114, 0.75) 50%, rgba(197, 165, 114, 0.55) 70%, transparent 100%);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Logo — left completely untouched (now perfectly legible on warm light bg) */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy-900);
    letter-spacing: 0.5px;
}

/* Nav — clean & refined */
.nav-menu {
    display: flex;
    gap: 36px;
}

.nav-link {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--navy-600);
    position: relative;
    padding: 6px 0;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

/* Active/hover indicator: elegant gold dot */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--gold-500);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--navy-800);
}

.nav-link:hover::after,
.nav-link.active::after {
    opacity: 1;
}

/* CTA — gold, premium feel */
.header-cta {
    padding: 11px 28px;
    font-size: 13px;
    background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-400) 100%);
    color: var(--navy-900);
    border: none;
    border-radius: 4px;
    letter-spacing: 0.6px;
    font-weight: 600;
    box-shadow:
        0 4px 16px rgba(197, 165, 114, 0.30),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    transition: all 0.35s ease;
}

.header-cta:hover {
    background: linear-gradient(135deg, var(--gold-600) 0%, var(--gold-500) 100%);
    color: var(--navy-900);
    transform: translateY(-2px);
    box-shadow:
        0 8px 28px rgba(197, 165, 114, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.30);
}
    transition: all 0.35s ease;
}

.header-cta:hover {
    background: linear-gradient(135deg, var(--gold-600) 0%, var(--gold-500) 100%);
    color: var(--navy-900);
    transform: translateY(-2px);
    box-shadow:
        0 8px 28px rgba(197, 165, 114, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.30);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
}

.menu-toggle span {
    width: 26px;
    height: 2px;
    background: var(--navy-500);
    transition: var(--transition);
    display: block;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ---- Hero ---- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/hero-bg.jpg') center/cover no-repeat;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 26, 46, 0.92) 0%, rgba(11, 31, 58, 0.78) 50%, rgba(18, 43, 74, 0.85) 100%);
    z-index: -1;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 820px;
    padding: 40px 24px;
}

.hero-eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    max-width: 640px;
    margin-bottom: 36px;
}

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

/* Hero Stats Bar */
.hero-stats {
    width: 100%;
    padding: 32px 0;
    background: rgba(10, 26, 46, 0.6);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(197, 165, 114, 0.2);
}

.stats-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.stat-item {
    text-align: center;
    padding: 0 40px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--gold-500);
    line-height: 1;
}

.stat-plus {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--gold-500);
}

.stat-label {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 6px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(197, 165, 114, 0.3);
}

/* ---- Services ---- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-gray);
}

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

.service-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 40%, rgba(11, 31, 58, 0.6) 100%);
}

.service-number {
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    opacity: 0.9;
}

.service-body {
    padding: 28px 24px;
}

.service-body h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--navy-800);
    margin-bottom: 12px;
}

.service-body p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 18px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-link span {
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: var(--gold-500);
}

.service-link:hover span {
    transform: translateX(4px);
}

/* ---- About ---- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.about-image-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--gold-500);
    color: var(--navy-900);
    padding: 24px 32px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.badge-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.badge-text {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 4px;
}

.section-dark .section-eyebrow {
    color: var(--gold-400);
}

.about-content .section-title {
    color: var(--white);
}

.about-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-features {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-feature {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: rgba(197, 165, 114, 0.15);
    border: 1px solid rgba(197, 165, 114, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-500);
}

.about-feature h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 6px;
}

.about-feature p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* ---- Timeline ---- */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--gold-500) 0%, var(--border-gray) 100%);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 0 40px 40px 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    margin-left: 50%;
    padding: 0 0 40px 40px;
    text-align: left;
}

.timeline-dot {
    position: absolute;
    top: 6px;
    right: -7px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--gold-500);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 2px var(--gold-300);
    z-index: 2;
}

.timeline-item:nth-child(even) .timeline-dot {
    right: auto;
    left: -7px;
}

.timeline-content {
    display: inline-block;
    text-align: left;
}

.timeline-item:nth-child(odd) .timeline-content {
    text-align: right;
}

.timeline-year {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-600);
    margin-bottom: 6px;
}

.timeline-content h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--navy-800);
    margin-bottom: 6px;
}

.timeline-content p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ---- Features ---- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.feature-card {
    text-align: center;
    padding: 48px 32px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border-gray);
    transition: var(--transition);
}

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

.feature-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: var(--navy-800);
    color: var(--gold-500);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.feature-card:hover .feature-card-icon {
    background: var(--gold-500);
    color: var(--navy-900);
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--navy-800);
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
}

.features-pillars {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.pillar {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pillar-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-500);
}

.pillar-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy-800);
    letter-spacing: 0.5px;
}

/* ---- Data / Statistics ---- */
.data-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.data-charts {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.chart-item {
    width: 100%;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.chart-label {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
}

.chart-value {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gold-500);
}

.chart-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.chart-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold-600) 0%, var(--gold-400) 100%);
    border-radius: 4px;
    width: 0;
    transition: width 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.data-counters {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.counter-card {
    text-align: center;
    padding: 28px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(197, 165, 114, 0.15);
    border-radius: 12px;
    transition: var(--transition);
}

.counter-card:hover {
    background: rgba(197, 165, 114, 0.08);
    border-color: rgba(197, 165, 114, 0.4);
    transform: translateY(-4px);
}

.counter-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-500);
    line-height: 1;
}

.counter-plus {
    color: var(--gold-500);
    font-size: 2.5rem;
    font-family: var(--font-heading);
}

.counter-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 8px;
}

/* ---- Cases Carousel ---- */
.cases-slider-wrap {
    max-width: 900px;
    margin: 0 auto;
}

.cases-slider {
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 12px;
}

.cases-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.case-card {
    flex: 0 0 100%;
    display: flex;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-gray);
    min-height: 320px;
}

/* Approval Letter — Left Column */
.case-letter {
    flex: 0 0 38%;
    position: relative;
    background: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.case-letter img {
    width: 100%;
    height: auto;
    max-height: 340px;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Case Text — Right Column */
.case-body {
    flex: 1;
    padding: 28px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.case-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    background: rgba(11, 31, 58, 0.08);
    color: var(--navy-800);
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 10px;
    width: fit-content;
}

.case-body h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy-800);
    margin-bottom: 10px;
    line-height: 1.3;
}

.case-intro {
    font-size: 13.5px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 14px;
}

/* Case Timeline */
.case-timeline {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    padding: 12px 0;
    margin-bottom: 12px;
    border-top: 1px solid var(--border-gray);
    border-bottom: 1px solid var(--border-gray);
    flex-wrap: wrap;
}

.case-tl-item {
    text-align: center;
    min-width: 0;
    flex: 1;
}

.case-tl-label {
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--gold-600);
    margin-bottom: 3px;
}

.case-tl-date {
    display: block;
    font-size: 11px;
    font-weight: 500;
    color: var(--gray-500);
    white-space: nowrap;
}

.case-tl-arrow {
    color: var(--gold-500);
    font-size: 14px;
    padding-top: 6px;
    flex-shrink: 0;
}

.case-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid var(--border-gray);
}

.case-duration {
    font-size: 12px;
    color: var(--gray-500);
}

.case-result {
    font-size: 12px;
    font-weight: 600;
    color: #16A34A;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Case Navigation */
.cases-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.cases-nav-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--border-gray);
    color: var(--navy-800);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.cases-nav-btn:hover {
    background: var(--navy-800);
    color: var(--white);
    border-color: var(--navy-800);
}

.cases-dots {
    display: flex;
    gap: 8px;
}

.cases-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-300);
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    padding: 0;
}

.cases-dot.active {
    background: var(--gold-500);
    width: 24px;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .case-card {
        flex-direction: column;
    }

    .case-letter {
        flex: none;
        padding: 20px;
        min-height: 200px;
    }

    .case-letter img {
        max-height: 240px;
    }

    .case-body {
        padding: 20px;
    }

    .cases-nav-btn {
        width: 36px;
        height: 36px;
    }
}

/* ---- Client Approval Letter ---- */
.approval-showcase {
    max-width: 800px;
    margin: 0 auto 50px;
}

.approval-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-gray);
}

.approval-img {
    position: relative;
    background: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    min-height: 280px;
}

.approval-img img {
    max-width: 100%;
    max-height: 320px;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.approval-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    background: rgba(22, 163, 74, 0.9);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
}

.approval-info {
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--navy-800);
    color: var(--white);
}

.approval-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gold-500);
    margin-bottom: 14px;
}

.approval-desc {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.75);
}

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

    .approval-img {
        min-height: 200px;
    }

    .approval-img img {
        max-height: 240px;
    }

    .approval-info {
        padding: 24px 20px;
    }
}

/* ---- Testimonials ---- */
.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card {
    min-width: 100%;
    padding: 0 20px;
    text-align: center;
}

.testimonial-stars {
    color: var(--gold-500);
    font-size: 18px;
    letter-spacing: 3px;
    margin-bottom: 24px;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-style: italic;
    font-weight: 400;
    line-height: 1.7;
    color: var(--navy-800);
    margin-bottom: 32px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.testimonial-author img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold-300);
}

.testimonial-author h4 {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--navy-800);
    text-align: left;
}

.testimonial-author span {
    font-size: 13px;
    color: var(--gray-500);
    text-align: left;
    display: block;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 36px;
}

.testimonial-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-gray);
    background: var(--white);
    color: var(--navy-800);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.testimonial-btn:hover {
    background: var(--navy-800);
    color: var(--white);
    border-color: var(--navy-800);
}

.testimonial-dots {
    display: flex;
    gap: 8px;
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-300);
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dot.active {
    background: var(--gold-500);
    width: 24px;
    border-radius: 4px;
}

/* ---- Qualifications Showcase ---- */
.qual-slider-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.qual-slider {
    overflow: hidden;
    flex: 1;
}

.qual-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.qual-item {
    flex: 0 0 calc((100% - 60px) / 4);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background: var(--white);
    transition: var(--transition);
}

.qual-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.qual-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.qual-nav {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--border-gray);
    background: var(--white);
    color: var(--navy-800);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2;
}

.qual-nav:hover {
    background: var(--navy-800);
    border-color: var(--navy-800);
    color: var(--gold-500);
}

.qual-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.qual-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: var(--border-gray);
    cursor: pointer;
    transition: var(--transition-fast);
    padding: 0;
}

.qual-dot.active {
    background: var(--gold-500);
    width: 28px;
    border-radius: 4px;
}

/* ---- Team Carousel ---- */
.team-slider-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.team-slider {
    overflow: hidden;
    flex: 1;
}

.team-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.team-card {
    flex: 0 0 calc((100% - 60px) / 4);
    text-align: center;
    transition: var(--transition);
}

.team-img {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 16px;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: grayscale(20%);
}

.team-card:hover .team-img img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.team-social {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 16px;
    background: linear-gradient(0deg, rgba(11, 31, 58, 0.9) 0%, transparent 100%);
    display: flex;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}

.team-card:hover .team-social {
    opacity: 1;
    transform: translateY(0);
}

.team-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.team-social a:hover {
    background: var(--gold-500);
    color: var(--navy-900);
}

.team-body h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.team-body p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.3px;
}

.team-nav {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--border-gray);
    background: var(--white);
    color: var(--navy-800);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2;
}

.team-nav:hover {
    background: var(--navy-800);
    border-color: var(--navy-800);
    color: var(--gold-500);
}

.team-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.team-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: var(--border-gray);
    cursor: pointer;
    transition: var(--transition-fast);
    padding: 0;
}

.team-dot.active {
    background: var(--gold-500);
    width: 28px;
    border-radius: 4px;
}

/* ---- CTA Section ---- */
.cta-section {
    position: relative;
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/cta-bg.jpg') center/cover no-repeat;
    z-index: -2;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 31, 58, 0.88);
    z-index: -1;
}

.cta-content {
    max-width: 680px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.25;
}

.cta-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 36px;
}

/* ---- Contact ---- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.contact-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 10px;
    background: var(--navy-800);
    color: var(--gold-500);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy-800);
    margin-bottom: 6px;
}

.contact-item p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
}

.contact-item a {
    color: var(--gold-600);
    font-weight: 500;
}

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

/* Contact Form */
.contact-form-wrap {
    background: var(--off-white);
    border-radius: 12px;
    padding: 40px;
    border: 1px solid var(--border-gray);
}

.contact-form h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy-800);
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

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

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy-800);
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-gray);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--gray-900);
    background: var(--white);
    transition: var(--transition-fast);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold-500);
    box-shadow: 0 0 0 3px rgba(197, 165, 114, 0.12);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-note {
    font-size: 12px;
    color: var(--gray-400);
    text-align: center;
    margin-top: 14px;
}

/* ---- Footer ---- */
.footer {
    background: linear-gradient(180deg, rgba(250, 248, 244, 0.98) 0%, rgba(248, 245, 240, 0.98) 100%);
    color: var(--navy-600);
    padding: 70px 0 30px;
    border-top: 1px solid rgba(197, 165, 114, 0.15);
    position: relative;
}

/* Gold gradient accent line at top of footer — matches header */
.footer::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    max-width: 800px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(197, 165, 114, 0.50) 30%, rgba(197, 165, 114, 0.75) 50%, rgba(197, 165, 114, 0.50) 70%, transparent 100%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 320px;
    color: var(--navy-500);
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(18, 42, 74, 0.06);
    color: var(--navy-500);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold-500);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy-800);
    margin-bottom: 18px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 14px;
    color: var(--navy-500);
    transition: var(--transition-fast);
}

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

.footer-bottom {
    border-top: 1px solid rgba(197, 165, 114, 0.15);
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--navy-500);
    opacity: 0.55;
    margin-bottom: 4px;
}

/* ---- Cookie Consent Banner ---- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: var(--navy-900);
    border-top: 1px solid rgba(197, 165, 114, 0.25);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.4);
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 18px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.65;
    flex: 1;
    min-width: 260px;
    margin: 0;
}

.cookie-text a {
    color: var(--gold-500);
    text-decoration: underline;
    white-space: nowrap;
}

.cookie-text a:hover {
    color: var(--gold-300);
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition-fast);
    border: none;
}

.cookie-btn-accept {
    background: var(--gold-500);
    color: var(--navy-900);
}

.cookie-btn-accept:hover {
    background: var(--gold-400);
}

.cookie-btn-outline {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.cookie-btn-outline:hover {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .cookie-banner-inner {
        flex-direction: column;
        align-items: stretch;
        padding: 16px 24px;
        gap: 14px;
    }

    .cookie-actions {
        justify-content: stretch;
    }

    .cookie-btn {
        flex: 1;
        text-align: center;
    }
}

/* ---- Scroll to Top ---- */
#scrollTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 46px;
    height: 46px;
    border-radius: 8px;
    background: var(--navy-800);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-md);
}

#scrollTop.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#scrollTop:hover {
    background: var(--gold-500);
    color: var(--navy-900);
    transform: translateY(-3px);
}

/* ---- Reveal Animation ---- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Global Offices ---- */
.offices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 40px;
}

.office-card {
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 14px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

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

.office-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.office-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.95);
}

.office-card:hover .office-img img {
    transform: scale(1.08);
    filter: brightness(1);
}

.office-overlay {
    position: absolute;
    top: 14px;
    left: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.office-pin {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(11, 31, 58, 0.85);
    border: 1.5px solid var(--gold-500);
    color: var(--gold-500);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
}

.office-region {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
    background: rgba(11, 31, 58, 0.85);
    padding: 5px 12px;
    border-radius: 20px;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(197, 165, 114, 0.3);
}

.office-status {
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 20px;
    backdrop-filter: blur(6px);
}

.office-status-active {
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, 0.4);
}

.office-status-upcoming {
    background: rgba(197, 165, 114, 0.2);
    color: var(--gold-400);
    border: 1px solid rgba(197, 165, 114, 0.4);
}

.office-body {
    padding: 22px 24px 26px;
}

.office-body h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--navy-800);
    margin-bottom: 4px;
}

.office-country {
    font-size: 13px;
    font-weight: 500;
    color: var(--gold-600);
    letter-spacing: 0.3px;
    margin-bottom: 12px;
}

.office-desc {
    font-size: 13.5px;
    line-height: 1.65;
    color: var(--gray-700);
}

/* ---- Offices Stats Bar ---- */
.offices-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 36px 40px;
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
}

.offices-stat-item {
    text-align: center;
    flex: 1;
    min-width: 0;
}

.offices-stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--navy-800);
    line-height: 1;
    margin-bottom: 6px;
}

.offices-stat-number::after {
    content: '';
    display: block;
    width: 36px;
    height: 3px;
    background: var(--gold-500);
    margin: 10px auto 0;
    border-radius: 2px;
}

.offices-stat-label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-top: 14px;
}

.offices-stat-divider {
    width: 1px;
    height: 60px;
    background: var(--border-gray);
    margin: 0 32px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .offices-stats {
        flex-direction: column;
        gap: 24px;
        padding: 32px 24px;
    }

    .offices-stat-divider {
        width: 80%;
        height: 1px;
        margin: 0;
    }

    .offices-stat-number {
        font-size: 2rem;
    }
}

/* ---- Toast Notification ---- */
.toast {
    position: fixed;
    top: 90px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    min-width: 340px;
    max-width: 440px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(11, 31, 58, 0.18);
    border-left: 4px solid #16A34A;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateX(120%);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0.4s;
}

.toast.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.toast.error {
    border-left-color: #DC2626;
}

.toast-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(22, 163, 74, 0.12);
    color: #16A34A;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast.error .toast-icon {
    background: rgba(220, 38, 38, 0.12);
    color: #DC2626;
}

.toast-content {
    flex: 1;
}

.toast-content h4 {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--navy-800);
    margin-bottom: 2px;
}

.toast-content p {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.5;
}

.toast-close {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border: none;
    background: transparent;
    color: var(--gray-400);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: var(--transition-fast);
}

.toast-close:hover {
    background: var(--light-gray);
    color: var(--gray-700);
}

/* ---- Responsive ---- */

/* Tablet */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-badge {
        bottom: -16px;
        right: 16px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto 60px;
    }

    .data-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cases-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .team-card {
        flex: 0 0 calc((100% - 40px) / 3);
    }

    .qual-item {
        flex: 0 0 calc((100% - 40px) / 3);
    }

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

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

    .timeline-line {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding: 0 0 30px 50px;
        text-align: left;
    }

    .timeline-item:nth-child(even) {
        margin-left: 0;
        padding: 0 0 30px 50px;
        text-align: left;
    }

    .timeline-item:nth-child(odd) .timeline-content {
        text-align: left;
    }

    .timeline-dot {
        left: 13px;
        right: auto;
    }

    .timeline-item:nth-child(even) .timeline-dot {
        left: 13px;
    }

    .offices-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .section {
        padding: var(--section-padding-sm);
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background: linear-gradient(180deg, rgba(250, 248, 244, 0.99) 0%, rgba(248, 245, 240, 0.99) 100%);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        flex-direction: column;
        padding: 80px 32px 32px;
        gap: 0;
        transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        overflow-y: auto;
        box-shadow: -8px 0 30px rgba(10, 26, 46, 0.10);
        border-left: 1px solid rgba(197, 165, 114, 0.20);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        display: block;
        padding: 16px 0;
        font-size: 16px;
        color: var(--navy-600);
        border-bottom: 1px solid rgba(197, 165, 114, 0.12);
    }

    .nav-link::after {
        display: none;
    }

    .header-cta {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.3rem;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

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

    .stats-bar {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .stat-item {
        padding: 0 20px;
    }

    .stat-divider {
        display: none;
    }

    .stat-number,
    .stat-plus {
        font-size: 2.2rem;
    }

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

    .features-pillars {
        gap: 24px;
        flex-direction: column;
        align-items: center;
    }

    .data-counters {
        grid-template-columns: 1fr;
    }

    .team-card {
        flex: 0 0 calc((100% - 20px) / 2);
    }

    .qual-item {
        flex: 0 0 calc((100% - 20px) / 2);
    }

    .testimonial-text {
        font-size: 1.15rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .contact-form-wrap {
        padding: 28px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        padding: 20px 0;
    }

    .footer-bottom p {
        font-size: 12px;
    }

    #scrollTop {
        bottom: 20px;
        right: 20px;
    }

    .toast {
        left: 16px;
        right: 16px;
        min-width: auto;
        max-width: none;
        top: 80px;
    }

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

/* Small Mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.9rem;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .team-card {
        flex: 0 0 100%;
    }

    .qual-item {
        flex: 0 0 100%;
    }

    .team-slider-wrap {
        position: relative;
        padding: 0 16px;
    }

    .team-img {
        /*height: 240px;*/
    }

    .team-img img {
        object-position: center top;
    }

    .team-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 36px;
        height: 36px;
        background: rgba(255, 255, 255, 0.92);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
        z-index: 3;
    }

    .team-prev {
        left: 24px;
    }

    .team-next {
        right: 24px;
    }

    .team-body p {
        font-size: 12px;
        line-height: 1.5;
        padding: 0 8px;
    }

    .office-img {
        height: 180px;
    }

    .office-body {
        padding: 18px 20px 22px;
    }

    .qual-item img {
        height: 200px;
    }

    .about-image-badge {
        position: relative;
        bottom: auto;
        right: auto;
        display: inline-block;
        margin-top: 16px;
    }

    .features-grid {
        gap: 20px;
    }

    .feature-card {
        padding: 36px 24px;
    }
}
