/* ==========================================================================
   AICC / JNICC MICE Convention Centre — Theme Override Layer
   Non-destructive layer on top of legacy main.css / master.css
   Palette: Tanzania deep green, savanna gold, charcoal black, sky blue, sand
   ========================================================================== */

:root {
    /* Primary palette */
    --aicc-ink-900: #1A140C;
    --aicc-ink-700: #3A332A;
    --aicc-ink-500: #6B6255;
    --aicc-sand-300: #B7AC98;
    --aicc-sand-100: #E7E0D2;
    --aicc-sand-50: #FAF7F1;
    --aicc-white: #FFFFFF;
    --aicc-amber: #C96A0A;
    --aicc-amber-hi: #E8940F;
    --aicc-amber-tint: #FFF1DB;
    --aicc-green: #1E7B34;
    --aicc-green-tint: #E4F5E8;
    --aicc-blue: #0C7FB0;
    --aicc-blue-tint: #E5F3F9;
    --aicc-terracotta: #B4321E;
    --aicc-text: #F1F5F9;
    --aicc-text-dim: #B7AC98;
    --aicc-text-faint: #6B6255;
    --aicc-border: rgba(183, 172, 152, 0.08);
    --aicc-border-strong: rgba(183, 172, 152, 0.14);

    /* Legacy compatibility */
    --aicc-green: #1E7B34;
    --aicc-green-dark: #12362b;
    --aicc-green-light: #2a7a62;
    --aicc-gold: #E8940F;
    --aicc-gold-light: #e8bf4f;
    --aicc-gold-dark: #C96A0A;
    --aicc-charcoal: #1A140C;
    --aicc-graphite: #2d2d2d;
    --aicc-sky: #0C7FB0;
    --aicc-sky-light: #E5F3F9;
    --aicc-sand: #FAF7F1;
    --aicc-sand-dark: #E7E0D2;
    --aicc-off-white: #FAF7F1;
    --aicc-text-muted: #B7AC98;
    --aicc-shadow: rgba(26, 20, 12, 0.12);
    --aicc-shadow-lg: rgba(26, 20, 12, 0.2);

    /* Legacy overrides */
    --eastern-blue: var(--aicc-green);
    --primary-color: var(--aicc-green);
    --accent-color: var(--aicc-gold);
    --tacao: var(--aicc-gold);
    --burnt-sienna: var(--aicc-gold-dark);
    --glacier: var(--aicc-sky);
    --eternity: var(--aicc-charcoal);
    --powder-blue: var(--aicc-sky-light);
    --catalina-blue: var(--aicc-green-dark);
    --chathams-blue: var(--aicc-green-light);
}

/* Typography helpers */
.aicc-font-heading { font-family: 'Open Sans', sans-serif; }
.aicc-font-body { font-family: 'Open Sans', sans-serif; }

/* Open Sans weight utilities */
.open-sans-300 { font-family: 'Open Sans', sans-serif; font-weight: 300; }
.open-sans-400 { font-family: 'Open Sans', sans-serif; font-weight: 400; }
.open-sans-600 { font-family: 'Open Sans', sans-serif; font-weight: 600; }
.open-sans-700 { font-family: 'Open Sans', sans-serif; font-weight: 700; }
.open-sans-800 { font-family: 'Open Sans', sans-serif; font-weight: 800; }

/* Global typography */
body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--aicc-text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--aicc-charcoal);
}

h1, .h1 { font-size: 2.5rem; font-weight: 700; }
h2, .h2 { font-size: 2rem; font-weight: 700; }
h3, .h3 { font-size: 1.75rem; font-weight: 600; }
h4, .h4 { font-size: 1.5rem; font-weight: 600; }
h5, .h5 { font-size: 1.25rem; font-weight: 600; }
h6, .h6 { font-size: 1rem; font-weight: 600; }

p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

a {
    font-family: 'Open Sans', sans-serif;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Responsive typography */
@media (max-width: 991.98px) {
    h1, .h1 { font-size: 2rem; }
    h2, .h2 { font-size: 1.75rem; }
    h3, .h3 { font-size: 1.5rem; }
}

@media (max-width: 575.98px) {
    h1, .h1 { font-size: 1.75rem; }
    h2, .h2 { font-size: 1.5rem; }
    h3, .h3 { font-size: 1.25rem; }
    body { font-size: 15px; }
}

/* Color helpers */
.text-aicc-green { color: var(--aicc-green) !important; }
.text-aicc-gold { color: var(--aicc-gold) !important; }
.bg-aicc-green { background-color: var(--aicc-green) !important; }
.bg-aicc-gold { background-color: var(--aicc-gold) !important; }
.border-aicc-gold { border-color: var(--aicc-gold) !important; }

/* Button sizes */
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.85rem; }
.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; }

/* --------------------------------------------------------------------------
   Button system
   -------------------------------------------------------------------------- */
.btn-aicc-primary,
.btn-aicc-outline,
.btn-aicc-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    border-radius: 50px;
    padding: 0.75rem 1.75rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-aicc-primary {
    background: var(--aicc-green);
    color: var(--aicc-white);
    box-shadow: 0 4px 14px var(--aicc-shadow);
}
.btn-aicc-primary:hover,
.btn-aicc-primary:focus {
    background: var(--aicc-green-dark);
    color: var(--aicc-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--aicc-shadow-lg);
}

.btn-aicc-outline {
    background: transparent;
    color: var(--aicc-green);
    border-color: var(--aicc-green);
}
.btn-aicc-outline:hover,
.btn-aicc-outline:focus {
    background: var(--aicc-green);
    color: var(--aicc-white);
    transform: translateY(-2px);
}

.btn-aicc-gold {
    background: var(--aicc-gold);
    color: var(--aicc-charcoal);
    box-shadow: 0 4px 14px rgba(212, 160, 23, 0.3);
}
.btn-aicc-gold:hover,
.btn-aicc-gold:focus {
    background: var(--aicc-gold-dark);
    color: var(--aicc-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 160, 23, 0.4);
}

/* --------------------------------------------------------------------------
   Top utility bar
   -------------------------------------------------------------------------- */
.aicc-topbar {
    background: #1a1a1a;
    color: #fff;
    font-size: 0.85rem;
    padding: 0.35rem 0;
}
.aicc-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.aicc-topbar-left,
.aicc-topbar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.aicc-topbar-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.2s ease;
    font-weight: 500;
}
.aicc-topbar-link:hover { color: var(--aicc-gold-light); }
.aicc-topbar-search {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    min-width: 220px;
}
.aicc-topbar-search input {
    border: none;
    padding: 0.35rem 0.75rem;
    font-size: 0.8rem;
    flex: 1;
    outline: none;
    color: #333;
    background: transparent;
}
.aicc-topbar-search button {
    border: none;
    background: var(--aicc-gold);
    color: #fff;
    padding: 0.35rem 0.85rem;
    cursor: pointer;
    transition: background 0.2s ease;
}
.aicc-topbar-search button:hover { background: var(--aicc-gold-dark); }
.aicc-topbar-social {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.aicc-topbar-social a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}
.aicc-topbar-social a:hover { color: var(--aicc-gold-light); }
@media (max-width: 991.98px) {
    .aicc-topbar-search { display: none; }
}
@media (max-width: 575.98px) {
    .aicc-topbar-link span { display: none; }
    .aicc-topbar-link i { font-size: 1rem; }
}

/* --------------------------------------------------------------------------
   Header responsive styles (app.blade.php)
   -------------------------------------------------------------------------- */
header .top_nav {
    font-size: 0.85rem;
    padding: 0.5rem 0;
}
header .emblem {
    max-height: 80px;
    width: auto;
    transition: transform 0.3s ease;
}
header .emblem:hover { transform: scale(1.05); }
header .client-logo img {
    max-height: 80px;
    width: auto;
    transition: transform 0.3s ease;
}
header .client-logo img:hover { transform: scale(1.05); }
header .title {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}
header .title-desc {
    color: #ffffff;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}
@media (max-width: 991.98px) {
    header .emblem { max-height: 65px; }
    header .client-logo img { max-height: 65px; }
    header .title { font-size: 0.8rem; }
    header .title-desc { font-size: 1.2rem; }
}
@media (max-width: 767.98px) {
    header .emblem { max-height: 55px; }
    header .client-logo img { max-height: 55px; }
    header .title { font-size: 0.75rem; }
    header .title-desc { font-size: 1rem; }
}
@media (max-width: 575.98px) {
    header .emblem { max-height: 45px; }
    header .client-logo img { max-height: 45px; }
    header .title { font-size: 0.7rem; }
    header .title-desc { font-size: 0.9rem; }
}

/* --------------------------------------------------------------------------
   Brand strip
   -------------------------------------------------------------------------- */
.aicc-brand-strip {
    background: var(--aicc-gold);
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.aicc-brand-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.aicc-brand-emblem { flex-shrink: 0; }
.aicc-brand-emblem img { height: 85px; width: auto; }
.aicc-brand-logo { flex-shrink: 0; }
.aicc-brand-logo img { height: 95px; width: auto; }
.aicc-brand-text {
    text-align: center;
    flex-grow: 1;
    color: #fff;
}
.aicc-brand-country {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.95;
    margin-bottom: 0.25rem;
}
.aicc-brand-title {
    font-size: clamp(1.3rem, 3.5vw, 2.2rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.1;
    margin: 0;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
@media (max-width: 991.98px) {
    .aicc-brand-emblem img { height: 65px; }
    .aicc-brand-logo img { height: 75px; }
    .aicc-brand-country { font-size: 0.8rem; }
}
@media (max-width: 767.98px) {
    .aicc-brand-strip-inner { flex-wrap: nowrap; justify-content: space-between; }
    .aicc-brand-emblem img { height: 55px; }
    .aicc-brand-logo img { height: 65px; }
    .aicc-brand-title { font-size: 1.1rem; }
}
@media (max-width: 575.98px) {
    .aicc-brand-emblem img { height: 45px; }
    .aicc-brand-logo img { height: 55px; }
    .aicc-brand-country { font-size: 0.7rem; }
    .aicc-brand-title { font-size: 0.9rem; }
}

/* --------------------------------------------------------------------------
   Sticky navigation overrides
   -------------------------------------------------------------------------- */
.aicc-navbar {
    background: #f5f5f5 !important;
    border-bottom: 1px solid #e5e5e5;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 1030;
}
.aicc-navbar .navbar-nav {
    align-items: center;
    gap: 0.25rem;
}
.aicc-navbar .navbar-nav .nav-link {
    color: #2c2c2c !important;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.9rem 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s ease, background 0.2s ease;
    border-radius: 4px;
}
.aicc-navbar .navbar-nav .nav-link:hover,
.aicc-navbar .navbar-nav .nav-link:focus,
.aicc-navbar .navbar-nav .nav-link.active {
    color: var(--aicc-gold) !important;
    background: transparent;
}
.aicc-navbar .dropdown-menu {
    border: none;
    border-top: 3px solid var(--aicc-gold);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    border-radius: 0 0 0.5rem 0.5rem;
    padding: 0.5rem 0;
    background: #fff;
}
.aicc-navbar .dropdown-item {
    color: #2c2c2c;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.6rem 1.25rem;
    transition: background 0.18s, color 0.18s;
}
.aicc-navbar .dropdown-item:hover,
.aicc-navbar .dropdown-item:focus {
    background: #f5f5f5;
    color: var(--aicc-gold);
}
.aicc-navbar .navbar-toggler {
    border-color: var(--aicc-gold);
    color: var(--aicc-gold);
    padding: 0.5rem 0.75rem;
}
.aicc-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23E19209' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 1.5em;
    height: 1.5em;
}
@media (max-width: 991.98px) {
    .aicc-navbar .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
}
@media (max-width: 575.98px) {
    .aicc-navbar .navbar-nav .nav-link {
        padding: 0.6rem 0.75rem;
        font-size: 0.85rem;
    }
}

/* Navigation CTA buttons */
.aicc-nav-cta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.aicc-nav-cta .btn-nav-gold,
.aicc-nav-cta .btn-nav-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.6rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
}
.aicc-nav-cta .btn-nav-gold {
    background: var(--aicc-gold);
    color: #fff;
    border: 1px solid var(--aicc-gold);
}
.aicc-nav-cta .btn-nav-gold:hover {
    background: var(--aicc-gold-dark);
    border-color: var(--aicc-gold-dark);
    color: #fff;
}
.aicc-nav-cta .btn-nav-dark {
    background: #1a1a1a;
    color: #fff;
    border: 1px solid #1a1a1a;
}
.aicc-nav-cta .btn-nav-dark:hover {
    background: #333;
    border-color: #333;
    color: #fff;
}
@media (max-width: 991.98px) {
    .aicc-nav-cta {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        flex-direction: column;
        align-items: stretch;
        padding: 0.75rem 1rem;
    }
    .aicc-navbar .navbar-nav .nav-link { padding: 0.85rem 1rem; border-bottom: 1px solid #e5e5e5; }
}
@media (max-width: 575.98px) {
    .aicc-nav-cta .btn-nav-gold,
    .aicc-nav-cta .btn-nav-dark {
        font-size: 0.7rem;
        padding: 0.5rem 0.75rem;
    }
}

/* --------------------------------------------------------------------------
   Offcanvas Sidebar (Mobile Navigation)
   -------------------------------------------------------------------------- */
.offcanvas {
    background: #fff;
    border-right: 1px solid #e5e5e5;
}
.offcanvas .offcanvas-header {
    border-bottom: 1px solid #e5e5e5;
    padding: 1rem 1.25rem;
    background: var(--aicc-gold);
    text-align: left;
}
.offcanvas .offcanvas-title {
    margin: 0;
}
.offcanvas .offcanvas-title img {
    height: 40px;
    width: auto;
}
.offcanvas .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: opacity 0.2s ease;
}
.offcanvas .btn-close:hover { opacity: 1; }
.offcanvas .offcanvas-body {
    padding: 0;
    overflow-y: auto;
    text-align: left;
}
.offcanvas .navbar-nav {
    padding: 1rem 0;
}
.offcanvas .nav-link {
    color: #2c2c2c;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0;
    transition: all 0.2s ease;
    text-align: left;
}
.offcanvas .nav-link:hover,
.offcanvas .nav-link:focus,
.offcanvas .nav-link.active {
    background: #f5f5f5;
    color: var(--aicc-gold);
    padding-left: 1.75rem;
}
.offcanvas .dropdown-menu {
    border: none;
    background: #f9f9f9;
    box-shadow: none;
    border-radius: 0;
    padding: 0.5rem 0;
    margin: 0;
    text-align: left;
}
.offcanvas .dropdown-item {
    color: #2c2c2c;
    font-size: 0.9rem;
    padding: 0.6rem 1.5rem 0.6rem 2.5rem;
    transition: all 0.2s ease;
    text-align: left;
}
.offcanvas .dropdown-item:hover,
.offcanvas .dropdown-item:focus {
    background: #f0f0f0;
    color: var(--aicc-gold);
    padding-left: 2.75rem;
}
.offcanvas .dropdown-divider {
    margin: 0.5rem 0;
    border-color: #e5e5e5;
}
.offcanvas .btn-aicc-gold,
.offcanvas .btn-aicc-dark {
    margin: 0 1.5rem;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    transition: all 0.25s ease;
    text-align: left;
}
.offcanvas .btn-aicc-gold {
    background: var(--aicc-gold);
    color: #fff;
    border: 1px solid var(--aicc-gold);
}
.offcanvas .btn-aicc-gold:hover {
    background: var(--aicc-gold-dark);
    border-color: var(--aicc-gold-dark);
    color: #fff;
}
.offcanvas .btn-aicc-dark {
    background: #1a1a1a;
    color: #fff;
    border: 1px solid #1a1a1a;
}
.offcanvas .btn-aicc-dark:hover {
    background: #333;
    border-color: #333;
    color: #fff;
}
@media (max-width: 575.98px) {
    .offcanvas .offcanvas-header { padding: 0.875rem 1rem; }
    .offcanvas .offcanvas-title img { height: 35px; }
    .offcanvas .nav-link { font-size: 0.9rem; padding: 0.65rem 1.25rem; }
    .offcanvas .nav-link:hover,
    .offcanvas .nav-link:focus,
    .offcanvas .nav-link.active { padding-left: 1.5rem; }
    .offcanvas .dropdown-item { font-size: 0.85rem; padding: 0.55rem 1.25rem 0.55rem 2rem; }
    .offcanvas .dropdown-item:hover,
    .offcanvas .dropdown-item:focus { padding-left: 2.25rem; }
    .offcanvas .btn-aicc-gold,
    .offcanvas .btn-aicc-dark { margin: 0 1.25rem; font-size: 0.8rem; padding: 0.65rem 0.875rem; }
}

/* --------------------------------------------------------------------------
   Hero overrides for split-carousel design
   -------------------------------------------------------------------------- */
.aicc-hero {
    background: white;
    position: relative;
    overflow: hidden;
}
.aicc-hero .split-carousel-container {
    min-height: 620px;
}
.aicc-hero .carousel-title {
    background: linear-gradient(135deg, var(--aicc-green), var(--aicc-green-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.aicc-hero .carousel-description {
    color: var(--aicc-text-muted);
}
.aicc-hero .btn-primary-custom {
    background: var(--aicc-green);
    box-shadow: 0 4px 16px rgba(27, 77, 62, 0.3);
}
.aicc-hero .btn-primary-custom:hover {
    background: var(--aicc-green-dark);
    box-shadow: 0 8px 24px rgba(27, 77, 62, 0.4);
}
.aicc-hero .btn-secondary-custom {
    color: var(--aicc-green);
    border-color: var(--aicc-green);
}
.aicc-hero .btn-secondary-custom:hover {
    background: var(--aicc-green);
    color: var(--aicc-white);
}
.aicc-hero .image-decoration {
    background: linear-gradient(135deg, var(--aicc-green-light), var(--aicc-gold));
}
.aicc-hero .floating-shape.shape-1 { background: rgba(212, 160, 23, 0.25); }
.aicc-hero .floating-shape.shape-2 { background: rgba(27, 77, 62, 0.2); }
.aicc-hero .modern-control:hover { background: var(--aicc-green); }
.aicc-hero .modern-control .control-icon { color: var(--aicc-green); }
.aicc-hero .modern-control:hover .control-icon { color: var(--aicc-white); }
.aicc-hero .carousel-indicators-custom button.active { background: var(--aicc-green); }
.aicc-hero .indicator-line { background: var(--aicc-gold); }

/* CEO / welcome card in hero */
.aicc-hero .ceo-badge,
.aicc-hero .welcome-icon {
    background: linear-gradient(135deg, var(--aicc-green), var(--aicc-green-light));
}
.aicc-hero .ceo-title,
.aicc-hero .stat-number,
.aicc-hero .quick-link:hover { color: var(--aicc-green); }
.aicc-hero .quick-link:hover::after { background: var(--aicc-green); }
.aicc-hero .ceo-image-background {
    background: linear-gradient(135deg, var(--aicc-green-light), var(--aicc-gold));
}
.aicc-hero .social-links a:hover { background: var(--aicc-gold); }
.aicc-hero .btn-modern-primary {
    background: linear-gradient(135deg, var(--aicc-green), var(--aicc-green-light));
    box-shadow: 0 4px 16px rgba(27, 77, 62, 0.3);
}
.aicc-hero .btn-modern-primary:hover {
    box-shadow: 0 8px 24px rgba(27, 77, 62, 0.4);
}

/* --------------------------------------------------------------------------
   Statistics strip
   -------------------------------------------------------------------------- */
.aicc-stats-strip {
    background: var(--aicc-green);
    color: var(--aicc-white);
    padding: 2.5rem 0;
    position: relative;
}
.aicc-stats-strip .stat-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--aicc-gold-light);
    margin-bottom: 0.75rem;
}
.aicc-stats-strip .stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--aicc-white);
}
.aicc-stats-strip .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --------------------------------------------------------------------------
   Section headings
   -------------------------------------------------------------------------- */
.aicc-section-header .aicc-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--aicc-gold-dark);
    display: block;
    margin-bottom: 0.5rem;
}
.aicc-section-header .aicc-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--aicc-green);
    margin-bottom: 0.75rem;
}
.aicc-section-header .aicc-subtitle {
    color: var(--aicc-text-muted);
    max-width: 700px;
}

/* --------------------------------------------------------------------------
   Why Choose AICC cards
   -------------------------------------------------------------------------- */
.aicc-feature-card {
    background: var(--aicc-white);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid var(--aicc-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    height: 100%;
}
.aicc-feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--aicc-gold);
    box-shadow: 0 16px 40px var(--aicc-shadow);
}
.aicc-feature-card .feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--aicc-green), var(--aicc-green-light));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--aicc-white);
    margin-bottom: 1.25rem;
}
.aicc-feature-card .feature-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--aicc-green);
    margin-bottom: 0.75rem;
}
.aicc-feature-card .feature-text {
    color: var(--aicc-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* --------------------------------------------------------------------------
   Discover Tanzania tourism strip
   -------------------------------------------------------------------------- */
.aicc-tourism-strip {
    background: linear-gradient(to right, var(--aicc-sand), var(--aicc-off-white));
    padding: 4rem 0;
}
.aicc-destination-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    height: 260px;
    display: block;
    text-decoration: none;
}
.aicc-destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.aicc-destination-card:hover img { transform: scale(1.08); }
.aicc-destination-card .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(27, 77, 62, 0.85), transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 1.25rem;
}
.aicc-destination-card .destination-name {
    color: var(--aicc-white);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}
.aicc-destination-card .destination-tag {
    color: var(--aicc-gold-light);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* --------------------------------------------------------------------------
   Partners / sponsors
   -------------------------------------------------------------------------- */
.aicc-partners-section {
    background: var(--aicc-off-white);
    padding: 3.5rem 0;
}
.aicc-partner-card {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--aicc-white);
    border: 1px solid var(--aicc-border);
    border-radius: 1rem;
    height: 120px;
    padding: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.aicc-partner-card:hover {
    transform: translateY(-5px);
    border-color: var(--aicc-gold);
    box-shadow: 0 12px 28px var(--aicc-shadow);
}
.aicc-partner-card img {
    max-width: 80%;
    max-height: 70px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.75;
    transition: filter 0.3s ease, opacity 0.3s ease;
}
.aicc-partner-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* --------------------------------------------------------------------------
   Page Headers
   -------------------------------------------------------------------------- */


/* AICC page header with image + transparent overlay */
.aicc-page-header {
    --aicc-page-header-bg: none;
    position: relative;
    min-height: 340px;
    display: flex;
    align-items: center;
    color: var(--aicc-text);
    overflow: hidden;
    background-color: var(--aicc-ink-900);
    background-image: var(--aicc-page-header-bg);
    background-position: center, center;
    background-size: cover, cover;
    background-repeat: no-repeat, no-repeat;
}

.aicc-page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 20, 12, 0.85) 0%, rgba(201, 106, 10, 0.15) 100%);
    z-index: 0;
}

.aicc-page-header .container,
.aicc-page-header .row {
    position: relative;
    z-index: 1;
}

.aicc-page-header h1,
.aicc-page-header .page-title {
    color: var(--aicc-white);
    font-weight: 700;
}

.aicc-page-header .breadcrumb {
    background: transparent;
    padding: 0;
}

.aicc-page-header .breadcrumb-item a {
    color: var(--aicc-sand-100);
}

.aicc-page-header .breadcrumb-item.active {
    color: var(--aicc-amber-hi);
}

@media (max-width: 767.98px) {
    .aicc-page-header {
        min-height: 260px;
    }
}



/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.aicc-footer {
    background: var(--aicc-charcoal);
    color: rgba(255, 255, 255, 0.8);
    padding-top: 4rem;
}
.aicc-footer .footer-heading {
    color: var(--aicc-gold-light);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}
.aicc-footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.aicc-footer .footer-links li { margin-bottom: 0.75rem; }
.aicc-footer .footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.92rem;
    transition: color 0.2s ease, padding 0.2s ease;
    display: inline-flex;
    align-items: center;
}
.aicc-footer .footer-links a:hover {
    color: var(--aicc-gold-light);
    padding-left: 4px;
}
.aicc-footer .footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.92rem;
}
.aicc-footer .footer-contact-icon {
    color: var(--aicc-gold-light);
    font-size: 1rem;
    margin-top: 0.15rem;
}
.aicc-footer .footer-contact-text a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}
.aicc-footer .footer-contact-text a:hover { color: var(--aicc-gold-light); }
.aicc-footer .footer-contact-social-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.aicc-footer .footer-contact-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.025rem;
}

.aicc-footer .footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    min-width: 200px;
}

.aicc-footer .footer-social {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.aicc-footer .footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--aicc-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 0;
    margin-bottom: 0;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.aicc-footer .footer-social a:hover {
    background: var(--aicc-gold);
    color: var(--aicc-charcoal);
    transform: translateY(-3px);
}

/* Social & Contact Row in Brand Column */
.aicc-footer .footer-social-contact-row {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.aicc-footer .footer-social-contact-row .footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.aicc-footer .footer-social-contact-row .footer-social a {
    margin-right: 0;
    margin-bottom: 0;
}
.aicc-footer .footer-social-contact-row .footer-contact-item {
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
}
.aicc-footer .footer-social-contact-row .footer-contact-item:last-child {
    margin-bottom: 0;
}
.aicc-footer .footer-social-contact-row .footer-contact-icon {
    font-size: 0.9rem;
    margin-top: 0.1rem;
}

/* Statistics Strip */
.aicc-stats-strip {
    position: relative;
    padding: 5rem 0 4rem;
    background: linear-gradient(135deg, #0f1f1b 0%, rgba(27, 77, 62, 0.95) 55%, rgba(18, 54, 43, 0.92) 100%);
    overflow: hidden;
    color: var(--aicc-white);
}

.aicc-stats-background {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(225, 146, 9, 0.22), transparent 45%),
                radial-gradient(circle at 80% 0%, rgba(71, 172, 132, 0.25), transparent 55%),
                radial-gradient(circle at 50% 100%, rgba(225, 146, 9, 0.18), transparent 60%);
}

/* --------------------------------------------------------------------------
   Carousel Image Flowing Effect
   -------------------------------------------------------------------------- */
.aicc-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 8s ease;
}
.carousel-item.active .aicc-hero-img {
    transform: scale(1.05);
}
.aicc-hero-slide {
    position: relative;
    height: 680px;
    overflow: hidden;
    display: flex;
    align-items: stretch;
}
.aicc-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(27, 77, 62, 0.85) 0%, rgba(27, 77, 62, 0.5) 50%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 2;
}

.aicc-stats-strip .container {
    position: relative;
    z-index: 2;
}

.aicc-stats-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.aicc-stats-header h2 {
    color: var(--aicc-white);
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin: 0;
}

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

.aicc-stat-card {
    position: relative;
    padding: 2.5rem 2rem 2rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.aicc-stat-card::after {
    content: '';
    position: absolute;
    inset: -60% -40% auto auto;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(225, 146, 9, 0.35) 0%, transparent 75%);
    opacity: 0.75;
    transform: rotate(35deg);
}

.aicc-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.26);
}

.aicc-stat-badge {
    position: absolute;
    top: 18px;
    right: 20px;
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.aicc-stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    color: var(--aicc-gold-light);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

/* --------------------------------------------------------------------------
   Gallery styles (from eGA design)
   -------------------------------------------------------------------------- */
.gallery-holder {
    background: linear-gradient(170deg, hsla(0, 0%, 50%, .0392156863), transparent, hsla(0, 0%, 50%, .0392156863));
    box-shadow: 2px 7px 6px 0 rgba(26, 42, 50, .1019607843);
}

.gallery-holder:hover .gallery-effect {
    transition: all .5s ease-in;
    background-color: rgb(238.5185185185, 196.7777777778, 2.9814814815) !important;
}

.gallery-holder:hover .gallery-image-overlay {
    background: linear-gradient(1deg, rgba(0, 0, 0, .81), transparent);
}

.gallery-image-holder {
    width: 100%;
    height: 300px;
}

.gallery-image-holder.news-holder {
    height: 200px;
}

.gallery-image-holder .gallery-image-overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    background: linear-gradient(1deg, rgba(0, 0, 0, .51), transparent);
    transition: transform .6s ease-in-out, opacity .6s ease-in-out;
    z-index: 1;
}

.gallery-image-holder .gallery-effect {
    position: absolute;
    height: 100%;
    width: 100%;
    left: -10px;
    bottom: -15px;
    transition: all .5s ease-in;
    z-index: 0;
}

.gallery-image-holder img {
    height: 100%;
    position: relative;
    object-fit: cover;
}

.gallery-image-holder2 {
    height: 300px !important;
    transition: all .5s ease-in-out;
}

.aicc-stat-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.65rem;
    position: relative;
    z-index: 1;
}

.aicc-stat-value {
    font-size: clamp(2.4rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--aicc-white);
    margin: 0;
    line-height: 1;
    position: relative;
    z-index: 1;
}

@media (max-width: 767.98px) {
    .aicc-stats-strip {
        padding: 3.5rem 0;
    }
    .aicc-stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1rem;
    }
    .aicc-stat-card {
        padding: 2rem 1.5rem 1.75rem;
    }
    .aicc-stat-icon {
        width: 50px;
        height: 50px;
    }
}

/* --------------------------------------------------------------------------
   Mobile Sidebar Navigation (Custom Implementation)
   -------------------------------------------------------------------------- */
/* Prevents background scroll while sidebar is open */
body.aicc-no-scroll {
    overflow: hidden;
}

/* Mobile toggle button (hamburger, self-animating to an X) */
.aicc-sidebar-toggle {
    border: none;
    background: transparent;
    padding: 10px 12px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.aicc-sidebar-toggle:hover {
    background-color: rgba(27, 77, 62, 0.08);
}

.aicc-sidebar-toggle:focus-visible {
    box-shadow: 0 0 0 3px rgba(27, 77, 62, 0.2);
    outline: none;
}

@media (min-width: 992px) {
    .aicc-sidebar-toggle {
        display: none !important;
    }
}

.aicc-toggle-bar {
    display: block;
    width: 26px;
    height: 3px;
    background-color: var(--aicc-green);
    border-radius: 3px;
    transform-origin: center;
    transition: transform 0.25s ease, opacity 0.25s ease, background-color 0.2s ease;
}

.aicc-sidebar-toggle:hover .aicc-toggle-bar {
    background-color: var(--aicc-green-light);
}

/* Hamburger -> X, driven purely by [aria-expanded] on the button */
.aicc-sidebar-toggle[aria-expanded="true"] .aicc-toggle-bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.aicc-sidebar-toggle[aria-expanded="true"] .aicc-toggle-bar:nth-child(2) {
    opacity: 0;
}

.aicc-sidebar-toggle[aria-expanded="true"] .aicc-toggle-bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Backdrop */
.aicc-sidebar-backdrop {
    position: fixed;
    inset: 0;
    background-color: rgba(27, 77, 62, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease;
    z-index: 1040;
}

.aicc-sidebar-backdrop.is-visible {
    opacity: 1;
    visibility: visible;
}

/* Custom sidebar shell (fixed panel, own slide animation) */
.aicc-mobile-sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: min(280px, 80vw);
    background-color: var(--aicc-white);
    box-shadow: 12px 0 32px rgba(27, 77, 62, 0.15);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.aicc-mobile-sidebar.is-open {
    transform: translateX(0);
}

.aicc-sidebar-header {
    background: linear-gradient(135deg, var(--aicc-gold-dark) 0%, var(--aicc-gold) 100%);
    color: var(--aicc-white);
    padding: 1.5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.aicc-sidebar-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 100%;
}

.aicc-sidebar-logo {
    max-height: 70px;
    width: auto;
}

.aicc-sidebar-close {
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: var(--aicc-white);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, transform 0.2s ease;
    cursor: pointer;
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.aicc-sidebar-close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(90deg);
}

.aicc-sidebar-body {
    overflow-y: auto;
    flex: 1 1 auto;
    -webkit-overflow-scrolling: touch;
}

/* Sidebar nav list */
.aicc-sidebar-nav {
    padding: 0.5rem 0 1.5rem;
}

.aicc-sidebar-item {
    border-bottom: none;
}

.aicc-sidebar-link {
    display: flex;
    align-items: center;
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 1rem 1.4rem;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--aicc-charcoal);
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
    font-family: 'Open Sans', sans-serif;
}

.aicc-sidebar-link:hover,
.aicc-sidebar-link:focus {
    background-color: var(--aicc-white);
    color: var(--aicc-green);
}

.aicc-sidebar-icon {
    width: 26px;
    margin-right: 0.9rem;
    color: var(--aicc-gold);
    text-align: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.aicc-sidebar-toggle-btn span {
    flex: 1;
}

.aicc-sidebar-caret {
    font-size: 0.8rem;
    color: var(--aicc-text-muted);
    transition: transform 0.25s ease;
}

/* Caret + button styling driven purely by [aria-expanded] */
.aicc-sidebar-toggle-btn[aria-expanded="true"] .aicc-sidebar-caret {
    transform: rotate(180deg);
    color: var(--aicc-gold);
}

.aicc-sidebar-toggle-btn[aria-expanded="true"] {
    color: var(--aicc-green);
    background-color: var(--aicc-white);
}

/* Sub menu (accordion body) - Animated with CSS grid-template-rows trick */
.aicc-sidebar-submenu {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
    margin: 0;
}

.aicc-sidebar-submenu.is-open {
    grid-template-rows: 1fr;
}

.aicc-sidebar-submenu > ul {
    overflow: hidden;
    min-height: 0;
    margin: 0;
}

.aicc-sidebar-submenu ul {
    padding: 0;
    background-color: var(--aicc-white);
}

.aicc-sidebar-submenu a {
    display: block;
    padding: 0.7rem 1.4rem 0.7rem 3.4rem;
    font-size: 1rem;
    color: var(--aicc-charcoal);
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
}

.aicc-sidebar-submenu a:hover {
    color: var(--aicc-green);
    padding-left: 3.6rem;
}

.aicc-sidebar-subheading {
    padding: 0.8rem 1.4rem 0.3rem 3.4rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--aicc-gold);
}

.aicc-sidebar-download {
    padding: 0.7rem 1.4rem 0.4rem 3.4rem;
}

.aicc-sidebar-download-btn {
    display: inline-flex !important;
    align-items: center;
    padding: 0.6rem 1rem !important;
    background-color: var(--aicc-green);
    color: var(--aicc-white) !important;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem !important;
    font-family: 'Open Sans', sans-serif;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.aicc-sidebar-download-btn:hover {
    background-color: var(--aicc-green-dark);
    color: var(--aicc-white) !important;
    padding-left: 1rem !important;
    transform: translateY(-1px);
}


/* Desktop mega-menu accent overrides */
@media (min-width: 992px) {
    .mega-menu-link:hover,
    .mega-menu-link:hover .mega-menu-link-icon {
        color: var(--aicc-green) !important;
    }

    .mega-menu-subtitle {
        color: var(--aicc-green);
    }

    .aicc-navbar .nav-link.dropdown-toggle:hover {
        color: var(--aicc-gold);
    }
}

@media (max-width: 575.98px) {
    .aicc-mobile-sidebar {
        width: 85vw;
    }
    
    .aicc-sidebar-header {
        padding: 1rem 1.25rem;
    }
    
    .aicc-sidebar-brand {
        font-size: 1rem;
    }
    
    .aicc-sidebar-link {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .aicc-sidebar-submenu a {
        padding: 0.55rem 1.2rem 0.55rem 3.2rem;
        font-size: 0.85rem;
    }
    
    .aicc-sidebar-submenu a:hover {
        padding-left: 3.4rem;
    }
}

/* Delegate Resources */
.aicc-resources-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f7f9fb 0%, #eef3f8 100%);
}

.aicc-resources-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.aicc-resources-header h2 {
    margin: 0;
    font-size: clamp(2rem, 3.5vw, 2.6rem);
}

.aicc-resources-grid {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(340px, 1.5fr);
    gap: 2.5rem;
}

.aicc-resource-card {
    position: relative;
    border-radius: 24px;
    padding: 2.5rem;
    background: var(--aicc-white);
    box-shadow: 0 18px 40px rgba(15, 40, 100, 0.08);
    overflow: hidden;
}

.aicc-resource-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.aicc-resource-card--metrics {
    background: linear-gradient(140deg, rgba(27, 77, 62, 0.98) 0%, rgba(18, 54, 43, 0.95) 70%);
    color: var(--aicc-white);
}

.aicc-resource-card--metrics p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.75rem;
}

.aicc-resource-card__overlay {
    position: absolute;
    inset: auto -40% 40% auto;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(225, 146, 9, 0.5), transparent 65%);
    opacity: 0.4;
    transform: rotate(25deg);
}

.aicc-resource-metrics {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.aicc-resource-metrics li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 0.85rem 1.25rem;
}

.aicc-resource-metrics .metric-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.aicc-resource-metrics .metric-value {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--aicc-gold-light);
}

.aicc-resource-card--library {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.aicc-resource-card__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.aicc-resource-filter {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 220px;
}

.aicc-resource-filter .form-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--aicc-text-muted);
    margin-bottom: 0;
}

.aicc-resource-documents {
    background: var(--aicc-off-white);
    border-radius: 18px;
    padding: 1.25rem 1.5rem;
    border: 1px solid rgba(27, 77, 62, 0.08);
    max-height: 420px;
    overflow-y: auto;
}

.aicc-resource-documents::-webkit-scrollbar {
    width: 8px;
}

.aicc-resource-documents::-webkit-scrollbar-thumb {
    background: rgba(27, 77, 62, 0.25);
    border-radius: 10px;
}

@media (max-width: 991.98px) {
    .aicc-resources-grid {
        grid-template-columns: 1fr;
    }
    .aicc-resource-card {
        padding: 2.25rem;
    }
}

@media (max-width: 575.98px) {
    .aicc-resources-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .aicc-resource-card {
        padding: 2rem;
    }
    .aicc-resource-metrics li {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.35rem;
    }
    .aicc-resource-documents {
        padding: 1rem;
    }
}

/* Why Choose Section */
.aicc-why-section {
    position: relative;
    padding: 2.5rem 0;
    background: var(--aicc-white);
}

.aicc-why-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.aicc-why-title h2 {
    margin: 0.5rem 0 0;
    font-size: clamp(2.25rem, 4vw, 2.8rem);
    letter-spacing: -0.015em;
}

.aicc-why-subtitle {
    flex: 1 1 360px;
    margin: 0;
    font-size: 1rem;
    color: var(--aicc-text-muted);
}

.aicc-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.8rem;
}

.aicc-feature-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    padding: 2.35rem 2rem;
    background: linear-gradient(145deg, rgba(248, 250, 252, 0.95) 0%, rgba(233, 239, 245, 0.95) 100%);
    border: 1px solid rgba(27, 77, 62, 0.06);
    box-shadow: 0 16px 32px rgba(15, 40, 100, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.aicc-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 48px rgba(15, 40, 100, 0.14);
}

.aicc-feature-card__accent {
    position: absolute;
    inset: auto auto 0 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(225, 146, 9, 0.28), transparent 70%);
    opacity: 0.55;
    transform: translate(-30%, 30%);
    transition: opacity 0.3s ease;
}

.aicc-feature-card:hover .aicc-feature-card__accent {
    opacity: 0.8;
}

.aicc-feature-icon {
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: rgba(27, 77, 62, 0.1);
    color: var(--aicc-green);
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.aicc-feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--aicc-charcoal);
    margin-bottom: 0.75rem;
}

.aicc-feature-text {
    font-size: 0.95rem;
    color: var(--aicc-text-muted);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.aicc-feature-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--aicc-green);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    position: relative;
    z-index: 1;
}

.aicc-feature-link i {
    font-size: 0.75rem;
    transition: transform 0.25s ease;
}

.aicc-feature-card:hover .aicc-feature-link i {
    transform: translateX(4px);
}

@media (max-width: 767.98px) {
    .aicc-why-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .aicc-feature-card {
        padding: 2rem 1.75rem;
    }
}

/* Discover Tanzania */
.aicc-destinations {
    position: relative;
    padding: 3rem 0 3.3rem;
    overflow: hidden;
}

.aicc-destinations::before,
.aicc-destinations::after {
    content: '';
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 30%;
    background: radial-gradient(circle, rgba(225, 146, 9, 0.2), transparent 70%);
    filter: blur(0.5px);
    z-index: 1;
}

.aicc-destinations::before {
    top: -120px;
    left: -100px;
}

.aicc-destinations::after {
    bottom: -160px;
    right: -100px;
}

.aicc-destinations .container {
    position: relative;
    z-index: 2;
}

.aicc-section-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--aicc-gold);
    margin-bottom: 0.35rem;
}

.aicc-destinations-subtitle {
    margin: 0.75rem 0 0;
    max-width: 560px;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--aicc-text-muted, #6b7280);
}

.aicc-destinations-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2.5rem;
    margin-bottom: 2.75rem;
    flex-wrap: wrap;
}

.aicc-destinations-header h2 {
    position: relative;
    margin: 0;
    padding-bottom: 0.75rem;
    font-size: clamp(2rem, 4vw, 2.6rem);
    color: var(--aicc-charcoal);
}

.aicc-destinations-header h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 64px;
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--aicc-gold), var(--aicc-gold-light, #e8bf4f));
}

.aicc-destinations-header p {
    flex: 1 1 360px;
    margin: 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
}

.aicc-destination-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.aicc-destination-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: linear-gradient(160deg, var(--aicc-green, #1B4D3E) 0%, #123626 100%);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
}

.aicc-destination-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.aicc-destination-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
}

.aicc-destination-media {
    display: block;
    position: relative;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}

.aicc-destination-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.aicc-destination-tag {
    position: absolute;
    top: 0.85rem;
    left: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    background: rgba(225, 146, 9, 0.95);
    color: #1a1a1a;
    font-weight: 600;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    width: fit-content;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.aicc-destination-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 1.35rem 1.35rem 1.5rem;
    border-radius: 0 0 16px 16px;
    color: #fff;
}

.aicc-destination-body h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.aicc-destination-body p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.aicc-destination-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: auto;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--aicc-gold-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.aicc-destination-cta i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.aicc-destination-card:hover .aicc-destination-cta i {
    transform: translateX(6px);
}

@media (max-width: 1199.98px) {
    .aicc-destination-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767.98px) {
    .aicc-destinations {
        padding: 3rem 0;
    }
    .aicc-destinations-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .aicc-destination-gallery {
        gap: 1rem;
    }
    .aicc-destination-media {
        height: 170px;
    }
    .aicc-destination-body {
        padding: 1rem 1rem 1.15rem;
    }
    .aicc-destination-body h3 {
        font-size: 1.1rem;
    }
    .aicc-destination-body p {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .aicc-destination-gallery {
        grid-template-columns: 1fr;
    }
    .aicc-destination-media {
        height: 190px;
    }
    .aicc-destination-body p {
        display: block;
    }
}
/* --------------------------------------------------------------------------
   Welcome Message Page
--------------------------------------------------------------------------- */
.aicc-director-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.aicc-director-photo {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--aicc-gold, #E19209);
}
.aicc-director-position {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--aicc-green, #1B4D3E);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.aicc-message-body {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #555;
}

/* Venues flowing carousel */
.aicc-message-venues-flow-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
}
.aicc-message-venues-flow-wrapper::before,
.aicc-message-venues-flow-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 70px;
    z-index: 2;
    pointer-events: none;
}
.aicc-message-venues-flow-wrapper::before {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.9), transparent);
}
.aicc-message-venues-flow-wrapper::after {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0.9), transparent);
}
.aicc-message-venues-flow {
    display: flex;
    gap: 1.25rem;
    width: max-content;
    animation: aicc-message-venues-scroll 35s linear infinite;
    will-change: transform;
    padding: 0.5rem 0 1rem;
}
.aicc-message-venues-flow:hover {
    animation-play-state: paused;
}
@keyframes aicc-message-venues-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.aicc-mini-venue-card {
    flex: 0 0 auto;
    width: 300px;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.aicc-mini-venue-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
}
.aicc-mini-venue-img {
    height: 170px;
    overflow: hidden;
}
.aicc-mini-venue-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.aicc-mini-venue-card:hover .aicc-mini-venue-img img {
    transform: scale(1.07);
}
.aicc-mini-venue-body {
    padding: 1rem 1.15rem 1.15rem;
}
.aicc-mini-venue-body h5 {
    font-size: 1rem;
    margin-bottom: 0.35rem;
    color: var(--aicc-charcoal, #2b2b2b);
}
.aicc-mini-venue-meta {
    font-size: 0.85rem;
    color: #6b7280;
}

/* Services checklist */
.aicc-mini-service-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #f8f6f1;
    border-radius: 10px;
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    color: var(--aicc-charcoal, #2b2b2b);
    height: 100%;
    transition: background 0.25s ease;
}
.aicc-mini-service-item:hover {
    background: #f1ecdf;
}
.aicc-mini-service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--aicc-green, #1B4D3E);
    color: #fff;
    font-size: 0.75rem;
    flex-shrink: 0;
}

@media (max-width: 767.98px) {
    .aicc-director-photo {
        width: 140px;
        height: 140px;
    }
    .aicc-message-body {
        font-size: 0.98rem;
    }
    .aicc-mini-venue-card {
        width: 250px;
    }
    .aicc-mini-venue-img {
        height: 140px;
    }
    .aicc-message-venues-flow {
        animation-duration: 26s;
    }
    .aicc-message-venues-flow-wrapper::before,
    .aicc-message-venues-flow-wrapper::after {
        width: 40px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .aicc-message-venues-flow {
        animation: none;
        overflow-x: auto;
    }
}

.aicc-footer .footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 1.5rem 0;
    margin-top: 3rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    background: var(--aicc-graphite);
    position: relative;
}
.aicc-footer .footer-copyright::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: var(--aicc-gold);
    border-radius: 0 0 2px 2px;
}
@media (max-width: 991.98px) {
    .aicc-footer .footer-heading { font-size: 0.95rem; }
    .aicc-footer .footer-links a { font-size: 0.85rem; }
}
@media (max-width: 767.98px) {
    .aicc-footer { padding-top: 3rem; }
    .aicc-footer .footer-heading { font-size: 0.9rem; margin-bottom: 1rem; }
    .aicc-footer .footer-links li { margin-bottom: 0.5rem; }
    .aicc-footer .footer-links a { font-size: 0.8rem; }
    .aicc-footer .footer-contact-item { font-size: 0.85rem; }
    .aicc-footer .footer-copyright { padding: 1rem 0; margin-top: 2rem; }
}
@media (max-width: 575.98px) {
    .aicc-footer { padding-top: 2.5rem; }
    .aicc-footer .footer-heading { font-size: 0.85rem; }
    .aicc-footer .footer-links a { font-size: 0.75rem; }
    .aicc-footer .footer-contact-item { font-size: 0.8rem; gap: 0.5rem; }
    .aicc-footer .footer-social a { width: 34px; height: 34px; font-size: 0.85rem; }
}

/* --------------------------------------------------------------------------
   Venues Carousel Section
-------------------------------------------------------------------------- */
.aicc-venues-carousel-section {
    padding: 2rem 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.aicc-venues-carousel-wrapper {
    position: relative;
    padding: 0 60px;
}

.aicc-venues-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 1rem 0;
}

.aicc-venues-carousel::-webkit-scrollbar {
    display: none;
}

.aicc-venue-card {
    flex: 0 0 380px;
    max-width: 380px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.aicc-venue-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.aicc-venue-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

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

.aicc-venue-card:hover .aicc-venue-image img {
    transform: scale(1.1);
}

.aicc-venue-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(27, 77, 62, 0.95) 0%, rgba(27, 77, 62, 0.7) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.aicc-venue-card:hover .aicc-venue-overlay {
    opacity: 1;
}

.aicc-venue-content {
    color: #fff;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.aicc-venue-card:hover .aicc-venue-content {
    transform: translateY(0);
}

.aicc-venue-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--aicc-gold);
}

.aicc-venue-desc {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.aicc-venue-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.aicc-venue-meta-item {
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
}

.aicc-venue-btn {
    display: inline-flex;
    align-items: center;
    background: var(--aicc-gold);
    color: var(--aicc-charcoal);
    padding: 0.6rem 1.25rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: background 0.3s ease, transform 0.3s ease;
}

.aicc-venue-btn:hover {
    background: #e4bc3a;
    transform: translateX(4px);
}

.aicc-carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--aicc-white);
    border: 2px solid var(--aicc-green);
    color: var(--aicc-green);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.aicc-carousel-control:hover {
    background: var(--aicc-green);
    color: var(--aicc-white);
    transform: translateY(-50%) scale(1.1);
}

.aicc-carousel-control.prev {
    left: 0;
}

.aicc-carousel-control.next {
    right: 0;
}

@media (max-width: 991px) {
    .aicc-venues-carousel-wrapper {
        padding: 0 50px;
    }
    .aicc-venue-card {
        flex: 0 0 320px;
        max-width: 320px;
    }
    .aicc-venue-image {
        height: 240px;
    }
}

@media (max-width: 767px) {
    .aicc-venues-carousel-wrapper {
        padding: 0 40px;
    }
    .aicc-venue-card {
        flex: 0 0 280px;
        max-width: 280px;
    }
    .aicc-venue-image {
        height: 200px;
    }
    .aicc-carousel-control {
        width: 40px;
        height: 40px;
    }
    .aicc-venue-name {
        font-size: 1.1rem;
    }
    .aicc-venue-desc {
        font-size: 0.85rem;
    }
}

@media (max-width: 575px) {
    .aicc-venues-carousel-section {
        padding: 3rem 0;
    }
    .aicc-venues-carousel-wrapper {
        padding: 0 35px;
    }
    .aicc-venue-card {
        flex: 0 0 250px;
        max-width: 250px;
    }
    .aicc-venue-image {
        height: 180px;
    }
    .aicc-venue-overlay {
        padding: 1rem;
    }
    .aicc-venue-meta {
        gap: 0.5rem;
    }
    .aicc-venue-meta-item {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
}

/* --------------------------------------------------------------------------
   Visitor Facilities
-------------------------------------------------------------------------- */
.facility-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--aicc-sand);
    color: var(--aicc-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}
.facility-card:hover .facility-icon {
    background: var(--aicc-green);
    color: var(--aicc-gold);
}
.facility-card {
    background: var(--aicc-white);
    border: 1px solid var(--aicc-border);
    border-radius: 1rem;
    padding: 1.75rem;
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
}
.facility-card:hover {
    border-color: var(--aicc-gold);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(27, 77, 62, 0.12);
}
.facility-card h5 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--aicc-green);
    margin-bottom: 0.75rem;
}
.facility-card p {
    font-size: 0.9rem;
    color: var(--aicc-text-muted);
    margin: 0;
}

/* --------------------------------------------------------------------------
   Visitor FAQs
-------------------------------------------------------------------------- */
.faq-card {
    background: var(--aicc-white);
    border: 1px solid var(--aicc-border);
    border-radius: 1rem;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-card:hover {
    border-color: var(--aicc-gold);
    box-shadow: 0 8px 24px rgba(27, 77, 62, 0.08);
}
.faq-card .card-header {
    background: var(--aicc-white);
    border-bottom: 1px solid var(--aicc-border);
    padding: 1.25rem 1.5rem;
}
.faq-card .btn-link {
    color: var(--aicc-charcoal);
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.faq-card .btn-link:hover {
    color: var(--aicc-green);
}
.faq-card .btn-link i {
    transition: transform 0.3s ease;
}
.faq-card .btn-link[aria-expanded="true"] i {
    transform: rotate(180deg);
}
.faq-card .card-body {
    padding: 1.5rem;
    color: var(--aicc-text-muted);
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Events Calendar
-------------------------------------------------------------------------- */
.event-card {
    background: var(--aicc-white);
    border: 1px solid var(--aicc-border);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.event-card:hover {
    border-color: var(--aicc-gold);
    box-shadow: 0 12px 32px rgba(27, 77, 62, 0.12);
    transform: translateY(-4px);
}
.event-date {
    background: linear-gradient(135deg, var(--aicc-green), var(--aicc-charcoal));
    color: var(--aicc-white);
    padding: 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.event-date__month {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.event-date__day {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}
.event-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.event-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--aicc-charcoal);
    margin-bottom: 0.75rem;
}
.event-venue,
.event-time,
.event-organizer {
    font-size: 0.9rem;
    color: var(--aicc-text-muted);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}
.event-venue i,
.event-time i,
.event-organizer i {
    color: var(--aicc-green);
    width: 16px;
}
.event-description {
    font-size: 0.9rem;
    color: var(--aicc-text-muted);
    margin-top: 0.75rem;
    line-height: 1.5;
}

/* --------------------------------------------------------------------------
   Plan Your Event
-------------------------------------------------------------------------- */
.plan-feature-card {
    background: var(--aicc-white);
    border: 1px solid var(--aicc-border);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}
.plan-feature-card:hover {
    border-color: var(--aicc-gold);
    box-shadow: 0 12px 32px rgba(27, 77, 62, 0.12);
    transform: translateY(-4px);
}
.plan-feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--aicc-green), var(--aicc-charcoal));
    color: var(--aicc-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}
.plan-feature-card:hover .plan-feature-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(27, 77, 62, 0.2);
}
.plan-feature-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--aicc-charcoal);
    margin-bottom: 1rem;
}
.plan-feature-card p {
    font-size: 0.9rem;
    color: var(--aicc-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* --------------------------------------------------------------------------
   Floating WhatsApp / live chat button
   -------------------------------------------------------------------------- */
.aicc-whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 58px;
    height: 58px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
    z-index: 1050;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}
.aicc-whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
    color: #fff;
}

/* --------------------------------------------------------------------------
   Cookie notice
   -------------------------------------------------------------------------- */
.aicc-cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--aicc-graphite);
    color: var(--aicc-white);
    padding: 1rem 0;
    z-index: 1060;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}
.aicc-cookie-notice.show { transform: translateY(0); }
.aicc-cookie-notice a {
    color: var(--aicc-gold-light);
    text-decoration: underline;
}
.aicc-cookie-notice .btn-aicc-gold {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
}

/* --------------------------------------------------------------------------
   Delegate resources
   -------------------------------------------------------------------------- */
.aicc-delegate-resources {
    background: var(--aicc-off-white);
}
.aicc-delegate-resources .badge.bg-aicc-green {
    background: var(--aicc-green) !important;
    color: #fff;
    font-weight: 600;
}

/* --------------------------------------------------------------------------
   Venue / facility tab overrides
   -------------------------------------------------------------------------- */
.aicc-venues-section { background: var(--aicc-sand); }
.aicc-venues-section .hs-lt-title em { color: var(--aicc-gold); }
.aicc-venues-section .hs-lt-eyebrow__text { color: var(--aicc-green); }
.aicc-venues-section .hs-lt-tab.is-active {
    background: rgba(27, 77, 62, 0.08);
    border-color: rgba(27, 77, 62, 0.5);
}
.aicc-venues-section .hs-lt-tab.is-active .hs-lt-tab__num,
.aicc-venues-section .hs-lt-tab.is-active .hs-lt-tab__arrow,
.aicc-venues-section .hs-lt-panel__pill { color: var(--aicc-green); }
.aicc-venues-section .hs-lt-panel__icon-wrap { background: var(--aicc-green); }
.aicc-venues-section .hs-lt-panel__tag { color: var(--aicc-green); }
.aicc-venues-section .hs-lt-panel__tag i { color: var(--aicc-gold); }
.aicc-venues-section .hs-lt-panel__btn {
    background: var(--aicc-gold);
    color: var(--aicc-charcoal);
    box-shadow: 0 4px 16px rgba(212, 160, 23, 0.35);
}
.aicc-venues-section .hs-lt-panel__btn:hover {
    background: var(--aicc-gold-dark);
    color: var(--aicc-white);
}
.aicc-venues-section .hs-lt-more-link:hover,
.aicc-venues-section .hs-lt-panel__learn:hover { color: var(--aicc-green); }
.aicc-venues-section .hs-lt-more-link:hover .hs-lt-more-link__icon {
    background: var(--aicc-green);
    border-color: var(--aicc-green);
}
.aicc-venues-section .hs-lt-card::after {
    background: radial-gradient(circle, rgba(27, 77, 62, 0.07) 0%, transparent 65%);
}

/* Gallery / video section AICC overrides */
.hs-video-v2-section {
    background: var(--aicc-off-white) !important;
}
.hs-v2-card {
    box-shadow: 0 2px 4px rgba(27, 77, 62, 0.04), 0 12px 32px rgba(27, 77, 62, 0.08) !important;
}
.hs-v2-card:hover {
    box-shadow: 0 4px 8px rgba(27, 77, 62, 0.06), 0 24px 56px rgba(27, 77, 62, 0.14) !important;
}
.hs-v2-blue-bg { background: var(--aicc-green) !important; }
.hs-v2-overlay { background: linear-gradient(to top, rgba(27, 77, 62, 0.85), transparent 60%) !important; }
.hs-v2-cam-icon { background: var(--aicc-gold) !important; color: var(--aicc-charcoal) !important; }
.hs-v2-play-inner { background: var(--aicc-gold) !important; color: var(--aicc-charcoal) !important; }
.hs-v2-content__icon { color: var(--aicc-green) !important; }
.hs-v2-title { color: var(--aicc-text) !important; }

/* News section AICC overrides */
.news-overlay { background: var(--aicc-green) !important; }
.news-overlay:hover { background: var(--aicc-gold) !important; color: var(--aicc-charcoal) !important; }
.news-badge { background: var(--aicc-gold) !important; color: var(--aicc-charcoal) !important; }

/* --------------------------------------------------------------------------
   Bootstrap / legacy component overrides
   -------------------------------------------------------------------------- */
.text-primary { color: var(--aicc-green) !important; }
.bg-primary { background-color: var(--aicc-green) !important; }
.btn-primary {
    background-color: var(--aicc-green);
    border-color: var(--aicc-green);
    color: #fff;
}
.btn-primary:hover {
    background-color: var(--aicc-green-dark);
    border-color: var(--aicc-green-dark);
}
.btn-warning {
    background-color: var(--aicc-gold);
    border-color: var(--aicc-gold);
    color: var(--aicc-charcoal);
}
.btn-warning:hover {
    background-color: var(--aicc-gold-dark);
    border-color: var(--aicc-gold-dark);
    color: #fff;
}

/* --------------------------------------------------------------------------
   Hazina-inspired polish: footer, cards, buttons, spacing
   -------------------------------------------------------------------------- */

/* Footer heading underline accent (Hazina pattern) */
.aicc-footer .footer-heading {
    position: relative;
    padding-bottom: 0.75rem;
    margin-bottom: 1.75rem;
}
.aicc-footer .footer-heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--aicc-gold);
    border-radius: 2px;
}

/* Footer links hover lift (Hazina pattern) */
.aicc-footer .footer-links a {
    position: relative;
}
.aicc-footer .footer-links a:hover {
    padding-left: 8px;
    color: var(--aicc-gold-light);
}
.aicc-footer .footer-links a::before {
    content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.65rem;
    margin-right: 0.5rem;
    color: var(--aicc-gold);
    opacity: 0.8;
}

/* Social icon hover lift (Hazina pattern) */
.aicc-footer .footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.85);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}
.aicc-footer .footer-social a:hover {
    background: var(--aicc-gold);
    color: var(--aicc-charcoal);
    transform: translateY(-4px);
}



/* Card image hover polish */
.aicc-card-img-wrap {
    overflow: hidden;
    border-radius: 0.75rem 0.75rem 0 0;
}
.aicc-card-img-wrap img {
    transition: transform 0.5s ease;
}
.aicc-card:hover .aicc-card-img-wrap img {
    transform: scale(1.08);
}

/* Button consistency */
.btn {
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.25s ease;
}
.btn:hover {
    transform: translateY(-1px);
}

/* Image consistency */
img {
    max-width: 100%;
    height: auto;
}

/* --------------------------------------------------------------------------
   Responsive helpers
   -------------------------------------------------------------------------- */
@media (max-width: 991.98px) {
    .aicc-brand-strip .brand-cta { display: none; }
    .aicc-navbar .navbar-nav .nav-link {
        padding: 0.85rem 1rem;
        border-bottom: 1px solid var(--aicc-border);
    }
    .aicc-stats-strip .stat-value { font-size: 2rem; }
    .aicc-partner-card { height: 100px; }
    .aicc-partner-card img { max-height: 55px; }
}

@media (max-width: 767.98px) {
    .aicc-brand-emblem img { height: 55px; }
    .aicc-brand-logo img { height: 65px; }
    .aicc-brand-title { font-size: 1.1rem; }
    .aicc-brand-country { font-size: 0.75rem; }
    .aicc-section-header .aicc-title { font-size: 1.6rem; }
    .aicc-feature-card { padding: 1.5rem; }
    .aicc-feature-card .feature-icon {
        width: 52px;
        height: 52px;
        font-size: 1.3rem;
    }
}

@media (max-width: 575.98px) {
    .aicc-hero .split-carousel-container { min-height: auto; }
    .aicc-hero .carousel-title { font-size: 1.7rem; }
    .aicc-hero .carousel-description { font-size: 0.95rem; }
    .aicc-stats-strip { padding: 2rem 0; }
    .aicc-stats-strip .stat-value { font-size: 1.7rem; }
    .aicc-partner-card { height: 90px; padding: 0.75rem; }
    .aicc-partner-card img { max-height: 50px; }
    .aicc-footer .footer-heading { font-size: 0.95rem; }
    .aicc-nav-cta .btn-nav-gold,
    .aicc-nav-cta .btn-nav-dark { font-size: 0.7rem; padding: 0.5rem 0.75rem; }
}

/* --------------------------------------------------------------------------
   Mega menu styles (from top-bottom-header.blade.php)
   -------------------------------------------------------------------------- */
.mega-dropdown {
    position: relative;
}

/* Caret rotation */
.mega-dropdown .dropdown-toggle::after {
    transition: transform 0.25s ease;
    vertical-align: 2px;
}

.mega-dropdown .dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

.mega-dropdown .dropdown-toggle[aria-expanded="true"] {
    color: var(--aicc-green);
}

/* --------------------------------------------------------------------------
   Vertical Mega Menu Design
   -------------------------------------------------------------------------- */
.dropdown-menu.mega-menu-vertical {
    display: block;
    border: none;
    border-top: 3px solid var(--aicc-amber);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    border-radius: 0 0 8px 8px;
    padding: 0;
    background: #fff;
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    min-width: 280px;
    max-width: 350px;
}

.dropdown-menu.mega-menu-vertical.show,
.mega-dropdown:focus-within .dropdown-menu.mega-menu-vertical {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.mega-menu-wrapper {
    padding: 1rem 0;
}

.mega-menu-section {
    position: relative;
}

.mega-menu-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.25rem;
    text-decoration: none;
    color: var(--aicc-ink-700);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    margin-bottom: 0.1rem;
}

.mega-menu-item:hover {
    background: var(--aicc-amber-tint);
    color: var(--aicc-amber);
    padding-left: 1.5rem;
}

.mega-menu-item-text {
    flex: 1;
}

.mega-menu-item-arrow {
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.2s ease;
    font-size: 0.75rem;
    color: var(--aicc-amber);
}

.mega-menu-item:hover .mega-menu-item-arrow {
    opacity: 1;
    transform: translateX(0);
}

.mega-menu-divider {
    border-top: 1px solid #E7E0D2;
    margin: 0.75rem 1.25rem;
    padding: 0;
}

.mega-menu-download-item {
    padding: 0;
    margin: 0;
}

.mega-menu-download-card {
    background: var(--aicc-sand-50);
    border: 1px solid var(--aicc-sand-100);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin: 0.5rem 1.25rem 0;
}

.mega-menu-download-text {
    font-size: 0.85rem;
    color: var(--aicc-ink-500);
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.mega-menu-download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--aicc-amber);
    color: #fff;
    padding: 0.6rem 1.25rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.2s ease;
    width: 100%;
}

.mega-menu-download-btn:hover {
    background: var(--aicc-amber-hi);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(201, 106, 10, 0.25);
}

@media (max-width: 991.98px) {
    .dropdown-menu.mega-menu-vertical {
        width: 100%;
        max-width: 100%;
        left: 0;
        transform: none;
        border-radius: 0;
        box-shadow: none;
        border-top: none;
        border-left: 3px solid var(--aicc-amber);
    }
    
    .dropdown-menu.mega-menu-vertical.show,
    .mega-dropdown:focus-within .dropdown-menu.mega-menu-vertical {
        transform: none;
    }
    
    .mega-menu-wrapper {
        padding: 0.75rem 0;
    }
    
    .mega-menu-item {
        padding: 0.6rem 1rem;
    }
    
    .mega-menu-item:hover {
        padding-left: 1.25rem;
    }
    
    .mega-menu-download-card {
        margin: 0.5rem 1rem 0;
    }
}

/* --------------------------------------------------------------------------
   Modern Mega Menu Design
   -------------------------------------------------------------------------- */
.dropdown-menu.mega-menu-modern {
    display: block;
    border: none;
    border-radius: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    padding: 0;
    background: #fff;
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.dropdown-menu.mega-menu-modern.show,
.mega-dropdown:focus-within .dropdown-menu.mega-menu-modern {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
    pointer-events: auto;
}

.dropdown-menu.mega-menu-modern.mega-menu-wide {
    width: 700px;
    max-width: min(700px, calc(100vw - 2rem));
}

.dropdown-menu.mega-menu-modern.mega-menu-large {
    width: 1100px;
    max-width: min(1100px, calc(100vw - 2rem));
}

.mega-menu-wrapper {
    padding: 2rem 0;
}

.mega-menu-col {
    padding: 0 1.5rem;
    border-right: 1px solid #E7E0D2;
}

.mega-menu-col:last-child {
    border-right: none;
}

.mega-menu-section {
    position: relative;
}

.mega-menu-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--aicc-amber) 0%, var(--aicc-amber-hi) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.mega-menu-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--aicc-ink-900);
    margin-bottom: 1.25rem;
}

.mega-menu-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-links.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.mega-menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    color: var(--aicc-ink-700);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    margin-bottom: 0.25rem;
}

.mega-menu-item:hover {
    background: var(--aicc-amber-tint);
    color: var(--aicc-amber);
    transform: translateX(4px);
}

.mega-menu-item-text {
    flex: 1;
}

.mega-menu-item-arrow {
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.2s ease;
    font-size: 0.8rem;
}

.mega-menu-item:hover .mega-menu-item-arrow {
    opacity: 1;
    transform: translateX(0);
}

.mega-menu-download-section {
    display: flex;
    flex-direction: column;
}

.mega-menu-download-card {
    background: var(--aicc-sand-50);
    border: 1px solid var(--aicc-sand-100);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.mega-menu-download-text {
    font-size: 0.9rem;
    color: var(--aicc-ink-500);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.mega-menu-download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--aicc-amber);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.mega-menu-download-btn:hover {
    background: var(--aicc-amber-hi);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 106, 10, 0.3);
}

@media (max-width: 991.98px) {
    .dropdown-menu.mega-menu-modern {
        width: 100%;
        max-width: 100%;
        left: 0;
        transform: none;
        border-radius: 0;
        box-shadow: none;
        border-top: 3px solid var(--aicc-amber);
    }
    
    .dropdown-menu.mega-menu-modern.show,
    .mega-dropdown:focus-within .dropdown-menu.mega-menu-modern {
        transform: none;
    }
    
    .mega-menu-wrapper {
        padding: 1.5rem 0;
    }
    
    .mega-menu-col {
        padding: 0 1rem;
        border-right: none;
        border-bottom: 1px solid #E7E0D2;
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .mega-menu-col:last-child {
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 0;
    }
    
    .mega-menu-links.mega-menu-grid {
        grid-template-columns: 1fr;
    }
}

/* Mega menu panel */
.dropdown-menu.mega-menu {
    display: block;
    width: 900px;
    max-width: min(900px, calc(100vw - 2rem));
    left: 50%;
    top: 100%;
    transform: translate(-50%, 10px);
    margin-top: 14px;
    border: none;
    border-radius: 0.85rem;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.16);
    background: #ffffff;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
    z-index: 1035;
}

.dropdown-menu.mega-menu.mega-menu-small {
    width: 400px;
    max-width: min(400px, calc(100vw - 2rem));
}

.dropdown-menu.mega-menu.mega-menu-medium {
    width: 600px;
    max-width: min(600px, calc(100vw - 2rem));
}

/* Small connector arrow pointing up at the nav link */
.mega-menu-arrow {
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 14px;
    height: 14px;
    background: #ffffff;
    border-radius: 3px 0 0 0;
    box-shadow: -3px -3px 6px rgba(15, 23, 42, 0.04);
}

/* Show on Bootstrap's native .show class (click / keyboard / JS hover-intent) */
.dropdown-menu.mega-menu.show,
.mega-dropdown:focus-within .dropdown-menu.mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
    pointer-events: auto;
}

.mega-menu-subtitle {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #212529;
    border-bottom: 2px solid var(--aicc-green);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.mega-menu-list {
    padding: 0;
    margin: 0;
}

.mega-menu-list li {
    margin-bottom: 0.35rem;
}

.mega-menu-list-columns {
    column-count: 2;
    column-gap: 2rem;
}

.mega-menu-link {
    color: #333c44 !important;
    text-decoration: none !important;
    font-weight: 500;
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 0.6rem;
    border-radius: 0.5rem;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.mega-menu-link-icon {
    font-size: 0.72rem;
    color: var(--aicc-gold);
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.mega-menu a:hover,
.mega-menu-link:hover {
    color: var(--aicc-green) !important;
    background: rgba(27, 77, 62, 0.06);
}

.mega-menu-link:hover .mega-menu-link-icon {
    opacity: 1;
    transform: translateX(0);
}

.mega-menu-download {
    padding: 1.25rem;
    background: #f8f9fa;
    border: 1px dashed #dee2e6;
    border-radius: 0.75rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mega-menu-download-text {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

/* Fix all dropdown menus text color */
.dropdown-menu {
    background: #ffffff;
}

.dropdown-item {
    color: #212529 !important;
}

.dropdown-item:hover {
    color: var(--aicc-green) !important;
    background: #f8f9fa;
}

@media (max-width: 991.98px) {
    .dropdown-menu.mega-menu {
        width: 100%;
        max-width: 100%;
        left: 0;
        top: auto;
        transform: none;
        position: static;
        margin-top: 0.5rem;
        box-shadow: none;
        border: 1px solid #eee;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        max-height: 0;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
    }

    .dropdown-menu.mega-menu.show {
        max-height: 1200px;
        padding-top: 1.25rem !important;
        padding-bottom: 1.25rem !important;
    }

    .mega-menu-arrow { display: none; }
    .mega-menu-list-columns { column-count: 1; }
}
