/* ============================================================
   ALADIVIBO — Component Styles v2
   Premium components: Nav, Hero, Cards, Footer, etc.
   ============================================================ */

/* ── Top Bar ──────────────────────────────────────────────────── */
.top-bar {
    background: var(--navy-950);
    border-bottom: 1px solid rgba(255,255,255,.04);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--navy-300);
}

.top-bar-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 9px 0;
}

.top-bar a {
    color: var(--navy-300);
    transition: color var(--duration-fast) ease;
}

.top-bar a:hover { color: var(--gold-400); }

.top-bar-divider {
    width: 1px;
    height: 12px;
    background: rgba(255,255,255,.1);
}

@media (max-width: 768px) {
    .top-bar { display: none; }
}

/* ── Navbar ───────────────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background var(--duration-normal), box-shadow var(--duration-normal);
}

/* Scrolled state: elegant white with subtle separator */
.navbar.scrolled .nav-main {
    background: rgba(255,255,255,0.97);
    box-shadow: 0 1px 0 rgba(10,22,40,.06), 0 4px 24px rgba(10,22,40,.08);
}

.navbar.scrolled .hamburger span { background: var(--navy-900); }
.navbar.scrolled .nav-link { color: var(--stone-500); }
.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active { color: var(--forest-700); }

.nav-main {
    background: var(--white);
    border-bottom: 2px solid var(--gold-500);
    transition: background var(--duration-normal), border-color var(--duration-normal);
}

/* Transparent state for homepage */
.navbar-transparent:not(.scrolled) .nav-main {
    background: transparent;
    border-bottom-color: rgba(255,255,255,0.12);
}

.navbar-transparent:not(.scrolled) .top-bar {
    background: transparent;
    border-bottom-color: rgba(255,255,255,0.08);
}

.navbar-transparent:not(.scrolled) .top-bar,
.navbar-transparent:not(.scrolled) .top-bar a { color: rgba(255,255,255,0.7); }
.navbar-transparent:not(.scrolled) .hamburger span { background: var(--white); }
.navbar-transparent:not(.scrolled) .nav-link { color: rgba(255,255,255,0.88); }
.navbar-transparent:not(.scrolled) .nav-link:hover { color: var(--gold-400); }

.nav-inner {
    max-width: 1340px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    height: 72px;
}

.nav-logo-img {
    height: 46px;
    transition: opacity var(--duration-fast) ease;
}

.nav-logo:hover .nav-logo-img { opacity: 0.85; }

/* ── Nav Links (Sidebar) ──────────────────────────────────────── */
.nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 420px;
    height: 100vh;
    background: var(--navy-950);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 96px 32px 40px;
    margin: 0;
    list-style: none;
    z-index: 1002;
    transition: right 0.42s cubic-bezier(0.77,0,0.175,1);
    overflow-y: auto;
    box-shadow: -12px 0 48px rgba(0,0,0,0.6);
    border-left: 1px solid rgba(212,168,83,0.12);
}

/* Gold accent line at top of sidebar */
.nav-links::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-500), var(--forest-400));
}

.nav-links.open { right: 0; }

.nav-item {
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,.05);
}

.nav-item:last-child { border-bottom: none; }

.nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 17px 0;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: rgba(255,255,255,0.82);
    letter-spacing: 0.01em;
    transition: color var(--duration-fast) ease, padding-left var(--duration-fast) ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold-400);
    padding-left: 8px;
}

.nav-link-arrow {
    font-size: 12px;
    transition: transform var(--duration-normal) ease;
    color: rgba(255,255,255,0.3);
}

.nav-link-arrow.rotated { transform: rotate(180deg); }

/* ── Mega Menu (Sidebar Accordion) ───────────────────────────── */
.mega-menu {
    display: none;
    background: rgba(0,0,0,0.25);
    margin: 0 -32px;
    padding: 12px 32px;
    border-top: 1px solid rgba(255,255,255,.04);
}

.mega-menu.mobile-open {
    display: block;
    animation: slideDown 0.28s var(--ease-out) forwards;
}

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

.mega-menu-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,.04);
    transition: transform var(--duration-fast) ease, color var(--duration-fast) ease;
    color: var(--navy-300);
}

.mega-menu-link:last-child { border-bottom: none; }
.mega-menu-link:hover { transform: translateX(6px); color: var(--white); }

.mega-menu-link-icon {
    font-size: 18px;
    width: 38px;
    height: 38px;
    min-width: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212,168,83,0.08);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(212,168,83,0.12);
}

.mega-menu-link-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mega-menu-link-title {
    font-weight: 500;
    font-size: 0.92rem;
    color: rgba(255,255,255,0.88);
}

.mega-menu-link-desc {
    font-size: 11px;
    color: var(--navy-400);
    letter-spacing: 0.02em;
}

.mega-menu-link:hover .mega-menu-link-title { color: var(--gold-300); }

/* ── Nav CTA ─────────────────────────────────────────────────── */
.nav-cta {
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,.08);
}

/* ── Hamburger ────────────────────────────────────────────────── */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1003;
    position: relative;
    border-radius: var(--radius-sm);
    transition: transform var(--duration-fast) var(--ease-bounce), background var(--duration-fast) ease;
}

.hamburger:hover {
    background: rgba(27,94,59, .08);
    transform: scale(1.05);
}

.hamburger span {
    width: 26px;
    height: 2.5px;
    background: var(--navy-900);
    transition: all 0.38s cubic-bezier(0.68,-0.55,0.265,1.55);
    border-radius: 2px;
    display: block;
}

.hamburger.active span { background: var(--white); }
.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scale(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── Mobile Overlay ───────────────────────────────────────────── */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(6,13,26,.65);
    backdrop-filter: blur(3px);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration-normal) ease;
}

.mobile-overlay.active { opacity: 1; visibility: visible; }

/* ── Hero ─────────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 94vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-slides { position: absolute; inset: 0; }

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.4s ease;
}

.hero-slide.active { opacity: 1; }

.hero-slide-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    animation: heroZoom 20s ease-in-out infinite alternate;
}

.hero-slide-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

/* Rich cinematic overlay */
.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(to right, rgba(6,13,26,0.92) 0%, rgba(6,13,26,0.7) 50%, rgba(6,13,26,0.4) 100%),
        linear-gradient(to top, rgba(6,13,26,0.6) 0%, transparent 50%);
}

/* Diagonal bottom clip */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: var(--white);
    clip-path: polygon(0 55%, 100% 0, 100% 100%, 0 100%);
    z-index: 2;
}

/* Gold accent rule on left */
.hero::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15%;
    bottom: 15%;
    width: 3px;
    background: linear-gradient(to bottom, transparent, var(--gold-500), transparent);
    z-index: 4;
}

@keyframes heroZoom {
    0%   { transform: scale(1); }
    100% { transform: scale(1.07); }
}

.hero-content {
    position: relative;
    z-index: 3;
    padding-top: 110px;
    padding-left: 24px;
}

.hero-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-400);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s var(--ease-out) 0.2s both;
}

.hero-subtitle::before {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: var(--gold-400);
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6.5vw, 5.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.06;
    margin-bottom: 28px;
    letter-spacing: -0.03em;
    animation: fadeInUp 0.9s var(--ease-out) 0.35s both;
}

.hero h1 em {
    font-style: italic;
    color: var(--gold-400);
}

.hero-desc {
    font-size: var(--text-lg);
    color: #ffffff;
    max-width: 560px;
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 400;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 0.9s var(--ease-out) 0.5s both;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.9s var(--ease-out) 0.65s both;
}

/* Slide indicators */
.hero-dots {
    position: absolute;
    bottom: 150px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 32px;
    height: 3px;
    border-radius: 2px;
    background: rgba(255,255,255,0.25);
    cursor: pointer;
    transition: background var(--duration-normal), width var(--duration-normal);
}

.hero-dot.active {
    background: var(--gold-400);
    width: 52px;
}

.hero-progress {
    position: absolute;
    bottom: 120px;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255,255,255,.08);
    z-index: 4;
}

.hero-progress-bar {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--gold-500), var(--forest-400));
}

.hero-progress-bar.running {
    animation: heroProgress 6s linear;
}

@keyframes heroProgress {
    from { width: 0; }
    to   { width: 100%; }
}

/* ── Page Banner (subpages) ───────────────────────────────────── */
.page-banner {
    position: relative;
    padding: 148px 0 88px;
    background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-800) 55%, var(--forest-900) 100%);
    overflow: hidden;
}

/* Diagonal geometric accent */
.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(25deg, transparent 60%, rgba(212,168,83,.05) 60%, rgba(212,168,83,.05) 63%, transparent 63%),
        linear-gradient(25deg, transparent 70%, rgba(255,255,255,.02) 70%, rgba(255,255,255,.02) 72%, transparent 72%);
    pointer-events: none;
}

/* White diagonal cut at bottom */
.page-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: var(--white);
    clip-path: polygon(0 65%, 100% 0, 100% 100%, 0 100%);
}

/* Gold bar at very top */
.page-banner .page-banner-gold-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-500), var(--forest-400), var(--navy-400));
}

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

.page-banner h1 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.025em;
    line-height: 1.1;
    margin: 0;
}

/* ── Breadcrumb ───────────────────────────────────────────────── */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 16px;
}

.breadcrumb a { color: var(--gold-400); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { color: rgba(255,255,255,0.2); }

/* ── Footer ───────────────────────────────────────────────────── */
.footer {
    background: var(--navy-950);
    color: var(--navy-300);
    padding: 90px 0 0;
    position: relative;
}

/* Diagonal top */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: var(--white);
    clip-path: polygon(0 0, 100% 0, 100% 35%, 0 100%);
}

/* Gold top accent */
.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-500), var(--forest-400), var(--navy-500));
}

.footer-main {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 52px;
    margin-top: 24px;
}

.footer-brand { max-width: 300px; }

.footer-logo-img {
    height: 48px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-desc {
    font-size: 13px;
    line-height: 1.8;
    color: var(--navy-400);
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}

.footer-social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.06);
    color: var(--navy-300);
    font-size: 13px;
    font-weight: 700;
    transition: all var(--duration-fast) ease;
}

.footer-social-link:hover {
    background: var(--gold-500);
    color: var(--navy-900);
    border-color: var(--gold-500);
    transform: translateY(-2px);
}

.footer-heading {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(212,168,83,0.2);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link {
    font-size: 13px;
    color: var(--navy-400);
    transition: color var(--duration-fast) ease, padding-left var(--duration-fast) ease;
}

.footer-link:hover {
    color: var(--gold-400);
    padding-left: 6px;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 13px;
    color: var(--navy-400);
    align-items: flex-start;
    line-height: 1.65;
}

.footer-contact-icon {
    font-size: 13px;
    margin-top: 2px;
    color: var(--gold-500);
    flex-shrink: 0;
}

.footer-bottom {
    margin-top: 56px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,.04);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: var(--navy-500);
    letter-spacing: 0.04em;
}

.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: var(--navy-500); }
.footer-bottom-links a:hover { color: var(--navy-300); }

/* ── Cards ────────────────────────────────────────────────────── */
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid var(--stone-200);
    transition: transform var(--duration-normal) var(--ease-out),
                box-shadow var(--duration-normal) var(--ease-out),
                border-color var(--duration-normal) ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--forest-200);
}

.card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform var(--duration-slow) ease;
}

.card:hover .card-img { transform: scale(1.03); }
.card-body { padding: 28px; }

.card-tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 3px;
    background: var(--forest-100);
    color: var(--forest-700);
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.card-title {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 8px;
    line-height: 1.25;
}

.card-text {
    color: var(--stone-600);
    font-size: var(--text-sm);
    line-height: 1.75;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--forest-700);
    margin-top: 16px;
    transition: gap var(--duration-fast) ease, color var(--duration-fast) ease;
}

.card-link:hover { gap: 12px; color: var(--gold-700); }

/* ── Service Cards ────────────────────────────────────────────── */
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--stone-200);
    transition: transform var(--duration-normal) var(--ease-out), box-shadow var(--duration-normal) var(--ease-out);
    position: relative;
}

/* Gold left accent on hover */
.service-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gold-500);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform var(--duration-normal) var(--ease-out);
}

.service-card:hover::before { transform: scaleY(1); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }

.service-card-img-wrapper { overflow: hidden; height: 200px; }
.service-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-card-img { transform: scale(1.06); }

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

.service-card-icon {
    width: 46px;
    height: 46px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--forest-100), var(--navy-50));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    margin-bottom: 16px;
    border: 1px solid var(--forest-200);
}

.service-card-body h3 {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 10px;
}

.service-card-body p {
    color: var(--stone-600);
    font-size: var(--text-sm);
    line-height: 1.75;
}

/* ── Filter Tabs ─────────────────────────────────────────────── */
.filter-tab {
    padding: 10px 22px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--stone-600);
    background: var(--white);
    border: 1.5px solid var(--stone-300);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--duration-fast) ease;
}

.filter-tab:hover { color: var(--forest-700); border-color: var(--forest-700); }

.filter-tab.active {
    background: var(--forest-700);
    color: var(--white);
    border-color: var(--forest-700);
    box-shadow: 0 4px 14px rgba(27,94,59,0.24);
}

/* ── Project Cards ────────────────────────────────────────────── */
.project-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

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

.project-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 36px 24px 24px;
    background: linear-gradient(transparent, rgba(6,13,26,0.92));
    color: var(--white);
    transform: translateY(16px);
    opacity: 0;
    transition: all var(--duration-normal) var(--ease-out);
}

.project-card:hover .project-card-overlay { transform: translateY(0); opacity: 1; }

.project-card-overlay h4 {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    margin-bottom: 4px;
    font-weight: 600;
}

.project-card-overlay p { font-size: var(--text-sm); color: rgba(255,255,255,0.65); }

/* ── Team Cards ───────────────────────────────────────────────── */
.team-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 38px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--stone-200);
    transition: transform var(--duration-normal) var(--ease-out),
                box-shadow var(--duration-normal) var(--ease-out),
                border-color var(--duration-normal) ease;
    position: relative;
    overflow: hidden;
}

/* Subtle top accent bar */
.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-500), var(--forest-400));
    transform: scaleX(0);
    transition: transform var(--duration-normal) var(--ease-out);
}

.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold-300); }
.team-card:hover::before { transform: scaleX(1); }

.team-card h4 {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 4px;
}

.team-card-role {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--gold-700);
    margin-top: 6px;
}

/* ── News Cards ───────────────────────────────────────────────── */
.news-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--stone-200);
    transition: transform var(--duration-normal) var(--ease-out), box-shadow var(--duration-normal) var(--ease-out);
}

.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.news-card-img { width: 100%; height: 210px; object-fit: cover; transition: transform var(--duration-slow) ease; }
.news-card:hover .news-card-img { transform: scale(1.04); }
.news-card-body { padding: 24px; }

.news-card-date {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--gold-700);
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.news-card-body h4 {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 10px;
    line-height: 1.3;
}

.news-card-body p {
    font-size: var(--text-sm);
    color: var(--stone-500);
    line-height: 1.7;
}

/* ── CTA Banner ───────────────────────────────────────────────── */
.cta-banner {
    position: relative;
    padding: 90px 0;
    background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-800) 50%, var(--forest-900) 100%);
    text-align: center;
    overflow: hidden;
}

/* Geometric diagonal decoration */
.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: var(--white);
    clip-path: polygon(0 0, 100% 0, 100% 35%, 0 100%);
}

/* Background pattern texture */
.cta-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(60deg, transparent 48%, rgba(212,168,83,.04) 48%, rgba(212,168,83,.04) 51%, transparent 51%),
        linear-gradient(60deg, transparent 58%, rgba(255,255,255,.02) 58%, rgba(255,255,255,.02) 60%, transparent 60%);
    pointer-events: none;
}

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

.cta-banner h2 {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 4.5vw, 3rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.cta-banner p {
    font-size: var(--text-lg);
    color: rgba(255,255,255,0.72);
    max-width: 580px;
    margin: 0 auto 36px;
    line-height: 1.8;
    font-weight: 300;
}

/* ── Feature List ─────────────────────────────────────────────── */
.feature-list { display: flex; flex-direction: column; gap: 14px; }

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    border-radius: var(--radius-md);
    background: var(--stone-50);
    border: 1px solid var(--stone-200);
    transition: transform var(--duration-fast) ease, border-color var(--duration-fast) ease;
}

.feature-item:hover { transform: translateX(4px); border-color: var(--forest-300); }

.feature-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--forest-100), var(--navy-50));
    border: 1px solid var(--forest-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    color: var(--forest-700);
}

.feature-title {
    font-weight: 700;
    color: var(--navy-900);
    font-size: var(--text-sm);
    margin-bottom: 2px;
    font-family: var(--font-display);
}

.feature-desc { font-size: var(--text-xs); color: var(--stone-500); line-height: 1.55; }

/* ── Overview Strip ───────────────────────────────────────────── */
.overview-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--stone-200);
}

.overview-text {
    padding: 56px 60px;
    border-right: 1px solid var(--stone-200);
}

.accent-line {
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-500), var(--forest-400));
    margin-bottom: 20px;
    border-radius: 2px;
}

.overview-image {
    overflow: hidden;
    background: var(--stone-100);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.overview-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.overview-image:hover img { transform: scale(1.03); }

/* ── Values Grid ──────────────────────────────────────────────── */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 18px;
}

.value-card {
    text-align: center;
    padding: 28px 18px;
    border-radius: var(--radius-lg);
    background: var(--stone-50);
    border: 1px solid var(--stone-200);
    transition: transform var(--duration-fast) ease, border-color var(--duration-fast) ease, box-shadow var(--duration-fast) ease;
}

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

.value-icon { font-size: 30px; margin-bottom: 12px; }

.value-name {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 4px;
    font-size: 1.05rem;
}

.value-desc { font-size: var(--text-xs); color: var(--stone-500); line-height: 1.5; }

/* ── Timeline ─────────────────────────────────────────────────── */
.timeline { position: relative; padding-left: 32px; }

.timeline::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold-500), var(--forest-300));
    border-radius: 2px;
}

.timeline-item { position: relative; margin-bottom: 36px; padding-left: 20px; }

.timeline-item::before {
    content: '';
    position: absolute;
    left: -32px;
    top: 6px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gold-500);
    border: 2px solid var(--white);
    box-shadow: 0 0 0 2px var(--gold-400);
}

.timeline-year {
    font-family: var(--font-mono);
    font-weight: 500;
    font-size: 11px;
    color: var(--gold-700);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
}

.timeline-item h3 { font-family: var(--font-display); font-size: var(--text-xl); color: var(--navy-900); margin-bottom: 6px; }
.timeline-item p { font-size: var(--text-sm); color: var(--stone-500); line-height: 1.7; }

/* ── Contact Form ─────────────────────────────────────────────── */
.contact-form {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    padding: 44px;
    border: 1px solid var(--stone-200);
}

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

.form-group { display: flex; flex-direction: column; }
.form-group.full { grid-column: span 2; }

.form-label {
    font-size: 10px;
    font-weight: 700;
    color: var(--navy-800);
    margin-bottom: 7px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.form-input,
.form-select,
.form-textarea {
    padding: 13px 16px;
    border: 1.5px solid var(--stone-300);
    border-radius: var(--radius-sm);
    font-size: var(--text-sm);
    font-family: var(--font-body);
    color: var(--navy-900);
    background: var(--stone-50);
    transition: border-color var(--duration-fast) ease, box-shadow var(--duration-fast) ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--forest-600);
    box-shadow: 0 0 0 3px rgba(27,94,59,.1);
    background: var(--white);
}

/* ── Compliance Badges ────────────────────────────────────────── */
.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 14px;
}

.compliance-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--stone-200);
    box-shadow: var(--shadow-sm);
    transition: border-color var(--duration-fast) ease, transform var(--duration-fast) ease;
}

.compliance-badge:hover { border-color: var(--forest-300); transform: translateX(4px); }

.compliance-badge-icon {
    font-size: 22px;
    width: 46px;
    height: 46px;
    min-width: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--forest-100), var(--navy-50));
    border-radius: var(--radius-sm);
    border: 1px solid var(--forest-200);
}

.compliance-badge span {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--navy-900);
}

/* ── Sustainability Blocks ────────────────────────────────────── */
.sustainability-block {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 28px;
    padding: 36px 0;
    border-bottom: 1px solid var(--stone-200);
}

.sustainability-block:last-child { border-bottom: none; }

.sustainability-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--forest-100), var(--navy-50));
    border: 1px solid var(--forest-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.sustainability-block h3 {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--navy-800);
    margin-bottom: 8px;
}

.sustainability-block p { font-size: var(--text-sm); color: var(--stone-600); line-height: 1.8; }

/* ── Back to Top ──────────────────────────────────────────────── */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--navy-900);
    color: var(--gold-400);
    border: 1px solid rgba(212,168,83,0.3);
    cursor: pointer;
    font-size: 18px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: translateY(16px);
    transition: all var(--duration-normal) var(--ease-out);
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--forest-700); color: var(--white); border-color: var(--forest-700); transform: translateY(-3px); }

/* ── Page Loader ──────────────────────────────────────────────── */
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--navy-950);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.55s ease, visibility 0.55s ease;
}

.page-loader.hidden { opacity: 0; visibility: hidden; }

.loader-content { text-align: center; }

.loader-logo {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

.loader-logo .green { color: var(--forest-400); }
.loader-logo .blue  { color: var(--gold-400); }

.loader-bar {
    width: 200px;
    height: 2px;
    border-radius: 2px;
    background: rgba(255,255,255,.08);
    margin: 0 auto;
    overflow: hidden;
}

.loader-bar-fill {
    height: 100%;
    width: 0;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--gold-500), var(--forest-400));
    animation: loaderFill 1.6s var(--ease-out) forwards;
}

@keyframes loaderFill { to { width: 100%; } }

/* ── Diagonal helpers ─────────────────────────────────────────── */
.diagonal-top { position: relative; }
.diagonal-top::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 60px;
    background: var(--white);
    clip-path: polygon(0 0, 100% 0, 100% 35%, 0 100%);
}

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .nav-links { width: 100%; max-width: 100%; }
}

@media (max-width: 900px) {
    .overview-strip { grid-template-columns: 1fr; }
    .overview-text { padding: 36px 28px; border-right: none; border-bottom: 1px solid var(--stone-200); }
    .footer-main { grid-template-columns: 1fr 1fr; }
    .stats-strip { grid-template-columns: 1fr 1fr; gap: 24px; }
    .form-row { grid-template-columns: 1fr; }
    .form-group.full { grid-column: span 1; }
    .sustainability-block { grid-template-columns: 1fr; text-align: center; }
    .sustainability-icon { margin: 0 auto; }
}

@media (max-width: 600px) {
    .footer-main { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .stats-strip { grid-template-columns: 1fr 1fr; }
    .hero h1 { font-size: 2.4rem; }
    .hero-desc { font-size: var(--text-base); }
    .hero-btns { flex-direction: column; }
    .contact-form { padding: 28px 20px; }
}

/* ── YouTube Embed Wrapper ────────────────────────────────────── */
.youtube-embed {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--navy-950);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.youtube-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}