/*
 * Al Ahmedia Holding Group — Standalone CSS
 * Design: Gulf Modernism meets Heritage Minimalism
 * Palette: Sandstone cream, warm charcoal, burnished gold, off-white
 * Typography: Playfair Display (display) + Source Serif 4 (body) + Cormorant Garamond (accent)
 */

/* ─────────────────────────────────────────────────────────────────────────────
   CSS Variables & Root Styles
   ───────────────────────────────────────────────────────────────────────────── */

:root {
    /* Brand Colors */
    --gold: oklch(0.72 0.12 75);
    --gold-light: oklch(0.88 0.08 75);
    --gold-dark: oklch(0.55 0.10 75);
    --sandstone: oklch(0.94 0.03 80);
    --sandstone-dark: oklch(0.88 0.04 80);
    --charcoal: oklch(0.22 0.01 65);
    --charcoal-light: oklch(0.35 0.01 65);
    --charcoal-dark: oklch(0.18 0.01 65);
    --charcoal-darker: oklch(0.14 0.01 65);
    
    /* Semantic Colors */
    --bg-light: oklch(0.97 0.015 80);
    --bg-dark: oklch(0.22 0.01 65);
    --bg-darker: oklch(0.18 0.01 65);
    --bg-darkest: oklch(0.14 0.01 65);
    --text-primary: oklch(0.22 0.01 65);
    --text-light: oklch(0.35 0.01 65);
    --text-white: #ffffff;
    --text-white-70: rgba(255, 255, 255, 0.7);
    --text-white-60: rgba(255, 255, 255, 0.6);
    --text-white-50: rgba(255, 255, 255, 0.5);
    --text-white-40: rgba(255, 255, 255, 0.4);
    --text-white-30: rgba(255, 255, 255, 0.3);
    --text-white-25: rgba(255, 255, 255, 0.25);
    
    /* Borders */
    --border-light: oklch(0.87 0.03 80);
    --border-white-10: rgba(255, 255, 255, 0.1);
    
    /* Fonts */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Source Serif 4', Georgia, serif;
    --font-accent: 'Cormorant Garamond', Georgia, serif;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Global Styles
   ───────────────────────────────────────────────────────────────────────────── */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--bg-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

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

/* ─────────────────────────────────────────────────────────────────────────────
   Container & Layout
   ───────────────────────────────────────────────────────────────────────────── */

.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 2rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 3rem;
        max-width: 1400px;
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   Utilities
   ───────────────────────────────────────────────────────────────────────────── */

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


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

.italic {
    font-style: italic;
}

.white {
    color: var(--text-white);
}

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

.gold-rule {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin: 1.5rem 0;
}

.section-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(1.875rem, 5vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

/* ─────────────────────────────────────────────────────────────────────────────
   Animations
   ───────────────────────────────────────────────────────────────────────────── */

@keyframes kenBurns {
    from { transform: scale(1); }
    to { transform: scale(1.08); }
}

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

.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }
.delay-500 { transition-delay: 500ms; }

/* ─────────────────────────────────────────────────────────────────────────────
   Emblem Ring Component
   ───────────────────────────────────────────────────────────────────────────── */

.emblem-ring {
    border: 2px solid rgba(201, 168, 76, 0.7);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.emblem-text {
    font-family: var(--font-display);
    font-weight: bold;
    color: var(--gold);
    line-height: 1;
}

.emblem-divider {
    width: 100%;
    height: 1px;
    background: rgba(201, 168, 76, 0.6);
}

.emblem-date {
    font-size: 0.5rem;
    color: rgba(201, 168, 76, 0.7);
    text-align: center;
    line-height: 1.2;
    letter-spacing: 0.05em;
}

.emblem-date.small {
    font-size: 0.45rem;
}

.logo-emblem {
    width: 2.5rem;
    height: 2.5rem;
}

.emblem-large {
    width: 6rem;
    height: 6rem;
    background: rgba(20, 26, 42, 0.55);
    backdrop-filter: blur(8px);
}

.emblem-small {
    width: 5rem;
    height: 5rem;
    background: rgba(20, 26, 42, 0.55);
    backdrop-filter: blur(8px);
}

.footer-emblem {
    width: 3rem;
    height: 3rem;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Hover Effects
   ───────────────────────────────────────────────────────────────────────────── */

.hover-gold-underline {
    position: relative;
    display: inline-block;
}

.hover-gold-underline::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.hover-gold-underline:hover::after {
    width: 100%;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Navbar
   ───────────────────────────────────────────────────────────────────────────── */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.5s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(34, 26, 17, 0.97);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 4rem;
    padding-top: 0;
    padding-bottom: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center; /* keep desktop centered */
    
}

.nav-bg-color{
    background-color: rgba(20, 26, 42, 0.25);
}

/* Logo floats independently (key fix) */
.navbar-left {
    position: absolute;
    left: 1rem;
    display: flex;
    align-items: center;
}

.navbar-logo {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
    display: block; /* remove display:none */
    max-width: 140px;
}

/* Show only on scroll */
.navbar.scrolled .navbar-logo {
    opacity: 1;
    transform: scale(1.75);
}



/*.navbar-logo {*/
/*    opacity: 0;*/
/*    transform: translateY(-10px);*/
/*    max-width: 345px;*/
/*    background: transparent;*/
/*    display: none;*/
/*    transition: transform 2s cubic-bezier(0.22, 1, 0.36, 1),*/
/*                opacity 2s cubic-bezier(0.22, 1, 0.36, 1);*/
/*}*/

/*.navbar.scrolled .navbar-logo {*/
/*    opacity: 1;*/
/*    backdrop-filter: blur(10px);*/
/*    display: block;*/
/*    margin-right: 3em;*/
    /* transition: all 1s cubic-bezier(0.25, 0.8, 0.25, 1); */
/*    transform: scale(0.85);*/
/*    opacity: 0.9;*/
/*}*/

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo-text {
    display: none;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}


.nav-link {
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    letter-spacing: 0.05em;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--text-white);
}

.nav-cta {
    padding: 0.625rem 1.25rem;
    border: 1px solid rgba(201, 168, 76, 0.6);
    color: var(--gold);
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    transition: all 0.2s ease;
}

.nav-cta:hover {
    background: rgba(201, 168, 76, 0.1);
    border-color: rgba(201, 168, 76, 1);
}


.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
}

/* Dropdown box */
.dropdown-menu {
    position: absolute;
    top: 120%;
    left: 50%;
    transform: translateX(-50%);

    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(10px);

    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 180px;

    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 10px);

    transition: all 0.3s ease;
    z-index: 50;
}

/* Dropdown items */
.dropdown-menu a {
    display: block;
    padding: 0.7rem 1.2rem;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.25s ease;
}

/* Hover effect */
.dropdown-menu a:hover {
    background: rgba(200,169,106,0.1);
    color: #c8a96a;
}

/* SHOW DROPDOWN */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Chevron icon */
.dropdown-toggle::after {
    content: "";
    width: 6px;
    height: 6px;

    border-right: 2px solid rgba(255,255,255,0.85);
    border-bottom: 2px solid rgba(255,255,255,0.85);

    transform: rotate(45deg);
    transition: transform 0.25s ease, border-color 0.25s ease;
    margin-top: -2px;
}

/* Hover effect (optional but premium feel) */
.dropdown:hover .dropdown-toggle::after {
    transform: rotate(-135deg);
    border-color: #ffffff;
}


/* Mobile Navigation */
/* ───────────────── HAMBURGER FIX ───────────────── */

.hamburger {
    position: absolute;
    right: 1rem;

    display: none; /* desktop default */

    /* REQUIRED for 3-line layout */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;

    width: 28px;
    height: 24px;

    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

/* Show only on mobile */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background: var(--text-white);
    border-radius: 2px;
    display: block;
    transition: all 0.3s ease;
}

/* Animation */
.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


.nav-mobile {
    display: none;
    background: rgba(34, 26, 17, 0.97);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-white-10);
    flex-direction: column;
    gap: 0;
}

@media (min-width: 768px) {
    .nav-mobile {
        display: none !important;
    }
}

.nav-mobile.active {
    display: flex;
}

.nav-mobile-link {
    padding: 1rem 1.5rem;
    color: var(--text-white-70);
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--border-white-10);
    transition: color 0.2s ease;
}

.nav-mobile-link:hover {
    color: var(--gold);
}

/* ─────────────────────────────────────────────────────────────────────────────
   Hero Section
   ───────────────────────────────────────────────────────────────────────────── */

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
    z-index: 10;
    gap: 64px; /* spacing between logo → text */
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    animation: kenBurns 20s ease-in-out infinite alternate;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(30, 26, 18, 0.92), rgba(21, 15, 10, 0.5), transparent);
}

.hero-overlay-side {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(30, 26, 18, 0.6), transparent);
}

/* LOGO */
.hero-logo {
    width: 20%;
    border-radius: 50%;
    object-fit: cover;

    border: 4px solid #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.hero-logo img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;

    border: 4px solid #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}



.hero-text {
    /* max-width: 32rem; */
}



.hero-label {
    animation: fadeUp 0.7s ease-out;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-white);
    margin: 0;
    white-space: nowrap;
}

.hero-description {
    font-size: 1rem;
    color: var(--text-white-70);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    animation: fadeUp 0.7s ease-out 0.3s both;
    justify-content: center;
    flex-wrap: nowrap;
    margin-top: 20px;
}

.btn {
    padding: 0.75rem 1.75rem;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.2s ease;
    display: inline-block;
}

.btn-primary {
    background: var(--gold);
    color: var(--text-primary);
}

.btn-primary:hover {
    background: var(--gold-light);
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--text-white);
}

.btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.05);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.6;
}

.scroll-line {
    width: 1px;
    height: 3rem;
    background: var(--text-white-40);
    animation: pulse 2s ease-in-out infinite;
}

.scroll-text {
    color: var(--text-white-60);
    font-size: 0.625rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transform: rotate(90deg);
    transform-origin: center;
    margin-top: 1rem;
}

@keyframes pulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* ─────────────────────────────────────────────────────────────────────────────
   About Section
   ───────────────────────────────────────────────────────────────────────────── */

.about-section {
    padding: 0;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 680px;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-text {
    background: var(--bg-light);
    padding: 5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 768px) {
    .about-text {
        padding: 5rem 4rem;
    }
}

.about-text > div {
    max-width: 32rem;
}

.about-paragraph {
    color: var(--charcoal-light);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.about-image {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

@media (min-width: 1024px) {
    .about-image {
        min-height: auto;
    }
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, transparent, rgba(20, 26, 42, 0.25));
}

.emblem-overlay {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Statistics Section
   ───────────────────────────────────────────────────────────────────────────── */

.statistics-section {
    padding: 5rem 0;
    background: var(--bg-dark);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-white-60);
}

/* ─────────────────────────────────────────────────────────────────────────────
   Sectors Section
   ───────────────────────────────────────────────────────────────────────────── */

.sectors-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.sectors-header {
    margin-bottom: 4rem;
    max-width: 32rem;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
    border: 1px solid var(--border-light);
}

@media (min-width: 1024px) {
    .sectors-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.sector-card {
    position: relative;
    overflow: hidden;
    text-align: left;
    min-height: 300px;
    transition: all 0.5s ease;
    background: var(--bg-dark);
    cursor: pointer;
}

@media (min-width: 1024px) {
    .sector-card.active {
        grid-column: span 2;
        min-height: 420px;
    }
}

.sector-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s ease;
}

.sector-card:hover .sector-bg {
    transform: scale(1.05);
}

.sector-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 26, 42, 0.65);
    transition: all 0.5s ease;
}

.sector-card:hover .sector-overlay {
    background: rgba(20, 26, 42, 0.55);
}

.sector-card.active .sector-overlay {
    background: rgba(20, 26, 42, 0.8);
}

.sector-content {
    position: relative;
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 10;
}

.sector-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.sector-title {
    color: var(--text-white);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.sector-description {
    color: var(--text-white-70);
    font-size: 0.875rem;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    margin-top: 0.75rem;
}

.sector-card.active .sector-description {
    max-height: 8rem;
    opacity: 1;
}

.sector-line {
    width: 2rem;
    height: 2px;
    background: var(--gold);
    margin-top: 0.75rem;
    transition: all 0.3s ease;
}

.sector-card:hover .sector-line {
    width: 3rem;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Story Section
   ───────────────────────────────────────────────────────────────────────────── */

.story-section {
    padding: 0;
    overflow: hidden;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 600px;
}

@media (min-width: 1024px) {
    .story-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.story-image {
    position: relative;
    overflow: hidden;
    min-height: 400px;
    order: 2;
}

@media (min-width: 1024px) {
    .story-image {
        min-height: auto;
        order: 1;
    }
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent, rgba(20, 26, 42, 0.25));
}

.story-tagline {
    position: absolute;
    bottom: 2.5rem;
    left: 2rem;
    right: 2rem;
    z-index: 20;
}

.tagline-text {
    font-family: var(--font-accent);
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.tagline-bold {
    font-family: var(--font-accent);
    color: var(--text-white);
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
}

.story-seal {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 20;
}

.story-text {
    background: var(--bg-dark);
    padding: 5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    order: 1;
}

@media (min-width: 768px) {
    .story-text {
        padding: 5rem 4rem;
    }
}

@media (min-width: 1024px) {
    .story-text {
        order: 2;
    }
}

.story-text > div {
    max-width: 32rem;
}

.story-paragraph {
    color: var(--text-white-70);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.story-quote {
    border-left: 2px solid var(--gold);
    padding-left: 1.25rem;
    margin-top: 2rem;
}

.quote-text {
    font-family: var(--font-accent);
    color: rgba(201, 168, 76, 0.9);
    font-size: 1.125rem;
    font-style: italic;
    line-height: 1.7;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Values Section
   ───────────────────────────────────────────────────────────────────────────── */

.values-section {
    padding: 6rem 0;
    background: oklch(0.94 0.03 80);
}

.values-header {
    margin-bottom: 4rem;
    max-width: 32rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

@media (min-width: 640px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.value-card {
    background: var(--text-white);
    padding: 2rem;
    border-top: 2px solid var(--gold);
    transition: box-shadow 0.3s ease;
}

.value-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.value-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.2;
    margin-bottom: 1rem;
    line-height: 1;
}

.value-title {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.value-description {
    color: var(--charcoal-light);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Contact Section
   ───────────────────────────────────────────────────────────────────────────── */

.contact-section {
    padding: 0;
    overflow: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 500px;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-info {
    background: var(--bg-darker);
    padding: 5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 768px) {
    .contact-info {
        padding: 5rem 4rem;
    }
}

.contact-info > div {
    max-width: 32rem;
}

.contact-description {
    color: var(--text-white-65);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    font-size: 1.25rem;
    margin-top: 0.125rem;
    color: var(--gold);
}

.contact-label {
    color: var(--text-white-40);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.contact-value {
    color: var(--text-white-85);
    font-size: 0.875rem;
}

.contact-form-wrapper {
    background: var(--bg-light);
    padding: 5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 768px) {
    .contact-form-wrapper {
        padding: 5rem 4rem;
    }
}

.contact-form-wrapper > div {
    max-width: 32rem;
    width: 100%;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--charcoal-light);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    border: 1px solid var(--border-light);
    background: var(--text-white);
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    color: var(--text-primary);
    font-family: inherit;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group textarea {
    resize: none;
}

.form-submit {
    width: 100%;
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 1rem;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
    transition: background 0.2s ease;
}

.form-submit:hover {
    background: var(--charcoal-light);
}

/* ─────────────────────────────────────────────────────────────────────────────
   Footer
   ───────────────────────────────────────────────────────────────────────────── */

.footer {
    background: var(--bg-darkest);
    padding: 3rem 0;
}

.footer-top {
    display: flex;
    flex-direction: column;
    md:flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-white-10);
}

@media (min-width: 768px) {
    .footer-top {
        flex-direction: row;
        align-items: center;
    }
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-brand-name {
    color: var(--text-white);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
}

.footer-brand-date {
    color: var(--text-white-40);
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-links a {
    color: var(--text-white-50);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    display: flex;
    flex-direction: column;
    sm:flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .footer-bottom {
        flex-direction: row;
    }
}

.footer-copyright {
    color: var(--text-white-30);
    font-size: 0.75rem;
}

.footer-tagline {
    font-family: var(--font-accent);
    color: var(--text-white-25);
    font-size: 0.75rem;
    font-style: italic;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Responsive & Accessibility
   ───────────────────────────────────────────────────────────────────────────── */
 
 
 /* ───────────────── MOBILE NAVBAR (FIXED) ───────────────── */

@media (max-width: 768px) {

    .navbar-container {
        justify-content: space-between;
        padding: 0 1rem;
        height: 4rem;
    }

    /* HIDE DESKTOP MENU */
    .nav-desktop {
        display: none;
    }
    
    .navbar-left {
        left: 5rem;
    }


    /* SHOW HAMBURGER */
    .hamburger {
        display: flex;
        z-index: 60;
    }

    /* MOBILE MENU PANEL */
    .nav-mobile {
        /*position: absolute;*/
        /*top: 100%;*/
        /*left: 0;*/
        /*width: 100%;*/
        /*background: rgba(34, 26, 17, 0.98);*/
        /*backdrop-filter: blur(10px);*/
        /*flex-direction: column;*/
        /*display: none;*/
        
        position: fixed;
        top: 4rem;
        left: 0;
        width: 100%;
        background: rgba(34, 26, 17, 0.98);
        backdrop-filter: blur(10px);
        display: none;
        flex-direction: column;
    }

    .nav-mobile.active {
        display: flex;
    }

    .nav-mobile-link {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    /* LOGO (SCROLL STATE) */
    .navbar-logo {
        display: block;
        opacity: 0;
        transform: scale(0.85);
        transition: all 0.3s ease;
    }

    .navbar.scrolled .navbar-logo {
        opacity: 1;
        transform: scale(1.75);
    }
}
 
 

/* ───────────────── HERO MOBILE FIX ───────────────── */

@media (max-width: 768px) {

    .hero-center {
        gap: 32px;
        padding: 0 1rem;
    }

    /* BIGGER LOGO (responsive) */
    .hero-logo img {
        width: 40vw;
        height: 40vw;
        max-width: 180px;
        max-height: 180px;
    }

    /* FIX TITLE WRAPPING */
    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.8rem);
        white-space: normal; /* IMPORTANT FIX */
        line-height: 1.2;
    }

    .hero-description {
        font-size: 0.9rem;
        padding: 0 10px;
    }

    /* BUTTON STACK */
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}

/* ───────────────── HERO MOBILE LOGO SCALE ───────────────── */

@media (max-width: 768px) {

    .hero-logo {
        width: 80%;
        max-width: 320px;
        margin: 0 auto;
    }

    .hero-logo img {
        width: 100%;
        height: auto;
    }

    .hero-center {
        gap: 24px;
        padding: 0 1rem;
    }

    .hero-title {
        white-space: normal; /* fix overflow */
        font-size: clamp(2rem, 7vw, 3rem);
    }
}
   
/*OLD*/

/*@media (max-width: 767px) {*/
/*    .section-title {*/
/*        font-size: 1.875rem;*/
/*    }*/
/*}*/

/*@media (prefers-reduced-motion: reduce) {*/
/*    * {*/
/*        animation: none !important;*/
/*        transition: none !important;*/
/*    }*/
/*}*/


/* Responsive */
/*@media (max-width: 768px) {*/
/*    .hero-logo img {*/
/*        width: 120px;*/
/*        height: 120px;*/
/*    }*/
/*}*/

/*@media (max-width: 480px) {*/
/*    .hero-logo img {*/
/*        width: 90px;*/
/*        height: 90px;*/
/*    }*/
/*}*/
/* ENF of LOGO */


/*@media (min-width: 768px) {*/
/*    .hero-content {*/
/*        padding-bottom: 7rem;*/
/*    }*/
/*}*/