@import url('variables.css');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&family=Inter:wght@400;500;600;700&display=swap');

/* ==================== RESET & BASE ==================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-main);
    line-height: 1.65;
    background: var(--bg-white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-teal);
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.section {
    padding: var(--space-xxl) 0;
}

/* ==================== TOP BAR ==================== */
.top-bar-meta {
    background: var(--primary-teal-dark);
    color: rgba(255, 255, 255, 0.85);
    padding: 7px 0;
    font-size: 0.8rem;
}

.top-bar-meta .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-socials a {
    color: rgba(255, 255, 255, 0.7);
    margin-right: var(--space-md);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.top-socials a:hover {
    color: var(--accent-gold);
}

.top-controls {
    display: flex;
    gap: var(--space-md);
    align-items: center;
}

.font-resizer span {
    cursor: pointer;
    padding: 0 5px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.font-resizer span:hover {
    color: var(--accent-gold);
}

.language-selector {
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.language-selector:hover {
    color: var(--accent-gold);
}

/* ==================== HEADER / NAV ==================== */
header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
    transition: var(--transition-standard);
}

header.scrolled {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.13);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 48px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: var(--primary-teal);
}

.logo-text span {
    color: var(--accent-gold);
}

/* Desktop Nav */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.1rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    color: var(--primary-teal);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 0.6rem 0.85rem;
    border-radius: var(--radius-sm);
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}

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

/* Dropdown chevron */
.has-dropdown>.nav-link::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 5px;
    font-size: 0.62rem;
    display: inline-block;
    vertical-align: middle;
    transition: transform 0.25s;
}

.has-dropdown:hover>.nav-link::after {
    transform: rotate(180deg);
}

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--primary-teal-dark);
    min-width: 270px;
    list-style: none;
    margin: 0;
    padding: 6px 0;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.28s, transform 0.28s, visibility 0.28s;
    z-index: 200;
}

.nav-item.has-dropdown:hover>.dropdown-menu,
.nav-item.open>.dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu li a {
    display: block;
    padding: 11px 20px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.88rem;
    font-weight: 500;
    transition: background 0.18s, padding-left 0.18s, color 0.18s;
}

.dropdown-menu li a:hover {
    background: rgba(255, 255, 255, 0.09);
    color: var(--accent-gold);
    padding-left: 26px;
}

/* CTA button */
.nav-cta {
    background: var(--accent-gold);
    color: var(--primary-teal) !important;
    padding: 0.5rem 1.2rem !important;
    border-radius: var(--radius-sm);
    font-weight: 900;
    font-size: 0.78rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-left: 0.5rem;
    display: inline-block;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.nav-cta:hover {
    background: var(--accent-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(201, 168, 76, 0.35);
    color: white !important;
}

/* Mobile toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary-teal);
    font-size: 1.6rem;
    cursor: pointer;
    padding: 0.3rem;
    z-index: 1100;
    transition: color 0.2s;
}

.mobile-toggle:hover {
    color: var(--accent-gold);
}

/* Overlay */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1049;
    opacity: 0;
    transition: opacity 0.3s;
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}

/* ==================== MOBILE NAV ==================== */
@media (max-width: 992px) {
    .mobile-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 82%;
        max-width: 320px;
        height: 100vh;
        background: var(--primary-teal);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 0;
        padding: 50px 0 2rem;
        overflow-y: auto;
        box-shadow: -6px 0 24px rgba(0, 0, 0, 0.3);
        z-index: 1050;
        transform: translateX(105%);
        transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    nav {
        width: 0;
        height: 0;
        overflow: visible;
        display: block;
        margin: 0;
    }

    .nav-menu-close {
        position: absolute;
        top: 1.2rem;
        right: 1.2rem;
        background: none;
        border: none;
        color: rgba(255, 255, 255, 0.75);
        font-size: 1.6rem;
        cursor: pointer;
        transition: color 0.2s;
    }

    .nav-menu-close:hover {
        color: var(--accent-gold);
    }

    .nav-drawer-meta {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 1.5rem 1.25rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        margin-bottom: 0.5rem;
        gap: 0.65rem;
    }

    .nav-drawer-font-resizer {
        display: flex;
        gap: 1rem;
        align-items: baseline;
    }

    .nav-drawer-font-resizer span {
        color: rgba(255, 255, 255, 0.75);
        cursor: pointer;
        font-weight: 700;
        user-select: none;
        transition: color 0.2s;
    }

    .nav-drawer-font-resizer span:nth-child(1) {
        font-size: 0.82rem;
    }

    .nav-drawer-font-resizer span:nth-child(2) {
        font-size: 1rem;
    }

    .nav-drawer-font-resizer span:nth-child(3) {
        font-size: 1.2rem;
    }

    .nav-drawer-font-resizer span:hover {
        color: var(--accent-gold);
    }

    .nav-drawer-lang {
        color: rgba(255, 255, 255, 0.75);
        font-size: 0.88rem;
        display: flex;
        align-items: center;
        gap: 0.4rem;
        cursor: pointer;
    }

    .nav-menu .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-menu .nav-link {
        color: white;
        font-size: 0.92rem;
        letter-spacing: 0.4px;
        padding: 1rem 1.5rem;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-radius: 0;
    }

    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active {
        color: var(--accent-gold);
        background: rgba(255, 255, 255, 0.06);
    }

    .has-dropdown>.nav-link::after {
        display: none;
    }

    .has-dropdown>.nav-link .accordion-chevron {
        display: inline-block;
        font-size: 0.78rem;
        transition: transform 0.28s;
        color: rgba(255, 255, 255, 0.55);
    }

    .has-dropdown.open>.nav-link .accordion-chevron {
        transform: rotate(180deg);
        color: var(--accent-gold);
    }

    .dropdown-menu {
        position: static;
        background: rgba(0, 0, 0, 0.18);
        min-width: unset;
        width: 100%;
        border-radius: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: none;
        display: none;
        padding: 4px 0;
        margin: 0;
    }

    .has-dropdown.open>.dropdown-menu {
        display: block;
    }

    .dropdown-menu li a {
        padding: 0.75rem 2.5rem;
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.86rem;
        border-left: 3px solid transparent;
    }

    .dropdown-menu li a:hover {
        background: rgba(255, 255, 255, 0.07);
        color: var(--accent-gold);
        border-left-color: var(--accent-gold);
        padding-left: 2.5rem;
    }

    .nav-menu .nav-cta {
        margin: 1rem 1.5rem;
        padding: 0.75rem 1.5rem !important;
        text-align: center;
        display: block;
        border-radius: var(--radius-sm);
        color: var(--primary-teal) !important;
    }

    .nav-drawer-socials {
        display: flex;
        gap: 1rem;
        padding: 1.25rem 1.5rem 0;
        width: 100%;
    }

    .nav-drawer-socials a {
        color: rgba(255, 255, 255, 0.65);
        font-size: 1.1rem;
        transition: color 0.2s;
    }

    .nav-drawer-socials a:hover {
        color: var(--accent-gold);
    }
}

@media (min-width: 993px) {

    .nav-menu-close,
    .nav-drawer-meta,
    .nav-drawer-socials,
    .accordion-chevron {
        display: none !important;
    }
}

/* ==================== ACCESSIBILITY TOOLBAR ==================== */
.a11y-toolbar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    box-shadow: var(--shadow-md);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    padding: 10px;
    gap: 14px;
}

.a11y-toolbar button {
    background: none;
    border: none;
    color: var(--primary-teal);
    font-size: 1.15rem;
    cursor: pointer;
    transition: 0.2s;
}

.a11y-toolbar button:hover {
    color: var(--accent-gold);
    transform: scale(1.1);
}

/* ==================== HERO ==================== */
.hero-section {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-teal-dark) 60%, #0f2027 100%);
    min-height: 88vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?w=1400&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.08;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.4);
    color: var(--accent-gold);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    color: white;
    margin-bottom: 1.25rem;
    line-height: 1.15;
}

.hero-title span {
    color: var(--accent-gold);
}

.hero-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.82);
    max-width: 640px;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.85rem 2rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-standard);
    border: 2px solid transparent;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: var(--primary-teal);
    color: white;
    border-color: var(--primary-teal);
}

.btn-primary:hover {
    background: var(--primary-teal-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-accent {
    background: var(--accent-gold);
    color: var(--primary-teal);
    border-color: var(--accent-gold);
}

.btn-accent:hover {
    background: var(--accent-gold-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.35);
}

.btn-outline {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
}

.btn-outline-teal {
    background: transparent;
    color: var(--primary-teal);
    border-color: var(--primary-teal);
}

.btn-outline-teal:hover {
    background: var(--primary-teal);
    color: white;
}

/* ==================== SECTION HEADERS ==================== */
.section-label {
    display: inline-block;
    color: var(--accent-gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--primary-teal);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 620px;
    line-height: 1.7;
}

/* ==================== PAGE HERO ==================== */
.page-hero {
    background: linear-gradient(120deg, var(--primary-teal) 0%, var(--primary-teal-dark) 100%);
    padding: 4rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 45%;
    background: rgba(255, 255, 255, 0.03);
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

.page-hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
}

.page-hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.75);
}

.page-hero-breadcrumb a:hover {
    color: var(--accent-gold);
}

.page-hero-breadcrumb .sep {
    color: rgba(255, 255, 255, 0.35);
}

.page-hero h1 {
    color: white;
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 0.75rem;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    max-width: 580px;
}

/* ==================== TAB SYSTEM ==================== */
.tab-system {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
}

.tab-nav {
    flex: 0 0 260px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    position: sticky;
    top: 100px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 107, 90, 0.08);
}

.tab-nav-header {
    background: var(--primary-teal);
    color: white;
    padding: 1rem 1.25rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 1rem 1.25rem;
    background: none;
    border: none;
    border-bottom: 1px solid rgba(0, 107, 90, 0.07);
    text-align: left;
    cursor: pointer;
    font-family: var(--font-main);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-main);
    transition: background 0.2s, color 0.2s, border-left 0.2s;
    border-left: 3px solid transparent;
}

.tab-btn:last-child {
    border-bottom: none;
}

.tab-btn:hover {
    background: var(--primary-teal-xlight);
    color: var(--primary-teal);
}

.tab-btn.active {
    background: white;
    color: var(--primary-teal);
    border-left-color: var(--accent-gold);
    box-shadow: var(--shadow-sm);
}

.tab-btn .tab-icon {
    width: 32px;
    height: 32px;
    background: var(--primary-teal-xlight);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--primary-teal);
    flex-shrink: 0;
    transition: background 0.2s;
}

.tab-btn.active .tab-icon {
    background: var(--primary-teal);
    color: white;
}

.tab-content {
    flex: 1;
    min-width: 0;
}

.tab-panel {
    display: none;
    animation: fadePanel 0.35s ease;
}

.tab-panel.active {
    display: block;
}

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

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

.tab-panel-inner {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 107, 90, 0.06);
}

.tab-panel-image {
    width: 100%;
    height: 320px;
    background: var(--bg-soft);
    overflow: hidden;
    position: relative;
}

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

.tab-panel-inner:hover .tab-panel-image img {
    transform: scale(1.03);
}

.tab-panel-image .image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(0, 74, 56, 0.7) 100%);
}

.tab-panel-image .image-label {
    position: absolute;
    bottom: 1.25rem;
    left: 1.5rem;
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
}

.tab-panel-body {
    padding: 2rem;
}

.tab-panel-body h2 {
    color: var(--primary-teal);
    margin-bottom: 0.5rem;
    font-size: 1.6rem;
}

.tab-panel-body .subtitle {
    color: var(--accent-gold);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.tab-panel-body p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.tab-panel-body h4 {
    color: var(--primary-teal);
    margin: 1.25rem 0 0.5rem;
    font-size: 1rem;
}

/* Content list inside tab panels */
.info-list {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 1.25rem;
}

.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 0.55rem 0;
    border-bottom: 1px solid rgba(0, 107, 90, 0.06);
    font-size: 0.92rem;
    color: var(--text-main);
}

.info-list li:last-child {
    border-bottom: none;
}

.info-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--accent-gold);
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    margin: 1rem 0;
}

.info-card {
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    padding: 1.25rem;
    border-left: 4px solid var(--accent-gold);
}

.info-card h5 {
    color: var(--primary-teal);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.info-card ul li {
    font-size: 0.83rem;
    color: var(--text-muted);
    padding: 3px 0;
    padding-left: 16px;
    position: relative;
}

.info-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-teal);
}

/* Leader cards */
.leader-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.leader-card {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-standard);
    border: 1px solid rgba(0, 107, 90, 0.06);
}

.leader-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.leader-card-photo {
    height: 220px;
    background: linear-gradient(135deg, var(--primary-teal-xlight), var(--bg-soft));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.leader-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-card-photo .photo-placeholder {
    width: 90px;
    height: 90px;
    background: var(--primary-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 2.5rem;
}

.leader-card-body {
    padding: 1.25rem;
}

.leader-card-body h4 {
    color: var(--primary-teal);
    margin-bottom: 3px;
}

.leader-card-body .role {
    color: var(--accent-gold);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 0.75rem;
}

.leader-card-body p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.leader-card-body .bio-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-teal);
    font-weight: 700;
    font-size: 0.83rem;
    margin-top: 0.75rem;
    cursor: pointer;
    border: none;
    background: none;
    transition: color 0.2s;
}

.leader-card-body .bio-toggle:hover {
    color: var(--accent-gold);
}

.leader-bio {
    display: none;
    margin-top: 0.75rem;
    font-size: 0.83rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.leader-bio.open {
    display: block;
}

/* ==================== FEATURE CARDS ==================== */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 107, 90, 0.06);
    border-top: 4px solid var(--primary-teal);
    transition: var(--transition-standard);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-card-icon {
    width: 52px;
    height: 52px;
    background: var(--primary-teal-xlight);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-teal);
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
}

.feature-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.65;
}

/* ==================== STATS BAR ==================== */
.stats-bar {
    background: var(--primary-teal);
    padding: 2.5rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    text-align: center;
}

.stat-item {}

.stat-number {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--accent-gold);
    display: block;
    line-height: 1;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

/* ==================== NEWS CARDS ==================== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.news-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 107, 90, 0.06);
    transition: var(--transition-standard);
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.news-card-img {
    height: 200px;
    background: var(--primary-teal-xlight);
    overflow: hidden;
    position: relative;
}

.news-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-card-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary-teal);
    color: white;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.news-card-body {
    padding: 1.5rem;
}

.news-card-date {
    color: var(--text-light);
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.news-card-title {
    color: var(--text-dark);
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    line-height: 1.4;
}

.news-card-title a {
    color: inherit;
}

.news-card-title a:hover {
    color: var(--primary-teal);
}

.news-card-excerpt {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.news-card-link {
    color: var(--primary-teal);
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.news-card-link:hover {
    color: var(--accent-gold);
}

/* ==================== LOCATION CARDS ==================== */
.location-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 107, 90, 0.06);
    transition: var(--transition-standard);
    display: flex;
    flex-direction: column;
}

.location-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.location-card-body {
    padding: 1.25rem;
    flex: 1;
}

.location-card-body h4 {
    color: var(--primary-teal);
    margin-bottom: 4px;
}

.location-card-body .loc-phone {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.location-card-footer {
    padding: 0.85rem 1.25rem;
    border-top: 1px solid rgba(0, 107, 90, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.loc-tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.loc-tag.snf {
    background: rgba(0, 107, 90, 0.1);
    color: var(--primary-teal);
}

.loc-tag.sh {
    background: rgba(201, 168, 76, 0.15);
    color: var(--accent-gold-hover);
}

/* Location filter tabs */
.filter-tabs {
    display: flex;
    gap: 0.5rem;
    background: var(--bg-light);
    padding: 0.4rem;
    border-radius: var(--radius-full);
    margin-bottom: 2.5rem;
    width: fit-content;
}

.filter-tab {
    padding: 0.55rem 1.4rem;
    border: none;
    background: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: all 0.22s;
}

.filter-tab.active,
.filter-tab:hover {
    background: var(--primary-teal);
    color: white;
}

.filter-tab.active {
    box-shadow: var(--shadow-sm);
}

/* ==================== CASE STUDY CARDS ==================== */
.case-study-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    border-left: 5px solid var(--primary-teal);
    border: 1px solid rgba(0, 107, 90, 0.07);
    border-left: 5px solid var(--primary-teal);
    transition: var(--transition-standard);
}

.case-study-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.case-study-date {
    color: var(--text-light);
    font-size: 0.78rem;
    margin-bottom: 0.5rem;
    display: block;
}

.case-study-card h4 {
    color: var(--primary-teal);
    margin-bottom: 0.6rem;
    font-size: 1.05rem;
}

.case-study-card p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.6;
}

.case-study-card a {
    color: var(--primary-teal);
    font-weight: 700;
    font-size: 0.82rem;
    margin-top: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.case-study-card a:hover {
    color: var(--accent-gold);
}

/* ==================== TESTIMONIAL SECTION ==================== */
.testimonial-section {
    background: var(--primary-teal);
    padding: var(--space-xxl) 0;
    position: relative;
    overflow: hidden;
}

.testimonial-section::before {
    content: '\201C';
    position: absolute;
    top: -20px;
    left: 40px;
    font-size: 18rem;
    line-height: 1;
    color: rgba(255, 255, 255, 0.04);
    font-family: Georgia, serif;
}

.testimonial-body {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-quote {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    line-height: 1.65;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.testimonial-author {
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 0.9rem;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-teal-dark), var(--primary-teal));
    padding: var(--space-xxl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 60%);
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 1.75rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ==================== FOOTER ==================== */
footer {
    background: var(--primary-teal-dark);
    color: rgba(255, 255, 255, 0.75);
    padding: var(--space-xxl) 0 var(--space-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

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

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

.footer-info h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.footer-info p {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-links h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 0.92rem;
    letter-spacing: 0.5px;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    font-size: 0.87rem;
    color: rgba(255, 255, 255, 0.65);
    transition: color 0.2s, padding-left 0.2s;
}

.footer-links ul li a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.footer-links ul li i {
    margin-right: 8px;
    color: var(--accent-gold);
    font-size: 0.8rem;
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-socials a:hover {
    background: var(--accent-gold);
    color: var(--primary-teal);
}

.footer-disclaimer {
    background: rgba(0, 0, 0, 0.15);
    border-radius: var(--radius-sm);
    padding: 1rem 1.5rem;
    font-size: 0.8rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: var(--space-lg);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: var(--space-md);
    text-align: center;
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.45);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a:hover {
    color: var(--accent-gold);
}

/* ==================== MISC UTILITIES ==================== */
.text-center {
    text-align: center;
}

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

.bg-light {
    background: var(--bg-light);
}

.bg-soft {
    background: var(--bg-soft);
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--accent-gold);
    color: var(--primary-teal);
    padding: 8px 16px;
    z-index: 10000;
    font-weight: 700;
}

.skip-link:focus {
    top: 0;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.appeared {
    opacity: 1;
    transform: translateY(0);
}

/* Accessibility */
body.high-contrast {
    background: #000 !important;
    color: #fff !important;
}

body.high-contrast a,
body.high-contrast h1,
body.high-contrast h2,
body.high-contrast h3 {
    color: #ffff00 !important;
}

body.underline-links a {
    text-decoration: underline !important;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .tab-system {
        flex-direction: column;
    }

    .tab-nav {
        flex: unset;
        width: 100%;
        position: static;
    }

    .tab-nav {
        display: flex;
        flex-wrap: wrap;
        border-radius: var(--radius-sm);
    }

    .tab-btn {
        width: 50%;
        border-right: 1px solid rgba(0, 107, 90, 0.07);
    }

    .tab-panel-image {
        height: 200px;
    }

    .hero-section {
        min-height: 75vh;
    }

    .filter-tabs {
        flex-wrap: wrap;
        border-radius: var(--radius-md);
        width: 100%;
    }

    .filter-tab {
        flex: 1;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .tab-btn {
        width: 100%;
    }
}