* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    overflow-x: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
    background-color: #fafafa;
    font-display: swap;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(44, 62, 80, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 0;
    border-bottom: 1px solid rgba(236, 201, 153, 0.2);
}

.navbar.scrolled {
    background: rgba(44, 62, 80, 0.98);
    box-shadow: 0 2px 30px rgba(0,0,0,0.15);
    border-bottom: 1px solid rgba(236, 201, 153, 0.3);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    font-weight: 700;
    color: #ecc999;
    letter-spacing: -0.5px;
}

.nav-logo img {
    height: 45px;
    margin-right: 12px;
    filter: brightness(1.1);
}

.nav-menu {
    display: flex;
    gap: 35px;
}

.nav-link {
    color: #ecf0f1;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.nav-link:hover,
.nav-link.active {
    color: #ecc999;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ecc999, #d4af37);
    transition: width 0.3s ease;
}

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

.nav-burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-burger span {
    width: 25px;
    height: 3px;
    background: #ecc999;
    margin: 3px 0;
    transition: 0.3s;
}

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

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

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

/* Hero Section */
.hero {
    height: 100vh;
    margin-top: 0;
    padding-top: 80px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 25%, #4a5d73 50%, #5d6f7e 75%, #6b7d8a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(236, 201, 153, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(236, 201, 153, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    animation: elegantFloat 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1.5" fill="%23ecc999" opacity="0.1"><animate attributeName="opacity" values="0.1;0.25;0.1" dur="4s" repeatCount="indefinite"/></circle><circle cx="80" cy="30" r="1" fill="%23d4af37" opacity="0.15"><animate attributeName="opacity" values="0.15;0.3;0.15" dur="5s" repeatCount="indefinite"/></circle><circle cx="30" cy="70" r="0.8" fill="%23ecc999" opacity="0.12"><animate attributeName="opacity" values="0.12;0.28;0.12" dur="3s" repeatCount="indefinite"/></circle></svg>');
    pointer-events: none;
}

@keyframes elegantFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(0.5deg); }
}

.hero-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    padding: 0 40px;
    gap: 80px;
    z-index: 2;
}

.hero-video-section {
    flex: 1;
    max-width: 500px;
    position: relative;
    animation: slideInLeft 1.2s ease-out;
}

/* Smartphone Frame Design for Portrait Video */
.video-container {
    position: relative;
    width: 380px;
    height: 620px;
    margin: 0 auto;
    background: linear-gradient(145deg, #2c3e50, #34495e);
    border-radius: 45px;
    padding: 30px 20px 20px 20px;
    box-shadow: 
        0 30px 80px rgba(0,0,0,0.4),
        0 0 0 3px rgba(236, 201, 153, 0.2),
        inset 0 2px 0 rgba(255,255,255,0.1),
        inset 0 -2px 0 rgba(0,0,0,0.2);
    transition: all 0.4s ease;
    overflow: visible;
}

.video-container::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 8px;
    background: linear-gradient(90deg, #34495e, #2c3e50);
    border-radius: 4px;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.3);
}

/* Home button removed for cleaner look and more video visibility */

.video-container:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 40px 100px rgba(0,0,0,0.5),
        0 0 0 3px rgba(236, 201, 153, 0.3),
        inset 0 2px 0 rgba(255,255,255,0.15),
        inset 0 -2px 0 rgba(0,0,0,0.2);
}

.video-screen {
    width: 100%;
    height: 100%;
    border-radius: 25px;
    overflow: hidden;
    background: #000;
    position: relative;
    box-shadow: 
        inset 0 0 0 2px rgba(255,255,255,0.1),
        0 3px 12px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Video Controls for Smartphone Design - Hover Only */
.video-overlay {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-container:hover .video-overlay {
    opacity: 1;
}

.video-controls {
    display: flex;
    gap: 12px;
    background: rgba(0,0,0,0.7);
    padding: 12px 18px;
    border-radius: 25px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(236, 201, 153, 0.2);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.video-play-btn,
.video-sound-btn,
.video-fullscreen-btn {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    padding: 8px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-play-btn:hover,
.video-sound-btn:hover,
.video-fullscreen-btn:hover {
    background: rgba(236, 201, 153, 0.2);
    transform: scale(1.1);
}

.hero-content {
    flex: 1;
    text-align: left;
    z-index: 2;
    animation: slideInRight 1.2s ease-out;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(236, 201, 153, 0.15), rgba(212, 175, 55, 0.1));
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 0.9rem;
    margin-bottom: 25px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(236, 201, 153, 0.25);
    color: #ecc999;
    font-weight: 500;
    letter-spacing: 0.5px;
    animation: slideInUp 1s ease-out 0.3s both;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 25px;
    animation: slideInUp 1s ease-out 0.6s both;
}

.logo img {
    height: 120px;
    width: auto;
    filter: drop-shadow(3px 3px 12px rgba(0,0,0,0.4)) brightness(1.1);
    transition: transform 0.3s ease;
    margin-right: 15px;
}

.logo img:hover {
    transform: scale(1.05);
}

.logo-text {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ecc999;
    letter-spacing: -0.8px;
}

.tagline {
    font-size: 2.8rem;
    margin-bottom: 20px;
    opacity: 0.95;
    font-weight: 300;
    line-height: 1.2;
    color: #ecf0f1;
    letter-spacing: -1px;
    animation: slideInUp 1s ease-out 0.9s both;
}

.tagline strong {
    color: #ecc999;
    font-weight: 600;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.85;
    font-weight: 400;
    line-height: 1.6;
    color: #bdc3c7;
    animation: slideInUp 1s ease-out 1.2s both;
}

.hero-stats {
    display: flex;
    justify-content: flex-start;
    gap: 50px;
    margin-bottom: 35px;
    animation: slideInUp 1s ease-out 1.5s both;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ecc999;
    display: block;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.75;
    color: #bdc3c7;
    margin-top: 5px;
    letter-spacing: 0.3px;
}

.cta-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    flex-wrap: wrap;
    animation: slideInUp 1s ease-out 1.8s both;
}

.cta-button {
    display: inline-block;
    padding: 18px 35px;
    background: linear-gradient(135deg, #ecc999, #d4af37);
    color: #2c3e50;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.4s ease;
    box-shadow: 
        0 8px 25px rgba(236, 201, 153, 0.3),
        inset 0 1px 0 rgba(255,255,255,0.2);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 15px 40px rgba(236, 201, 153, 0.4),
        inset 0 1px 0 rgba(255,255,255,0.3);
    background: linear-gradient(135deg, #f0d6a6, #e6c266);
}

.cta-button.secondary {
    background: transparent;
    color: #ecc999;
    border: 2px solid rgba(236, 201, 153, 0.4);
    backdrop-filter: blur(15px);
}

.cta-button.secondary::before {
    background: linear-gradient(90deg, transparent, rgba(236, 201, 153, 0.1), transparent);
}

.cta-button.secondary:hover {
    background: rgba(236, 201, 153, 0.1);
    border-color: rgba(236, 201, 153, 0.6);
    color: #f0d6a6;
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-80px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(80px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    background: linear-gradient(45deg, rgba(236, 201, 153, 0.04), rgba(212, 175, 55, 0.03));
    border-radius: 50%;
    animation: elegantFloatUp 25s linear infinite;
    will-change: transform;
    contain: layout style;
}

@keyframes elegantFloatUp {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(180deg);
        opacity: 0;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #ecc999;
    animation: elegantBounce 2s infinite;
    z-index: 10;
}

@keyframes elegantBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-8px);
    }
    60% {
        transform: translateX(-50%) translateY(-4px);
    }
}

/* Section Styling */
.section {
    padding: 100px 0;
    position: relative;
}

/* Remove generic nth-child rule - we'll use specific backgrounds */
/* .section:nth-child(even):not(.contact) {
    background: #f8f9fa;
} */

/* Generic section title styling */
.section .section-title {
    color: #2c3e50;
}

/* This rule is now handled by specific section classes */

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

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 70px;
    color: #2c3e50;
    position: relative;
    font-weight: 300;
    letter-spacing: -1px;
}

.section-title strong {
    color: #d4af37;
    font-weight: 600;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, #ecc999, #d4af37, #ecc999);
    border-radius: 2px;
}

/* Features Section - Clean white background */
.features {
    background: white;
    border-bottom: 1px solid #f0f0f0;
}

.features .section-title {
    color: #2c3e50;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.feature-card {
    background: white;
    padding: 50px 40px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ecc999, #d4af37);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: translateX(0);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #d4af37, #ecc999);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-title {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.feature-description {
    color: #5a6c7d;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Gallery - Elegant gradient to highlight photos */
.gallery {
    background: linear-gradient(135deg, #fafbfc 0%, #f8f9fa 25%, #ffffff 50%, #f8f9fa 75%, #fafbfc 100%);
    position: relative;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(236, 201, 153, 0.02) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(236, 201, 153, 0.015) 0%, transparent 40%);
    pointer-events: none;
}

.gallery .container {
    position: relative;
    z-index: 2;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    cursor: pointer;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(236, 201, 153, 0.0), rgba(212, 175, 55, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

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

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

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

/* Mobile Gallery Slideshow - CSS Scroll-Snap Version */
.mobile-gallery-slideshow {
    display: none;
    position: relative;
    width: 100%;
    height: 350px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    overflow: hidden;
}

.mobile-gallery-track {
    display: flex;
    height: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
}

.mobile-gallery-track::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}

.mobile-gallery-slide {
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    position: relative;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.mobile-gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    user-select: none;
    -webkit-user-drag: none;
}

.mobile-gallery-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.mobile-gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.mobile-gallery-dot.active {
    background: #ecc999;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 62, 80, 0.95);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
    padding: 60px 20px 20px 20px;
    backdrop-filter: blur(10px);
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: zoomIn 0.3s ease;
}

.lightbox img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 25px 80px rgba(0,0,0,0.6);
    border: 2px solid rgba(236, 201, 153, 0.3);
}

.lightbox-close {
    position: fixed;
    top: 25px;
    right: 25px;
    color: #ecc999;
    font-size: 2rem;
    cursor: pointer;
    background: rgba(236, 201, 153, 0.15);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    z-index: 1001;
    backdrop-filter: blur(10px);
}

.lightbox-close:hover {
    background: rgba(236, 201, 153, 0.25);
}

.lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    color: #ecc999;
    font-size: 2rem;
    cursor: pointer;
    background: rgba(236, 201, 153, 0.15);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    z-index: 1001;
    backdrop-filter: blur(10px);
}

.lightbox-nav:hover {
    background: rgba(236, 201, 153, 0.25);
}

.lightbox-prev {
    left: 25px;
}

.lightbox-next {
    right: 25px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { transform: scale(0.5); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Locations - Warm, inviting background */
.locations {
    background: linear-gradient(135deg, #faf8f5 0%, #f5f1eb 25%, #f0ebe1 50%, #f5f1eb 75%, #faf8f5 100%);
    text-align: center;
    position: relative;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.locations::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(236, 201, 153, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.locations .container {
    position: relative;
    z-index: 2;
}

.locations .section-title {
    color: #2c3e50;
    text-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.locations p {
    color: #4a4a4a;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.locations-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
}

.location-tag {
    background: white;
    padding: 15px 30px;
    border-radius: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    font-weight: 500;
    color: #2c3e50;
    transition: all 0.3s ease;
    border: 2px solid rgba(236, 201, 153, 0.2);
    position: relative;
    overflow: hidden;
}

.location-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(236, 201, 153, 0.1), transparent);
    transition: left 0.4s ease;
}

.location-tag:hover::before {
    left: 100%;
}

.location-tag:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
    border-color: rgba(236, 201, 153, 0.4);
    color: #d4af37;
}

/* Pricing */
.pricing {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 25%, #4a5d73 50%, #5d6f7e 75%, #6b7d8a 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(236, 201, 153, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(236, 201, 153, 0.03) 0%, transparent 50%);
    animation: elegantFloat 20s ease-in-out infinite;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.98);
    color: #2c3e50;
    padding: 50px 40px;
    border-radius: 25px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    min-height: 600px;
    border: 2px solid rgba(236, 201, 153, 0.2);
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ecc999, #d4af37);
}

.pricing-card.featured {
    background: white;
    box-shadow: 0 30px 80px rgba(0,0,0,0.2);
    border: 2px solid #ecc999;
}

.pricing-card.featured::before {
    height: 8px;
    background: linear-gradient(90deg, #d4af37, #ecc999, #d4af37);
}

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.pricing-card.featured:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 100px rgba(0,0,0,0.25);
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.pricing-card.featured h3 {
    color: #d4af37;
}

/* Mobile Pricing Slideshow - CSS Scroll-Snap Version */
.mobile-pricing-slideshow {
    display: none;
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 0 -20px;
    padding: 0 20px;
}

.mobile-pricing-track {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    gap: 4%;
    padding-bottom: 10px;
}

.mobile-pricing-track::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}

.mobile-pricing-slide {
    width: 90%;
    flex-shrink: 0;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.mobile-pricing-slide .pricing-card {
    width: 100%;
    margin: 0;
    transform: none !important;
    min-height: 470px;
    display: flex;
    flex-direction: column;
}

.mobile-pricing-slide .pricing-card.featured {
    transform: none !important;
    min-height: 470px;
}

.mobile-pricing-slide .features-list {
    flex: 1;
}

.mobile-pricing-slide .cta-button {
    margin-top: auto;
}

.mobile-pricing-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.mobile-pricing-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: background 0.3s ease;
}

.mobile-pricing-dot.active {
    background: #ecc999;
}

.price {
    font-size: 3.5rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 15px;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.price-subtitle {
    color: #5a6c7d;
    margin-bottom: 35px;
    font-size: 1.05rem;
}

.features-list {
    list-style: none;
    margin-bottom: 35px;
    flex: 1;
}

.features-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
    position: relative;
    padding-left: 30px;
    font-size: 1.05rem;
    line-height: 1.5;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
    font-size: 1.2rem;
}

.pricing-card .cta-button {
    margin-top: auto;
    background: linear-gradient(135deg, #d4af37, #ecc999);
    color: #2c3e50;
    font-weight: 600;
    text-shadow: none;
}

.pricing-card .cta-button:hover {
    background: linear-gradient(135deg, #c9a332, #e6c266);
    color: #2c3e50;
}

/* Override for blue buttons in pricing */
.pricing-card .cta-button[style*="1e3c72"] {
    color: white !important;
    font-weight: 600 !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3) !important;
}

.pricing-card .cta-button[style*="1e3c72"]:hover {
    color: white !important;
    background: linear-gradient(45deg, #2a5298, #3b82c4) !important;
}

/* Contact */
.contact {
    background: #2c3e50 !important;
    color: white !important;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(236, 201, 153, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(236, 201, 153, 0.02) 0%, transparent 50%);
}

.contact .section-title {
    color: #ecc999 !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    font-weight: 600;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.contact-info h3 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #ecc999;
    font-weight: 300;
    letter-spacing: -0.5px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.15rem;
    line-height: 1.6;
    color: #ecf0f1;
}

.contact-item span {
    margin-right: 20px;
    font-size: 1.4rem;
    color: #ecc999;
}

.contact p {
    color: #ecf0f1 !important;
    line-height: 1.7;
}

/* Force all text in contact section to be visible */
.contact * {
    color: white !important;
}

.contact .section-title {
    color: #ecc999 !important;
}

.contact .contact-info h3 {
    color: #ecc999 !important;
}

.contact .contact-item span {
    color: #ecc999 !important;
}

.contact strong {
    color: #ecc999 !important;
}

.contact .cta-button {
    background: linear-gradient(135deg, #ecc999, #d4af37) !important;
    color: #2c3e50 !important;
    font-weight: 600;
}

.contact .cta-button:hover {
    background: linear-gradient(135deg, #f0d6a6, #e6c266) !important;
}

/* Footer */
.footer {
    background: #1a252f;
    color: #bdc3c7;
    padding: 50px 0;
    text-align: center;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.footer-logo img {
    height: 65px;
    width: auto;
    margin-right: 15px;
    opacity: 0.9;
}

.footer-logo span {
    font-size: 1.6rem;
    font-weight: 600;
    color: #ecc999;
    letter-spacing: -0.3px;
}

/* Mobile Video Modal */
.mobile-video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 62, 80, 0.95);
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.mobile-video-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-video-modal-content {
    position: relative;
    width: 95%;
    max-width: 600px;
    height: 80vh;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 2px solid rgba(236, 201, 153, 0.3);
    overflow: hidden;
}

.mobile-video-header {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid rgba(236, 201, 153, 0.3);
}

.mobile-video-header h3 {
    color: #ecc999;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
}

.mobile-modal-close {
    background: rgba(236, 201, 153, 0.2);
    border: none;
    color: #ecc999;
    font-size: 2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.mobile-modal-close:hover {
    background: rgba(236, 201, 153, 0.3);
}

.mobile-video-container {
    width: 100%;
    height: calc(100% - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.video-loading-placeholder {
    text-align: center;
    color: white;
    padding: 40px;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(236, 201, 153, 0.3);
    border-top: 3px solid #ecc999;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Mobile Video Preview Base Styles - Hidden by default */
.mobile-video-preview {
    display: none;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 40px;
    right: 40px;
    background: linear-gradient(135deg, #25d366, #20b954);
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    animation: elegantPulse 2s infinite;
    transition: all 0.3s ease;
}

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

@keyframes elegantPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Performance optimizations */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

img {
    image-rendering: optimizeQuality;
    image-rendering: -webkit-optimize-contrast;
}

/* Critical mobile styles loaded first */
@media (max-width: 768px) {
    body {
        font-size: 14px;
        line-height: 1.5;
    }
    
    /* === MOBILE VIDEO PREVIEW === */
    .mobile-video-preview {
        display: block !important;
        position: relative;
        width: 100%;
        max-width: 350px;
        height: 200px;
        margin: 20px auto;
        border-radius: 20px;
        overflow: hidden;
        cursor: pointer;
        box-shadow: 
            0 20px 40px rgba(0,0,0,0.15),
            0 0 0 1px rgba(236, 201, 153, 0.2);
        transition: all 0.4s ease;
    }

    .mobile-preview-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #4a5d73 100%);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-preview-logo {
        width: 80px;
        height: auto;
        opacity: 0.3;
        filter: brightness(1.2);
    }

    .mobile-preview-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, rgba(0,0,0,0.4), rgba(0,0,0,0.2));
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 2;
    }

    .mobile-play-button {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, #ecc999, #d4af37);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 15px;
        box-shadow: 
            0 8px 25px rgba(236, 201, 153, 0.4),
            inset 0 2px 0 rgba(255,255,255,0.2);
        transition: all 0.3s ease;
        animation: pulse 2s infinite;
    }

    .play-icon {
        color: #2c3e50;
        font-size: 24px;
        font-weight: bold;
        margin-left: 3px;
        text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    }

    .mobile-preview-text {
        text-align: center;
        color: white;
    }

    .mobile-preview-text h3 {
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 5px;
        color: #ecc999;
        text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    }

    .mobile-preview-text p {
        font-size: 0.9rem;
        opacity: 0.9;
        text-shadow: 0 1px 2px rgba(0,0,0,0.5);
    }

    .mobile-preview-pulse {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 70px;
        height: 70px;
        border: 2px solid rgba(236, 201, 153, 0.6);
        border-radius: 50%;
        animation: pulseBorder 2s infinite;
        pointer-events: none;
    }

    .mobile-video-preview:active {
        transform: translateY(-3px) scale(1.01);
        box-shadow: 
            0 15px 30px rgba(0,0,0,0.15),
            0 0 0 1px rgba(236, 201, 153, 0.3);
    }

    .mobile-video-preview:active .mobile-play-button {
        transform: scale(1.05);
        box-shadow: 
            0 8px 20px rgba(236, 201, 153, 0.4),
            inset 0 2px 0 rgba(255,255,255,0.2);
    }

    /* Hide desktop video container on mobile */
    .video-container {
        display: none !important;
    }

    /* === LAYOUT === */
    .hero-layout {
        flex-direction: column;
        gap: 40px;
        padding: 0 20px;
    }

    .hero-content {
        text-align: center;
        order: 2;
        padding: 100px 15px 0 15px;
    }

    .hero-video-section {
        order: 1;
        max-width: 100%;
    }

    .tagline {
        font-size: 2.2rem;
        margin-top: 75px;
    }

    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-bottom: 30px;
    }

    .stat-item {
        text-align: center;
    }

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-bottom: 60px;
        padding-bottom: 40px;
    }

    .cta-button {
        width: 90%;
        max-width: 300px;
        text-align: center;
        padding: 18px 24px;
        font-size: 1.1rem;
        font-weight: 600;
        white-space: nowrap;
    }

    /* Smaller font for pricing card buttons to ensure single line */
    .pricing-card .cta-button {
        font-size: 0.95rem;
        padding: 16px 20px;
        letter-spacing: 0.5px;
    }
    
    .cta-button.secondary {
        display: none;
    }

    .scroll-indicator {
        display: none;
    }

    /* === NAVIGATION === */
    .nav-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(44, 62, 80, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 5px 20px rgba(0,0,0,0.2);
        z-index: 999;
        gap: 0;
    }

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

    .nav-link {
        padding: 15px 30px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        transition: all 0.3s ease;
    }

    .nav-link:hover {
        background: rgba(236, 201, 153, 0.1);
        color: #ecc999;
    }

    .nav-burger {
        display: flex;
    }

    /* === SECTIONS === */
    .section {
        padding: 80px 0;
    }
    
    .hero {
        padding-bottom: 40px;
    }

    .container {
        padding: 0 15px;
    }

    .section-title {
        font-size: 2.3rem;
        margin-bottom: 50px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* === GALLERY === */
    .gallery-grid {
        display: none;
    }

    .mobile-gallery-slideshow {
        display: block;
    }

    /* === PRICING === */
    .pricing-cards {
        display: none;
    }

    .mobile-pricing-slideshow {
        display: block;
    }

    .pricing-card.featured {
        transform: none;
    }

    /* === LIGHTBOX === */
    .lightbox-nav {
        display: none;
    }

    .lightbox {
        padding: 40px 10px 10px 10px;
    }

    .lightbox-close {
        top: 15px;
        right: 15px;
        font-size: 1.8rem;
        width: 40px;
        height: 40px;
    }

    /* === LOGO === */
    .logo {
        display: none;
    }

    .footer-logo img {
        height: 50px;
        margin-right: 12px;
    }

    .footer-logo span {
        font-size: 1.3rem;
    }

    /* === WHATSAPP BUTTON === */
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 26px;
        bottom: 25px;
        right: 25px;
    }

    /* Optimized animations for mobile */
    @keyframes pulse {
        0%, 100% {
            transform: scale(1);
        }
        50% {
            transform: scale(1.02);
        }
    }

    @keyframes pulseBorder {
        0% {
            transform: translate(-50%, -50%) scale(1);
            opacity: 0.8;
        }
        100% {
            transform: translate(-50%, -50%) scale(1.3);
            opacity: 0;
        }
    }
    
    /* Disable animations for users who prefer reduced motion */
    @media (prefers-reduced-motion: reduce) {
        *, *::before, *::after {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }
    }
}