/* ===== CSS Custom Properties ===== */
:root {
    --color-bg: #000000;
    --color-bg-secondary: #0a0a0a;
    --color-bg-card: #111111;
    --color-bg-card-hover: #181818;
    --color-gold: #FFD600;
    --color-gold-light: #FFEA00;
    --color-gold-dark: #FFC400;
    --color-text: #FFD600;
    --color-text-secondary: #e6c200;
    --color-text-muted: #b89a00;
    --color-border: rgba(255, 214, 0, 0.2);
    --color-border-subtle: rgba(255, 214, 0, 0.08);
    --color-whatsapp: #25D366;
    --color-instagram: #E4405F;
    --gradient-gold: linear-gradient(135deg, #FFD600, #FFEA00, #FFD600);
    --gradient-dark: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
    --gradient-card: linear-gradient(145deg, rgba(255, 214, 0, 0.06), rgba(255, 214, 0, 0));
    --shadow-gold: 0 0 40px rgba(255, 214, 0, 0.15);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.5);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --font-family: 'Vazirmatn', Tahoma, Arial, sans-serif;
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.6s ease;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    background: var(--color-bg);
    color: var(--color-text);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition-medium);
    backdrop-filter: blur(0px);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    padding: 10px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: 1.5px;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: height var(--transition-medium);
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
    background: transparent;
}

.navbar.scrolled .logo-img {
    height: 42px;
}

.logo-icon {
    font-size: 1.5rem;
}

.logo-accent {
    color: var(--color-gold);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    transition: color var(--transition-fast);
    position: relative;
}

.nav-links a:hover {
    color: var(--color-gold);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: width var(--transition-fast);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--gradient-gold);
    color: #0a0a0a;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 15px rgba(255, 214, 0, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 214, 0, 0.4);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: all var(--transition-fast);
    border-radius: 2px;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.15); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.4) 0%,
        rgba(10, 10, 10, 0.6) 40%,
        rgba(10, 10, 10, 0.85) 80%,
        rgba(10, 10, 10, 1) 100%
    );
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--color-gold);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat var(--duration) var(--delay) infinite;
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0);
    }
    10% {
        opacity: 0.6;
        transform: scale(1);
    }
    90% {
        opacity: 0.2;
    }
    100% {
        opacity: 0;
        transform: translateY(-100vh) scale(0);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    animation: fadeInUp 1s ease 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 214, 0, 0.1);
    border: 1px solid rgba(255, 214, 0, 0.25);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--color-gold-light);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    animation: fadeInUp 1s ease 0.5s both;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
    margin-bottom: 16px;
    animation: fadeInUp 1s ease 0.7s both;
}

.title-line {
    display: block;
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
}

.title-gold {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: var(--color-text-secondary);
    margin-bottom: 12px;
    font-weight: 400;
    animation: fadeInUp 1s ease 0.9s both;
}

.hero-guarantee {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-gold);
    margin-bottom: 32px;
    animation: fadeInUp 1s ease 1s both;
}

.guarantee-icon {
    font-size: 1.3rem;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 48px;
    animation: fadeInUp 1s ease 1.1s both;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-family: var(--font-family);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: var(--gradient-gold);
    color: #0a0a0a;
    box-shadow: 0 4px 20px rgba(255, 214, 0, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 214, 0, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-text);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-icon {
    font-size: 1.2rem;
}

.btn-instagram {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    color: white;
    padding: 16px 40px;
    font-size: 1.1rem;
    box-shadow: 0 4px 20px rgba(131, 58, 180, 0.3);
}

.btn-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(131, 58, 180, 0.5);
}

.btn-arrow {
    font-size: 1.3rem;
    transition: transform var(--transition-fast);
}

.btn-instagram:hover .btn-arrow {
    transform: translateX(-4px);
}

/* ===== Hero Stats ===== */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    animation: fadeInUp 1s ease 1.3s both;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-gold);
}

.stat-suffix {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gold);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--color-text-secondary);
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* ===== Hero Scroll Indicator ===== */
.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 214, 0, 0.4);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-dot {
    width: 4px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 4px;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(12px); opacity: 0.3; }
}

/* ===== Section Styles ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
    padding: 6px 16px;
    border: 1px solid rgba(255, 214, 0, 0.25);
    border-radius: 50px;
    background: rgba(255, 214, 0, 0.05);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Services Section ===== */
.services {
    padding: 120px 0;
    background: var(--gradient-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    position: relative;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-subtle);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all var(--transition-medium);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-card);
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 214, 0, 0.3);
    box-shadow: var(--shadow-gold);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card.featured {
    border-color: rgba(255, 214, 0, 0.3);
    background: linear-gradient(145deg, rgba(255, 214, 0, 0.08), var(--color-bg-card));
}

.service-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gradient-gold);
    color: #0a0a0a;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

.service-icon-wrap {
    position: relative;
    z-index: 1;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 214, 0, 0.08);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    border: 1px solid rgba(255, 214, 0, 0.1);
}

.service-icon {
    font-size: 2rem;
}

.service-title {
    position: relative;
    z-index: 1;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-desc {
    position: relative;
    z-index: 1;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-features {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.service-features span {
    font-size: 0.8rem;
    color: var(--color-gold-light);
    font-weight: 500;
}

/* ===== Tours Section ===== */
.tours {
    padding: 120px 0;
    background: var(--color-bg-secondary);
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}

.tour-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-medium);
    aspect-ratio: 4/3;
}

.tour-card-large {
    grid-column: span 1;
    grid-row: span 2;
    aspect-ratio: auto;
}

.tour-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.tour-image {
    position: absolute;
    inset: 0;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.tour-card:hover .tour-image img {
    transform: scale(1.1);
}

.tour-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 10, 10, 0.9) 0%,
        rgba(10, 10, 10, 0.3) 50%,
        rgba(10, 10, 10, 0.1) 100%
    );
}

.tour-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    z-index: 2;
}

.tour-tag {
    display: inline-block;
    background: rgba(255, 214, 0, 0.2);
    color: var(--color-gold-light);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 10px;
    border: 1px solid rgba(255, 214, 0, 0.3);
    letter-spacing: 0.5px;
}

.tour-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.tour-desc {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

/* ===== Why Us Section ===== */
.why-us {
    padding: 120px 0;
    background: var(--color-bg);
}

.why-us-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-us-desc {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 36px;
    margin-top: 16px;
}

.why-us-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 20px;
    background: var(--color-bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border-subtle);
    transition: all var(--transition-fast);
}

.feature:hover {
    border-color: rgba(255, 214, 0, 0.2);
    background: var(--color-bg-card-hover);
}

.feature-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.feature h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.feature p {
    font-size: 0.82rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

.visual-card {
    background: linear-gradient(145deg, rgba(255, 214, 0, 0.12), rgba(255, 214, 0, 0.02));
    border: 1px solid rgba(255, 214, 0, 0.2);
    border-radius: var(--radius-xl);
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.visual-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 214, 0, 0.06) 0%, transparent 60%);
    animation: rotateGlow 15s linear infinite;
}

@keyframes rotateGlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.visual-number {
    position: relative;
    z-index: 1;
    font-size: 5rem;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 12px;
}

.visual-number span {
    font-size: 2.5rem;
}

.visual-card > p {
    position: relative;
    z-index: 1;
    font-size: 1rem;
    color: var(--color-text-secondary);
}

/* ===== Testimonials Section ===== */
.testimonials {
    padding: 120px 0;
    background: var(--color-bg-secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-subtle);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition-medium);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 214, 0, 0.2);
    box-shadow: var(--shadow-card);
}

.testimonial-stars {
    font-size: 0.9rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #0a0a0a;
    font-size: 1rem;
}

.author-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.author-trip {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* ===== Instagram Section ===== */
.instagram-section {
    padding: 100px 0;
    background: var(--color-bg);
}

.instagram-cta {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(145deg, rgba(228, 64, 95, 0.08), rgba(131, 58, 180, 0.08));
    border: 1px solid rgba(228, 64, 95, 0.15);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.instagram-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #833ab4, #fd1d1d, #fcb045);
}

.instagram-icon {
    color: var(--color-instagram);
    margin-bottom: 20px;
}

.instagram-cta h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.instagram-cta p {
    color: var(--color-text-secondary);
    margin-bottom: 28px;
    font-size: 1.05rem;
}

/* ===== Contact Section ===== */
.contact {
    padding: 120px 0;
    background: var(--gradient-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 24px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-subtle);
    border-radius: var(--radius-lg);
    transition: all var(--transition-medium);
    cursor: pointer;
}

.contact-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 214, 0, 0.3);
    box-shadow: var(--shadow-gold);
}

.contact-card.whatsapp:hover {
    border-color: rgba(37, 211, 102, 0.3);
    box-shadow: 0 0 40px rgba(37, 211, 102, 0.15);
}

.contact-card.instagram:hover {
    border-color: rgba(228, 64, 95, 0.3);
    box-shadow: 0 0 40px rgba(228, 64, 95, 0.15);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.contact-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-value {
    font-size: 1.1rem;
    color: var(--color-gold);
    font-weight: 600;
    margin-bottom: 16px;
    font-family: 'Outfit', monospace;
}

.contact-action {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    padding: 8px 20px;
    border: 1px solid var(--color-border-subtle);
    border-radius: 50px;
    transition: all var(--transition-fast);
}

.contact-card:hover .contact-action {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

/* ===== Floating WhatsApp ===== */
.floating-whatsapp {
    position: fixed;
    bottom: 28px;
    left: 28px;
    width: 60px;
    height: 60px;
    background: var(--color-whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 999;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--color-whatsapp);
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* ===== Footer ===== */
.footer {
    padding: 48px 0 24px;
    background: var(--color-bg);
    border-top: 1px solid var(--color-border-subtle);
}

.footer-content {
    text-align: center;
    margin-bottom: 32px;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.footer-brand .logo-img {
    height: 50px;
}

.footer-desc {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--color-border-subtle);
    color: var(--color-text-secondary);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    color: var(--color-gold);
    border-color: var(--color-gold);
    background: rgba(255, 214, 0, 0.08);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--color-border-subtle);
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* ===== Scroll Animations ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Mobile Responsive ===== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tours-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tour-card-large {
        grid-row: span 1;
        aspect-ratio: 4/3;
    }

    .why-us-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-logo {
        gap: 8px;
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .logo-img {
        height: 38px;
    }

    .navbar.scrolled .logo-img {
        height: 32px;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        gap: 28px;
        z-index: 998;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
        z-index: 999;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translateY(5px) translateX(3px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-5px) translateX(3px);
    }

    .title-line {
        font-size: clamp(2rem, 9vw, 3.5rem);
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .tours-grid {
        grid-template-columns: 1fr;
    }

    .tour-card-large {
        aspect-ratio: 4/3;
    }

    .why-us-features {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .visual-number {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: clamp(1.6rem, 5vw, 2.5rem);
    }

    .services,
    .tours,
    .why-us,
    .testimonials,
    .contact {
        padding: 80px 0;
    }

    .instagram-cta {
        padding: 40px 24px;
    }

    .instagram-cta h2 {
        font-size: 1.5rem;
    }

    .floating-whatsapp {
        bottom: 20px;
        left: 20px;
        width: 54px;
        height: 54px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .nav-logo {
        gap: 6px;
        font-size: 0.88rem;
        letter-spacing: 0.5px;
    }

    .logo-img {
        height: 32px;
    }

    .navbar.scrolled .logo-img {
        height: 28px;
    }

    .footer-brand .logo-img {
        height: 42px;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
    }

    .hero-guarantee {
        font-size: 0.95rem;
    }
}
