/* ============================================
   BADBOYSTRAVEL - Complete Stylesheet
   Cinematic Dark Luxury Design System
   ============================================ */

/* CSS Variables */
:root {
    --primary: #1a0a00;
    --accent: #c9a84c;
    --text: #f5f0e8;
    --surface: #0d0d0d;
    --highlight: #8b0000;
    --accent-light: #e0c97a;
    --accent-dark: #a0853a;
    --text-muted: #b8b0a0;
    --border: rgba(201, 168, 76, 0.2);
    --shadow: rgba(0, 0, 0, 0.6);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.25s ease;
}

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

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

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--surface);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
}

h1 { font-size: clamp(2.5rem, 5vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.8rem); }

p {
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    color: var(--text-muted);
    max-width: 65ch;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 4%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.8rem 4%;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo span {
    color: var(--text);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text);
    position: relative;
    padding: 0.3rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

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

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

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--accent);
    transition: var(--transition-fast);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(26, 10, 0, 0.4) 0%,
        rgba(13, 13, 13, 0.7) 50%,
        rgba(13, 13, 13, 0.95) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 2rem;
    max-width: 900px;
}

.hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(0.8rem, 1.5vw, 1rem);
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.3s forwards;
}

.hero-headline {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.6s forwards;
}

.hero-subheadline {
    font-size: clamp(1rem, 2vw, 1.4rem);
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fadeInUp 1s ease 0.9s forwards;
}

.hero-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 2px solid var(--accent);
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition);
    opacity: 0;
    animation: fadeInUp 1s ease 1.2s forwards;
}

.hero-cta:hover {
    background: var(--accent);
    color: var(--primary);
    box-shadow: 0 0 30px rgba(201, 168, 76, 0.3);
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: bounce 2s infinite;
    cursor: pointer;
}

.scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.scroll-indicator svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 2;
}

/* Hero Image Variant (for non-home pages) */
.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-small {
    height: 60vh;
    min-height: 400px;
}

/* ============================================
   SECTIONS & CONTAINERS
   ============================================ */
.section {
    padding: 6rem 4%;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-muted);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

/* ============================================
   FEATURE CARDS (Why Us)
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(26, 10, 0, 0.6);
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
    z-index: 2;
}

.feature-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-img {
    height: 200px;
    overflow: hidden;
}

.feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.85);
}

.feature-card:hover .feature-img img {
    transform: scale(1.08);
    filter: brightness(1);
}

.feature-card h4 {
    margin: 1.5rem 1.5rem 0.8rem;
    color: var(--text);
}

.feature-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    padding: 0 1.5rem 1.8rem;
}

/* ============================================
   DESTINATION CARDS
   ============================================ */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.destination-card {
    position: relative;
    height: 500px;
    overflow: hidden;
    cursor: pointer;
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem 2rem 2rem;
    background: linear-gradient(to top, rgba(13, 13, 13, 0.95), transparent);
    transition: var(--transition);
}

.destination-card:hover .destination-overlay {
    padding-bottom: 3rem;
}

.destination-card h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.destination-card p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.destination-btn {
    display: inline-block;
    padding: 0.7rem 1.8rem;
    border: 1px solid var(--accent);
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition-fast);
    opacity: 0;
    transform: translateY(10px);
}

.destination-card:hover .destination-btn {
    opacity: 1;
    transform: translateY(0);
}

.destination-btn:hover {
    background: var(--accent);
    color: var(--primary);
}

/* ============================================
   TESTIMONIAL CARDS
   ============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(26, 10, 0, 0.5);
    border: 1px solid var(--border);
    padding: 3rem 2rem;
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
}

.quote-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.testimonial-text {
    font-style: italic;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-muted);
}

.testimonial-author {
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
}

.testimonial-author h5 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--accent);
}

/* ============================================
   PACKAGE CARDS
   ============================================ */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.package-card {
    background: rgba(26, 10, 0, 0.6);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
}

.package-card:hover {
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.package-image {
    height: 250px;
    overflow: hidden;
}

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

.package-card:hover .package-image img {
    transform: scale(1.05);
}

.package-content {
    padding: 2rem;
}

.package-tag {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: rgba(201, 168, 76, 0.15);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.package-content h3 {
    margin-bottom: 0.5rem;
}

.package-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.package-price span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.package-btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
    margin-top: 1rem;
}

.package-btn:hover {
    background: var(--accent);
    color: var(--primary);
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.3);
}

/* ============================================
   INSTAGRAM GRID
   ============================================ */
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.instagram-item {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.instagram-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.7);
}

.instagram-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: var(--transition);
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

.instagram-overlay svg {
    width: 30px;
    height: 30px;
    fill: var(--text);
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    background: linear-gradient(135deg, var(--primary), rgba(201, 168, 76, 0.15));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: center;
    padding: 5rem 2rem;
}

.cta-banner h2 {
    margin-bottom: 1rem;
}

.cta-banner p {
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    display: inline-block;
    padding: 1.1rem 3rem;
    background: var(--accent);
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition);
    border: 2px solid var(--accent);
}

.cta-btn:hover {
    background: transparent;
    color: var(--accent);
    box-shadow: 0 0 30px rgba(201, 168, 76, 0.2);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--primary);
    border-top: 1px solid var(--border);
    padding: 4rem 4% 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.9rem;
    max-width: 300px;
}

.footer-column h4 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.footer-column ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-3px);
}

.footer-social a:hover svg {
    fill: var(--primary);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    fill: var(--text-muted);
    transition: var(--transition-fast);
}

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

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

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
    transition: var(--transition);
    animation: bounce-subtle 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(201, 168, 76, 0.6);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    fill: var(--primary);
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */
.about-story {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-story h3 {
    margin-bottom: 2rem;
    color: var(--accent);
}

.about-story p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image {
    overflow: hidden;
    border: 1px solid var(--border);
}

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

.about-image:hover img {
    transform: scale(1.05);
}

.about-text h3 {
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.about-text ul {
    margin-top: 1.5rem;
}

.about-text ul li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
}

.about-text ul li::before {
    content: '✦';
    color: var(--accent);
    font-size: 1.2rem;
}

.promise-section {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.promise-section h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--accent);
}

.promise-section p {
    font-size: 1.2rem;
    line-height: 2;
}

/* ============================================
   PACKAGES PAGE STYLES
   ============================================ */
.packages-full-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.package-full-card {
    background: rgba(26, 10, 0, 0.6);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.package-full-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.package-full-card.featured {
    border-color: var(--accent);
    position: relative;
}

.package-full-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: 1rem;
    right: -2.5rem;
    background: var(--accent);
    color: var(--primary);
    padding: 0.3rem 3rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transform: rotate(45deg);
    z-index: 2;
}

.package-header {
    padding: 2rem;
    border-bottom: 1px solid var(--border);
}

.package-header h3 {
    margin-bottom: 0.5rem;
}

.package-header .price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--accent);
}

.package-header .price span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.package-body {
    padding: 2rem;
    flex-grow: 1;
}

.package-body ul {
    margin-bottom: 2rem;
}

.package-body ul li {
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.package-body ul li::before {
    content: '✓';
    color: var(--accent);
    font-weight: 700;
}

.package-footer {
    padding: 0 2rem 2rem;
}

.group-banner {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.2), rgba(201, 168, 76, 0.1));
    border: 1px solid var(--border);
    padding: 3rem;
    text-align: center;
    max-width: 900px;
    margin: 4rem auto 0;
}

.group-banner h3 {
    margin-bottom: 1rem;
    color: var(--accent);
}

.group-banner p {
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   GALLERY PAGE STYLES
   ============================================ */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.6rem 1.5rem;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 0.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.7);
}

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem 1.5rem 1.5rem;
    background: linear-gradient(to top, rgba(13, 13, 13, 0.9), transparent);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.gallery-item-overlay span {
    font-size: 0.8rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 13, 13, 0.98);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border: 1px solid var(--border);
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    background: var(--accent);
    color: var(--primary);
}

.video-section {
    max-width: 1000px;
    margin: 4rem auto 0;
    text-align: center;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: var(--primary);
    border: 1px solid var(--border);
}

.video-container iframe,
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form {
    background: rgba(26, 10, 0, 0.4);
    border: 1px solid var(--border);
    padding: 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(13, 13, 13, 0.5);
    border: 1px solid var(--border);
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 10px rgba(201, 168, 76, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: var(--accent);
    border: 2px solid var(--accent);
    color: var(--primary);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    background: transparent;
    color: var(--accent);
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.2);
}

.form-message {
    padding: 1rem;
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.95rem;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid var(--accent);
    color: var(--accent);
}

.form-message.error {
    display: block;
    background: rgba(139, 0, 0, 0.15);
    border: 1px solid var(--highlight);
    color: #ff6b6b;
}

.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.google-form-wrap {
    background: rgba(26, 10, 0, 0.4);
    border: 1px solid var(--border);
    overflow: hidden;
}

.google-form-wrap iframe {
    display: block;
    border: none;
}

.contact-info-card {
    background: rgba(26, 10, 0, 0.4);
    border: 1px solid var(--border);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.contact-info-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
}

.contact-card-icon {
    width: 52px;
    height: 52px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    transition: var(--transition-fast);
}

.contact-info-card:hover .contact-card-icon {
    background: rgba(201, 168, 76, 0.1);
    border-color: var(--accent);
}

.contact-card-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--accent);
    fill: none;
}

.contact-card-icon svg[fill="currentColor"] {
    fill: var(--accent);
    stroke: none;
}

.contact-flag {
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: var(--accent);
    margin-bottom: 0.2rem;
}

.contact-info-card .icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-info-card h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-info-card p,
.contact-info-card a {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.contact-info-card a:hover {
    color: var(--accent);
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: #25d366;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 4px;
    transition: var(--transition-fast);
    margin-top: 1rem;
}

.whatsapp-btn:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes bounce-subtle {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .features-grid,
    .destinations-grid,
    .testimonials-grid,
    .packages-grid,
    .packages-full-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .about-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: rgba(13, 13, 13, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: var(--transition);
        backdrop-filter: blur(20px);
    }

    .nav-links.active {
        right: 0;
    }

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

    .hamburger {
        display: flex;
    }

    .features-grid,
    .destinations-grid,
    .testimonials-grid,
    .packages-grid,
    .packages-full-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item.tall,
    .gallery-item.wide {
        grid-row: span 1;
        grid-column: span 1;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-social {
        justify-content: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 4rem 5%;
    }

    .hero {
        min-height: 600px;
    }

    .destination-card {
        height: 350px;
    }

    .contact-form {
        padding: 2rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .package-header .price {
        font-size: 1.8rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* ============================================
   FILM GRAIN OVERLAY (cinematic luxury feel)
   ============================================ */
body::after {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
    opacity: 0.035;
    pointer-events: none;
    z-index: 9999;
    animation: grain 8s steps(10) infinite;
}

@keyframes grain {
    0%, 100% { transform: translate(0, 0); }
    10%  { transform: translate(-2%, -3%); }
    20%  { transform: translate(-5%, 2%); }
    30%  { transform: translate(3%, -8%); }
    40%  { transform: translate(-2%, 8%); }
    50%  { transform: translate(-5%, 3%); }
    60%  { transform: translate(5%, 0); }
    70%  { transform: translate(0, 5%); }
    80%  { transform: translate(1%, 10%); }
    90%  { transform: translate(-3%, 3%); }
}

/* ============================================
   CUSTOM CURSOR (mouse-only devices)
   ============================================ */
@media (pointer: fine) {
    body { cursor: none; }
    a, button, [role="button"], .gallery-item,
    .destination-card, .package-card, .feature-card { cursor: none; }
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
}

.cursor-ring {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(201, 168, 76, 0.6);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
}

.cursor-ring.hovered {
    width: 52px;
    height: 52px;
    border-color: var(--accent);
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    padding: 2.5rem 4%;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(to right, rgba(201, 168, 76, 0.05), transparent, rgba(201, 168, 76, 0.05));
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.stat-item {
    padding: 1.5rem;
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-item:last-child { border-right: none; }

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ============================================
   VIDEO SHOWCASE (local video player)
   ============================================ */
.video-showcase {
    max-width: 1000px;
    margin: 0 auto;
}

.video-main-wrap {
    position: relative;
    background: #000;
    border: 1px solid var(--border);
    overflow: hidden;
    margin-bottom: 0.6rem;
}

.main-video {
    width: 100%;
    display: block;
    max-height: 540px;
    object-fit: contain;
}

.video-clips-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.video-clip {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid rgba(201, 168, 76, 0.15);
    background: #000;
    transition: border-color 0.25s ease;
}

.video-clip.active,
.video-clip:hover { border-color: var(--accent); }

.clip-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.65;
    transition: opacity 0.25s ease;
}

.video-clip.active .clip-preview,
.video-clip:hover .clip-preview { opacity: 1; }

.clip-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.35);
    transition: background 0.25s ease;
}

.video-clip.active .clip-overlay { background: rgba(201, 168, 76, 0.1); }
.video-clip:hover .clip-overlay  { background: rgba(0, 0, 0, 0.15); }

.clip-overlay svg {
    width: 24px;
    height: 24px;
    fill: white;
    opacity: 0.9;
}

.video-clip.active .clip-overlay svg { fill: var(--accent); opacity: 1; }

@media (max-width: 768px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2) { border-right: none; }
    .stat-item:nth-child(3),
    .stat-item:nth-child(4) { border-top: 1px solid var(--border); }
    .stat-item:nth-child(4) { border-right: none; }
    .video-clips-row { grid-template-columns: repeat(2, 1fr); }
}
