/* ==========================================================================
   GSC INTERNATIONAL LAW FIRM - MAIN STYLESHEET
   Brand Primary: Burgundy #800020
   Typography: Sans-Serif (Plus Jakarta Sans, Inter)
   ========================================================================== */

:root {
    /* STRICT COLOR PALETTE: Burgundy #800020, White, and Off-White */
    --color-burgundy: #800020;
    --color-burgundy-dark: #5c0017;
    --color-burgundy-light: #9e0028;
    --color-burgundy-soft: #fdf2f4;
    --color-burgundy-border: #f3c7d0;
    
    --color-white: #ffffff;
    --color-offwhite: #f8fafc;
    --color-bg-light: #fcfcfd;
    --color-bg-slate: #f4f6f8;
    --color-border: #e5e8ec;
    
    --color-dark: #140606;
    --color-dark-surface: #140606;
    --color-charcoal: #140606;
    --color-slate: #140606;
    --color-slate-light: #140606; /* Keep light slate for borders/minor things */
    
    --font-sans: 'DM Sans', sans-serif;
    --font-heading: 'EB Garamond', serif;
    
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
    --shadow-burgundy: 0 8px 24px rgba(128, 0, 32, 0.2);
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-pill: 9999px;
    
    --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
    font-family: var(--font-sans);
    color: var(--color-charcoal);
    background-color: var(--color-bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul, ol {
    list-style: none;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

.container-wide {
    max-width: 1600px;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .container, .container-wide {
        padding: 0 20px;
    }
}

.text-center { text-align: center; }
.text-white { color: var(--color-white) !important; }
.text-gold { color: var(--color-gold) !important; }
.text-muted { color: var(--color-slate-light); }

.py-80 { padding-top: 80px; padding-bottom: 80px; }
.py-100 { padding-top: 100px; padding-bottom: 100px; }
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mt-50 { margin-top: 50px; }
.mb-30 { margin-bottom: 30px; }
.mb-60 { margin-bottom: 60px; }
.w-100 { width: 100%; }

/* ==========================================================================
   HEADER & NAVIGATION (Matches Mockup Screenshot)
   ========================================================================== */

.site-header {
    background-color: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.header-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo img {
    height: 70px;
    width: auto;
}

/* Language Switcher Dropdown (Top Right) */
.lang-switcher-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}

.lang-dropdown-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    color: var(--color-charcoal);
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.lang-dropdown-btn:hover {
    background-color: var(--color-bg-slate);
}

.flag-icon {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

.dropdown-chevron {
    transition: transform 0.2s ease;
}

.lang-dropdown-btn[aria-expanded="true"] .dropdown-chevron {
    transform: rotate(180deg);
}

.lang-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    min-width: 160px;
    padding: 6px;
    z-index: 1001;
}

.lang-dropdown-menu.show {
    display: block;
    animation: fadeInDown 0.2s ease-out;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.lang-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    font-size: 0.875rem;
    color: var(--color-charcoal);
    border-radius: var(--radius-sm);
}

.lang-item:hover {
    background-color: var(--color-burgundy-soft);
    color: var(--color-burgundy);
}

.lang-item.active {
    font-weight: 600;
    color: var(--color-burgundy);
}

.check-icon {
    margin-left: auto;
    stroke: var(--color-burgundy);
}

/* Main Navigation Bar */
.main-navigation {
    border-top: 1px solid #f0f2f5;
    background: var(--color-white);
}

.nav-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    display: inline-block;
    padding: 16px 0;
    font-size: 16px;
    font-weight: 400;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: -0.5px;
    color: #140606;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--color-burgundy);
    transition: width 0.25s ease;
}

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

.nav-chevron {
    margin-left: 4px;
    transition: transform 0.2s ease;
}



/* ==========================================================================
   MULTI-LEVEL CASCADING MEGA MENU (UZMANLIK ALANLARIMIZ)
   ========================================================================== */

.nav-item.has-mega-menu {
    position: static;
}

.main-navigation {
    position: relative;
}

.mega-menu-container {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.18);
    border-top: 1px solid #e2e8f0;
    border-bottom: 3px solid var(--color-burgundy);
    display: none;
    z-index: 1000;
    animation: fadeInMega 0.2s ease-out;
}

@keyframes fadeInMega {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Hover Bridge: Prevents the menu from closing when the mouse moves over a tiny gap */
.nav-item.has-mega-menu::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 15px;
    background: transparent;
}

/* Show mega menu on click (is-active class) instead of hover */
.nav-item.has-mega-menu.is-active .mega-menu-container {
    display: block;
}

.nav-item.has-mega-menu.is-active .nav-chevron {
    transform: rotate(180deg);
}

.mobile-mega-menu-container {
    display: none;
}

.mega-menu-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    min-height: 430px;
}

/* Column 1: Primary Categories */
.mega-col-primary {
    width: 360px;
    border-right: 1px solid #f1f5f9;
    padding: 14px 0;
    flex-shrink: 0;
    background-color: #ffffff;
}

.mega-item-l1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    color: #140606;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: -0.5px;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.2s ease;
    cursor: pointer;
}

.mega-item-l1:hover,
.mega-item-l1.active {
    background-color: #f8fafc;
    color: var(--color-burgundy);
}

.mega-item-l1 .item-arrow {
    opacity: 0.6;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    transition: transform 0.15s ease, color 0.15s ease;
}

.mega-item-l1:hover .item-arrow,
.mega-item-l1.active .item-arrow {
    opacity: 1;
    color: var(--color-burgundy);
    transform: translateX(4px);
}

/* Sub-panels Container (Columns 2 & 3) */
.mega-subpanels-wrapper {
    flex-grow: 1;
    display: flex;
    background: #ffffff;
}

.mega-panel-l2 {
    display: none;
    width: 100%;
    height: 100%;
}

.mega-panel-l2.active {
    display: flex;
}

/* Column 2: Region / Sub-Category */
.mega-col-secondary {
    width: 280px;
    border-right: 1px solid #f1f5f9;
    padding: 14px 0;
    background-color: #f8fafc;
    flex-shrink: 0;
}

.mega-item-l2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    color: #140606;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: -0.5px;
    transition: all 0.15s ease;
    cursor: pointer;
    margin: 2px 8px;
    border-radius: 4px;
}

.mega-item-l2:hover,
.mega-item-l2.active {
    color: var(--color-burgundy);
    background-color: #ffffff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.mega-item-l2 .item-arrow {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-burgundy);
}

/* Column 3: Leaf Services / Programs */
.mega-col-tertiary {
    flex-grow: 1;
    padding: 24px 32px;
    background-color: #ffffff;
}

.mega-panel-l3 {
    display: none;
}

.mega-panel-l3.active {
    display: block;
    animation: fadeInMega 0.15s ease-out;
}

.mega-panel-l3-title {
    font-size: 0.8125rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f1f5f9;
}

.mega-l3-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mega-item-l3 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #140606;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: -0.5px;
    padding: 10px 14px;
    border-radius: 6px;
    transition: all 0.15s ease;
}

.mega-item-l3:hover {
    color: var(--color-burgundy);
    background-color: #fdf2f4;
}

.mega-item-l3 svg {
    color: var(--color-burgundy);
    flex-shrink: 0;
}

/* Pill CTA Button (Request a Call Back ↗) */
.btn-callback-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--color-burgundy);
    border: 1.5px solid var(--color-burgundy);
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    font-size: 16px;
    font-weight: 400;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: -0.5px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-callback-pill:hover {
    background-color: var(--color-burgundy);
    color: var(--color-white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-burgundy);
}

.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-charcoal);
    margin: 5px 0;
    transition: 0.3s;
}

.mobile-nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.mobile-nav-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   PAGE HEADER BANNER (For Subpages: About, Expertise, Team, Presence, etc.)
   ========================================================================== */

.page-header-banner {
    background: linear-gradient(135deg, #111822 0%, #1c2633 100%);
    color: #ffffff;
    padding: 70px 0 60px;
    border-bottom: 3px solid var(--color-burgundy);
    position: relative;
    overflow: hidden;
}

.about-header-banner {
    background: url('../images/about-header-bg.jpg') no-repeat center center;
    background-size: cover;
    padding: 100px 0;
    border-bottom: none;
}

.about-header-banner::before {
    display: none;
}

.about-header-banner .page-main-heading {
    margin-bottom: 0;
    font-family: var(--font-heading);
    font-size: 3.25rem;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.page-header-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 50%, rgba(128, 0, 32, 0.25) 0%, transparent 60%);
    pointer-events: none;
}

.page-eyebrow {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-burgundy);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.page-main-heading {
    font-size: 2.75rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 14px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.page-lead-desc {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 750px;
    line-height: 1.6;
}

.breadcrumb-trail {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb-trail a {
    color: var(--color-burgundy);
    font-weight: 500;
}

.breadcrumb-trail a:hover {
    text-decoration: underline;
}

.breadcrumb-trail .current {
    color: #ffffff;
    font-weight: 600;
}

/* ==========================================================================
   BUTTONS & UI COMPONENTS
   ========================================================================== */

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--color-burgundy);
    color: var(--color-white);
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9375rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: var(--color-burgundy-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-burgundy);
    color: var(--color-white);
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: transparent;
    color: var(--color-white);
    border: 1.5px solid var(--color-white);
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-outline-white:hover {
    background-color: var(--color-white);
    color: var(--color-burgundy);
    transform: translateY(-2px);
}

.btn-burgundy-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--color-burgundy);
    color: var(--color-white);
    border: 1px solid var(--color-gold);
    padding: 14px 30px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-burgundy-gold:hover {
    background-color: var(--color-gold);
    color: var(--color-dark);
}

.btn-white-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--color-white);
    color: var(--color-burgundy);
    padding: 14px 32px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-white-gold:hover {
    background-color: var(--color-burgundy-soft);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ==========================================================================
   HERO SLIDER SECTION
   ========================================================================== */

.hero-slider-section {
    position: relative;
    height: 640px;
    overflow: hidden;
    background-color: var(--color-dark);
}

.slider-viewport {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
}

.slider-slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-container {
    padding-left: 80px;
    padding-right: 80px;
}

.slide-content-box {
    max-width: 780px;
    color: var(--color-white);
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-burgundy);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.slide-headline {
    font-size: 3rem;
    font-weight: 400;
    font-family: var(--font-heading);
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--color-white);
}

.slide-subtext {
    font-size: 1.125rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 36px;
    max-width: 650px;
}

.slide-cta-group {
    display: flex;
    align-items: center;
    gap: 16px;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    backdrop-filter: blur(8px);
    transition: var(--transition);
}

.slider-arrow:hover {
    background-color: var(--color-burgundy);
    border-color: var(--color-burgundy);
}

.prev-arrow { left: 24px; }
.next-arrow { right: 24px; }

/* ==========================================================================
   HOME CORPORATE INTRO SECTION (PRESTIGE EDITORIAL)
   ========================================================================== */

.home-intro-section {
    background-color: #ffffff;
    padding: 85px 0 75px;
    position: relative;
    border-bottom: 1px solid #edf2f7;
}

.home-intro-wrapper {
    max-width: 1280px;
    margin: 0 auto;
}

.home-intro-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-burgundy);
    margin-bottom: 18px;
    padding: 4px 12px;
    background: rgba(128, 0, 32, 0.05);
    border-radius: 4px;
}

.home-intro-headline {
    font-family: var(--font-heading);
    font-size: 2.35rem;
    font-weight: 600;
    line-height: 1.35;
    color: #140606;
    letter-spacing: -0.015em;
    margin-bottom: 32px;
}

.home-intro-paragraphs {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.home-intro-paragraphs p {
    font-size: 1.0625rem;
    line-height: 1.85;
    color: #140606;
    font-weight: 400;
    margin: 0;
}



.home-intro-footer {
    margin-top: 36px;
    padding-top: 20px;
}

.home-intro-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 700;
    color: #140606;
    text-decoration: none;
    padding-bottom: 4px;
    border-bottom: 2px solid #140606;
    transition: all 0.25s ease;
}

.home-intro-link svg {
    transition: transform 0.25s ease;
}

.home-intro-link:hover {
    color: var(--color-burgundy);
    border-color: var(--color-burgundy);
}

.home-intro-link:hover svg {
    transform: translate(3px, -3px);
    stroke: var(--color-burgundy);
}

/* ==========================================================================
   MILESTONES & STATS RIBBON (INTEGRATED CLEAN LUXURY)
   ========================================================================== */

.milestone-ribbon-section {
    background-color: #f8fafc;
    border-bottom: 1px solid var(--color-border);
    padding: 45px 0;
}

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

.milestone-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 10px 16px;
    border-right: 1px solid #e2e8f0;
}

.milestone-box:last-child {
    border-right: none;
}

.milestone-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-burgundy);
    line-height: 1;
    letter-spacing: -0.02em;
}

.milestone-info h4 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #140606;
    margin-bottom: 4px;
}

.milestone-info p {
    font-size: 0.8125rem;
    color: #64748b;
    line-height: 1.45;
}

/* ==========================================================================
   SECTION HEADERS
   ========================================================================== */

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-burgundy);
    margin-bottom: 10px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    color: #140606;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    position: relative;
    padding-bottom: 14px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: var(--color-burgundy);
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    font-size: 1.0625rem;
    color: #140606;
    max-width: 620px;
    margin: 0 auto;
}

/* ==========================================================================
   AREAS OF EXPERTISE & DETAIL PAGES
   ========================================================================== */

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 50px;
}

.expertise-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 36px 30px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}

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

.card-top-icon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.icon-burgundy-circle {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: var(--color-burgundy-soft);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-num {
    font-size: 1.125rem;
    font-weight: 800;
    color: #d1d5db;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.card-excerpt {
    font-size: 0.9375rem;
    color: var(--color-slate);
    margin-bottom: 24px;
    flex-grow: 1;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-burgundy);
}

.expertise-card:hover .card-link,
.card-link:hover {
    gap: 12px;
    color: var(--color-burgundy-dark);
}

.detail-two-col-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 50px;
}

.practice-detail-fullwidth {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.practice-hero-img-wrap {
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 30px;
}

.practice-main-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.lead-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--color-charcoal);
    line-height: 1.6;
    border-left: 4px solid var(--color-burgundy);
    padding-left: 18px;
}

.rich-text-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-dark);
    margin: 30px 0 14px;
}

.rich-text-content ul {
    list-style: disc;
    margin-left: 24px;
    margin-bottom: 20px;
}

.rich-text-content li {
    margin-bottom: 8px;
    color: var(--color-slate);
}

/* ==========================================================================
   SUBCATEGORY & REGIONAL PROGRAM GRID (Matching Screenshot)
   ========================================================================== */

.category-program-showcase {
    margin: 10px 0 40px;
}

.cps-header {
    margin-bottom: 24px;
}

.cps-main-title {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 500;
    color: #140606;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

.cps-subtitle-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 8px;
    margin-bottom: 24px;
}

.cps-parent-subtitle {
    font-size: 0.9375rem;
    font-weight: 500;
    color: #140606;
    white-space: nowrap;
}

.cps-divider-line {
    flex-grow: 1;
    height: 1px;
    background-color: #140606;
}

.cps-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 24px;
    margin-bottom: 24px;
}

.cps-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #140606;
    transition: transform 0.25s ease;
}

.cps-card:hover {
    transform: translateY(-4px);
}

.cps-img-wrap {
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    background-color: #f1f5f9;
    border-radius: 2px;
}

.cps-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.cps-card:hover .cps-img {
    transform: scale(1.04);
}

.cps-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 400;
    color: #140606;
    margin-top: 14px;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.cps-card:hover .cps-card-title {
    color: var(--color-burgundy);
}

.cps-bottom-divider {
    width: 100%;
    height: 1px;
    background-color: #140606;
    margin: 30px 0 40px;
}

@media (max-width: 992px) {
    .cps-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .cps-main-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 600px) {
    .cps-cards-grid {
        grid-template-columns: 1fr;
    }
    .cps-main-title {
        font-size: 1.85rem;
    }
    .cps-subtitle-wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .cps-divider-line {
        width: 100%;
    }
}

.regional-globes-section {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 20px 0 40px;
}

.regional-globes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: start;
}

.regional-globe-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
    padding: 16px 10px;
    border-radius: 12px;
    border: 1px solid transparent;
}

.regional-globe-card:hover,
.regional-globe-card.active {
    background: #fdf2f4;
    border-color: rgba(128, 0, 32, 0.15);
}

.globe-orb-wrapper {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #f8fafc;
}

.regional-globe-card:hover .globe-orb-wrapper,
.regional-globe-card.active .globe-orb-wrapper {
    transform: translateY(-5px) scale(1.04);
    box-shadow: 0 16px 35px rgba(128, 0, 32, 0.15);
}

.globe-orb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.globe-region-title {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 500;
    color: #140606;
    margin-bottom: 8px;
    line-height: 1.3;
}

.globe-countries-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.875rem;
    color: #140606;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color 0.2s ease;
}

.globe-countries-link:hover,
.regional-globe-card:hover .globe-countries-link,
.regional-globe-card.active .globe-countries-link {
    color: var(--color-burgundy);
}

.region-programs-container {
    margin-top: 30px;
}

.region-programs-block {
    display: none;
    background: #f8fafc;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 28px;
    animation: fadeInMega 0.2s ease-out;
}

.region-programs-block.active {
    display: block;
}

.region-block-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e2e8f0;
}

.region-block-header h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-burgundy);
    margin: 0;
}

.program-count-badge {
    font-size: 0.8125rem;
    font-weight: 600;
    background: var(--color-burgundy-soft);
    color: var(--color-burgundy);
    padding: 4px 12px;
    border-radius: 20px;
}

.region-country-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.country-program-card-visual {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    text-decoration: none;
    overflow: hidden;
    color: #140606;
    transition: all 0.3s ease;
}

.country-program-card-visual:hover {
    border-color: var(--color-burgundy);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(128, 0, 32, 0.1);
}

.cpcv-image {
    width: 100%;
    height: 140px;
    overflow: hidden;
    background: #f8fafc;
}

.cpcv-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.country-program-card-visual:hover .cpcv-image img {
    transform: scale(1.05);
}

.cpcv-content {
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cpcv-content h5 {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0;
    color: #140606;
    font-family: var(--font-heading);
}

.cpcv-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--color-burgundy);
    font-weight: 600;
}

@media (max-width: 992px) {
    .regional-globes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .region-country-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .regional-globes-grid {
        grid-template-columns: 1fr;
    }
    .globe-orb-wrapper {
        width: 140px;
        height: 140px;
    }
}

/* Expertise Bottom CTA (Two-column clean design) */
.expertise-bottom-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding-top: 50px;
    border-top: 1px solid var(--color-border);
    margin-top: 60px;
}

.expertise-bottom-cta .cta-left-col {
    flex: 1;
    min-width: 300px;
}

.expertise-bottom-cta .cta-right-col {
    flex: 1.5;
    min-width: 300px;
}

.expertise-bottom-cta .cta-title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 400;
    color: var(--color-dark);
    margin-bottom: 24px;
}

.expertise-bottom-cta .cta-desc {
    font-size: 0.95rem;
    color: var(--color-dark);
    line-height: 1.7;
    margin-bottom: 20px;
}

.expertise-bottom-cta .cta-link-btn {
    display: inline-flex;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-dark);
    text-decoration: none;
    border-bottom: 1px solid var(--color-dark);
    padding-bottom: 4px;
    margin-top: 10px;
    transition: var(--transition);
}

.expertise-bottom-cta .cta-link-btn:hover {
    color: var(--color-burgundy);
    border-bottom-color: var(--color-burgundy);
}

@media (max-width: 768px) {
    .expertise-bottom-cta {
        flex-direction: column;
        gap: 30px;
    }
}

.sidebar-widget {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 24px;
}

.widget-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-burgundy-soft);
}

.sidebar-practice-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    font-size: 0.875rem;
    color: var(--color-slate);
    border-radius: 4px;
    margin-bottom: 4px;
}

.sidebar-practice-list li a:hover,
.sidebar-practice-list li a.active {
    background-color: var(--color-burgundy-soft);
    color: var(--color-burgundy);
}

.bg-burgundy-cta {
    background-color: var(--color-burgundy) !important;
    border-color: var(--color-burgundy) !important;
}

.bg-burgundy-cta h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.phone-callout {
    font-size: 1.25rem;
    font-weight: 800;
    margin-top: 14px;
}

.phone-callout a {
    color: var(--color-gold) !important;
}

/* ==========================================================================
   ABOUT PAGE & STORY LAYOUT
   ========================================================================== */

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.rich-text-body p {
    font-size: 1.0625rem;
    color: var(--color-slate);
    margin-bottom: 16px;
    line-height: 1.75;
}

.section-subtitle-h3 {
    font-size: 1.45rem;
    font-weight: 700;
    color: #140606;
    line-height: 1.35;
}

.about-sectors-box {
    background: #fdf2f4;
    border-left: 4px solid var(--color-burgundy);
    padding: 22px 26px;
    border-radius: 4px 8px 8px 4px;
}

.asb-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.asb-header h4 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--color-burgundy);
    margin: 0;
}

.about-sectors-box p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #140606;
    margin: 0;
}

.mission-vision-boxes {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mv-box {
    display: flex;
    gap: 16px;
    background: var(--color-bg-slate);
    border: 1px solid var(--color-border);
    padding: 20px;
    border-radius: var(--radius-md);
}

.mv-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--color-burgundy-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mv-info h4 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 4px;
}

.mv-info p {
    font-size: 0.875rem;
    color: var(--color-slate);
}

.about-image-stack {
    position: relative;
    background: #140606;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.16);
    display: flex;
    flex-direction: column;
}

.about-img-frame {
    width: 100%;
    height: 380px;
    overflow: hidden;
}

@media (max-width: 992px) {
    .about-img-frame {
        height: 320px;
    }
}

.about-img-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-badge-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    margin: 18px 20px 22px;
    padding: 16px 22px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 20px;
}

.badge-big-year {
    font-size: 2.85rem;
    font-weight: 800;
    color: #800020;
    line-height: 1;
    letter-spacing: -1px;
}

/* ==========================================================================
   ABOUT PAGE: SOCIAL RESPONSIBILITY SECTION (Matching Mockup)
   ========================================================================== */

.about-responsibility-section {
    background-color: #ffffff;
}

.responsibility-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
}

.responsibility-title {
    font-family: var(--font-heading);
    font-size: 2.35rem;
    font-weight: 500;
    color: #140606;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

.responsibility-body p {
    font-size: 1.0625rem;
    line-height: 1.85;
    color: #140606;
    margin: 0;
}

.responsibility-img-wrap {
    position: relative;
    width: 100%;
    height: 460px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    background-color: #140606;
}

.resp-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s ease-in-out, transform 1.4s ease;
    transform: scale(1.03);
}

.resp-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.resp-slide .responsibility-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 992px) {
    .responsibility-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .responsibility-title {
        font-size: 1.95rem;
    }
    .responsibility-img-wrap {
        height: 320px;
    }
}

.badge-content strong {
    display: block;
    font-size: 0.9375rem;
    color: var(--color-white);
}

.badge-content small {
    color: var(--color-gold-light);
    font-size: 0.75rem;
}

/* ==========================================================================
   WHY GSC SECTION (Luxury Dark & Burgundy)
   ========================================================================== */

.bg-dark-luxury {
    background: linear-gradient(135deg, #111822 0%, #1a222d 100%);
    color: var(--color-white);
}

.why-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.why-lead-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    line-height: 1.7;
}

.why-points-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-point-item {
    display: flex;
    gap: 16px;
}

.point-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(212, 175, 55, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.point-text h4 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 4px;
}

.point-text p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.why-visual-col {
    position: relative;
}

.why-image-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.why-img {
    width: 100%;
    height: 440px;
    object-fit: cover;
}

.why-badge-overlay {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(128, 0, 32, 0.95);
    backdrop-filter: blur(8px);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    color: var(--color-white);
    display: flex;
    align-items: center;
    gap: 14px;
}

.badge-num {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--color-burgundy);
    line-height: 1;
}

.badge-lbl {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    max-width: 180px;
    line-height: 1.3;
}

/* ==========================================================================
   GLOBAL TEAM SECTION & PROFILE DETAILS
   ========================================================================== */

.team-hero-banner-wrap {
    width: 100%;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    background-color: #f8fafc;
    margin-bottom: 45px;
}

.team-hero-banner-img {
    width: 100%;
    height: auto;
    max-height: 650px;
    object-fit: cover;
    display: block;
}

.team-section-intro {
    text-align: left;
    margin-bottom: 35px;
}

.team-section-intro-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 500;
    color: #140606;
    margin: 0 0 12px;
    line-height: 1.25;
}

.team-section-intro-desc {
    font-size: 1.0625rem;
    color: #140606;
    max-width: 960px;
    line-height: 1.65;
    margin: 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px 24px;
    margin-top: 20px;
}

@media (max-width: 1380px) {
    .team-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.team-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    background: transparent;
    border: none;
    transition: transform 0.25s ease;
}

.team-card:hover {
    transform: translateY(-4px);
}

.team-photo-wrap {
    width: 100%;
    aspect-ratio: 2 / 3;
    max-height: 480px;
    background-color: #f1f5f9;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.4s ease;
}

.team-card:hover .team-photo {
    transform: scale(1.03);
}

.team-info {
    padding: 16px 0 0;
    text-align: left;
}

.team-name {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 500;
    color: #140606;
    margin: 0 0 6px;
    line-height: 1.3;
    transition: color 0.2s ease;
}

.team-card:hover .team-name {
    color: var(--color-burgundy);
}

.team-role {
    font-size: 0.9375rem;
    font-weight: 400;
    color: #140606;
    margin: 0;
    line-height: 1.4;
    text-align: left;
}

.team-langs {
    font-size: 0.8125rem;
    color: var(--color-slate);
    margin-bottom: 14px;
}

.team-view-bio {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-charcoal);
}

.team-view-bio:hover {
    color: var(--color-burgundy);
}

/* Member Detail Page (Matching User Mockup) */
.member-detail-section {
    background-color: #ffffff;
    min-height: 70vh;
}

.member-header-block {
    text-align: left;
    margin-bottom: 24px;
}

.member-name-heading {
    font-family: var(--font-heading);
    font-size: 2.65rem;
    font-weight: 500;
    color: #140606;
    margin: 0 0 6px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.member-role-subheading {
    font-size: 1.0625rem;
    font-weight: 400;
    color: #140606;
    margin: 0;
}

.member-icon-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 18px;
    margin-bottom: 28px;
}

.member-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #140606;
    padding: 6px;
    border-radius: 6px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.member-icon-btn:hover {
    color: var(--color-burgundy);
    transform: translateY(-2px);
    background-color: #f8fafc;
}

.member-content-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 60px;
    align-items: start;
}

.member-media-col {
    width: 100%;
}

.member-photo-frame {
    position: relative;
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    background-color: #f8fafc;
    aspect-ratio: 2 / 3;
    max-height: 580px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.member-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease-in-out;
}

.member-slide.active {
    opacity: 1;
    visibility: visible;
}

.member-photo-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.member-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: #140606;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.member-slider-btn:hover {
    background: var(--color-burgundy);
    color: #ffffff;
    border-color: var(--color-burgundy);
    transform: translateY(-50%) scale(1.06);
}

.member-slider-btn.prev-btn {
    left: 10px;
}

.member-slider-btn.next-btn {
    right: 10px;
}

.member-slider-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}

.member-slider-dots .slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.2s ease;
}

.member-slider-dots .slider-dot.active {
    background: #ffffff;
    width: 20px;
    border-radius: 4px;
}

.member-bio-col {
    width: 100%;
}

.member-bio-body p {
    font-size: 1.0625rem;
    line-height: 1.9;
    color: #140606;
    margin: 0 0 20px;
    text-align: justify;
}

.member-credentials-section {
    border-top: 1px solid #f1f5f9;
    padding-top: 30px;
}

.cred-heading {
    font-size: 1.125rem;
    font-weight: 700;
    color: #140606;
    margin-bottom: 6px;
}

.cred-desc {
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .member-content-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .member-photo-frame {
        max-width: 400px;
        margin: 0 auto;
    }
    .member-photo-main {
        max-width: 100%;
    }
}

/* Team Member Bottom Carousel */
.team-carousel-section {
    border-top: 1px solid #e2e8f0;
    margin-top: 120px;
    padding-top: 90px;
    padding-bottom: 30px;
}

.team-carousel-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 45px;
}

.team-carousel-heading {
    font-family: var(--font-heading);
    font-size: 2.35rem;
    font-weight: 500;
    color: #140606;
    margin: 0 0 20px;
    text-align: center;
    letter-spacing: -0.5px;
}

.team-carousel-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 5px;
}

.team-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #cbd5e1;
    background: #ffffff;
    color: #140606;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.team-nav-btn:hover {
    background: var(--color-burgundy);
    color: #ffffff;
    border-color: var(--color-burgundy);
    transform: scale(1.06);
}

.team-carousel-wrapper {
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 10px 0 25px;
}

.team-carousel-wrapper::-webkit-scrollbar {
    display: none;
}

.team-carousel-track {
    display: flex;
    gap: 24px;
    width: max-content;
}

.team-carousel-item {
    width: 260px;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.team-carousel-item.current-active .team-photo-wrap {
    box-shadow: 0 0 0 3px var(--color-burgundy);
}

@media (max-width: 768px) {
    .team-carousel-item {
        width: 210px;
    }
}

.profile-consultation-box {
    background: linear-gradient(135deg, #111822 0%, #1c2633 100%);
    color: #ffffff;
    border-radius: var(--radius-md);
    padding: 36px;
}

.profile-consultation-box h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.profile-consultation-box p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

/* ==========================================================================
/* ==========================================================================
   GLOBAL PRESENCE / OFFICES
   ========================================================================== */

.presence-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 1100px) {
    .presence-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .presence-cards-grid {
        grid-template-columns: 1fr;
    }
}

.office-clean-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 330px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.office-clean-card:hover {
    transform: translateY(-4px);
    border-color: #800020;
    box-shadow: 0 12px 30px rgba(128, 0, 32, 0.08);
}

.office-card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.office-city-title {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-weight: 600;
    color: #140606;
    margin: 0 0 18px;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 12px;
}

.office-address-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #140606;
    min-height: 56px;
    margin-bottom: 16px;
}

.office-phone-line {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #140606;
    line-height: 1.6;
    margin-bottom: 10px;
}

.office-email-line {
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.office-link-mail {
    color: var(--color-burgundy);
    font-weight: 500;
    transition: color 0.2s ease;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.office-link-mail:hover {
    color: #5c0017;
}

.office-card-footer {
    margin-top: auto;
    padding-top: 24px;
}

.btn-office-map {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 4px;
    border: 1px solid #cbd5e1;
    background: #f8fafc;
    color: #140606;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-office-map:hover {
    background: var(--color-burgundy);
    color: #ffffff;
    border-color: var(--color-burgundy);
}

/* Presence Social Box */
.presence-social-box {
    border-top: 1px solid #eef2f6;
    margin-top: 120px;
    padding-top: 90px;
    padding-bottom: 30px;
}

.presence-social-heading {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 500;
    color: #140606;
    margin: 0;
}

.presence-social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-presence-social {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 6px;
    border: 1px solid #cbd5e1;
    background: #ffffff;
    color: #140606;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.btn-presence-social:hover {
    background: var(--color-burgundy);
    color: #ffffff;
    border-color: var(--color-burgundy);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(128, 0, 32, 0.2);
}

/* ==========================================================================
   EVENTS & SEMINARS (Exact Minimalist Editorial Design)
   ========================================================================== */

.events-intro-header {
    max-width: 100%;
    margin-bottom: 70px;
}

.events-main-title {
    font-family: var(--font-heading);
    font-size: 2.85rem;
    font-weight: 500;
    color: #140606;
    margin: 0 0 32px;
    line-height: 1.2;
}

.events-intro-desc p {
    font-size: 1.0625rem;
    line-height: 1.85;
    color: #140606;
    text-align: left;
    margin: 0;
}

.events-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 50px;
}

@media (max-width: 1200px) {
    .events-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 860px) {
    .events-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 520px) {
    .events-cards-grid {
        grid-template-columns: 1fr;
    }
}

.event-minimal-card {
    display: flex;
    flex-direction: column;
}

.event-card-link-wrap {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.event-square-thumb {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: #f8fafc;
}

.event-square-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.event-card-link-wrap:hover .event-square-img {
    transform: scale(1.03);
}

.event-info-block {
    padding-top: 18px;
}

.event-item-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: #140606;
    margin: 0 0 6px;
    line-height: 1.35;
    transition: color 0.2s ease;
}

.event-card-link-wrap:hover .event-item-title {
    color: var(--color-burgundy);
}

.event-item-loc {
    font-size: 0.8125rem;
    color: #64748b;
    margin-bottom: 3px;
    line-height: 1.4;
}

.event-item-date {
    font-size: 0.8125rem;
    color: #64748b;
    line-height: 1.4;
}

/* Event Detail View Styles */
.event-detail-header-block {
    max-width: 100%;
    margin-bottom: 30px;
}

.event-detail-heading {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 500;
    color: #140606;
    margin: 0 0 26px;
    line-height: 1.25;
}

.event-body-text-block {
    max-width: 100%;
}

.event-body-text-block p {
    font-size: 1.0625rem;
    line-height: 1.85;
    color: #140606;
    margin: 0 0 20px;
}

/* Event Masonry Photo Gallery */
.event-masonry-gallery-wrap {
    width: 100%;
    margin-top: 40px;
}

.event-masonry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 992px) {
    .event-masonry-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}

@media (max-width: 560px) {
    .event-masonry-grid {
        grid-template-columns: 1fr;
    }
}

.event-masonry-item {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    background-color: #f8fafc;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}
.event-lightbox-trigger {
    display: block;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: 100%;
}

.event-masonry-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
    display: block;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.event-masonry-overlay {
    position: absolute;
    inset: 0;
    background: rgba(128, 0, 32, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.event-lightbox-trigger:hover .event-masonry-overlay {
    opacity: 1;
}

.event-lightbox-trigger:hover .event-masonry-img {
    transform: scale(1.04);
}

/* Event Lightbox Modal */
.event-lightbox-modal {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.94);
    backdrop-filter: blur(8px);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.event-lightbox-modal.show {
    display: flex;
    animation: fadeIn 0.2s ease-out;
}

.event-lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-lightbox-content img {
    max-width: 100%;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.event-lightbox-close {
    position: absolute;
    top: 24px;
    right: 28px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 2.2rem;
    cursor: pointer;
    line-height: 1;
    z-index: 3010;
    transition: color 0.2s ease;
}

.event-lightbox-close:hover {
    color: var(--color-burgundy);
}

.event-lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3010;
    transition: all 0.2s ease;
}

.event-lightbox-arrow:hover {
    background: var(--color-burgundy);
    border-color: var(--color-burgundy);
}

.event-lightbox-arrow.prev {
    left: 24px;
}

.event-lightbox-arrow.next {
    right: 24px;
}

/* ==========================================================================
   DEDICATED CALLBACK & CONTACT PAGE
   ========================================================================== */

.callback-page-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
}

.callback-form-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 36px;
    box-shadow: var(--shadow-sm);
}

.callback-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card-box {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 28px;
}

.info-card-box h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.info-card-box p {
    font-size: 0.875rem;
    color: var(--color-slate);
    margin-bottom: 10px;
}

.info-card-box hr {
    border: none;
    border-top: 1px solid var(--color-border);
    margin: 16px 0;
}

/* ==========================================================================
   CALLBACK BANNER & CONSULTATION
   ========================================================================== */

.banner-flex-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.banner-badge-sub {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-burgundy);
    margin-bottom: 8px;
}

.banner-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 8px;
}

.banner-p {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.9);
}

/* ==========================================================================
   FOOTER (Exact User Mockup Style)
   ========================================================================== */

.site-footer {
    background-color: #ffffff;
    color: #140606;
    border-top: 1px solid #eef2f6;
}

.footer-top {
    padding: 60px 0 45px;
}

.footer-offices-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.footer-office-nav {
    background-color: #fff;
    border: 1px solid #eef2f6;
    color: #140606;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    z-index: 2;
    position: absolute;
}

.footer-office-nav:hover {
    background-color: var(--color-burgundy);
    color: #fff;
    border-color: var(--color-burgundy);
    transform: translateY(-2px);
}

.footer-office-nav.prev {
    left: -20px;
}
.footer-office-nav.next {
    right: -20px;
}

.footer-offices-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 30px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding: 10px 0;
    scrollbar-width: none; /* Firefox */
    cursor: grab;
    user-select: none; /* Prevent text selection while dragging */
    width: 100%;
}

.footer-offices-grid:active {
    cursor: grabbing;
}

.footer-offices-grid::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.footer-offices-grid.is-dragging {
    scroll-snap-type: none;
}

.footer-offices-grid.is-dragging .footer-office-col * {
    pointer-events: none;
}

.footer-office-col {
    display: flex;
    flex-direction: column;
    flex: 0 0 calc(20% - 24px);
    min-width: 220px;
    scroll-snap-align: start;
}

.footer-office-title {
    font-family: var(--font-heading);
    font-size: 1.1875rem;
    font-weight: 600;
    color: #140606;
    margin: 0 0 14px;
    position: relative;
    padding-bottom: 8px;
}

.footer-office-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-burgundy);
}

.footer-office-addr {
    font-size: 0.875rem;
    line-height: 1.65;
    color: #140606;
    margin-bottom: 10px;
}

.footer-office-email a {
    font-size: 0.8125rem;
    color: #64748b;
    transition: color 0.2s ease;
    word-break: break-all;
}

.footer-office-email a:hover {
    color: var(--color-burgundy);
}

.footer-bottom {
    padding: 26px 0;
    border-top: 1px solid #f1f5f9;
}

.footer-bottom-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-brand-logo img {
    height: 50px;
    width: auto;
    display: block;
}

.footer-copy-text {
    font-size: 0.8125rem;
    color: #140606;
    font-weight: 400;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-legal-links a {
    font-size: 0.8125rem;
    color: #140606;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-legal-links a:hover {
    color: var(--color-burgundy);
}

/* Footer Language Dropdown */
.footer-lang-dropdown-wrapper {
    position: relative;
    border-left: 1px solid #e2e8f0;
    border-right: 1px solid #e2e8f0;
    padding: 0 16px;
    display: flex;
    align-items: center;
}

.footer-lang-dropdown-btn {
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 6px 8px;
    border-radius: 6px;
    transition: background-color 0.2s ease;
    color: #140606;
    font-size: 0.8125rem;
    font-weight: 500;
}

.footer-lang-dropdown-btn:hover, 
.footer-lang-dropdown-btn[aria-expanded="true"] {
    background: #f1f5f9;
}

.footer-flag-icon {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.05);
}

.footer-dropdown-chevron {
    transition: transform 0.2s ease;
    opacity: 0.5;
}

.footer-lang-dropdown-btn[aria-expanded="true"] .footer-dropdown-chevron {
    transform: rotate(180deg);
}

.footer-lang-menu {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 8px;
    min-width: 150px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 100;
}

.footer-lang-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-8px);
}

.footer-lang-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 6px;
    color: #140606;
    text-decoration: none;
    font-size: 0.8125rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.mobile-mega-link {
    color: #140606;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: -0.5px;
}

.footer-lang-item:hover {
    background: #f8fafc;
    color: var(--color-burgundy);
}

.footer-lang-item.active {
    background: #fff0f2;
    color: var(--color-burgundy);
}

.footer-lang-item .check-icon {
    margin-left: auto;
    color: var(--color-burgundy);
}

.footer-social-icons {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #140606;
    transition: all 0.2s ease;
}

.footer-social-btn:hover {
    color: var(--color-burgundy);
    transform: translateY(-2px);
}

@media (max-width: 1200px) {
    .footer-office-col {
        flex: 0 0 calc(33.333% - 20px);
    }
}

@media (max-width: 768px) {
    .footer-office-col {
        flex: 0 0 calc(50% - 15px);
    }
    .footer-bottom-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .footer-office-col {
        flex: 0 0 85%;
    }
}

/* ==========================================================================
   REQUEST A CALL BACK MODAL
   ========================================================================== */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 15, 22, 0.7);
    backdrop-filter: blur(6px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.show {
    display: flex;
    animation: fadeIn 0.25s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    max-width: 580px;
    width: 100%;
    padding: 36px;
    position: relative;
    box-shadow: var(--shadow-lg);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 1.75rem;
    color: var(--color-slate-light);
    cursor: pointer;
    line-height: 1;
}

.modal-close:hover {
    color: var(--color-burgundy);
}

.modal-header {
    text-align: center;
    margin-bottom: 24px;
}

.modal-badge-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: var(--color-burgundy-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-dark);
}

.modal-subtitle {
    font-size: 0.875rem;
    color: var(--color-slate);
}

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

.form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.col-half { flex: 1; margin-bottom: 0; }
.col-third { flex: 1; margin-bottom: 0; }

.form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: 6px;
}

.required {
    color: var(--color-burgundy);
}

.form-control {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    color: var(--color-charcoal);
    background-color: var(--color-white);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-burgundy);
    box-shadow: 0 0 0 3px rgba(128, 0, 32, 0.12);
}

.btn-submit-callback {
    width: 100%;
    padding: 14px;
    background-color: var(--color-burgundy);
    color: var(--color-white);
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
}

.btn-submit-callback:hover {
    background-color: var(--color-burgundy-dark);
    box-shadow: var(--shadow-burgundy);
}

.form-feedback {
    padding: 12px;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    font-size: 0.875rem;
}

.form-feedback.success {
    background-color: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.form-feedback.error {
    background-color: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* ==========================================================================
   COOKIE CONSENT BANNER (Matches Screenshot Mockup)
   ========================================================================== */

.cookie-consent-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(18, 24, 32, 0.96);
    backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.85);
    padding: 18px 24px;
    z-index: 1900;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: none;
}

.cookie-container {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.cookie-message {
    font-size: 0.875rem;
    line-height: 1.5;
    max-width: 980px;
}

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

.btn-cookie-accept {
    background: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 8px 22px;
    border-radius: var(--radius-sm);
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-cookie-accept:hover {
    background: var(--color-white);
    color: var(--color-dark);
}

.btn-cookie-reject {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.8125rem;
    cursor: pointer;
    transition: var(--transition);
}

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

.btn-cookie-policy {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 18px;
    border-radius: var(--radius-sm);
    font-size: 0.8125rem;
}

.btn-cookie-policy:hover {
    color: var(--color-white);
}

/* ==========================================================================
   RESPONSIVE DESIGN (Tablets & Mobile)
   ========================================================================== */

@media (max-width: 1024px) {
    .milestones-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .milestone-box { border-right: none; }
    .expertise-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .presence-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .detail-two-col-layout { grid-template-columns: 1fr; }
    .profile-layout-grid { grid-template-columns: 1fr; }
    .callback-page-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .header-container { padding: 12px 16px; }
    .mobile-nav-toggle { display: block; }
    .main-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-white);
        box-shadow: var(--shadow-lg);
        padding: 20px 0;
        z-index: 999;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    .main-navigation.show { display: block; }
    
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .nav-item.has-mega-menu .mega-menu-container {
        display: none !important; /* Hide desktop mega menu entirely on mobile */
    }
    
    .mobile-mega-menu-container {
        display: none;
        padding-left: 10px;
        margin-top: 5px;
        border-left: 2px solid #f1f5f9;
        width: 100%;
        animation: fadeInMega 0.2s ease-out;
    }
    .mobile-mega-menu-container.show-mobile {
        display: block;
    }
    .mobile-mega-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
    .mobile-mega-link {
        padding: 10px 0;
        font-size: 0.95rem;
        color: #4b5563;
        text-decoration: none;
        flex-grow: 1;
        border-bottom: 1px dashed #f1f5f9;
    }
    .mobile-mega-toggle-btn {
        background: none;
        border: none;
        padding: 10px;
        cursor: pointer;
        color: #4b5563;
    }
    .mobile-mega-toggle-btn svg {
        transition: transform 0.2s ease;
    }
    .mobile-mega-toggle-btn.expanded svg {
        transform: rotate(180deg);
    }
    .mobile-mega-l2-wrapper, .mobile-mega-l3-wrapper {
        display: none;
        padding-left: 15px;
        border-left: 1px dashed #e2e8f0;
    }
    .mobile-mega-l2-wrapper.open, .mobile-mega-l3-wrapper.open {
        display: block;
    }
    .mobile-mega-l3 .mobile-mega-link {
        font-size: 0.85rem;
        padding: 8px 0;
        color: #64748b;
        border-bottom: none;
    }

    .nav-menu { flex-direction: column; gap: 5px; align-items: flex-start; width: 100%; }
    .nav-item { width: 100%; }
    .nav-link { display: block; padding: 12px 0; width: 100%; border-bottom: 1px solid #f0f2f5; }
    .nav-link::after { display: none; } /* Hide red bottom line on mobile for cleaner look */
    
    .nav-cta-wrap { margin-top: 10px; width: 100%; }
    .btn-callback-pill { width: 100%; justify-content: center; }

    .hero-slider-section { height: 520px; }
    .slider-arrow { display: none; }
    .slide-container { padding-left: 15px; padding-right: 15px; }
    .slide-headline { font-size: 2rem; }
    .page-main-heading { font-size: 2rem; }
    .milestones-grid { grid-template-columns: 1fr; }
    .expertise-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .presence-cards-grid { grid-template-columns: 1fr; }
    .events-grid, .events-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .footer-grid { grid-template-columns: 1fr; }
    .banner-flex-layout { flex-direction: column; text-align: center; }
}

/* Swiper Custom Styling */
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: var(--color-slate);
    opacity: 0.5;
    transition: var(--transition);
}
.swiper-pagination-bullet-active {
    background-color: var(--color-burgundy);
    opacity: 1;
    transform: scale(1.2);
}
.expertise-slider {
    padding-bottom: 40px !important;
}

/* ==========================================================================
   CALLBACK MODAL STYLES
   ========================================================================== */
#callbackModal {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10, 15, 25, 0.85);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}
#callbackModal.show {
    display: flex;
    opacity: 1;
}
.modal-dialog {
    background: var(--color-white);
    width: 100%;
    max-width: 500px;
    border-radius: var(--radius-md);
    position: relative;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}
#callbackModal.show .modal-dialog {
    transform: translateY(0);
}
.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-slate);
}
.modal-close:hover {
    color: var(--color-burgundy);
}
.modal-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-dark);
    margin-bottom: 10px;
}
.modal-p {
    font-size: 0.95rem;
    color: var(--color-slate);
    margin-bottom: 25px;
}
.form-group {
    margin-bottom: 15px;
}
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--color-dark);
}
.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.95rem;
}
.form-control:focus {
    outline: none;
    border-color: var(--color-burgundy);
}
.btn-submit-modal {
    width: 100%;
    background: var(--color-burgundy);
    color: var(--color-white);
    border: none;
    padding: 15px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
}
.btn-submit-modal:hover {
    background: #5a0016;
}

/* Callback Preferred Time Checkboxes */
.cb-group {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 5px;
}
.cb-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--color-dark);
    font-weight: 400 !important;
    cursor: pointer;
    margin-bottom: 0;
}
.cb-item input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    margin: 0;
    accent-color: var(--color-burgundy);
}

/* Standardized Expertise Detail Editor Content Styles */
.expertise-detail-content h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: #800020;
    border-bottom: 2px solid #800020;
    padding-bottom: 10px;
    margin-bottom: 20px;
    margin-top: 40px;
}
.expertise-detail-content h2:first-child {
    margin-top: 0;
}
.expertise-detail-content h3 {
    font-size: 1.5rem;
    color: #1a202c;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 30px;
}
.expertise-detail-content p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 15px;
}
.expertise-detail-content ul {
    list-style: none;
    padding: 0;
    color: #333;
    line-height: 1.8;
    margin-bottom: 30px;
}
.expertise-detail-content ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
}
.expertise-detail-content ul li::before {
    content: "•";
    color: #800020;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}
.expertise-detail-content ul li strong {
    color: #1a202c;
}
.expertise-detail-content img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    object-fit: cover;
    margin-top: 30px;
    margin-bottom: 30px;
}


/* Apple-style thin scrollbars for Mega Menu and Mobile Menu */
.mega-col-primary, .mega-col-secondary, .mega-col-tertiary, .mega-subpanels-wrapper {
    max-height: 65vh;
    overflow-y: auto;
}

.mega-col-primary::-webkit-scrollbar,
.mega-col-secondary::-webkit-scrollbar,
.mega-col-tertiary::-webkit-scrollbar,
.mega-subpanels-wrapper::-webkit-scrollbar,
.main-navigation::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.mega-col-primary::-webkit-scrollbar-track,
.mega-col-secondary::-webkit-scrollbar-track,
.mega-col-tertiary::-webkit-scrollbar-track,
.mega-subpanels-wrapper::-webkit-scrollbar-track,
.main-navigation::-webkit-scrollbar-track {
    background: transparent; 
}

.mega-col-primary::-webkit-scrollbar-thumb,
.mega-col-secondary::-webkit-scrollbar-thumb,
.mega-col-tertiary::-webkit-scrollbar-thumb,
.mega-subpanels-wrapper::-webkit-scrollbar-thumb,
.main-navigation::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2); 
    border-radius: 10px; 
}

.mega-col-primary::-webkit-scrollbar-thumb:hover,
.mega-col-secondary::-webkit-scrollbar-thumb:hover,
.mega-col-tertiary::-webkit-scrollbar-thumb:hover,
.mega-subpanels-wrapper::-webkit-scrollbar-thumb:hover,
.main-navigation::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.4); 
}

/* ==========================================================================
   SMOOTH STICKY SHRINKING HEADER (Desktop)
   ========================================================================== */
@media (min-width: 1025px) {
    /* Prevent layout shift */
    body {
        padding-top: 159px; /* header-container (102px) + main-navigation (57px) */
    }
    
    .site-header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 159px;
        transition: height 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease;
    }
    
    .header-container {
        transition: padding 0.4s ease;
        position: relative;
        z-index: 2;
    }
    
    .brand-logo img {
        transition: height 0.4s ease;
    }
    
    .main-navigation {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        transition: bottom 0.4s ease, padding 0.4s ease, background-color 0.4s ease;
        z-index: 1;
    }
    
    .nav-container {
        transition: padding 0.4s ease, justify-content 0.4s ease;
    }
    
    .nav-menu {
        transition: transform 0.4s ease;
    }

    /* --- SCROLLED STATE (Single Line Perfection) --- */
    .site-header.scrolled {
        height: 76px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    }
    
    .site-header.scrolled .header-container {
        padding: 14px 24px; 
    }
    
    .site-header.scrolled .brand-logo img {
        height: 48px; 
    }

    /* Make lang switcher compact on scroll */
    .site-header.scrolled .lang-label {
        display: none;
    }
    .site-header.scrolled .lang-dropdown-btn {
        padding: 4px 8px;
    }
    
    /* Move main navigation UP to merge into the single line */
    .site-header.scrolled .main-navigation {
        position: absolute;
        top: 11px; /* Re-aligned vertically with the larger logo */
        left: 0;
        width: 100%;
        background-color: transparent;
        border-top: none;
        z-index: 3; /* Push above header-container */
        pointer-events: none; /* Let clicks pass through the empty background */
    }
    
    .site-header.scrolled .nav-menu,
    .site-header.scrolled .nav-cta-wrap {
        pointer-events: auto; /* Make actual menus and buttons clickable */
    }
    
    .site-header.scrolled .nav-container {
        justify-content: flex-end;
        padding-right: 120px; /* Leave space for the lang switcher on the far right */
    }
    
    /* Make nav items tighter to fit without overlapping the logo */
    .site-header.scrolled .nav-menu {
        gap: 15px; 
    }
    
    .site-header.scrolled .nav-link {
        font-size: 0.85rem;
        padding: 14px 0;
    }
    
    .site-header.scrolled .nav-cta-wrap {
        margin-left: 25px; /* Add space between menu and button */
    }
    
    .site-header.scrolled .btn-callback-pill {
        padding: 8px 18px;
        font-size: 0.85rem;
    }
}
/* Article Card Hover Styles */
.article-card .article-title {
    color: #140606;
}
.article-card:hover .article-title {
    color: var(--color-burgundy);
}


/* Global Text Justification */
p {
    text-align: justify;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* RTL (Right-to-Left) Overrides */

@media (min-width: 992px) {
    html[dir="rtl"] .site-header.scrolled .nav-container {
        padding-right: 24px;
        padding-left: 120px;
    }

    html[dir="rtl"] .site-header.scrolled .nav-cta-wrap {
        margin-left: 0;
        margin-right: 25px;
    }
}

/* User Requested Responsive Fixes */
@media (max-width: 768px) {
    .cookie-consent-bar {
        padding: 12px 16px !important;
    }
    .cookie-container {
        align-items: flex-start !important;
        text-align: left !important;
    }
    .cookie-message {
        text-align: left !important;
        font-size: 0.8rem !important;
    }
    .cookie-actions {
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    .team-name {
        font-size: 1rem !important;
    }
    .team-role {
        font-size: 0.85rem !important;
    }
}

/* ==========================================================================
   Corporate Chat Widget (WhatsApp Integration)
   ========================================================================== */
.gsc-chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    font-family: 'Inter', sans-serif;
}

.gsc-chat-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--color-burgundy, #800020);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(128, 0, 32, 0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    z-index: 2;
}

.gsc-chat-toggle:hover {
    transform: scale(1.05);
    background-color: #6a001a;
}

/* Pulse Animation */
.gsc-chat-toggle::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--color-burgundy, #800020);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.7;
    animation: gscPulse 2s infinite;
}

@keyframes gscPulse {
    0% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.5); opacity: 0; }
    100% { transform: scale(1.5); opacity: 0; }
}

.gsc-chat-icon, .gsc-chat-close-icon {
    width: 28px;
    height: 28px;
}

.gsc-chat-box {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15), 0 5px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transform-origin: bottom right;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    flex-direction: column;
}

.gsc-chat-tooltip {
    position: absolute;
    right: 75px;
    bottom: 12px;
    background: #ffffff;
    color: var(--color-slate, #140606);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    white-space: nowrap;
    opacity: 1;
    transition: opacity 0.5s ease;
    animation: floatTooltip 3s ease-in-out infinite;
    pointer-events: none;
}

.gsc-chat-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent #ffffff;
}

@keyframes floatTooltip {
    0% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
    100% { transform: translateY(0); }
}

.gsc-chat-widget.is-open .gsc-chat-box {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.gsc-chat-widget.is-open .gsc-chat-toggle::before {
    display: none;
}

.gsc-chat-header {
    background: linear-gradient(135deg, var(--color-burgundy, #800020) 0%, #a61b3b 100%);
    padding: 20px;
    color: white;
    display: flex;
    align-items: center;
    gap: 12px;
}

.gsc-chat-avatar {
    position: relative;
    width: 44px;
    height: 44px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    overflow: hidden;
}

.gsc-chat-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 6px;
}

.gsc-chat-online-dot {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 10px;
    height: 10px;
    background-color: #10b981;
    border-radius: 50%;
    border: 2px solid var(--color-burgundy, #800020);
}

.gsc-chat-title-wrap {
    display: flex;
    flex-direction: column;
}

.gsc-chat-title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}

.gsc-chat-subtitle {
    font-size: 0.8rem;
    opacity: 0.9;
}

.gsc-chat-body {
    padding: 20px;
    height: 280px;
    overflow-y: auto;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Typing Indicator */
.gsc-chat-typing-indicator {
    display: flex;
    align-items: center;
    gap: 4px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 12px 16px;
    border-radius: 12px;
    border-bottom-left-radius: 4px;
    width: fit-content;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.gsc-typing-dot {
    width: 6px;
    height: 6px;
    background: var(--color-slate, #94a3b8);
    border-radius: 50%;
    animation: typingBounce 1.4s infinite ease-in-out both;
}

.gsc-typing-dot:nth-child(1) { animation-delay: -0.32s; }
.gsc-typing-dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes typingBounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

.gsc-chat-message-wrap {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.gsc-chat-message {
    max-width: 90%;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.95rem;
    line-height: 1.5;
    position: relative;
    animation: slideUp 0.3s ease forwards;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.gsc-chat-agent {
    background: #ffffff;
    color: var(--color-slate, #140606);
    border: 1px solid #e2e8f0;
    border-bottom-left-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.gsc-chat-agent p {
    margin: 0;
    text-align: left !important; /* Override global justify */
}

.gsc-chat-time {
    display: block;
    font-size: 0.7rem;
    color: #94a3b8;
    margin-top: 5px;
    text-align: right;
}

/* Quick Reply Chips */
.gsc-chat-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
    animation: slideUp 0.4s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.gsc-chat-chip {
    background: #ffffff;
    border: 1px solid var(--color-burgundy, #800020);
    color: var(--color-burgundy, #800020);
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.gsc-chat-chip:hover {
    background: var(--color-burgundy, #800020);
    color: white;
}

.gsc-chat-footer {
    padding: 15px;
    background: #ffffff;
    border-top: 1px solid #f1f5f9;
}

.gsc-chat-form {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8fafc;
    border-radius: 24px;
    padding: 5px 5px 5px 15px;
    border: 1px solid #e2e8f0;
}

.gsc-chat-form input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-size: 16px; /* 16px prevents iOS auto-zoom on focus */
    color: var(--color-slate, #140606);
}

.gsc-chat-send {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-burgundy, #800020);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}

.gsc-chat-send:hover {
    background: #6a001a;
}

@media (max-width: 480px) {
    .gsc-chat-widget {
        bottom: 20px;
        right: 20px;
    }
    
    .gsc-chat-box {
        position: fixed;
        bottom: 80px;
        right: 20px;
        width: calc(100% - 40px);
        height: auto;
        max-height: 75vh;
        border-radius: 16px;
        transform: translateY(20px) scale(0.95);
    }
    
    .gsc-chat-widget.is-open .gsc-chat-box {
        transform: translateY(0) scale(1);
    }
    
    .gsc-chat-body {
        flex: 1;
        max-height: 50vh;
    }
}

/* ---------------------------------------------------
   CUSTOM FONT OVERRIDES (User Request)
   Apply EB Garamond to all secondary titles/names
--------------------------------------------------- */
.team-name,
.member-name-heading,
.article-title,
.banner-title,
.cta-title,
.footer-office-title,
.footer-office-addr,
.office-city-title,
.events-main-title,
.event-item-title,
.globe-region-title,
.cps-card-title,
.cps-main-title {
    font-family: var(--font-heading) !important;
}

.team-name,
.article-title,
.banner-title,
.cta-title,
.footer-office-title,
.office-city-title {
    font-weight: 400;
}

.footer-office-addr {
    font-weight: 400;
    font-size: 1.05rem;
}
/* Apply EB Garamond to all standard heading tags to ensure nothing is missed */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading) !important;
    font-weight: 400;
}
/* Enforce normal font weight (not bold) for all headings and titles as per user request */
h1, h2, h3, h4, h5, h6, 
.section-title, 
.cps-main-title, 
.cps-card-title, 
.card-title, 
.team-name, 
.article-title, 
.banner-title, 
.cta-title, 
.footer-office-title, 
.office-city-title,
.mega-item-l1,
.team-section-intro-title {
    font-weight: 400 !important;
}