/* ===================================
   EMERALD PEAK — SERVICE PAGE CSS
   Matches home.css design system
=================================== */

@import url('home.css');

: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;
}

/* ===== SHARED COMPONENTS ===== */
.container { max-width: 1200px; margin: 0 auto; }

.section-label {
    display: flex; align-items: center; gap: 16px; margin-bottom: 16px;
    justify-content: center;
}
.section-label::before,
.section-label::after {
    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;
}

.reveal {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }



/* ===== HERO ===== */
.service-hero {
    position: relative;
    height: 100vh; min-height: 600px;
    display: flex; align-items: center; justify-content: center;
    background: var(--dark);
    overflow: hidden;
}
.hero-bg-orbs { position: absolute; inset: 0; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.18; animation: orbFloat 8s ease-in-out infinite alternate; }
.orb-1 { width: 500px; height: 500px; background: radial-gradient(circle, #c9952a, transparent 70%); top: -100px; left: -100px; animation-duration: 9s; }
.orb-2 { width: 400px; height: 400px; background: radial-gradient(circle, #1a8a52, transparent 70%); bottom: -80px; right: -80px; animation-duration: 11s; animation-delay: 2s; }
.orb-3 { width: 300px; height: 300px; background: radial-gradient(circle, #e8b84b, transparent 70%); top: 40%; left: 55%; animation-duration: 7s; animation-delay: 1s; opacity: 0.1; }
@keyframes orbFloat {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(30px, 20px) scale(1.08); }
}
.hero-particles { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.particle { position: absolute; border-radius: 50%; background: var(--gold-light); animation: particleDrift linear infinite; pointer-events: none; }
@keyframes particleDrift {
    0% { transform: translateY(0) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 0.6; }
    100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
}
.service-hero-content { position: relative; z-index: 2; text-align: center; padding: 0 20px; }
.hero-eyebrow { display: flex; align-items: center; justify-content: center; gap: 20px; margin-bottom: 28px; animation: fadeUp 0.9s ease 0.2s both; }
.eyebrow-line { display: block; width: 50px; height: 1px; background: linear-gradient(to right, transparent, var(--gold)); }
.hero-eyebrow .eyebrow-line:last-child { background: linear-gradient(to left, transparent, var(--gold)); }
.eyebrow-text { font-size: 0.72rem; letter-spacing: 5px; text-transform: uppercase; color: var(--gold); font-weight: 400; }
.hero-title { font-family: 'Cinzel', serif; display: flex; flex-direction: column; align-items: center; line-height: 0.9; margin-bottom: 28px; }
.hero-title .line-1 { font-size: clamp(1.4rem, 5vw, 3rem); letter-spacing: 0.6em; font-weight: 400; color: rgba(240,236,228,0.5); animation: fadeUp 0.9s ease 0.4s both; }
.hero-title .line-2 { font-size: clamp(4rem, 13vw, 10rem); letter-spacing: 0.2em; font-weight: 500; background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 40%, #a07320 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: fadeUp 0.9s ease 0.6s both; filter: drop-shadow(0 0 40px rgba(201,149,42,0.25)); }
.hero-subtitle { font-size: 0.9rem; letter-spacing: 2px; color: rgba(240,236,228,0.55); max-width: 500px; margin: 0 auto 44px; line-height: 1.8; animation: fadeUp 0.9s ease 0.8s both; }
.hero-scroll-hint { display: flex; flex-direction: column; align-items: center; gap: 10px; animation: fadeUp 0.9s ease 1s both; }
.hero-scroll-hint span { font-size: 0.65rem; letter-spacing: 4px; text-transform: uppercase; color: rgba(240,236,228,0.35); }
.scroll-arrow { display: flex; flex-direction: column; align-items: center; animation: scrollBounce 2s ease infinite; }
.arrow-line { width: 1px; height: 40px; background: linear-gradient(to bottom, transparent, var(--gold)); }
.arrow-head { width: 8px; height: 8px; border-right: 1px solid var(--gold); border-bottom: 1px solid var(--gold); transform: rotate(45deg); margin-top: -4px; }
@keyframes scrollBounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(8px); } }
.hero-bottom-fade { position: absolute; bottom: 0; left: 0; right: 0; height: 200px; background: linear-gradient(to bottom, transparent, var(--dark)); z-index: 3; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* ===== INTRO BANNER ===== */
.intro-banner { background: var(--dark-2); padding: 50px 6%; border-bottom: 1px solid rgba(201,149,42,0.1); }
.banner-grid { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; }
.banner-stat { display: flex; flex-direction: column; align-items: center; padding: 20px 50px; gap: 6px; }
.stat-num { font-family: 'Cinzel', serif; font-size: 2.2rem; color: var(--gold); font-weight: 700; line-height: 1; }
.stat-lbl { font-size: 0.65rem; letter-spacing: 3px; text-transform: uppercase; color: var(--text-muted); }
.banner-divider { width: 1px; height: 50px; background: linear-gradient(to bottom, transparent, rgba(201,149,42,0.4), transparent); }

/* ===== SECTION HEADER ===== */
.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.1em; }
.section-sub { color: var(--text-muted); font-size: 0.95rem; line-height: 1.8; max-width: 580px; margin: 18px auto 0; font-weight: 300; }

/* ===== MAIN SERVICES — 3D FLIP CARDS ===== */
.services-main { background: var(--dark); padding: 120px 6%; }

/* 10 cards — 5 columns on wide, 4 on mid, 3 on tablet, 2 on small, 1 on mobile */
.services-3d-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.service-3d-card { perspective: 1000px; height: 360px; cursor: pointer; }
.card-inner { position: relative; width: 100%; height: 100%; transform-style: preserve-3d; transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1); }
.service-3d-card:hover .card-inner { transform: rotateY(180deg); }

.card-front, .card-back {
    position: absolute; inset: 0;
    backface-visibility: hidden; -webkit-backface-visibility: hidden;
    border-radius: 20px; padding: 28px 22px;
    display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
}
.card-front { background: var(--dark-3); border: 1px solid rgba(201,149,42,0.15); gap: 14px; }
.card-front h3 { font-family: 'Cinzel', serif; font-size: 0.95rem; color: var(--gold); letter-spacing: 0.5px; line-height: 1.3; }
.card-front p { color: var(--text-muted); font-size: 0.8rem; line-height: 1.6; font-weight: 300; }
.flip-hint { font-size: 0.6rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(201,149,42,0.45); margin-top: 6px; }

.card-back {
    background: linear-gradient(135deg, var(--dark-2), var(--slate));
    border: 1px solid rgba(201,149,42,0.35);
    transform: rotateY(180deg);
    gap: 10px; justify-content: flex-start;
    padding: 28px 24px; text-align: left; align-items: flex-start;
}
.back-icon { font-size: 1.8rem; }
.card-back h3 { font-family: 'Cinzel', serif; font-size: 0.88rem; color: var(--gold); letter-spacing: 0.5px; line-height: 1.3; }
.card-back ul { list-style: none; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.card-back ul li { color: var(--text-muted); font-size: 0.78rem; padding-left: 14px; position: relative; line-height: 1.4; }
.card-back ul li::before { content: '◆'; position: absolute; left: 0; color: var(--gold); font-size: 0.35rem; top: 5px; }
.card-cta { display: inline-block; padding: 9px 18px; background: var(--gold); color: var(--dark); text-decoration: none; font-size: 0.68rem; letter-spacing: 2px; text-transform: uppercase; border-radius: 2px; font-family: 'Jost'; font-weight: 500; transition: 0.3s; margin-top: 6px; align-self: flex-start; }
.card-cta:hover { background: var(--gold-light); }

/* ===== CSS GEM 3D ===== */
.card-icon-wrap { width: 80px; height: 80px; display: flex; align-items: center; justify-content: center; position: relative; margin-bottom: 2px; }
.card-gem-3d { width: 52px; height: 60px; position: relative; transform-style: preserve-3d; animation: gemSpin 6s linear infinite; }
@keyframes gemSpin { 0% { transform: rotateY(0deg) rotateX(10deg); } 100% { transform: rotateY(360deg) rotateX(10deg); } }
.card-gem-3d .top { position: absolute; top: 0; left: 0; right: 0; height: 50%; clip-path: polygon(50% 0%, 100% 100%, 0% 100%); }
.card-gem-3d .left { position: absolute; bottom: 0; left: 0; height: 60%; width: 50%; clip-path: polygon(0% 0%, 100% 0%, 50% 100%); }
.card-gem-3d .right { position: absolute; bottom: 0; left: 50%; height: 60%; width: 50%; clip-path: polygon(0% 0%, 100% 0%, 50% 100%); }

/* Blue Sapphire */
.gem-blue .top { background: linear-gradient(135deg, #7db8f7, #2563eb); }
.gem-blue .left { background: linear-gradient(180deg, #2563eb, #1e3a8a); }
.gem-blue .right { background: linear-gradient(180deg, #60a5fa, #1d4ed8); }
.gem-blue { filter: drop-shadow(0 6px 16px rgba(37,99,235,0.6)); }

/* Pink / Ruby-ish */
.gem-pink .top { background: linear-gradient(135deg, #fda4af, #e11d48); }
.gem-pink .left { background: linear-gradient(180deg, #e11d48, #881337); }
.gem-pink .right { background: linear-gradient(180deg, #fb7185, #be123c); }
.gem-pink { filter: drop-shadow(0 6px 16px rgba(225,29,72,0.6)); }

/* White / Diamond-ish */
.gem-white .top { background: linear-gradient(135deg, #f8fafc, #cbd5e1); }
.gem-white .left { background: linear-gradient(180deg, #94a3b8, #475569); }
.gem-white .right { background: linear-gradient(180deg, #e2e8f0, #64748b); }
.gem-white { filter: drop-shadow(0 6px 16px rgba(200,200,255,0.5)); }

/* Gold / Yellow Sapphire */
.gem-gold .top { background: linear-gradient(135deg, #fde68a, var(--gold)); }
.gem-gold .left { background: linear-gradient(180deg, var(--gold), #92400e); }
.gem-gold .right { background: linear-gradient(180deg, var(--gold-light), #b45309); }
.gem-gold { filter: drop-shadow(0 6px 16px rgba(201,149,42,0.6)); }

/* Green / Emerald */
.gem-green .top { background: linear-gradient(135deg, #6ee7b7, #059669); }
.gem-green .left { background: linear-gradient(180deg, #059669, #064e3b); }
.gem-green .right { background: linear-gradient(180deg, #34d399, #065f46); }
.gem-green { filter: drop-shadow(0 6px 16px rgba(5,150,105,0.6)); }

/* Teal */
.gem-teal .top { background: linear-gradient(135deg, #67e8f9, #0891b2); }
.gem-teal .left { background: linear-gradient(180deg, #0891b2, #164e63); }
.gem-teal .right { background: linear-gradient(180deg, #22d3ee, #0e7490); }
.gem-teal { filter: drop-shadow(0 6px 16px rgba(8,145,178,0.6)); }

/* Purple / Spinel */
.gem-purple .top { background: linear-gradient(135deg, #c4b5fd, #7c3aed); }
.gem-purple .left { background: linear-gradient(180deg, #7c3aed, #4c1d95); }
.gem-purple .right { background: linear-gradient(180deg, #a78bfa, #6d28d9); }
.gem-purple { filter: drop-shadow(0 6px 16px rgba(124,58,237,0.6)); }

/* Amber / Padparadscha */
.gem-amber .top { background: linear-gradient(135deg, #fcd34d, #d97706); }
.gem-amber .left { background: linear-gradient(180deg, #d97706, #92400e); }
.gem-amber .right { background: linear-gradient(180deg, #fbbf24, #b45309); }
.gem-amber { filter: drop-shadow(0 6px 16px rgba(217,119,6,0.6)); }

/* Emerald / Deep green */
.gem-emerald .top { background: linear-gradient(135deg, #86efac, #16a34a); }
.gem-emerald .left { background: linear-gradient(180deg, #16a34a, #14532d); }
.gem-emerald .right { background: linear-gradient(180deg, #4ade80, #15803d); }
.gem-emerald { filter: drop-shadow(0 6px 16px rgba(22,163,74,0.6)); }

/* Ruby red */
.gem-ruby .top { background: linear-gradient(135deg, #fca5a5, #dc2626); }
.gem-ruby .left { background: linear-gradient(180deg, #dc2626, #7f1d1d); }
.gem-ruby .right { background: linear-gradient(180deg, #f87171, #b91c1c); }
.gem-ruby { filter: drop-shadow(0 6px 16px rgba(220,38,38,0.6)); }

/* ===== PROCESS TIMELINE ===== */
.process-section { background: var(--dark-2); padding: 120px 6%; }
.process-section .section-header h2 { color: var(--white); }
.process-timeline { position: relative; display: flex; flex-direction: column; gap: 0; max-width: 750px; margin: 0 auto; padding-left: 80px; }
.timeline-track { position: absolute; left: 28px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, transparent, rgba(201,149,42,0.6) 10%, rgba(201,149,42,0.6) 90%, transparent); }
.process-step { display: flex; gap: 0; align-items: flex-start; position: relative; padding-bottom: 54px; }
.process-step:last-child { padding-bottom: 0; }
.step-bubble { position: absolute; left: -80px; width: 56px; height: 56px; background: var(--dark-3); border: 2px solid rgba(201,149,42,0.4); border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; flex-shrink: 0; z-index: 2; transition: 0.4s; }
.process-step.visible .step-bubble { border-color: var(--gold); background: rgba(201,149,42,0.1); box-shadow: 0 0 20px rgba(201,149,42,0.2); }
.step-num { font-family: 'Cinzel', serif; font-size: 0.6rem; color: var(--gold); letter-spacing: 1px; }
.step-icon { font-size: 1.1rem; line-height: 1; }
.step-content { padding: 14px 0 0 0; }
.step-content h4 { font-family: 'Cinzel', serif; font-size: 1rem; color: var(--white); margin-bottom: 10px; letter-spacing: 0.5px; }
.step-content p { color: var(--text-muted); font-size: 0.87rem; line-height: 1.8; font-weight: 300; }

/* ===== SPECIALTY SECTION ===== */
.specialty-section { background: var(--dark-3); padding: 120px 6%; }
.specialty-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.specialty-card { display: flex; gap: 28px; align-items: flex-start; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); border-radius: 20px; padding: 36px 32px; transition: 0.4s; position: relative; overflow: hidden; }
.specialty-card::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 0; background: var(--gold); transition: height 0.5s ease; }
.specialty-card.visible::before { height: 100%; }
.specialty-card:hover { background: rgba(201,149,42,0.05); border-color: rgba(201,149,42,0.2); transform: translateX(6px); }
.specialty-num { font-family: 'Cormorant Garamond', serif; font-size: 3rem; color: rgba(201,149,42,0.15); font-weight: 300; line-height: 1; flex-shrink: 0; min-width: 36px; margin-top: -6px; transition: 0.3s; }
.specialty-card:hover .specialty-num { color: rgba(201,149,42,0.35); }
.specialty-body h4 { font-family: 'Cinzel', serif; font-size: 0.95rem; color: var(--gold); margin-bottom: 12px; letter-spacing: 0.5px; }
.specialty-body p { color: var(--text-muted); font-size: 0.87rem; line-height: 1.8; font-weight: 300; margin: 0; }

/* ===== GEMS SERVED ===== */
.gems-served-section { background: var(--dark); padding: 100px 6%; }
.gems-served-section .section-header h2 { color: var(--white); }
.gems-ribbon { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; max-width: 900px; margin: 0 auto; }
.gem-pill { display: flex; align-items: center; gap: 8px; padding: 10px 20px; border-radius: 50px; border: 1px solid rgba(201,149,42,0.2); font-size: 0.78rem; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 400; color: var(--text-muted); background: rgba(255,255,255,0.02); transition: 0.3s; cursor: default; }
.gem-pill:hover { border-color: rgba(201,149,42,0.6); color: var(--white); transform: translateY(-3px); }
.pill-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.sapphire .pill-dot { background: #3b82f6; box-shadow: 0 0 6px rgba(59,130,246,0.8); }
.yellow .pill-dot { background: var(--gold); box-shadow: 0 0 6px rgba(201,149,42,0.8); }
.ruby .pill-dot { background: #ef4444; box-shadow: 0 0 6px rgba(239,68,68,0.8); }
.catseye .pill-dot { background: #84cc16; box-shadow: 0 0 6px rgba(132,204,22,0.8); }
.padparadscha .pill-dot { background: #f97316; box-shadow: 0 0 6px rgba(249,115,22,0.8); }
.moonstone .pill-dot { background: #a5f3fc; box-shadow: 0 0 6px rgba(165,243,252,0.8); }
.spinel .pill-dot { background: #ec4899; box-shadow: 0 0 6px rgba(236,72,153,0.8); }
.alexandrite .pill-dot { background: #8b5cf6; box-shadow: 0 0 6px rgba(139,92,246,0.8); }
.garnet .pill-dot { background: #dc2626; box-shadow: 0 0 6px rgba(220,38,38,0.8); }
.zircon .pill-dot { background: #67e8f9; box-shadow: 0 0 6px rgba(103,232,249,0.8); }
.tourmaline .pill-dot { background: #4ade80; box-shadow: 0 0 6px rgba(74,222,128,0.8); }
.aquamarine .pill-dot { background: #38bdf8; box-shadow: 0 0 6px rgba(56,189,248,0.8); }

/* ===== CTA SECTION ===== */
.cta-section { background: var(--dark-2); padding: 120px 6%; position: relative; overflow: hidden; text-align: center; }
.cta-bg-gems { position: absolute; inset: 0; pointer-events: none; }
.cta-orb { position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.12; }
.cta-orb-1 { width: 600px; height: 600px; background: radial-gradient(circle, var(--gold), transparent 70%); top: -200px; left: -200px; }
.cta-orb-2 { width: 400px; height: 400px; background: radial-gradient(circle, #1a8a52, transparent 70%); bottom: -150px; right: -100px; }
.cta-inner { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
.cta-label { font-size: 0.68rem; letter-spacing: 5px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; display: flex; align-items: center; justify-content: center; gap: 14px; }
.cta-label::before, .cta-label::after { content: ''; display: block; width: 30px; height: 1px; background: var(--gold); }
.cta-inner h2 { font-family: 'Cinzel', serif; font-size: clamp(2rem, 4vw, 3.2rem); color: var(--white); margin-bottom: 20px; line-height: 1.2; }
.cta-inner h2 em { font-style: italic; color: var(--gold); font-family: 'Cormorant Garamond', serif; font-size: 1.1em; }
.cta-inner p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.8; font-weight: 300; margin-bottom: 40px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }
.cta-btn-primary { padding: 16px 36px; background: var(--gold); color: var(--dark); text-decoration: none; font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase; border-radius: 3px; font-family: 'Jost'; font-weight: 500; transition: 0.3s; }
.cta-btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.cta-btn-secondary { padding: 16px 36px; border: 1px solid rgba(201,149,42,0.5); color: var(--gold); text-decoration: none; font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase; border-radius: 3px; font-family: 'Jost'; transition: 0.3s; }
.cta-btn-secondary:hover { background: rgba(201,149,42,0.08); border-color: var(--gold); transform: translateY(-2px); }
.cta-contact-row { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 12px; font-size: 0.78rem; color: rgba(200,208,205,0.5); letter-spacing: 1px; }
.cta-dot { color: var(--gold); font-size: 1.2rem; }

/* ===== 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 a { text-decoration: none; color: var(--text-muted); transition: 0.3s; }
.footer-contact-item a:hover { color: var(--gold); }
.footer-contact-item p { font-size: 0.82rem; line-height: 1.6; margin: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 24px; text-align: center; color: var(--text-muted); font-size: 0.78rem; letter-spacing: 1px; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ===== WIDE DESKTOP (1400px+) ===== */
@media (min-width: 1400px) {
    .services-3d-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ===== TABLET LANDSCAPE (1100px) ===== */
@media (max-width: 1100px) {
    .services-3d-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ===== TABLET (992px) ===== */
@media (max-width: 992px) {
    .services-3d-grid { grid-template-columns: repeat(3, 1fr); }
    .specialty-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .nav-links, .nav-cta { display: none; }
    .mobile-menu { display: flex; }
    .banner-stat { padding: 16px 28px; }
    .stat-num { font-size: 1.8rem; }
    .banner-divider { display: none; }
}

/* ===== SMALL TABLET (768px) ===== */
@media (max-width: 768px) {
    .services-3d-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== MOBILE (600px) ===== */
@media (max-width: 600px) {
    .services-3d-grid { grid-template-columns: 1fr; }
    .service-3d-card { height: 340px; }
    .specialty-grid { grid-template-columns: 1fr; }
    .services-main, .process-section, .specialty-section,
    .gems-served-section, .cta-section { padding: 80px 5%; }
    .cta-buttons { flex-direction: column; }
    .cta-btn-primary, .cta-btn-secondary { text-align: center; }
    .mobile-sidebar { width: 280px; }
    .process-timeline { padding-left: 60px; }
    .step-bubble { left: -60px; width: 44px; height: 44px; }
    .cta-contact-row { flex-direction: column; gap: 6px; }
    .banner-grid { flex-direction: column; gap: 8px; }
}

/* ===== CTA STRIP ===== */
.cta-strip {
    position: relative; z-index: 10;
    background: linear-gradient(135deg, #0d2611 0%, #0f2e1a 100%);
    padding: 90px 6%; text-align: center; overflow: hidden;
}
.cta-strip::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 60% 100% at 30% 50%, rgba(201,149,42,0.08) 0%, transparent 60%),
        radial-gradient(ellipse 60% 100% at 70% 50%, rgba(201,149,42,0.05) 0%, transparent 60%);
}
.cta-strip-inner { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.cta-strip h2 {
    font-family: 'Cinzel', serif; font-size: clamp(1.8rem, 3vw, 2.8rem);
    color: var(--white); margin-bottom: 16px;
}
.cta-strip h2 em { font-style: italic; color: var(--gold); font-family: 'Cormorant Garamond', serif; font-size: 1.15em; }
.cta-strip p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.8; margin-bottom: 40px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
    padding: 16px 40px; background: var(--gold); color: var(--dark);
    font-family: 'Cinzel', serif; font-size: 0.78rem; letter-spacing: 2px;
    text-transform: uppercase; text-decoration: none; border-radius: 3px;
    transition: 0.3s; font-weight: 600;
    box-shadow: 0 10px 30px rgba(201,149,42,0.3);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-3px); box-shadow: 0 16px 40px rgba(201,149,42,0.4); }
.btn-outline {
    padding: 16px 40px; border: 1px solid rgba(201,149,42,0.5); color: var(--gold);
    font-family: 'Cinzel', serif; font-size: 0.78rem; letter-spacing: 2px;
    text-transform: uppercase; text-decoration: none; border-radius: 3px;
    transition: 0.3s;
}
.btn-outline:hover { background: rgba(201,149,42,0.08); border-color: var(--gold); transform: translateY(-3px); }
