/* 
  =======================================================================
  PROFESSIONAL HTML TEMPLATE
  =======================================================================
  Licença: Uso Comercial (Agência/Freelancer)
  Author: Envato User
  Site: #
  
  Licensed under Envato Elements Terms. 
  You are free to use this template for your commercial or personal projects.
  =======================================================================
*/

:root {
    --bg-dark: #050505;
    --bg-card: #0f0f0f;
    --bg-light: #1a1a1a;
    --primary-gold: #d4af37;
    --primary-gold-dim: #aa8c2c;
    --text-white: #ffffff;
    --text-muted: #a0a0a0;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Manrope', sans-serif;
    --font-signature: 'Italianno', cursive;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-white);
    overflow-x: hidden;
    line-height: 1.6;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231a1a1a' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    letter-spacing: 1px;
}

.text-gold {
    color: var(--primary-gold);
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

/* --- Custom Cursor --- */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-gold);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(212, 175, 55, 0.5);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

body:hover .cursor-outline {
    width: 40px;
    height: 40px;
}

/* --- Preloader --- */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-content {
    text-align: center;
    position: relative;
}

.loader-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: 5px;
    color: var(--primary-gold);
    display: block;
    margin-bottom: 10px;
    animation: fadePulse 2s infinite;
}

.loader-line {
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    margin: 0 auto;
    animation: lineGrow 1.5s ease-in-out forwards;
}

@keyframes lineGrow {
    to { width: 100%; }
}

@keyframes fadePulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

/* --- Utilities --- */
.text-center {
    text-align: center;
}

.mt-5 {
    margin-top: 3rem;
}

/* --- Buttons --- */
.btn-primary, .btn-outline, .btn-gold {
    display: inline-block;
    padding: 12px 30px;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--primary-gold);
    color: var(--bg-dark);
}

.btn-primary:hover {
    background: var(--primary-gold-dim);
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid var(--text-white);
    color: var(--text-white);
    background: transparent;
}

.btn-outline:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

.btn-shop-more {
    padding: 15px 50px;
    font-size: 1rem;
    letter-spacing: 2px;
    border-color: rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.btn-shop-more:hover {
    background: var(--primary-gold);
    color: var(--bg-dark);
    border-color: var(--primary-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    transform: translateY(-3px);
}

.btn-gold {
    background: transparent;
    color: var(--primary-gold);
    border: 1px solid var(--primary-gold);
}

.btn-gold:hover {
    background: var(--primary-gold);
    color: var(--bg-dark);
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
    background: linear-gradient(to bottom, rgba(5,5,5,0.9), transparent);
}

.navbar.scrolled {
    background: rgba(5, 5, 5, 0.95);
    padding: 15px 0;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-white);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 2px;
}

.logo .dot {
    color: var(--primary-gold);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    opacity: 0.8;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-gold);
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-link:hover, .nav-link.active {
    opacity: 1;
    color: var(--primary-gold);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

/* Simulate video overlay gradient */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.8) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
}

.scroll-indicator span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-indicator .line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--text-white), transparent);
}

/* --- Trust Bar --- */
.trust-bar {
    background: var(--bg-card);
    padding: 40px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 20px;
}

.trust-item h3 {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 5px;
}

.trust-item p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

/* --- Experience Section --- */
.section-padding {
    padding: 100px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.exp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.exp-image {
    position: relative;
}

.placeholder-img {
    background: #222;
    border-radius: 4px;
    height: 600px;
    width: 100%;
    background-size: cover;
    background-position: center;
}

.exp-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary-gold);
    color: var(--bg-dark);
    padding: 30px;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.section-desc {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.features-list {
    list-style: none;
    margin-bottom: 40px;
}

.features-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-white);
}

.features-list i {
    color: var(--primary-gold);
}

.signature-block {
    margin-top: 40px;
}

.signature-text {
    font-family: var(--font-signature);
    font-size: 3.5rem;
    color: var(--primary-gold);
    transform: rotate(-5deg);
    margin-bottom: 5px;
}

/* --- Services Tabs --- */
.bg-dark {
    background: var(--bg-card);
}

.services-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-muted);
    padding: 15px 40px;
    font-family: var(--font-heading);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tab-btn:hover, .tab-btn.active {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.05);
}

.service-group {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    animation: fadeIn 0.5s ease;
}

.service-group.active {
    display: grid;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.service-card {
    background: rgba(255,255,255,0.02);
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
    background: rgba(255,255,255,0.04);
}

.srv-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-white);
}

.srv-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.srv-price {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--primary-gold);
    font-weight: 600;
    white-space: nowrap;
    margin-left: 20px;
}

/* --- Masters Section --- */
.masters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.master-card {
    background: var(--bg-light);
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
    overflow: hidden;
}

.master-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
}

.master-img {
    height: 350px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.master-info {
    padding: 30px;
    text-align: center;
}

.master-info h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.master-role {
    color: var(--primary-gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.master-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.master-social a {
    color: var(--text-white);
    font-size: 1.2rem;
    transition: var(--transition);
}

.master-social a:hover {
    color: var(--primary-gold);
}

/* --- Gallery Section --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    display: block;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay i {
    font-size: 2rem;
    color: var(--primary-gold);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* --- VIP Club Section --- */
.vip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 50px auto 0;
}

.vip-card {
    background: var(--bg-light);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 40px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.vip-card.featured {
    border-color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.05);
    transform: scale(1.05);
}

.vip-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gold);
    color: var(--bg-dark);
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 20px;
}

.vip-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.vip-header .price {
    font-size: 2.5rem;
    color: var(--primary-gold);
    font-family: var(--font-heading);
    margin-bottom: 30px;
}

.vip-header .price span {
    font-size: 1rem;
    color: var(--text-muted);
}

.vip-features {
    list-style: none;
    margin-bottom: 40px;
    text-align: left;
}

.vip-features li {
    margin-bottom: 15px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.vip-features li i {
    color: var(--primary-gold);
}

/* --- Booking Wizard --- */
.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    background: var(--bg-card);
    padding: 60px;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.05);
}

.info-item {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-top: 5px;
}

.info-item h5 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.info-item p {
    color: var(--text-muted);
}

/* Wizard Form */
.wizard-form {
    position: relative;
}

.progress-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.progress-bar .step {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-light);
    border: 2px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--text-muted);
    z-index: 2;
    transition: var(--transition);
}

.progress-bar .step.active {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    background: var(--bg-dark);
}

.progress-bar .line {
    flex: 1;
    height: 2px;
    background: rgba(255,255,255,0.1);
    margin: 0 10px;
}

.form-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.form-step.active {
    display: block;
}

.form-step h3 {
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.radio-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.radio-card {
    cursor: pointer;
    position: relative;
}

.radio-card input {
    position: absolute;
    opacity: 0;
}

.card-content {
    background: var(--bg-light);
    padding: 30px 20px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
    border-radius: 4px;
}

.card-content i {
    font-size: 2rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    display: block;
    transition: var(--transition);
}

.radio-card input:checked + .card-content {
    border-color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.05);
}

.radio-card input:checked + .card-content i,
.radio-card input:checked + .card-content span {
    color: var(--primary-gold);
}

.form-select, .form-input {
    width: 100%;
    padding: 15px;
    background: var(--bg-light);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-white);
    margin-bottom: 20px;
    font-family: var(--font-body);
    outline: none;
}

.form-select:focus, .form-input:focus {
    border-color: var(--primary-gold);
}

.btn-group {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

/* --- Testimonials --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 5rem;
    color: rgba(212, 175, 55, 0.1);
    font-family: var(--font-heading);
}

.stars {
    color: var(--primary-gold);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.review-text {
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 30px;
    min-height: 80px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 2px solid var(--primary-gold);
}

.client-info h5 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.client-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* --- Shop --- */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.product-card {
    background: var(--bg-light);
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
}

.prod-img {
    position: relative;
    height: 300px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.prod-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .prod-overlay {
    opacity: 1;
}

.btn-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-gold);
    border: none;
    color: var(--bg-dark);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-icon:hover {
    transform: scale(1.1);
}

.prod-info {
    padding: 20px;
    text-align: center;
}

.prod-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.prod-info .price {
    color: var(--primary-gold);
    font-weight: 600;
}

/* --- FAQ Section --- */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 20px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.1rem;
    transition: var(--transition);
}

.faq-question i {
    color: var(--primary-gold);
    transition: var(--transition);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    color: var(--text-muted);
    padding-bottom: 20px;
}

.faq-item.active .faq-question h3 {
    color: var(--primary-gold);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* --- Footer --- */
.footer {
    background: #000;
    padding-top: 80px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-brand h2 {
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-muted);
    max-width: 400px;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: var(--text-white);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary-gold);
}

.footer-links h4, .footer-contact h4 {
    color: var(--text-white);
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

.footer-contact p {
    color: var(--text-muted);
    margin-bottom: 15px;
}

.footer-bottom {
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .exp-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions .btn-gold {
        display: none;
    }
    
    .menu-toggle {
        display: block;
        color: var(--text-white);
        font-size: 1.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .radio-group {
        grid-template-columns: 1fr;
    }
}

/* --- Lightbox --- */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 900px;
    max-height: 80vh;
    object-fit: contain;
    animation-name: zoom;
    animation-duration: 0.6s;
    
}

@keyframes zoom {
    from {transform:scale(0)}
    to {transform:scale(1)}
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--primary-gold);
    text-decoration: none;
    cursor: pointer;
}

#lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}