
:root {
    --bg-white: #ffffff;
    --bg-cream: #fafafa;
    --bg-light: #f5f5f5;
    --bg-card: #ffffff;
    --text-dark: #1a1a1a;
    --text-gray: #666666;
    --text-light: #999999;
    --gold: #D4AF37;
    --gold-light: #F4E8C1;
    --gold-dark: #B8960C;
    --border: #e0e0e0;
    --border-light: #f0f0f0;
    --shadow: rgba(0,0,0,0.08);
    --shadow-hover: rgba(0,0,0,0.12);
    --success: #27ae60;
    --error: #e74c3c;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Montserrat', sans-serif; background: var(--bg-white); color: var(--text-dark); line-height: 1.6; -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; font-weight: 600; line-height: 1.2; color: var(--text-dark); }

/* Preloader */
#preloader { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--bg-white); z-index: 9999; display: flex; align-items: center; justify-content: center; transition: opacity 0.5s; }
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo { font-family: 'Cormorant Garamond', serif; font-size: 3rem; color: var(--gold); letter-spacing: 8px; border: 3px solid var(--gold); padding: 1.5rem 3rem; display: inline-block; position: relative; overflow: hidden; }
.loader-logo::after { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(212,175,55,0.4), transparent); animation: shimmer 2s infinite; }
@keyframes shimmer { 100% { left: 100%; } }

/* Urgency Bar */
.urgency-bar { position: fixed; top: 0; left: 0; right: 0; background: linear-gradient(90deg, #e74c3c, #c0392b); color: white; padding: 12px; text-align: center; font-weight: 600; z-index: 998; transform: translateY(-100%); transition: transform 0.3s; font-size: 0.9rem; display: flex; align-items: center; justify-content: center; gap: 10px; }
.urgency-bar.visible { transform: translateY(0); }
.pulse-dot { width: 8px; height: 8px; background: white; border-radius: 50%; animation: blink 1.5s infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

/* Nav */
.tour-nav { position: fixed; top: 0; width: 100%; background: rgba(255,255,255,0.95); backdrop-filter: blur(20px); z-index: 997; border-bottom: 1px solid var(--border); padding: 1rem 5%; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 2px 20px var(--shadow); }
.tour-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: var(--text-dark); text-decoration: none; letter-spacing: 2px; font-weight: 600; }
.tour-logo span { color: var(--gold); }
.tour-nav-links { display: flex; gap: 2rem; align-items: center; }
.tour-nav-links a { color: var(--text-gray); text-decoration: none; font-size: 0.85rem; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; transition: color 0.3s; }
.tour-nav-links a:hover { color: var(--gold); }
.tour-nav-cta { background: transparent; border: 1px solid var(--gold); color: var(--gold); padding: 0.8rem 1.5rem; text-decoration: none; font-weight: 600; font-size: 0.8rem; letter-spacing: 1px; transition: all 0.3s; text-transform: uppercase; border-radius: 4px; }
.tour-nav-cta:hover { background: var(--gold); color: var(--bg-white); }

/* Hero */
.tour-hero { min-height: 100vh; position: relative; display: flex; align-items: center; padding-top: 100px; background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-white) 100%); }
.tour-hero-bg { position: absolute; top: 0; right: 0; width: 70%; height: 100%; background-image: url('https://static.tildacdn.com/tour-voyazh/mercedes-w223-hero.jpg'); background-size: cover; background-position: center; opacity: 0.9; mask-image: linear-gradient(to left, rgba(0,0,0,1) 0%, transparent 100%); -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 0%, transparent 100%); }
.tour-hero-content { position: relative; z-index: 2; max-width: 700px; padding: 0 5%; }
.badge-premium { display: inline-flex; align-items: center; gap: 8px; background: rgba(212,175,55,0.1); border: 1px solid var(--gold); color: var(--gold-dark); padding: 0.6rem 1.2rem; font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 2rem; }
.tour-hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 1.5rem; font-weight: 400; letter-spacing: -1px; line-height: 1.1; color: var(--text-dark); }
.black-edition { color: var(--gold-dark); font-style: italic; display: block; margin-top: 0.5rem; font-size: 0.9em; font-weight: 600; }
.hero-subtitle { font-size: 1.1rem; color: var(--text-gray); margin-bottom: 2rem; max-width: 550px; line-height: 1.8; }
.hero-specs { display: flex; gap: 2rem; margin-bottom: 2rem; flex-wrap: wrap; }
.spec-item { display: flex; align-items: center; gap: 0.5rem; color: var(--text-dark); font-size: 0.9rem; font-weight: 500; }
.spec-icon { color: var(--gold); font-size: 1.2rem; }
.hero-price-box { background: var(--bg-white); border: 1px solid var(--border); padding: 2rem; margin-bottom: 2rem; max-width: 450px; position: relative; overflow: hidden; box-shadow: 0 10px 40px var(--shadow); border-radius: 8px; }
.hero-price-box::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.price-label { font-size: 0.8rem; color: var(--text-gray); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 0.5rem; }
.price-value { font-family: 'Cormorant Garamond', serif; font-size: 3rem; color: var(--gold-dark); font-weight: 600; line-height: 1; }
.currency-converter { font-size: 0.9rem; color: var(--text-gray); font-family: 'Montserrat', sans-serif; font-weight: 400; display: block; margin-top: 0.5rem; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary { padding: 1.2rem 2.5rem; background: var(--gold); color: var(--bg-white); text-decoration: none; font-weight: 600; font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase; transition: all 0.3s; border: none; cursor: pointer; display: inline-flex; align-items: center; gap: 0.5rem; border-radius: 4px; }
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(212,175,55,0.3); }
.btn-outline { padding: 1.2rem 2.5rem; background: transparent; border: 1px solid var(--text-dark); color: var(--text-dark); text-decoration: none; font-weight: 600; font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase; transition: all 0.3s; cursor: pointer; display: inline-flex; align-items: center; gap: 0.5rem; border-radius: 4px; }
.btn-outline:hover { background: var(--text-dark); color: var(--bg-white); }

/* Trust Bar */
.trust-bar { background: var(--bg-white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 3rem 0; }
.trust-grid { max-width: 1400px; margin: 0 auto; padding: 0 5%; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.trust-number { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; color: var(--gold); font-weight: 600; display: block; line-height: 1; }
.trust-label { font-size: 0.8rem; color: var(--text-gray); text-transform: uppercase; letter-spacing: 1px; margin-top: 0.5rem; }

/* Viewer */
.viewer-section { background: var(--bg-light); position: relative; height: 600px; overflow: hidden; }
#car-360-viewer { width: 100%; height: 100%; position: relative; cursor: grab; background: radial-gradient(circle at center, #e8e8e8 0%, var(--bg-light) 100%); }
.viewer-controls { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; gap: 20px; z-index: 10; background: rgba(255,255,255,0.9); padding: 15px 30px; border-radius: 50px; box-shadow: 0 10px 30px var(--shadow); border: 1px solid var(--border); }
.color-btn { width: 40px; height: 40px; border-radius: 50%; border: 3px solid transparent; cursor: pointer; transition: all 0.3s; box-shadow: 0 2px 8px var(--shadow); }
.color-btn.active { border-color: var(--gold); transform: scale(1.1); }
.color-btn[data-color="black"] { background: #0a0a0a; }
.color-btn[data-color="white"] { background: #ffffff; border: 2px solid #ddd; }
.color-btn[data-color="silver"] { background: #c0c0c0; }
.viewer-hint { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); color: var(--text-gray); font-size: 0.9rem; pointer-events: none; background: rgba(255,255,255,0.9); padding: 10px 20px; border-radius: 30px; box-shadow: 0 4px 12px var(--shadow); }

/* Gallery */
.gallery-section { padding: 5rem 0; background: var(--bg-white); }
.section-header { text-align: center; margin-bottom: 3rem; padding: 0 5%; }
.section-label { color: var(--gold-dark); text-transform: uppercase; letter-spacing: 3px; font-size: 0.8rem; margin-bottom: 1rem; display: block; font-weight: 600; }
.section-title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; font-weight: 400; color: var(--text-dark); }
.section-subtitle { color: var(--text-gray); max-width: 700px; margin: 0 auto; font-size: 1.1rem; line-height: 1.8; }
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 250px; gap: 1rem; padding: 0 5%; max-width: 1400px; margin: 0 auto; }
.gallery-item { position: relative; overflow: hidden; cursor: pointer; border-radius: 8px; background: var(--bg-light); box-shadow: 0 4px 12px var(--shadow); transition: transform 0.3s; }
.gallery-item:hover { transform: translateY(-5px); box-shadow: 0 12px 24px var(--shadow-hover); }
.gallery-item:nth-child(1) { grid-column: span 7; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 5; }
.gallery-item:nth-child(3) { grid-column: span 5; }
.gallery-item:nth-child(4) { grid-column: span 4; }
.gallery-item:nth-child(5) { grid-column: span 4; }
.gallery-item:nth-child(6) { grid-column: span 4; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); color: white; transform: translateY(20px); opacity: 0; transition: all 0.4s; }
.gallery-item:hover .gallery-overlay { transform: translateY(0); opacity: 1; }
.gallery-title { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--gold); margin-bottom: 0.3rem; }
.gallery-desc { font-size: 0.85rem; color: rgba(255,255,255,0.8); }
.gallery-badge { position: absolute; top: 15px; right: 15px; background: var(--gold); color: white; padding: 5px 15px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; border-radius: 20px; z-index: 2; }

/* Locations */
.locations { padding: 5rem 0; background: var(--bg-cream); }
.location-grid { max-width: 1400px; margin: 0 auto; padding: 0 5%; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.location-card { background: var(--bg-white); border: 1px solid var(--border); padding: 2.5rem; transition: all 0.4s; position: relative; overflow: hidden; border-radius: 12px; box-shadow: 0 4px 12px var(--shadow); }
.location-card:hover { border-color: var(--gold); transform: translateY(-10px); box-shadow: 0 20px 40px var(--shadow-hover); }
.location-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.4s; }
.location-card:hover::before { transform: scaleX(1); }
.location-icon { font-size: 2.5rem; margin-bottom: 1.5rem; color: var(--gold); }
.location-title { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; margin-bottom: 1rem; color: var(--text-dark); }
.location-text { color: var(--text-gray); font-size: 0.95rem; line-height: 1.8; margin-bottom: 1.5rem; }
.location-price { color: var(--gold-dark); font-weight: 600; font-size: 1.1rem; }
.location-map-link { display: inline-flex; align-items: center; gap: 5px; color: var(--text-gray); text-decoration: none; font-size: 0.85rem; margin-top: 1rem; transition: color 0.3s; }
.location-map-link:hover { color: var(--gold); }

/* Calculator */
.calculator { padding: 5rem 0; background: var(--bg-white); }
.calc-container { max-width: 900px; margin: 0 auto; padding: 0 5%; }
.calc-box { background: var(--bg-white); border: 1px solid var(--border); padding: 3rem; position: relative; border-radius: 12px; box-shadow: 0 10px 40px var(--shadow); }
.calc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; color: var(--text-gray); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.8rem; font-weight: 500; }
.form-group input, .form-group select { width: 100%; padding: 1.2rem; background: var(--bg-light); border: 1px solid var(--border); color: var(--text-dark); font-family: 'Montserrat', sans-serif; font-size: 1rem; transition: all 0.3s; border-radius: 8px; }
.form-group input:focus, .form-group select:focus { outline: none; border-color: var(--gold); background: var(--bg-white); box-shadow: 0 0 0 3px rgba(212,175,55,0.1); }
.calc-addons { margin: 2rem 0; padding: 2rem; background: var(--bg-cream); border: 1px solid var(--border-light); border-radius: 12px; }
.addon-item { display: flex; justify-content: space-between; align-items: center; padding: 1.2rem 0; border-bottom: 1px solid var(--border-light); }
.addon-item:last-child { border-bottom: none; }
.addon-item label { display: flex; align-items: center; gap: 1rem; cursor: pointer; color: var(--text-dark); font-size: 0.95rem; }
.addon-item input[type="checkbox"] { width: 22px; height: 22px; accent-color: var(--gold); cursor: pointer; }
.addon-price { color: var(--gold-dark); font-weight: 600; font-size: 1rem; }
.addon-desc { font-size: 0.8rem; color: var(--text-gray); display: block; margin-left: 2.2rem; margin-top: 0.3rem; }
.calc-result { margin-top: 2rem; padding: 2rem; background: var(--bg-cream); border-left: 3px solid var(--gold); border-radius: 0 12px 12px 0; }
.result-line { display: flex; justify-content: space-between; margin-bottom: 1rem; font-size: 1.05rem; color: var(--text-gray); }
.result-line.discount { color: var(--success); }
.result-line.total { font-size: 1.8rem; color: var(--gold-dark); font-weight: 600; border-top: 1px solid var(--border); padding-top: 1rem; margin-top: 1rem; font-family: 'Cormorant Garamond', serif; }
.payment-methods { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 1.5rem; }
.payment-btn { padding: 1rem; background: var(--bg-light); border: 1px solid var(--border); color: var(--text-dark); cursor: pointer; transition: all 0.3s; display: flex; align-items: center; justify-content: center; gap: 10px; font-size: 0.9rem; border-radius: 8px; font-family: 'Montserrat', sans-serif; }
.payment-btn:hover { border-color: var(--gold); background: rgba(212,175,55,0.1); }
.payment-btn.active { border-color: var(--gold); background: rgba(212,175,55,0.2); color: var(--gold-dark); }
#cryptoPayment { margin-top: 2rem; display: none; text-align: center; padding: 2rem; background: var(--bg-cream); border-radius: 12px; }

/* Segments */
.segments { padding: 5rem 0; background: var(--bg-cream); }
.segment-grid { max-width: 1400px; margin: 0 auto; padding: 0 5%; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.segment-card { background: var(--bg-white); padding: 2.5rem 2rem; text-align: center; border: 1px solid var(--border); transition: all 0.4s; cursor: pointer; position: relative; overflow: hidden; border-radius: 12px; box-shadow: 0 4px 12px var(--shadow); }
.segment-card:hover { border-color: var(--gold); transform: translateY(-10px); box-shadow: 0 20px 40px var(--shadow-hover); }
.segment-icon { font-size: 3rem; margin-bottom: 1.5rem; display: block; }
.segment-title { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; margin-bottom: 1rem; color: var(--text-dark); }
.segment-desc { font-size: 0.9rem; color: var(--text-gray); line-height: 1.6; }
.segment-badge { position: absolute; top: 1rem; right: 1rem; background: var(--gold); color: white; padding: 0.3rem 0.8rem; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; border-radius: 20px; opacity: 0; transform: translateY(-10px); transition: all 0.3s; }
.segment-card:hover .segment-badge { opacity: 1; transform: translateY(0); }

/* Safety */
.family-safety { padding: 5rem 0; background: linear-gradient(to bottom, var(--bg-cream), var(--bg-white)); }
.safety-container { max-width: 1400px; margin: 0 auto; padding: 0 5%; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.safety-video { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: 12px; box-shadow: 0 20px 40px var(--shadow); }
.safety-video iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
.safety-content h3 { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; color: var(--text-dark); margin-bottom: 1.5rem; }
.safety-list { list-style: none; margin: 2rem 0; }
.safety-list li { padding: 1rem 0; padding-left: 2.5rem; position: relative; border-bottom: 1px solid var(--border); color: var(--text-gray); }
.safety-list li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: bold; font-size: 1.2rem; }
.download-checklist { display: inline-flex; align-items: center; gap: 10px; padding: 1.2rem 2rem; background: var(--gold); color: white; text-decoration: none; font-weight: 600; border-radius: 8px; transition: all 0.3s; margin-top: 1rem; border: none; cursor: pointer; font-family: 'Montserrat', sans-serif; font-size: 0.9rem; }
.download-checklist:hover { background: var(--gold-dark); transform: translateY(-2px); }

/* Instagram */
.instagram-feed { padding: 5rem 0; background: var(--bg-white); }
.instafeed-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; max-width: 1400px; margin: 0 auto; padding: 0 5%; }
.insta-item { position: relative; aspect-ratio: 1; overflow: hidden; cursor: pointer; border-radius: 8px; box-shadow: 0 4px 12px var(--shadow); }
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.insta-item:hover img { transform: scale(1.1); }
.insta-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.6); display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; color: white; }
.insta-item:hover .insta-overlay { opacity: 1; }

/* Reviews */
.reviews { padding: 5rem 0; background: var(--bg-cream); }
.review-grid { max-width: 1400px; margin: 0 auto; padding: 0 5%; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.review-card { background: var(--bg-white); border: 1px solid var(--border); padding: 2.5rem; position: relative; transition: all 0.3s; border-radius: 12px; box-shadow: 0 4px 12px var(--shadow); }
.review-card:hover { border-color: var(--gold); transform: translateY(-5px); box-shadow: 0 12px 24px var(--shadow-hover); }
.review-card::before { content: '"'; font-family: 'Cormorant Garamond', serif; font-size: 6rem; color: var(--gold); opacity: 0.2; position: absolute; top: 1rem; left: 1.5rem; line-height: 1; }
.review-text { font-style: italic; color: var(--text-gray); line-height: 1.8; margin-bottom: 2rem; position: relative; z-index: 1; }
.review-author { display: flex; align-items: center; gap: 1rem; }
.author-avatar { width: 50px; height: 50px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-light)); display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 1.1rem; }
.author-info h4 { color: var(--text-dark); font-size: 1.1rem; margin-bottom: 0.2rem; }
.author-info p { color: var(--text-light); font-size: 0.85rem; }
.review-stars { color: var(--gold); margin-bottom: 1rem; font-size: 1.1rem; letter-spacing: 2px; }

/* Legal */
.legal-docs { padding: 4rem 0; background: var(--bg-white); border-top: 1px solid var(--border); }
.legal-grid { max-width: 1400px; margin: 0 auto; padding: 0 5%; display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.legal-card { background: var(--bg-cream); border: 1px solid var(--border); padding: 2rem; display: flex; align-items: flex-start; gap: 1.5rem; transition: all 0.3s; border-radius: 12px; }
.legal-card:hover { border-color: var(--gold); background: var(--bg-white); box-shadow: 0 8px 24px var(--shadow); }
.legal-icon { font-size: 2.5rem; color: var(--gold); }
.legal-content h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; margin-bottom: 0.5rem; color: var(--text-dark); }
.legal-content p { color: var(--text-gray); font-size: 0.9rem; line-height: 1.6; margin-bottom: 1rem; }
.legal-link { color: var(--gold-dark); text-decoration: none; font-size: 0.85rem; font-weight: 600; display: inline-flex; align-items: center; gap: 5px; }

/* Footer */
.tour-footer { background: var(--bg-cream); border-top: 1px solid var(--border); padding: 4rem 0 2rem; }
.footer-grid { max-width: 1400px; margin: 0 auto; padding: 0 5%; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; margin-bottom: 3rem; }
.footer-brand h3 { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; color: var(--text-dark); margin-bottom: 1.5rem; letter-spacing: 2px; }
.footer-brand p { color: var(--text-gray); line-height: 1.8; margin-bottom: 2rem; font-size: 0.95rem; }
.footer-phone { color: var(--gold-dark); font-size: 1.8rem; font-family: 'Cormorant Garamond', serif; text-decoration: none; display: block; margin: 1rem 0; font-weight: 600; transition: color 0.3s; }
.footer-phone:hover { color: var(--gold); }
.messengers { display: flex; gap: 1rem; margin-top: 1.5rem; }
.msg-btn { padding: 0.8rem 1.5rem; border-radius: 30px; text-decoration: none; color: white; font-weight: 600; font-size: 0.85rem; transition: transform 0.3s; display: inline-flex; align-items: center; gap: 8px; }
.msg-btn:hover { transform: translateY(-3px); }
.wa-btn { background: #25D366; }
.tg-btn { background: #0088cc; }
.footer-links h4 { color: var(--text-dark); font-family: 'Montserrat', sans-serif; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1.5rem; font-weight: 600; }
.footer-links a { display: block; color: var(--text-gray); text-decoration: none; margin-bottom: 0.8rem; font-size: 0.9rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--gold-dark); }
.footer-bottom { max-width: 1400px; margin: 0 auto; padding: 2rem 5% 0; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; color: var(--text-gray); font-size: 0.85rem; flex-wrap: wrap; gap: 1rem; }

/* Sticky CTA */
.sticky-cta { position: fixed; bottom: 0; left: 0; right: 0; background: rgba(255,255,255,0.98); backdrop-filter: blur(20px); border-top: 2px solid var(--gold); padding: 1rem 5%; display: flex; justify-content: space-between; align-items: center; z-index: 996; transform: translateY(100%); transition: transform 0.3s; box-shadow: 0 -4px 20px var(--shadow); }
.sticky-cta.visible { transform: translateY(0); }
.sticky-price { display: flex; flex-direction: column; }
.sticky-price strong { color: var(--gold-dark); font-size: 1.3rem; font-family: 'Cormorant Garamond', serif; }
.sticky-price span { color: var(--text-gray); font-size: 0.8rem; }

/* Modal */
.modal { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.8); z-index: 999; align-items: center; justify-content: center; padding: 20px; }
.modal.active { display: flex; }
.modal-content { background: var(--bg-white); border: 1px solid var(--gold); padding: 3rem; max-width: 500px; width: 100%; position: relative; border-radius: 12px; box-shadow: 0 20px 60px rgba(0,0,0,0.3); animation: modalIn 0.3s; }
@keyframes modalIn { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }
.modal-close { position: absolute; top: 20px; right: 20px; background: none; border: none; color: var(--text-gray); font-size: 1.5rem; cursor: pointer; }
#signature-pad { background: white; border-radius: 4px; margin: 1rem 0; border: 1px solid var(--border); width: 100%; }

/* Responsive */
@media (max-width: 1200px) {
    .gallery-item:nth-child(1) { grid-column: span 12; grid-row: span 2; }
    .gallery-item:nth-child(2), .gallery-item:nth-child(3) { grid-column: span 6; }
    .gallery-item:nth-child(4), .gallery-item:nth-child(5), .gallery-item:nth-child(6) { grid-column: span 4; }
}
@media (max-width: 968px) {
    .tour-hero-bg { width: 100%; opacity: 0.2; }
    .tour-nav-links { display: none; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .location-grid, .segment-grid, .review-grid { grid-template-columns: 1fr; }
    .safety-container { grid-template-columns: 1fr; }
    .legal-grid, .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .calc-row { grid-template-columns: 1fr; }
    .viewer-section { height: 400px; }
    .instafeed-grid { grid-template-columns: repeat(2, 1fr); }
    .payment-methods { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .tour-hero h1 { font-size: 2rem; }
    .gallery-item { grid-column: span 12 !important; grid-row: span 1 !important; height: 300px; }
    .sticky-cta { display: flex; }
    .tour-nav { padding: 1rem; }
}
</style>
