/* ===== Variables y Reset ===== */
:root {
    --color-gold: #D4AF37;
    --color-gold-light: #E5C76B;
    --color-gold-dark: #B8960C;
    --color-bg-primary: #1a1f2e;
    --color-bg-secondary: #212738;
    --color-bg-tertiary: #2a3142;
    --color-bg-card: #242a3d;
    --color-text: #f0f0f0;
    --color-text-muted: #9ca3af;
    --color-border: #3d4559;
    --color-accent: #D4AF37;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 1.7;
    background: var(--color-bg-primary);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ===== Botones ===== */
.btn {
    display: inline-block;
    padding: 16px 40px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    color: #000;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 100%, 15px 100%);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--color-gold);
    border: 1px solid var(--color-gold);
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 100%, 15px 100%);
}

.btn-secondary:hover {
    background: var(--color-gold);
    color: #000;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 100%, 15px 100%);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.3);
}

/* ===== Header / Navegación ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    padding: 25px 0;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(26, 31, 46, 0.97);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    border-bottom: 1px solid var(--color-border);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 45px;
    filter: brightness(1.1);
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-menu > li > a {
    color: var(--color-text);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding: 5px 0;
}

.nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: var(--transition);
}

.nav-menu > li > a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--color-gold);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: -20px;
    background: var(--color-bg-card);
    min-width: 220px;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    border: 1px solid var(--color-border);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 12px 25px;
    font-size: 12px;
    letter-spacing: 1px;
}

.dropdown-menu li a:hover {
    background: var(--color-bg-tertiary);
    padding-left: 30px;
}

.lang-dropdown > a {
    font-size: 11px !important;
    padding: 5px 10px !important;
    border: 1px solid var(--color-border);
}

.lang-dropdown > a::after {
    content: ' ▾';
    font-size: 8px;
}

.lang-dropdown .dropdown-menu {
    min-width: 150px;
    right: 0;
    left: auto;
}

.lang-dropdown .dropdown-menu li a {
    font-size: 12px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 28px;
    height: 1px;
    background: var(--color-text);
    transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background: var(--color-bg-primary);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    right: 0;
    top: 0;
    width: 55%;
    height: 100%;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--color-bg-primary) 40%, transparent 70%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding-left: 5%;
}

.hero-tag {
    display: inline-block;
    color: var(--color-gold);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 25px;
    position: relative;
    padding-left: 60px;
}

.hero-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 40px;
    height: 1px;
    background: var(--color-gold);
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 400;
    margin-bottom: 25px;
    line-height: 1.1;
    color: var(--color-text);
}

.hero h1 span {
    color: var(--color-gold);
    font-style: italic;
}

.hero-subtitle {
    font-size: 1rem;
    margin-bottom: 45px;
    color: var(--color-text-muted);
    font-weight: 300;
    line-height: 1.8;
    max-width: 450px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    align-items: center;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--color-text-muted);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-scroll span {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-gold), transparent);
}

/* ===== Features Section ===== */
.features {
    padding: 120px 0;
    background: var(--color-bg-secondary);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.feature-card {
    text-align: left;
    padding: 50px 40px;
    background: transparent;
    border-right: 1px solid var(--color-border);
    transition: var(--transition);
    position: relative;
}

.feature-card:last-child {
    border-right: none;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    background: var(--color-bg-tertiary);
}

.feature-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: #4a5568;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 30px;
}

.feature-card h3 {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: var(--color-text);
}

.feature-card p {
    color: var(--color-text-muted);
    font-size: 14px;
    line-height: 1.7;
}

/* ===== Section Headers ===== */
.section-header {
    margin-bottom: 80px;
}

.section-header.center {
    text-align: center;
}

.section-tag {
    display: inline-block;
    color: var(--color-gold);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--color-text);
    line-height: 1.2;
}

.section-header p {
    color: var(--color-text-muted);
    font-size: 1rem;
    max-width: 500px;
}

.section-header.center p {
    margin: 0 auto;
}

/* ===== Tours Section ===== */
.tours {
    padding: 140px 0;
    background: var(--color-bg-primary);
}

.tours-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
}

.tours-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.tour-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.tour-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--color-gold);
    transform: scaleY(0);
    transition: var(--transition);
}

.tour-card:hover::before {
    transform: scaleY(1);
}

.tour-card:hover {
    border-color: var(--color-gold);
    transform: translateX(10px);
}

.tour-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    filter: grayscale(20%);
}

.tour-card:hover .tour-image img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.tour-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--color-gold);
    color: #000;
    padding: 6px 15px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tour-content {
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tour-content h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 12px;
    color: var(--color-text);
}

.tour-content > p {
    color: var(--color-text-muted);
    margin-bottom: 20px;
    font-size: 0.9rem;
    line-height: 1.7;
}

.tour-includes {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

.tour-includes li {
    padding: 6px 14px;
    background: var(--color-bg-tertiary);
    color: var(--color-text-muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== Stats Section ===== */
.stats {
    padding: 100px 0;
    background: var(--color-bg-tertiary);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stat-item {
    text-align: center;
    padding: 40px;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 60%;
    width: 1px;
    background: var(--color-border);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 300;
    color: var(--color-gold);
    margin-bottom: 15px;
    line-height: 1;
}

.stat-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-text-muted);
}

/* ===== Celebrations Section ===== */
.celebrations {
    padding: 140px 0;
    background: var(--color-bg-secondary);
}

.celebrations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: var(--color-border);
}

.celebration-card {
    background: var(--color-bg-secondary);
    padding: 60px 35px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.celebration-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    opacity: 0;
    transition: var(--transition);
}

.celebration-card:hover::before {
    opacity: 1;
}

.celebration-card:hover * {
    position: relative;
    z-index: 1;
}

.celebration-card:hover h3,
.celebration-card:hover p {
    color: #000;
}

.celebration-icon {
    font-size: 2.5rem;
    margin-bottom: 25px;
    display: block;
}

.celebration-card h3 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: var(--color-text);
    transition: var(--transition);
}

.celebration-card p {
    color: var(--color-text-muted);
    font-size: 13px;
    line-height: 1.7;
    transition: var(--transition);
}

/* ===== Gallery Section ===== */
.gallery {
    padding: 140px 0;
    background: var(--color-bg-primary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    filter: grayscale(20%);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    z-index: 1;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item::after {
    content: '+';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 3rem;
    color: var(--color-gold);
    z-index: 2;
    transition: var(--transition);
}

.gallery-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

/* ===== CTA Section ===== */
.cta {
    padding: 140px 0;
    background: var(--color-bg-tertiary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    animation: pulse 10s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.cta .container {
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: 20px;
}

.cta h2 span {
    color: var(--color-gold);
    font-style: italic;
}

.cta p {
    color: var(--color-text-muted);
    font-size: 1rem;
    margin-bottom: 45px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Contact Section ===== */
.contact {
    padding: 140px 0;
    background: var(--color-bg-primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 50px;
    color: var(--color-text);
}

.contact-item {
    margin-bottom: 35px;
    padding-left: 20px;
    border-left: 1px solid var(--color-border);
}

.contact-item strong {
    display: block;
    color: var(--color-gold);
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.contact-item p {
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.contact-item a {
    color: var(--color-text);
}

.contact-item a:hover {
    color: var(--color-gold);
}

.social-links {
    display: flex;
    gap: 30px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--color-border);
}

.social-links a {
    color: var(--color-text-muted);
    font-weight: 500;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.social-links a:hover {
    color: var(--color-gold);
}

.contact-map {
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.contact-map iframe {
    display: block;
    filter: grayscale(80%) invert(92%) contrast(85%) hue-rotate(180deg);
}

/* ===== Footer ===== */
.footer {
    background: var(--color-bg-secondary);
    padding: 100px 0 40px;
    border-top: 1px solid var(--color-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-brand img {
    height: 40px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.footer-brand p {
    color: var(--color-text-muted);
    font-size: 13px;
    line-height: 1.8;
}

.footer-links h4 {
    color: var(--color-text);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 30px;
    font-weight: 600;
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links ul li a {
    color: var(--color-text-muted);
    font-size: 13px;
}

.footer-links ul li a:hover {
    color: var(--color-gold);
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--color-text-muted);
    font-size: 12px;
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
    .tours-layout {
        grid-template-columns: 1fr;
    }

    .tour-card {
        grid-template-columns: 250px 1fr;
    }
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-card {
        border-bottom: 1px solid var(--color-border);
    }

    .feature-card:nth-child(2) {
        border-right: none;
    }

    .celebrations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2)::after {
        display: none;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 200px);
    }

    .gallery-item:first-child {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    /* Container */
    .container {
        padding: 0 20px;
    }

    /* Header Mobile */
    .header {
        padding: 15px 0;
    }

    .logo img {
        height: 35px;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--color-bg-primary);
        flex-direction: column;
        padding: 80px 30px 40px;
        gap: 0;
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        overflow-y: auto;
    }

    .nav-menu.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu > li {
        border-bottom: 1px solid var(--color-border);
    }

    .nav-menu > li > a {
        font-size: 16px;
        display: block;
        padding: 18px 0;
    }

    .nav-menu > li > a::after {
        display: none;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: var(--color-bg-secondary);
        margin: 0;
        padding: 0;
        display: none;
        border: none;
        min-width: 100%;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu li a {
        padding: 15px 20px;
        font-size: 14px;
    }

    .dropdown-menu li a:hover {
        padding-left: 20px;
    }

    .lang-switcher {
        padding: 20px 0;
        border-bottom: none !important;
    }

    /* Hero Mobile */
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
        text-align: center;
        padding-top: 0;
        display: flex;
        flex-direction: column;
    }

    .hero-bg {
        position: relative;
        width: 100%;
        height: 45vh;
        min-height: 280px;
        clip-path: none;
        opacity: 1;
        flex-shrink: 0;
    }

    .hero-bg img {
        filter: brightness(0.85);
    }

    .hero-bg::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 120px;
        background: linear-gradient(to top, var(--color-bg-primary), transparent);
    }

    .hero-overlay {
        display: none;
    }

    .hero-content {
        position: relative;
        padding: 30px 25px 40px;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        background: var(--color-bg-primary);
        margin-top: -40px;
        z-index: 2;
    }

    .hero-tag {
        padding-left: 0;
        font-size: 10px;
        letter-spacing: 3px;
        margin-bottom: 15px;
    }

    .hero-tag::before {
        display: none;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.7;
        margin-bottom: 30px;
        max-width: 100%;
    }

    .hero-cta {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 300px;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .hero-scroll {
        display: none;
    }

    /* Features Mobile */
    .features {
        padding: 60px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .feature-card {
        padding: 35px 25px;
        border-right: none;
        border-bottom: 1px solid var(--color-border);
        text-align: center;
    }

    .feature-card:last-child {
        border-bottom: none;
    }

    .feature-number {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .feature-card h3 {
        font-size: 12px;
    }

    .feature-card p {
        font-size: 13px;
    }

    /* Section Headers Mobile */
    .section-header {
        margin-bottom: 40px;
        text-align: center;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header p {
        font-size: 0.9rem;
        max-width: 100%;
    }

    .section-tag {
        font-size: 10px;
        letter-spacing: 3px;
    }

    /* Tours Mobile */
    .tours {
        padding: 60px 0;
    }

    .tours-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tours-grid {
        gap: 20px;
    }

    .tour-card {
        grid-template-columns: 1fr;
    }

    .tour-card:hover {
        transform: none;
    }

    .tour-image {
        height: 200px;
    }

    .tour-content {
        padding: 25px;
    }

    .tour-content h3 {
        font-size: 1.2rem;
    }

    .tour-content > p {
        font-size: 0.85rem;
    }

    .tour-includes {
        gap: 10px;
        margin-bottom: 20px;
    }

    .tour-includes li {
        font-size: 10px;
        padding: 5px 10px;
    }

    .tour-content .btn {
        width: 100%;
        text-align: center;
    }

    /* Stats Mobile */
    .stats {
        padding: 50px 0;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px 0;
    }

    .stat-item {
        padding: 20px 15px;
    }

    .stat-item::after {
        display: none;
    }

    .stat-number {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }

    .stat-label {
        font-size: 9px;
        letter-spacing: 2px;
    }

    /* Celebrations Mobile */
    .celebrations {
        padding: 60px 0;
    }

    .celebrations-grid {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .celebration-card {
        padding: 40px 25px;
    }

    .celebration-icon {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .celebration-card h3 {
        font-size: 13px;
    }

    .celebration-card p {
        font-size: 12px;
    }

    /* Gallery Mobile */
    .gallery {
        padding: 60px 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 10px;
    }

    .gallery-item,
    .gallery-item:first-child {
        grid-column: span 1;
        grid-row: span 1;
        height: 220px;
    }

    .gallery-item::after {
        font-size: 2rem;
    }

    /* CTA Mobile */
    .cta {
        padding: 60px 0;
    }

    .cta h2 {
        font-size: 1.8rem;
    }

    .cta p {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    /* Contact Mobile */
    .contact {
        padding: 60px 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info h2 {
        font-size: 2rem;
        margin-bottom: 30px;
        text-align: center;
    }

    .contact-item {
        text-align: center;
        border-left: none;
        padding-left: 0;
        border-bottom: 1px solid var(--color-border);
        padding-bottom: 25px;
        margin-bottom: 25px;
    }

    .contact-item:last-of-type {
        border-bottom: none;
    }

    .social-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .contact-map iframe {
        height: 250px;
    }

    /* Footer Mobile */
    .footer {
        padding: 60px 0 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-brand img {
        margin: 0 auto 20px;
    }

    .footer-links h4 {
        margin-bottom: 20px;
    }

    .footer-links ul li {
        margin-bottom: 12px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-bg {
        height: 40vh;
        min-height: 250px;
    }

    .hero h1 {
        font-size: 1.7rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-item {
        padding: 15px;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .btn {
        padding: 14px 30px;
        font-size: 12px;
    }

    .tour-image {
        height: 180px;
    }

    .gallery-item,
    .gallery-item:first-child {
        height: 180px;
    }
}
