:root {
            --gold: #c9952a;
            --gold-light: #e8b84b;
            --gold-pale: #f5e6c0;
            --dark: #0f1e17;        
            --dark-2: #1a3126;      
            --dark-3: #1e372c;     
            --slate: #102e21;       
            --emerald-accent: #06251b; 
            --text-muted: #c8d0cd;
            --white: #f0ece4;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }

        body {
            font-family: 'Jost', sans-serif;
            background: var(--dark);
            color: var(--white);
            overflow-x: hidden;
        }

        /* ===== NAVBAR ===== */
        .navbar {
            position: fixed; top: 0; left: 0; width: 100%;
            z-index: 1000; padding: 28px 6%;
            transition: all 0.5s ease;
            background: transparent;
            
        }
        .navbar.scrolled {
            background: rgba(5, 42, 26, 0.96);
            backdrop-filter: blur(20px);
            padding: 18px 6%;
            border-bottom: 1px solid rgba(201,149,42,0.15);
        }
        .nav-container { display: flex; justify-content: space-between; align-items: center; max-width: 1400px; margin: 0 auto; }
        .logo { font-family: 'Cinzel', serif; font-size: 1.5rem; text-decoration: none; color: var(--white); letter-spacing: 4px; font-weight: 600; }
        .logo .gold { color: var(--gold); }
        .nav-links { display: flex; list-style: none; gap: 36px; }
        .nav-links a { text-decoration: none; color: rgba(240,236,228,0.7); text-transform: uppercase; font-size: 0.75rem; letter-spacing: 2px; font-weight: 400; transition: 0.3s; }
        .nav-links a:hover { color: var(--gold); }
        .btn-inquire {
            padding: 10px 24px; border: 1px solid var(--gold); color: var(--gold);
            text-decoration: none; font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase;
            border-radius: 2px; transition: 0.3s; font-family: 'Jost';
        }
        .btn-inquire:hover { background: var(--gold); color: var(--dark); }

        /* ===== MOBILE MENU BUTTON ===== */
        .mobile-menu {
            display: none; cursor: pointer; flex-direction: column;
            gap: 5px; z-index: 1100; position: relative;
        }
        .mobile-menu span {
            display: block; width: 24px; height: 1.5px;
            background: var(--white); transition: 0.4s ease;
            transform-origin: center;
        }
        .mobile-menu.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
        .mobile-menu.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
        .mobile-menu.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

        /* ===== MOBILE SIDEBAR OVERLAY ===== */
        .sidebar-overlay {
            position: fixed; inset: 0; background: rgba(0,0,0,0.6);
            backdrop-filter: blur(4px);
            z-index: 1050; opacity: 0; visibility: hidden;
            transition: opacity 0.4s ease, visibility 0.4s ease;
        }
        .sidebar-overlay.active { opacity: 1; visibility: visible; }

        /* ===== MOBILE SIDEBAR ===== */
        .mobile-sidebar {
            position: fixed; top: 0; left: -320px; width: 300px; height: 100vh;
            background: var(--dark-2);
            border-left: 1px solid rgba(201,149,42,0.2);
            z-index: 1060;
            display: flex; flex-direction: column;
            transition: left 0.45s cubic-bezier(0.4, 0, 0.2, 1);
            overflow-y: auto;
        }
        .mobile-sidebar.active { left: 0; }

        .sidebar-header {
            display: flex; justify-content: space-between; align-items: center;
            padding: 28px 28px 24px;
            border-bottom: 1px solid rgba(201,149,42,0.12);
        }
        .sidebar-logo {
            font-family: 'Cinzel', serif; font-size: 1.1rem;
            letter-spacing: 3px; color: var(--white); font-weight: 600;
        }
        .sidebar-logo .gold { color: var(--gold); }
        .sidebar-close {
            width: 36px; height: 36px; border-radius: 50%;
            background: rgba(201,149,42,0.1); border: 1px solid rgba(201,149,42,0.2);
            color: var(--white); font-size: 1rem; cursor: pointer;
            display: flex; align-items: center; justify-content: center;
            transition: 0.3s;
        }
        .sidebar-close:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }

        .sidebar-nav { padding: 32px 28px; flex: 1; }
        .sidebar-nav ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
        .sidebar-nav ul li a {
            display: flex; align-items: center; gap: 14px;
            text-decoration: none; color: rgba(240,236,228,0.75);
            text-transform: uppercase; font-size: 0.78rem; letter-spacing: 2.5px;
            font-weight: 400; padding: 16px 18px; border-radius: 10px;
            transition: 0.3s; border: 1px solid transparent;
            position: relative;
        }
        .sidebar-nav ul li a::before {
            content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
            width: 3px; height: 0; background: var(--gold); border-radius: 2px;
            transition: height 0.3s ease;
        }
        .sidebar-nav ul li a:hover {
            color: var(--gold); background: rgba(201,149,42,0.07);
            border-color: rgba(201,149,42,0.15);
        }
        .sidebar-nav ul li a:hover::before { height: 60%; }
        .sidebar-nav ul li a .nav-icon { font-size: 1rem; flex-shrink: 0; }

        .sidebar-footer {
            padding: 28px;
            border-top: 1px solid rgba(201,149,42,0.12);
        }
        .sidebar-inquire {
            display: block; text-align: center; text-decoration: none;
            padding: 14px 24px; border: 1px solid var(--gold); color: var(--gold);
            font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase;
            border-radius: 4px; transition: 0.3s; font-family: 'Jost';
            margin-bottom: 20px;
        }
        .sidebar-inquire:hover { background: var(--gold); color: var(--dark); }
        .sidebar-contact p { color: var(--text-muted); font-size: 0.75rem; line-height: 1.8; }
        .sidebar-contact a { color: var(--gold); text-decoration: none; font-size: 0.78rem; }

        /* Gold decorative line in sidebar */
        .sidebar-divider {
            width: 40px; height: 2px; background: linear-gradient(to right, var(--gold), transparent);
            margin: 0 28px 20px;
        }

        /* ===== HERO ===== */
        .hero {
            position: sticky; top: 0;
            height: 100vh; width: 100%;
            display: flex; align-items: center; justify-content: center;
            z-index: 1; overflow: hidden;
        }
        .video-container { position: absolute; inset: 0; }
        .bg-video { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.35) saturate(0.8); }
        .overlay {
            position: absolute; inset: 0;
            background: linear-gradient(to bottom, rgba(8,12,24,0.3) 0%, transparent 40%, rgba(8,12,24,0.7) 100%);
        }
        .hero-content { position: relative; z-index: 2; text-align: center; padding: 0 20px; }
        .hero-tagline {
            font-family: 'Cormorant Garamond', serif;
            font-size: 0.85rem; letter-spacing: 6px; color: var(--gold);
            text-transform: uppercase; margin-bottom: 24px;
            opacity: 0; animation: fadeUp 1s ease 0.3s forwards;
        }
        .hero-content h1 {
            font-family: 'Cinzel', serif;
            font-size: clamp(3rem, 9vw, 7.5rem);
            letter-spacing: 0.35em; font-weight: 400; line-height: 1;
            opacity: 0; animation: fadeUp 1s ease 0.6s forwards;
        }
        .hero-content h1 .highlight {
            color: var(--gold); font-weight: 700;
            text-shadow: 0 0 40px rgba(201,149,42,0.3);
        }
        .hero-sub {
            font-size: 0.8rem; letter-spacing: 4px; color: rgba(240,236,228,0.6);
            text-transform: uppercase; margin-top: 20px;
            opacity: 0; animation: fadeUp 1s ease 0.9s forwards;
        }
        .hero-divider {
            width: 1px; height: 70px; background: linear-gradient(to bottom, var(--gold), transparent);
            margin: 40px auto 0;
            opacity: 0; animation: fadeUp 1s ease 1.2s forwards;
        }

        /* ===== HERO SCROLL INDICATOR ===== */

.hero-scroll-cue {
    position: absolute !important;
    bottom: 40px !important;
    left: 50% !important;
    
    transform: translateX(-50%) !important; 
    
    display: flex !important;
    flex-direction: column !important;
    
    align-items: center !important; 
    justify-content: center !important;
    
    width: auto !important;
    gap: 12px;
    z-index: 99; 
    text-decoration: none;
    opacity: 0;
    animation: fadeUp 1s ease 1.6s forwards;
}

.scroll-cue-label {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    font-size: 14px;
    letter-spacing: 5px;    
    text-transform: uppercase;
    color: rgba(239, 167, 24, 0.6);
    font-family: 'Jost', sans-serif;
    
    margin-left: 5px !important; 
    margin-bottom: 5px;
}

.scroll-cue-track {
    display: flex !important;
    margin: 0 auto !important; 
    width: 28px;
    height: 46px;
    border: 1px solid rgba(207, 142, 12, 0.4);
    border-radius: 14px;
    align-items: flex-start;
    justify-content: center;
    padding-top: 7px;
}


@media (max-width: 768px) {
    .hero-scroll-cue {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
}
        

        .scroll-cue-dot {
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: var(--gold);
            animation: scrollDotBounce 1.8s ease-in-out infinite;
        }

        @keyframes scrollDotBounce {
            0%   { transform: translateY(0);   opacity: 1; }
            60%  { transform: translateY(18px); opacity: 0.3; }
            100% { transform: translateY(0);   opacity: 1; }
        }

        /* ===== ABOUT SECTION ===== */
        .about-section {
            position: relative; z-index: 10;
            background: #f5f0e8;
            color: var(--dark);
            padding: 80px 6%;
            border-radius: 50px 50px 0 0;
            box-shadow: 0 -40px 80px rgba(0,0,0,0.6);
        }
        .container { max-width: 1200px; margin: 0 auto; }
        .section-label {
            display: flex; align-items: center; gap: 16px; margin-bottom: 16px;
        }
        .section-label::before {
            content: ''; display: block; width: 40px; height: 1px; background: var(--gold);
        }
        .section-label span {
            font-size: 0.7rem; letter-spacing: 4px; text-transform: uppercase;
            color: var(--gold); font-weight: 500;
        }
        .about-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center; }
        .about-text h2 {
            font-family: 'Cinzel', serif;
            font-size: clamp(2.2rem, 4vw, 3.8rem);
            line-height: 1.15; color: var(--dark); margin-bottom: 12px;
        }
        .about-text h2 em { font-style: italic; color: var(--gold); font-family: 'Cormorant Garamond', serif; font-size: 1.2em; }
        .gold-line { width: 60px; height: 3px; background: var(--gold); margin: 24px 0 30px; }
        .about-text p { color: #4a4a5a; line-height: 1.9; font-size: 1rem; margin-bottom: 18px; font-weight: 300; }
        .cards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 36px; }
        .info-card {
            background: #fff; padding: 28px; border-radius: 16px;
            border-left: 3px solid var(--gold);
            box-shadow: 0 8px 30px rgba(0,0,0,0.06); transition: 0.3s;
        }
        .info-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
        .info-card h4 { font-family: 'Cinzel', serif; font-size: 0.9rem; letter-spacing: 1px; color: var(--dark); margin-bottom: 10px; }
        .info-card p { color: #6b7280; font-size: 0.9rem; line-height: 1.7; margin: 0; }

        .about-image { position: relative; }
        .img-frame {
            width: 100%; aspect-ratio: 4/5; border-radius: 30px; overflow: hidden;
            box-shadow: 0 40px 80px rgba(0,0,0,0.15);
        }
        .img-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
        .img-frame:hover img { transform: scale(1.04); }
        .img-badge {
            position: absolute; bottom: -20px; right: -20px;
            background: var(--gold); color: var(--dark);
            width: 110px; height: 110px; border-radius: 50%;
            display: flex; flex-direction: column; align-items: center; justify-content: center;
            font-family: 'Cinzel', serif; box-shadow: 0 10px 30px rgba(201,149,42,0.4);
        }
        .img-badge .num { font-size: 2rem; font-weight: 700; line-height: 1; }
        .img-badge .lbl { font-size: 0.6rem; letter-spacing: 1.5px; text-align: center; text-transform: uppercase; }

        /* ===== GEM HISTORY / SRI LANKA ===== */
        .history-section {
            position: relative; z-index: 10;
            background: var(--dark-2);
            padding: 80px 6%;
        }
        .history-section .container { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }
        .history-img-wrap { position: relative; }
        .history-img-stack { position: relative; height: 550px; }
        .hist-img {
            position: absolute; border-radius: 20px; overflow: hidden;
            box-shadow: 0 30px 60px rgba(0,0,0,0.4);
        }
        .hist-img img { width: 100%; height: 100%; object-fit: cover; }
        .hist-img-1 { width: 75%; height: 380px; top: 0; left: 0; }
        .hist-img-2 { width: 60%; height: 280px; bottom: 0; right: 0; border: 4px solid var(--dark-2); }
        .history-text .section-label span { color: var(--gold); }
        .history-text h2 { font-family: 'Cinzel', serif; font-size: clamp(2rem, 3.5vw, 3.2rem); color: var(--white); margin-bottom: 20px; }
        .history-text h2 em { font-style: italic; color: var(--gold); font-family: 'Cormorant Garamond', serif; font-size: 1.15em; }
        .history-gold-line { width: 60px; height: 3px; background: var(--gold); margin-bottom: 28px; }
        .history-text p { color: var(--text-muted); line-height: 1.9; font-size: 0.98rem; margin-bottom: 18px; font-weight: 300; }
        .fact-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 36px; }
        .fact-box { background: rgba(201,149,42,0.07); border: 1px solid rgba(201,149,42,0.2); padding: 22px; border-radius: 12px; }
        .fact-box .num { font-family: 'Cinzel', serif; font-size: 2.2rem; color: var(--gold); font-weight: 700; }
        .fact-box .lbl { font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-top: 4px; }

        /* ===== GEMS SHOWCASE ===== */
        .gems-section {
            position: relative; z-index: 10;
            background: var(--dark);
            padding: 80px 6%;
        }
        .section-header { text-align: center; margin-bottom: 70px; }
        .section-header h2 { font-family: 'Cinzel', serif; font-size: clamp(2.2rem, 4vw, 3.5rem); color: var(--white); margin-top: 16px; }
        .section-header h2 em { font-style: italic; color: var(--gold); font-family: 'Cormorant Garamond', serif; font-size: 1.15em; }
        .section-header .section-label { justify-content: center; }
        .section-header .section-label::before { display: none; }
        .section-header .section-label::after { content: ''; display: block; width: 40px; height: 1px; background: var(--gold); }

        .gem-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
        .gem-card {
            background: var(--dark-3); border: 1px solid rgba(201,149,42,0.1);
            border-radius: 24px; overflow: hidden; cursor: pointer;
            transition: all 0.4s ease; position: relative;
        }
        .gem-card:hover { border-color: rgba(201,149,42,0.4); transform: translateY(-12px); box-shadow: 0 30px 60px rgba(0,0,0,0.4); }
        .gem-card-img { height: 260px; overflow: hidden; position: relative; }
        .gem-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
        .gem-card:hover .gem-card-img img { transform: scale(1.20); }
        .gem-card-img::after {
            content: ''; position: absolute; bottom: 0; left: 0; right: 0;
            height: 80px; background: linear-gradient(to top, var(--dark-3), transparent);
        }
        .gem-view-btn {
            position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.8);
            background: rgba(201,149,42,0.9); color: var(--dark);
            width: 56px; height: 56px; border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.3rem; opacity: 0; transition: all 0.3s; z-index: 2;
        }
        .gem-card:hover .gem-view-btn { opacity: 1; transform: translate(-50%, -50%) scale(1); }
        .gem-card-body { padding: 24px; }
        .gem-card-body h3 { font-family: 'Cinzel', serif; font-size: 1.1rem; color: var(--gold); margin-bottom: 10px; }
        .gem-card-body p { color: var(--text-muted); font-size: 0.87rem; line-height: 1.7; font-weight: 300; }
        .gem-tag {
            display: inline-block; margin-top: 14px; padding: 4px 12px;
            border: 1px solid rgba(201,149,42,0.3); border-radius: 20px;
            font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold);
        }

        /* ===== GEM POPUP MODAL ===== */
        .modal-overlay {
            position: fixed; inset: 0; z-index: 9999;
            background: rgba(0,0,0,0.9); backdrop-filter: blur(8px);
            display: flex; align-items: center; justify-content: center;
            padding: 20px; opacity: 0; visibility: hidden; transition: all 0.4s ease;
        }
        .modal-overlay.active { opacity: 1; visibility: visible; }
        .modal-box {
            background: var(--dark-2); border: 1px solid rgba(201,149,42,0.2);
            border-radius: 30px; max-width: 900px; width: 100%;
            max-height: 90vh; overflow-y: auto;
            transform: scale(0.9) translateY(20px); transition: all 0.4s ease;
        }
        .modal-overlay.active .modal-box { transform: scale(1) translateY(0); }
        .modal-inner { display: grid; grid-template-columns: 1fr 1fr; }
        .modal-gallery { position: relative; }
        .modal-main-img {
            width: 100%; height: 400px; object-fit: cover;
            border-radius: 30px 0 0 0; transition: 0.4s;
        }
        .modal-thumbs {
            display: flex; gap: 8px; padding: 12px;
            background: rgba(0,0,0,0.3);
        }
        .modal-thumb {
            width: 70px; height: 55px; object-fit: cover; border-radius: 8px;
            cursor: pointer; border: 2px solid transparent; transition: 0.3s; flex-shrink: 0;
        }
        .modal-thumb.active, .modal-thumb:hover { border-color: var(--gold); }
        .modal-content-side { padding: 40px 36px; }
        .modal-gem-label {
            font-size: 0.7rem; letter-spacing: 4px; text-transform: uppercase;
            color: var(--gold); margin-bottom: 12px; display: block;
        }
        .modal-content-side h2 { font-family: 'Cinzel', serif; font-size: 2rem; color: var(--white); margin-bottom: 20px; line-height: 1.2; }
        .modal-divider { width: 40px; height: 2px; background: var(--gold); margin-bottom: 22px; }
        .modal-content-side p { color: var(--text-muted); line-height: 1.8; font-size: 0.9rem; font-weight: 300; margin-bottom: 16px; }
        .modal-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 20px; }
        .modal-fact { background: rgba(201,149,42,0.07); border: 1px solid rgba(201,149,42,0.15); border-radius: 10px; padding: 14px; }
        .modal-fact .key { font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); }
        .modal-fact .val { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: var(--white); margin-top: 4px; }
        .modal-close {
            position: absolute; top: 16px; right: 16px;
            width: 40px; height: 40px; background: rgba(0,0,0,0.5);
            border: 1px solid rgba(255,255,255,0.1); border-radius: 50%;
            cursor: pointer; display: flex; align-items: center; justify-content: center;
            font-size: 1.1rem; color: var(--white); transition: 0.3s; z-index: 10;
        }
        .modal-close:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }
        .modal-box { position: relative; }

        /* ===== WHY CHOOSE ===== */
        .why-section {
            position: relative; z-index: 10;
            background: var(--dark-3);
            padding: 80px 6%;
        }
        .why-header { text-align: center; margin-bottom: 80px; }
        .why-header h2 { font-family: 'Cinzel', serif; font-size: clamp(2rem, 3.5vw, 3.2rem); color: var(--white); margin-top: 16px; }
        .why-header h2 em { font-style: italic; color: var(--gold); font-family: 'Cormorant Garamond', serif; font-size: 1.15em; }
        .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-bottom: 70px; }
        .why-card {
            background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06);
            border-radius: 20px; padding: 36px 28px; transition: 0.4s; text-align: center;
        }
        .why-card:hover { background: rgba(201,149,42,0.07); border-color: rgba(201,149,42,0.3); transform: translateY(-8px); }
        .why-icon {
            width: 60px; height: 60px; background: rgba(201,149,42,0.1);
            border-radius: 16px; display: flex; align-items: center; justify-content: center;
            font-size: 1.6rem; margin: 0 auto 22px; transition: 0.3s;
        }
        .why-card:hover .why-icon { background: #c9952a33; }
        .why-card h3 { font-family: 'Cinzel', serif; font-size: 1rem; color: var(--gold); margin-bottom: 14px; letter-spacing: 0.5px; }
        .why-card p { color: var(--text-muted); font-size: 0.87rem; line-height: 1.8; font-weight: 300; }

        .importance-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
        .importance-card {
            display: flex; gap: 20px; align-items: flex-start;
            background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06);
            border-radius: 16px; padding: 28px; transition: 0.3s;
        }
        .importance-card:hover { border-color: rgba(201,149,42,0.25); background: rgba(201,149,42,0.04); }
        .imp-icon { font-size: 2rem; flex-shrink: 0; margin-top: 4px; }
        .importance-card h4 { font-family: 'Cinzel', serif; color: var(--white); font-size: 0.95rem; margin-bottom: 8px; }
        .importance-card p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.7; margin: 0; font-weight: 300; }

        /* ===== GEMSTONE IMPORTANCE ===== */
.gem-importance-section {
    position: relative; 
    z-index: 10;
    background: var(--dark-2);
    padding: 80px 6%;
}

.gem-imp-grid { 
    display: grid; 
    grid-template-columns: 1.2fr 1fr; 
    gap: 80px; 
    align-items: center; 
}

.gem-imp-text h2 { 
    font-family: 'Cinzel', serif; 
    font-size: clamp(2rem, 3.5vw, 3.2rem); 
    color: var(--white); 
    margin: 16px 0 20px; 
}

.gem-imp-text h2 em { 
    font-style: italic; 
    color: var(--gold); 
    font-family: 'Cormorant Garamond', serif; 
    font-size: 1.15em; 
}

.gem-imp-text p { 
    color: var(--text-muted); 
    line-height: 1.9; 
    font-size: 0.95rem; 
    margin-bottom: 18px; 
    font-weight: 300; 
}

.gem-uses { 
    display: flex; 
    flex-direction: column; 
    gap: 14px; 
    margin-top: 30px; 
}

.gem-use-item {
    display: flex; 
    gap: 16px; 
    align-items: center;
    background: rgba(201,149,42,0.06); 
    border: 1px solid rgba(201,149,42,0.15);
    padding: 16px 20px; 
    border-radius: 12px; 
    transition: 0.3s;
}

.gem-use-item:hover { 
    background: rgba(201,149,42,0.12); 
}

.gem-use-item .icon { 
    font-size: 1.4rem; 
    flex-shrink: 0; 
}

.gem-use-item .text h5 { 
    color: var(--white); 
    font-size: 0.9rem; 
    margin-bottom: 3px; 
}

.gem-use-item .text p { 
    color: var(--text-muted); 
    font-size: 0.8rem; 
    margin: 0; 
    line-height: 1.5; 
}

.gem-imp-visual { 
    position: relative; 
}

/* --- STATS CARDS CONTAINER --- */
.gem-orb-container {
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 20px; 
}

/* --- INDIVIDUAL STAT CARD (Updated for Height) --- */
.gem-stat-card {
    background: rgba(201,149,42,0.06); 
    border: 1px solid rgba(201,149,42,0.2);
    border-radius: 20px; 
    padding: 65px 35px;
    text-align: center; 
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    min-height: 240px;/
}

.gem-stat-card:hover { 
    background: rgba(201,149,42,0.12); 
    transform: translateY(-6px); 
}

.gem-stat-card .big { 
    font-family: 'Cinzel', serif; 
    font-size: 3rem; 
    color: var(--gold); 
    font-weight: 700; 
    line-height: 1; 
}

.gem-stat-card .sm { 
    font-size: 0.72rem; 
    letter-spacing: 2px; 
    text-transform: uppercase; 
    color: var(--text-muted); 
    margin-top: 12px; 
    line-height: 1.6;
}

.gem-stat-card:nth-child(1), .gem-stat-card:nth-child(4) { 
    background: rgba(201,149,42,0.1); 
}

/* --- MOBILE VIEW (Responsive) --- */
@media (max-width: 768px) {
    .gem-imp-grid { 
        grid-template-columns: 1fr; 
        gap: 40px; 
    }
    
    .gem-stat-card {
        padding: 30px 15px; 
        min-height: auto;
    }
    
    .gem-stat-card .big {
        font-size: 2.2rem;
    }
}
        /* ===== COMPANY INFO ===== */
        .company-section {
            position: relative; z-index: 10;
            background: #f0ebe0;
            color: var(--dark);
            padding: 80px 6%;
        }
        .company-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
        .company-info h2 { font-family: 'Cinzel', serif; font-size: 2.8rem; color: var(--dark); margin-bottom: 8px; }
        .company-info h2 span { color: var(--gold); }
        .company-info .tagline { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: #6b7280; font-style: italic; margin-bottom: 36px; }
        .company-details { display: flex; flex-direction: column; gap: 16px; }
        .detail-item { display: flex; gap: 16px; align-items: flex-start; padding: 20px; background: #fff; border-radius: 14px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
        .detail-item .d-icon { font-size: 1.3rem; margin-top: 2px; flex-shrink: 0; }
        .detail-item .d-text label { font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase; color: #9ca3af; display: block; margin-bottom: 4px; }
        .detail-item .d-text span { font-size: 0.95rem; color: var(--dark); font-weight: 400; }
        .company-map {
            background: #fff; border-radius: 20px; overflow: hidden;
            box-shadow: 0 20px 50px rgba(0,0,0,0.1);
        }
        .map-placeholder {
            height: 280px; background: linear-gradient(135deg, #e8e0d0, #d4c9b0);
            display: flex; align-items: center; justify-content: center; flex-direction: column;
            gap: 12px; color: #6b7280;
        }
        .map-placeholder .pin { font-size: 3rem; }
        .map-placeholder p { font-size: 0.85rem; letter-spacing: 1px; }
        .contact-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; padding: 20px; }
        .contact-box { background: #f8f5ef; padding: 18px; border-radius: 12px; border-left: 3px solid var(--gold); }
        .contact-box label { font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase; color: #9ca3af; display: block; margin-bottom: 6px; }
        .contact-box a, .contact-box span { color: var(--dark); font-size: 0.88rem; text-decoration: none; }
        .contact-box a:hover { color: var(--gold); }

        /* ===== FOOTER ===== */
        footer {
            position: relative; z-index: 10;
            background: var(--dark); padding: 60px 6% 24px;
            border-top: 1px solid rgba(201,149,42,0.1);
        }
        .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }
        .footer-brand .logo { font-family: 'Cinzel', serif; font-size: 1.5rem; letter-spacing: 4px; font-weight: 600; display: block; margin-bottom: 12px; }
        .footer-brand p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.8; font-weight: 300; max-width: 300px; }
        footer h5 { font-family: 'Cinzel', serif; font-size: 0.85rem; letter-spacing: 2px; color: var(--gold); margin-bottom: 20px; }
        .footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
        .footer-links a { text-decoration: none; color: var(--text-muted); font-size: 0.85rem; transition: 0.3s; }
        .footer-links a:hover { color: var(--gold); }
        .footer-contact-items { display: flex; flex-direction: column; gap: 12px; }
        .footer-contact-item { display: flex; gap: 10px; align-items: flex-start; }
        .footer-contact-item .icon { font-size: 0.9rem; margin-top: 2px; color: var(--gold); }
        .footer-contact-item p { color: var(--text-muted); font-size: 0.82rem; line-height: 1.6; margin: 0; }
        .footer-contact-items p:hover { color: var(--gold); }
         .footer-flags {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.footer-flags span {
    font-size: 1.4rem;
    cursor: default;
    transition: transform 0.25s ease, filter 0.25s ease;
    filter: grayscale(20%);
    display: inline-block;
}

.footer-flags span:hover {
    transform: translateY(-4px) scale(1.2);
    filter: grayscale(0%);
}

.footer-serving {
    font-size: 0.68rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(201,149,42,0.5);
    margin-bottom: 10px;
}
        /* ===== ANIMATIONS ===== */
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .reveal {
            opacity: 0; transform: translateY(40px);
            transition: opacity 0.7s ease, transform 0.7s ease;
            text-align: justify;
            
        }
        .reveal.visible { opacity: 1; transform: translateY(0); }
        .reveal-delay-1 { transition-delay: 0.1s; }
        .reveal-delay-2 { transition-delay: 0.2s; }
        .reveal-delay-3 { transition-delay: 0.3s; }

        /* ===== SCROLL BAR ===== */
        ::-webkit-scrollbar { width: 5px; }
        ::-webkit-scrollbar-track { background: var(--dark); }
        ::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

        /* ===== TABLET (992px) ===== */
        @media (max-width: 992px) {
            .about-grid, .history-section .container, .gem-imp-grid, .company-grid, .footer-grid { grid-template-columns: 1fr; gap: 50px; }
            .why-grid { grid-template-columns: repeat(2, 1fr); }
            .modal-inner { grid-template-columns: 1fr; }
            .modal-main-img { height: 280px; border-radius: 30px 30px 0 0; }
            .nav-links, .nav-cta { display: none; }
            .mobile-menu { display: flex; }
            .img-badge { bottom: -10px; right: -10px; }
            .history-img-stack { height: 350px; }
            .hist-img-1 { height: 250px; }
            .hist-img-2 { height: 180px; }
        }

        /* ===== MOBILE (600px) ===== */
        @media (max-width: 600px) {
            .why-grid, .importance-grid, .cards-grid, .fact-row, .gem-orb-container { grid-template-columns: 1fr; }
            .modal-facts { grid-template-columns: 1fr; }
            .contact-row { grid-template-columns: 1fr; }
            @media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 40px;
    }

    .footer-brand {
        grid-column: 1 / -1; /* full width top row */
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 30px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}
            .about-section { padding: 80px 5%; border-radius: 30px 30px 0 0; }
            .history-section, .gems-section, .why-section, .gem-importance-section, .company-section { padding: 80px 5%; }
            .hero-content h1 { letter-spacing: 0.2em; }
            .mobile-sidebar { width: 280px; }
            .hero-scroll-cue { bottom: 28px; }
        }

        /* Prevent body scroll when sidebar is open */
        body.sidebar-open { overflow: hidden; }

        .footer-contact-item a {
    text-decoration: none; 
    color: inherit;        
}




.logo {
    position: relative;
    z-index: 1001; 
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;         
    width: auto;           
    display: block;        
    object-fit: contain;   
    transition: transform 0.3s ease;
    
    
    position: absolute;
    top: -10px;            
    left: 0;
}


.navbar, .nav-container {
    overflow: visible !important;
}

.logo img:hover {
    transform: scale(1.1); 
}

.gold {
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.6)); 
}

.designer-link {
    text-decoration: none !important;
    color: inherit; 
    transition: 0.3s ease; 
}

.designer-link:hover {
    text-decoration: none !important;
    color: #a38f20; 
    opacity: 0.8; 
}

/* footer logo */


.brand-link {
  text-decoration: none;
  display: inline-block;
}


.brand-container {
  display: flex;
  align-items: center;
  gap: 12px; 
}


.brand-logo {
  height: 60px; 
  width: auto;
  object-fit: contain;
}


.brand-text {
  font-family: 'Arial', sans-serif;
  font-weight: bold;
  font-size: 24px;
  color: #f8f5f5; 
  letter-spacing: 1px;
}


.highlight-gold {
  color: #D4AF37; /* Gold color code */
}


.brand-link:hover .brand-text {
  opacity: 0.8;
}

/* Side menu logo*/


.sidebar-logo-wrapper {
  padding: 10px 10px; 
  display: flex;
  justify-content: center; 
  align-items: center;
}


.sidebar-logo-link {
  display: inline-block;
  transition: transform 0.3s ease; 
}


.sidebar-logo-img {
  width: 80px; 
  height: auto;
  display: block;
  
  filter: drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.3));
}


.sidebar-logo-link:hover {
  transform: scale(1.1); 
}

.btn-inquire-gem {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 22px;
    width: 100%;
    padding: 13px 20px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}
.btn-inquire-gem:hover { background: var(--gold); color: var(--dark); }
.btn-inquire-gem svg { width: 15px; height: 15px; flex-shrink: 0; }



