:root {
    --gold: #C5A059; --gold-hover: #A88645; --black: #0A0A0A;
    --dark-gray: #222222; --light-gray: #F9F9F9; --border: #EAEAEA;
    --white: #FFFFFF; --whatsapp-green: #25D366;
}

/* Base Reset & Typography */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; line-height: 1.6; color: var(--dark-gray); background-color: var(--white); -webkit-font-smoothing: antialiased; display: flex; flex-direction: column; min-height: 100vh; }
h1 { font-family: 'Playfair Display', serif; font-weight: 900; color: var(--black); } 
h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 400; color: var(--black); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; width: 100%; }

/* Buttons */
.btn-primary { background: var(--gold); color: var(--white); padding: 12px 24px; border-radius: 2px; font-weight: 500; text-decoration: none; display: inline-block; transition: background 0.3s ease; border: none; cursor: pointer; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; }
.btn-primary:hover { background: var(--gold-hover); }
.btn-outline { background: transparent; color: var(--gold); border: 1px solid var(--gold); padding: 12px 24px; border-radius: 2px; font-weight: 500; text-decoration: none; display: inline-block; transition: all 0.3s ease; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; }
.btn-outline:hover { background: var(--gold); color: var(--white); }

/* Global Header & Ticker */
.top-ticker { background: var(--black); color: var(--white); font-size: 0.8rem; letter-spacing: 0.5px; padding: 10px 0; border-bottom: 1px solid var(--gold); }
.ticker-content { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.rates-group { display: flex; gap: 20px; }
.rate-item span { color: var(--gold); font-weight: 600; margin-left: 4px; }

header { padding: 15px 0; border-bottom: 1px solid var(--border); background: var(--white); position: sticky; top: 0; z-index: 100; }
.header-nav-container { display: flex; justify-content: center; align-items: center; width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 5%;}
.nav-side { display: flex; gap: 40px; flex: 1; align-items: center; }
.nav-left { justify-content: flex-end; padding-right: 50px; }
.nav-right { justify-content: flex-start; padding-left: 50px; }
.nav-side a { text-decoration: none; color: var(--dark-gray); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; transition: color 0.3s; }
.nav-side a:hover { color: var(--gold); }
.logo-centered { text-align: center; flex-shrink: 0; }
.logo-text { display: block; font-family: 'Playfair Display', serif; font-size: 1.6rem; letter-spacing: 3px; text-transform: uppercase; color: var(--black); margin-top: 5px; text-decoration: none;}
.logo-subtext { display: block; font-size: 0.65rem; letter-spacing: 3px; text-transform: uppercase; color: #888; margin-top: 4px; }

/* Global Footer */
.site-footer { background: var(--black); color: var(--white); padding: 80px 0 40px; font-size: 0.9rem; margin-top: auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 60px; border-bottom: 1px solid #222; padding-bottom: 60px; }
.footer-brand p { color: #888; margin-bottom: 20px; line-height: 1.6; }
.footer-col h4 { font-family: 'Playfair Display', serif; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 1.5px; border-bottom: 1px solid var(--gold); padding-bottom: 15px; margin-bottom: 25px; display: inline-block; color: var(--white); }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 15px; }
.footer-links a { color: #999; text-decoration: none; transition: color 0.3s ease; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { text-align: center; color: #666; font-size: 0.8rem; line-height: 1.8; }

/* WhatsApp Float */
.whatsapp-float { position: fixed; bottom: 40px; right: 40px; background-color: var(--whatsapp-green); color: #FFF; border-radius: 50px; padding: 12px 24px; display: flex; align-items: center; justify-content: center; gap: 12px; text-decoration: none; box-shadow: 2px 4px 15px rgba(0,0,0,0.3); z-index: 1000; transition: transform 0.3s ease; }
.whatsapp-float:hover { transform: scale(1.05); }
.whatsapp-float svg { width: 28px; height: 28px; fill: currentColor; }
.whatsapp-text { font-size: 0.95rem; font-weight: 600; letter-spacing: 0.3px; }

/* Index Specific */
.hero { height: 71vh; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; color: white; text-align: center; }
.hero-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; opacity: 0; animation: slide-fade 15s infinite; z-index: -1; }
.slide-1 { background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1610375461246-83df859d849d?auto=format&fit=crop&q=80&w=1920'); animation-delay: 0s; }
.slide-2 { background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('IMG/GoldChain.jpg'); animation-delay: 5s; }
.slide-3 { background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('IMG/GoldRings.jpg'); animation-delay: 10s; }
@keyframes slide-fade { 0% { opacity: 0; } 5% { opacity: 1; } 33% { opacity: 1; } 38% { opacity: 0; } 100% { opacity: 0; } }
.hero-content { z-index: 2; max-width: 800px; margin: 0 auto; }
.hero h1 { color: #fff; font-size: 3.5rem; line-height: 1.1; margin-bottom: 20px; }
.hero p { color: #ddd; font-size: 1.2rem; margin-bottom: 30px; }

.trust-bar { border-bottom: 1px solid var(--border); padding: 30px 0; }
.trust-grid { display: flex; justify-content: space-between; text-align: center; }
.trust-item { flex: 1; font-size: 0.9rem; font-weight: 500; }
.trust-item span { display: block; color: var(--gold); font-size: 1.2rem; margin-bottom: 5px; }

.how-works { padding: 100px 0; background-color: var(--light-gray); border-bottom: 1px solid var(--border); }
.how-works h2 { text-align: center; font-size: 2.5rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 60px; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.step-card { text-align: center; padding: 20px; }
.step-number { font-family: 'Playfair Display', serif; font-size: 3.5rem; color: var(--gold); opacity: 0.3; line-height: 1; margin-bottom: 10px; }

.why-us-section { padding: 100px 0; text-align: center; }
.why-us-section > h2 { font-size: 2.5rem; margin-bottom: 40px; text-transform: uppercase; letter-spacing: 2px; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; text-align: left; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.why-left { background: linear-gradient(rgba(10,10,10,0.85), rgba(10,10,10,0.85)), url('https://images.unsplash.com/photo-1599696848652-f0ff23bc911f?auto=format&fit=crop&q=80&w=800') center/cover; padding: 60px 50px; color: var(--white); display: flex; flex-direction: column; justify-content: center; }
.why-left h3 { color: var(--white); font-size: 1.8rem; margin-bottom: 30px; }
.why-list { list-style: none; }
.why-list li { margin-bottom: 20px; font-size: 1.05rem; display: flex; align-items: center; gap: 15px; color: #EAEAEA; }
.why-list li span { color: var(--gold); font-size: 1.2rem; }
.why-right { display: flex; flex-direction: column; border: 1px solid var(--border); border-left: none; }
.why-tabs { display: flex; border-bottom: 1px solid var(--border); background: #F5F5F5; }
.why-tab { flex: 1; text-align: center; padding: 20px 10px; font-size: 0.9rem; color: #666; cursor: pointer; border-bottom: 2px solid transparent; transition: all 0.3s ease; }
.why-tab.active { background: var(--white); color: var(--black); font-weight: 600; border-bottom: 2px solid var(--gold); }
.why-content { padding: 50px; flex: 1; display: flex; flex-direction: column; justify-content: center; min-height: 400px; }
.tab-pane { display: none; animation: fadeIn 0.4s ease-in-out; }
.tab-pane.active { display: block; }
.tab-pane p { color: #555; margin-bottom: 25px; line-height: 1.8; }
.tab-pane ul { padding-left: 20px; margin-bottom: 35px; color: #555; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: translateY(0); } }

.valuation-area { padding: 100px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.valuation-text h2 { font-size: 2.5rem; margin-bottom: 20px; }
.valuation-text p { margin-bottom: 20px; color: #666; }
.valuation-text li { margin-bottom: 15px; padding-left: 25px; position: relative; font-weight: 500; list-style: none; }
.valuation-text li::before { content: '♦'; position: absolute; left: 0; color: var(--gold); font-size: 0.8rem; top: 4px; }
.quote-form { background: var(--light-gray); padding: 40px; border-radius: 4px; border: 1px solid var(--border); }
.quote-form h3 { margin-bottom: 25px; font-size: 1.5rem; text-align: center; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.input-group { margin-bottom: 20px; }
.full-width { grid-column: span 2; }
.input-group label { display: block; font-size: 0.8rem; font-weight: 600; margin-bottom: 8px; color: var(--black); text-transform: uppercase; letter-spacing: 0.5px; }
.input-group input, .input-group select, .input-group textarea { width: 100%; padding: 14px; border: 1px solid #CCC; background: var(--white); font-family: 'Inter', sans-serif; font-size: 1rem; outline: none; transition: border-color 0.3s;}
.input-group input:focus, .input-group textarea:focus { border-color: var(--gold); }

/* About Specific */
.about-hero { background: var(--light-gray); padding: 100px 0; text-align: center; border-bottom: 1px solid var(--border); }
.about-hero h1 { font-size: 3.5rem; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 2px; }
.about-hero p { color: #666; font-size: 1.2rem; max-width: 700px; margin: 0 auto; }
.story-section { padding: 100px 0; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.story-text h2 { font-size: 2.5rem; margin-bottom: 30px; }
.story-image img { width: 100%; height: 500px; object-fit: cover; box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.values-bar { background: var(--black); color: var(--white); padding: 80px 0; text-align: center; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.value-item h3 { color: var(--gold); font-size: 2.5rem; margin-bottom: 10px; }
.expertise-section { padding: 100px 0; background: var(--light-gray); }
.expertise-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: center; }
.expertise-list { list-style: none; margin-top: 40px; }
.expertise-list li { margin-bottom: 30px; padding-left: 40px; position: relative; }
.expertise-list li::before { content: '⚜'; position: absolute; left: 0; color: var(--gold); font-size: 1.2rem; top: 0; }

/* Call-out Specific */
.page-header { background: var(--light-gray); padding: 80px 0; text-align: center; border-bottom: 1px solid var(--border); }
.page-header h1 { font-size: 3rem; margin-bottom: 15px; text-transform: uppercase; letter-spacing: 2px; }
.callout-info { padding: 80px 0; }
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.process-list { list-style: none; margin-top: 30px; }
.process-list li { margin-bottom: 25px; display: flex; gap: 20px; }
.step-num { color: var(--gold); font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 600; }
.booking-section { padding-bottom: 100px; }
.booking-container { background: var(--white); border: 1px solid var(--border); display: grid; grid-template-columns: 1fr 1.5fr; box-shadow: 0 15px 40px rgba(0,0,0,0.05); }
.booking-sidebar { background: var(--black); color: var(--white); padding: 60px; }
.booking-sidebar h3 { color: var(--gold); font-size: 1.5rem; margin-bottom: 30px; }
.contact-detail { margin-bottom: 30px; }
.contact-detail label { display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; color: #888; margin-bottom: 5px; }
.form-area { padding: 60px; }

/* Referral Specific */
.ref-hero { padding: 100px 0; background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1614164185128-e4ec99c436d7?auto=format&fit=crop&q=80&w=1920') center/cover; color: white; text-align: center; }
.ref-hero h1 { font-size: 3.5rem; margin-bottom: 20px; color: #FFF; }
.reward-pill { display: inline-block; background: var(--gold); padding: 10px 25px; border-radius: 50px; font-weight: 600; letter-spacing: 1px; color: white; margin-bottom: 20px;}
.ref-details { padding: 100px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.reward-card { background: var(--light-gray); padding: 50px; border: 1px solid #EEE; text-align: center; }
.reward-card h3 { font-size: 3rem; color: var(--gold); margin-bottom: 10px; }

/* Legal & Thank You */
.legal-content { padding: 80px 0; max-width: 1000px; margin: 0 auto; }
.legal-content h1 { font-size: 3rem; text-align: center; margin-bottom: 60px; }
.legal-content h2 { margin: 30px 0 15px; color: var(--gold); }
.thank-you-section { text-align: center; padding: 120px 0; flex: 1; display: flex; flex-direction: column; justify-content: center; align-items: center; background-color: var(--white); margin: 40px auto; border: 1px solid var(--border); max-width: 800px; box-shadow: 0 15px 40px rgba(0,0,0,0.02); }
.icon-check { font-size: 4rem; color: var(--gold); margin-bottom: 20px; line-height: 1; }

/* Responsive */
@media (max-width: 900px) {
    .header-nav-container { flex-direction: column; gap: 15px; padding: 10px 0; }
    .nav-side { padding: 0; gap: 15px; justify-content: center; flex-wrap: wrap; text-align: center; }
    .ticker-content { flex-direction: column; text-align: center; gap: 8px; }
    .rates-group { flex-wrap: wrap; justify-content: center; gap: 10px; }
    .hero h1, .about-hero h1, .page-header h1, .ref-hero h1, .legal-content h1 { font-size: 2.2rem; }
    .steps-grid, .why-grid, .valuation-area, .story-grid, .values-grid, .expertise-grid, .info-grid, .booking-container, .form-grid, .ref-details, .footer-top, .trust-grid { grid-template-columns: 1fr; gap: 30px; }
    .why-right { border-left: 1px solid var(--border); border-top: none; }
    .full-width { grid-column: span 1; }
    .booking-sidebar, .form-area { padding: 30px; }
    .expertise-image { order: -1; }
}

/* Cookie Popup Styling */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--black);
    color: white;
    padding: 20px;
    z-index: 9999;
    border: 1px solid var(--gold);
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
}

.cookie-content {
    max-width: 1000px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.cookie-content p { font-size: 0.85rem; margin-right: 20px; }
.cookie-content a { color: var(--gold); text-decoration: underline; }

.cookie-btns button {
    padding: 8px 20px;
    font-size: 0.75rem;
}

@media (max-width: 768px) {
    .cookie-content { flex-direction: column; text-align: center; gap: 15px; }
}