:root {
    --primary-color: #6366f1;
    --primary-hover: #4f46e5;
    --secondary-color: #2A2041;
    --text-color: #F2EFFF;
    --text-light: #E6DEFF;
    --bg-color: #1F1731;
    --bg-secondary: #2A2041;
    --accent-color-1: #F99FB1;
    --accent-color-2: #D5A6F8;
    --gray-100: #3a3450;
    --gray-200: #2F2845;
    --gray-300: #262038;
    --gray-800: #1a142b;
    --border-radius: 12px;
    --box-shadow: 0 4px 20px -1px rgba(0, 0, 0, 0.25), 0 2px 10px -1px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-color);
    background: linear-gradient(145deg, var(--bg-color), var(--bg-secondary));
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-hover);
}

ul {
    list-style-type: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
}

.btn-primary {
    background: linear-gradient(90deg, var(--primary-color), var(--primary-hover));
    color: white;
    box-shadow: 0 4px 10px rgba(79, 70, 229, 0.4);
    position: relative;
    overflow: hidden;
    animation: ctaPulse 2s infinite;
}

.btn-primary:hover {
    background: linear-gradient(90deg, var(--primary-hover), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(79, 70, 229, 0.5);
    animation: none;
}

@keyframes ctaPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(99, 102, 241, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(99, 102, 241, 0);
    }
}

.btn-secondary {
    background-color: rgba(42, 32, 65, 0.7);
    color: var(--text-color);
    border: 1px solid rgba(230, 222, 255, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background-color: rgba(42, 32, 65, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Header and Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
    padding: 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    width: 100%;
}

.navbar .logo {
    padding-right: 1rem;
}

.logo img {
    height: 40px;
}

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

.nav-links a {
    font-weight: 500;
    color: var(--text-color);
}

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

/* Hero Section */
.hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(125deg, var(--bg-color), var(--bg-secondary));
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--accent-color-1);
    opacity: 0.15;
    filter: blur(60px);
    border-radius: 50%;
    top: -50px;
    right: -100px;
}

.hero::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--accent-color-2);
    opacity: 0.15;
    filter: blur(70px);
    border-radius: 50%;
    bottom: -50px;
    left: -50px;
}

.hero-content {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Features */
.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.25rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.hero-feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.hero-feature .feature-icon {
    font-size: 1.5rem;
    margin-bottom: 0;
}

.hero-feature span {
    font-weight: 500;
    font-size: 0.95rem;
}

/* Hero Preview */
.hero-preview {
    margin: 3rem auto;
    max-width: 320px;
    position: relative;
}

.preview-device {
    width: 100%;
    height: 340px;
    background: #121212;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
    border: 8px solid #2a2a2a;
    transform: perspective(800px) rotateX(10deg);
    transition: all 0.5s ease;
}

.preview-device:hover {
    transform: perspective(800px) rotateX(0deg) scale(1.05);
}

.preview-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 70%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.preview-device:hover .preview-overlay {
    opacity: 1;
}

.preview-text {
    background: linear-gradient(90deg, var(--primary-color), var(--primary-hover));
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.trust-badges {
    margin-top: 3rem;
}

.trust-badges p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.client-logos {
    display: flex;
    justify-content: center;
    gap: 3rem;
    align-items: center;
    margin: 0 auto;
    padding: 0.5rem;
}

.client-logo {
    max-width: 150px;
    height: 80px;
    object-fit: contain;
    transition: all 0.5s ease;
    filter: grayscale(0.5) brightness(1.5);
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateY(10px);
}

.client-logo.loaded {
    opacity: 1;
    transform: translateY(0);
}

.client-logo:hover {
    transform: scale(1.08);
    filter: grayscale(0) brightness(1);
    background-color: rgba(255, 255, 255, 0.25);
}

/* Demo Section */
.demo {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.demo-experience {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.device-selector {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    width: 100%;
}

.device-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(42, 32, 65, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    border: 1px solid rgba(99, 102, 241, 0.2);
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.device-btn svg {
    margin-right: 0.5rem;
}

.svg-icon {
    filter: brightness(0) invert(1);
    margin-right: 0.5rem;
}

.device-btn:hover, .device-btn.active {
    background: linear-gradient(90deg, var(--primary-color), var(--primary-hover));
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
}

.experience-preview {
    flex: 1 1 550px;
    min-height: 560px;
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.device-frame {
    width: 320px;
    height: 600px;
    background: #121212;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: absolute;
    display: none;
    flex-direction: column;
    border: 8px solid #2a2a2a;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.device-frame.active {
    display: flex;
    opacity: 1;
    transform: translateY(0) scale(1);
}

.device-header {
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: #212121;
    height: 60px;
}

.profile-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile-pic {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--accent-color-1), var(--primary-color));
}

.profile-name {
    font-weight: 600;
    font-size: 14px;
}

.device-actions {
    color: #999;
}

.device-content {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: #000;
}

.demo-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.device-footer {
    background: #212121;
    min-height: 80px;
    padding: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Instagram specific styles */
.instagram .engagement {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.instagram .likes {
    font-weight: bold;
    font-size: 14px;
}

.instagram .caption {
    font-size: 13px;
    color: #eee;
}

/* TikTok specific styles */
.tiktok-overlay {
    position: absolute;
    bottom: 20px;
    left: 10px;
    right: 10px;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.tiktok-caption {
    font-size: 14px;
    margin-bottom: 8px;
}

.tiktok-music {
    font-size: 12px;
    opacity: 0.8;
}

.tiktok-actions {
    display: flex;
    justify-content: space-around;
    font-size: 14px;
}

/* WhatsApp specific styles */
.whatsapp .device-content {
    background: #0A1014;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow-y: auto;
}

.chat-bubble {
    max-width: 80%;
    padding: 10px 12px;
    border-radius: 12px;
    font-size: 14px;
    position: relative;
}

.chat-bubble.sender {
    background: #025C4B;
    color: white;
    align-self: flex-end;
    border-top-right-radius: 0;
}

.chat-bubble.receiver {
    background: #1F2C34;
    color: white;
    align-self: flex-start;
    border-top-left-radius: 0;
}

.chat-video {
    align-self: flex-end;
    width: 80%;
    height: auto;
    min-height: 180px;
    max-height: 200px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.chat-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-info {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(42, 32, 65, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(99, 102, 241, 0.2);
    height: fit-content;
    align-self: center;
}

.experience-info h3 {
    margin-bottom: 1rem;
    font-size: 1.75rem;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color-1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.experience-info p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.experience-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.experience-feature {
    background: rgba(59, 46, 88, 0.5);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

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

.experience-info .btn-primary {
    align-self: flex-start;
    margin-top: auto;
}

/* Media Queries for Demo Experience */
@media (max-width: 992px) {
    .experience-preview {
        min-height: 450px;
    }
    
    .device-frame {
        width: 280px;
        height: 520px;
    }
    
    .chat-video {
        min-height: 160px;
        max-height: 180px;
    }
}

@media (max-width: 768px) {
    .demo-experience {
        flex-direction: column;
        gap: 2rem;
    }
    
    .experience-preview {
        min-height: 520px;
        order: 1;
        margin-bottom: 0;
    }
    
    .experience-info {
        order: 2;
        padding: 2rem;
    }
    
    .device-frame {
        width: 260px;
        height: 480px;
    }
    
    .device-btn {
        padding: 0.6rem 1rem;
    }
    
    .device-btn span {
        display: none;
    }
    
    .device-btn svg {
        width: 24px;
        height: 24px;
    }
    
    .chat-video {
        min-height: 150px;
        max-height: 160px;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-feature {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .hero-preview {
        margin: 2rem auto;
    }
    
    .gallery-item {
        width: 200px;
    }
    
    .video-container {
        aspect-ratio: 9 / 16;
        height: auto;
    }
    
    .video-caption h3 {
        font-size: 0.95rem;
    }
    
    .video-caption p {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .form-group {
        width: 100%;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .mobile-active {
        display: flex !important;
        max-width: 100%;
    }
    
    .gallery-grid {
        padding: 1rem 0.5rem;
        gap: 1rem;
        padding-left: calc(50% - 115px);
        padding-right: calc(50% - 115px);
    }
    
    .gallery-item {
        width: 230px;
    }
    
    .video-container {
        aspect-ratio: 9 / 16;
        height: auto;
    }
    
    .video-caption {
        padding: 0.75rem 0.5rem;
    }
    
    .video-caption h3 {
        font-size: 0.9rem;
        margin-bottom: 0.25rem;
    }
    
    .video-caption p {
        font-size: 0.75rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 10px;
    }
    
    .hero-features {
        gap: 0.75rem;
    }
    
    .hero-feature {
        padding: 0.6rem 1rem;
    }
    
    .hero-feature .feature-icon {
        font-size: 1.25rem;
    }
    
    .hero-feature span {
        font-size: 0.85rem;
    }
    
    .preview-device {
        height: 300px;
    }
    
    .device-frame {
        width: 240px;
        height: 450px;
    }
    
    .device-selector {
        gap: 0.5rem;
    }
    
    .chat-video {
        min-height: 130px;
        max-height: 150px;
        width: 85%;
    }
    
    .whatsapp .device-content {
        padding: 8px;
        gap: 8px;
    }
    
    .chat-bubble {
        padding: 8px 10px;
        font-size: 13px;
        max-width: 85%;
    }
    
    .hero-preview {
        margin: 2rem auto 1.5rem;
        max-width: 280px;
    }
    
    .cta-buttons {
        margin-bottom: 2rem;
    }
}

/* How It Works Section */
.how-it-works {
    padding: 5rem 0;
    background-color: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--accent-color-2);
    opacity: 0.15;
    filter: blur(80px);
    border-radius: 50%;
    top: -100px;
    right: -150px;
    z-index: 0;
}

.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.step {
    background: rgba(42, 32, 65, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 2rem;
    flex: 1 1 250px;
    box-shadow: var(--box-shadow);
    position: relative;
    border: 1px solid rgba(99, 102, 241, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.3);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    color: white;
    border-radius: 50%;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

/* Benefits Section */
.benefits {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.benefits::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: var(--accent-color-1);
    opacity: 0.15;
    filter: blur(90px);
    border-radius: 50%;
    bottom: -200px;
    right: 10%;
    z-index: 0;
}

.benefit-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.benefit-card {
    background: rgba(42, 32, 65, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    border: 1px solid rgba(99, 102, 241, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.3);
}

.icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

/* Gallery Section */
.gallery {
    padding: 5rem 0;
    background-color: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.gallery::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--accent-color-2);
    opacity: 0.15;
    filter: blur(70px);
    border-radius: 50%;
    top: 10%;
    left: -150px;
    z-index: 0;
}

.gallery-outer-container {
    max-width: 1200px;
    padding: 0 1.5rem;
    margin: 0 auto;
}

.gallery h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    width: 100%;
}

.gallery-container {
    position: relative;
    z-index: 1;
    width: 100%;
    margin-top: 2rem;
}

.gallery-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.25rem;
    padding: 1rem 0;
    scrollbar-width: none; /* Hide scrollbar for Firefox */
    -ms-overflow-style: none; /* Hide scrollbar for IE and Edge */
    scroll-behavior: smooth;
    width: 100%;
    align-items: flex-start; /* Align items at the top */
    justify-content: flex-start;
    /* Add padding to ensure first item is centered */
    padding-left: calc(50% - 125px);
    padding-right: calc(50% - 125px);
}

.gallery-grid::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome, Safari, and Opera */
}

.gallery-item {
    flex: 0 0 auto;
    width: 250px;
    border-radius: 24px; /* More phone-like rounded corners */
    overflow: hidden;
    box-shadow: var(--box-shadow);
    background: rgba(42, 32, 65, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(99, 102, 241, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    scroll-snap-align: center;
    height: auto;
}

.video-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 24px 24px 0 0; /* Rounded corners only on top */
    aspect-ratio: 9 / 16; /* Mobile phone aspect ratio */
    height: auto;
}

.phone-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px 24px 0 0; /* Rounded corners only on top */
    z-index: 1;
}

/* Styles for the video caption */
.video-caption {
    padding: 1rem;
    text-align: center;
    background-color: rgba(42, 32, 65, 0.8);
    border-radius: 0 0 24px 24px; /* Rounded corners only on bottom */
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.video-caption h3 {
    color: var(--accent-color-1);
    font-size: 1.1rem;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.video-caption p {
    font-size: 0.9rem;
    margin: 0;
    color: var(--text-color);
    line-height: 1.4;
}

.gallery-item:hover .play-button {
    transform: scale(1.1);
    background: rgba(99, 102, 241, 0.6);
}

/* Add phone top notch - adjusting positioning */
.gallery-item::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 12px;
    background-color: rgba(30, 20, 40, 0.9);
    border-radius: 12px;
    pointer-events: none;
    z-index: 3;
}

.gallery-navigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.gallery-nav-btn {
    background: rgba(42, 32, 65, 0.7);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--text-color);
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}

.gallery-nav-btn:hover {
    transform: translateY(-3px);
    background: var(--primary-color);
    color: white;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: var(--accent-color-1);
    opacity: 0.15;
    filter: blur(100px);
    border-radius: 50%;
    top: -200px;
    left: -200px;
    z-index: 0;
}

.testimonial-slider {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.testimonial {
    flex: 1 1 350px;
    background: rgba(42, 32, 65, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
    border: 1px solid rgba(99, 102, 241, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.3);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author .name {
    font-weight: 700;
}

.testimonial-author .event {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Packages Section */
.packages {
    padding: 5rem 0;
    background-color: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.packages::before {
    content: '';
    position: absolute;
    width: 450px;
    height: 450px;
    background: var(--accent-color-2);
    opacity: 0.15;
    filter: blur(80px);
    border-radius: 50%;
    bottom: -150px;
    right: -100px;
    z-index: 0;
}

.package-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.package-card {
    flex: 1 1 300px;
    background: rgba(42, 32, 65, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    position: relative;
    border: 1px solid rgba(99, 102, 241, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 350px;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.3);
}

.package-card.featured {
    background: rgba(31, 23, 49, 0.85);
    border: 1px solid rgba(99, 102, 241, 0.3);
    box-shadow: 0 8px 30px -5px rgba(99, 102, 241, 0.3);
    transform: translateY(-10px);
}

.package-card.featured:hover {
    transform: translateY(-15px);
    box-shadow: 0 12px 35px -5px rgba(99, 102, 241, 0.35);
}

.featured-label {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--primary-color), var(--primary-hover));
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(79, 70, 229, 0.2);
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.faq::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: var(--accent-color-1);
    opacity: 0.15;
    filter: blur(90px);
    border-radius: 50%;
    top: 10%;
    right: -200px;
    z-index: 0;
}

.faq-list {
    max-width: 800px;
    margin: 3rem auto 0;
    position: relative;
    z-index: 1;
}

.faq-item {
    background: rgba(42, 32, 65, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.faq-item h3 {
    margin-bottom: 0.75rem;
    color: var(--accent-color-1);
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background-color: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    width: 450px;
    height: 450px;
    background: var(--accent-color-2);
    opacity: 0.15;
    filter: blur(80px);
    border-radius: 50%;
    bottom: -150px;
    left: -150px;
    z-index: 0;
}

/* Contact Rating */
.contact-rating {
    max-width: 600px;
    margin: 2rem auto 3rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 1.25rem 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    z-index: 1;
}

.contact-rating .rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.contact-rating .stars {
    color: #FFD700;
    letter-spacing: 3px;
    font-size: 2rem;
    line-height: 1;
}

.contact-rating .rating-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
}

.contact-rating p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: var(--text-light);
    opacity: 0.9;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(42, 32, 65, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(99, 102, 241, 0.2);
    position: relative;
    z-index: 1;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

input, textarea, select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--border-radius);
    background-color: rgba(31, 23, 49, 0.7);
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

input::placeholder, textarea::placeholder, select::placeholder {
    color: rgba(230, 222, 255, 0.6);
}

textarea {
    min-height: 150px;
    resize: vertical;
}

button[type="submit"] {
    background: linear-gradient(90deg, var(--primary-color), var(--primary-hover));
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 0.5rem;
    box-shadow: 0 4px 10px rgba(79, 70, 229, 0.2);
    animation: ctaPulse 2s infinite;
}

button[type="submit"]:hover {
    background: linear-gradient(90deg, var(--primary-hover), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(79, 70, 229, 0.25);
    animation: none;
}

/* Date Picker Styling */
.date-input-container {
    position: relative;
    display: flex;
    align-items: center;
}

.date-input-container input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--border-radius);
    background-color: rgba(31, 23, 49, 0.7);
    color: var(--text-color);
    cursor: pointer;
}

.calendar-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: rgba(230, 222, 255, 0.6);
    font-size: 1.1rem;
}

/* Calendar popup styling */
.calendar-popup {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 280px;
    background-color: rgba(42, 32, 65, 0.95);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 1rem;
    z-index: 100;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin-top: 5px;
}

.calendar-popup.active {
    display: block;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.calendar-nav {
    display: flex;
    gap: 0.5rem;
}

.calendar-nav-btn {
    background: none;
    border: none;
    color: var(--accent-color-1);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0.25rem;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-nav-btn:hover {
    background-color: rgba(99, 102, 241, 0.2);
}

.calendar-month-year {
    font-weight: 600;
    color: var(--text-color);
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.calendar-weekday {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-light);
    padding: 0.25rem;
}

.calendar-dates {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.25rem;
}

.calendar-date {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
    cursor: pointer;
    border: none;
    background: none;
    color: var(--text-color);
    font-size: 0.9rem;
}

.calendar-date:hover:not(:disabled) {
    background-color: rgba(99, 102, 241, 0.3);
}

.calendar-date.active {
    background-color: var(--primary-color);
    color: white;
}

.calendar-date:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.calendar-date.today {
    border: 1px solid var(--accent-color-1);
}

/* Media query for mobile */
@media (max-width: 768px) {
    .contact-rating {
        padding: 1rem 1.5rem;
        margin: 1.5rem auto 2rem;
    }
    
    .contact-rating .stars {
        font-size: 1.75rem;
    }
    
    .contact-rating .rating-text {
        font-size: 1rem;
    }
    
    /* Mobile calendar adjustments */
    .calendar-popup {
        width: 100%;
        max-width: 300px;
        left: 0;
        right: 0;
        margin-left: auto;
        margin-right: auto;
    }
    
    .calendar-date {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .contact-rating {
        padding: 1rem;
        margin: 1rem auto 1.5rem;
    }
    
    .contact-rating .stars {
        font-size: 1.5rem;
    }
    
    .contact-rating .rating-text {
        font-size: 0.9rem;
    }
    
    .contact-rating p {
        font-size: 0.85rem;
    }
    
    .hero-conversion {
        margin: 1rem auto;
    }
    
    .social-proof {
        padding: 0.75rem;
    }
    
    .stars {
        font-size: 1rem;
    }
    
    .rating-text, .clients-count span {
        font-size: 0.8rem;
    }
    
    .limited-offer {
        margin: 1.25rem auto;
        padding: 1.25rem 0.75rem 0.75rem;
    }
    
    .offer-badge {
        font-size: 0.7rem;
        padding: 0.25rem 0.75rem;
        top: -10px;
    }
}

/* Footer */
footer {
    background-color: var(--bg-secondary);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--accent-color-1);
    opacity: 0.15;
    filter: blur(70px);
    border-radius: 50%;
    top: -100px;
    right: 10%;
    z-index: 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.footer-logo {
    flex: 1 1 300px;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-logo {
        margin-bottom: 0;
    }
}

.footer-logo img {
    height: 40px;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    flex: 2 1 600px;
    justify-content: space-around; /* Better space distribution with fewer columns */
}

.footer-column {
    flex: 1 1 200px; /* Slightly wider columns */
    max-width: 300px; /* Prevent columns from getting too wide */
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

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

.footer-column a {
    color: var(--text-light);
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--accent-color-1);
}

.social-links {
    display: flex;
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(42, 32, 65, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: var(--text-color);
    transition: all 0.3s ease;
    border: 1px solid rgba(99, 102, 241, 0.2);
    text-decoration: none;
}

.social-icon {
    font-style: normal;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Instagram style */
.social-links a:first-child {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background-size: 200% 200%;
    animation: gradientAnimation 10s ease infinite;
    border: none;
    opacity: 0.8;
}

/* TikTok style */
.social-links a:nth-child(2) {
    background: linear-gradient(45deg, #010101, #111111, #25F4EE, #FE2C55);
    background-size: 300% 300%;
    animation: gradientAnimation 10s ease infinite;
    border: none;
    opacity: 0.8;
}

.social-links a:hover {
    transform: translateY(-3px) scale(1.1);
    opacity: 1;
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(99, 102, 241, 0.2);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.legal-links {
    display: flex;
    gap: 1.5rem;
}

.legal-links a {
    color: var(--text-light);
    transition: color 0.3s ease;
}

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

/* Custom Gradient Text */
.gradient-text {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color-1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Hoolaloop Text */
.hoolaloop-text {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color-1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Ambient Light Elements */
.light-sphere {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    opacity: 0.05;
    filter: blur(60px);
}

.light-sphere-1 {
    width: 300px;
    height: 300px;
    background: var(--accent-color-1);
    top: 10%;
    right: -50px;
    opacity: 0.15;
}

.light-sphere-2 {
    width: 400px;
    height: 400px;
    background: var(--accent-color-2);
    bottom: 20%;
    left: -100px;
    opacity: 0.15;
}

/* Animated Gradients */
@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.animated-gradient {
    background: linear-gradient(-45deg, var(--primary-color), var(--primary-hover), var(--accent-color-1), var(--accent-color-2));
    background-size: 400% 400%;
    animation: gradientAnimation 15s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Glass Card */
.glass-card {
    background: rgba(42, 32, 65, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(99, 102, 241, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.3);
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.75rem;
    }

    h2 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 2.5rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.25rem;
    }

    .nav-links {
        gap: 1rem;
    }
    
    .container {
        padding: 0 2rem;
    }
    
    .navbar {
        padding: 1.2rem 0;
    }

    .step, .benefit-card, .testimonial, .package-card {
        max-width: 100%;
    }

    .package-card.featured {
        transform: translateY(-5px);
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .legal-links {
        justify-content: center;
    }

    .gallery-item {
        width: 200px;
    }
    
    .video-container {
        aspect-ratio: 9 / 16;
        height: auto;
    }
    
    .video-caption h3 {
        font-size: 0.95rem;
    }
    
    .video-caption p {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.75rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .form-group {
        flex: 1 0 100%;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .mobile-active {
        padding: 1.5rem;
    }
    
    /* Improve gallery display on small screens */
    .gallery-grid {
        padding: 1rem 0.5rem;
        gap: 1rem;
        padding-left: calc(50% - 115px);
        padding-right: calc(50% - 115px);
    }
    
    .gallery-item {
        width: 230px;
    }
    
    .video-container {
        aspect-ratio: 9 / 16;
        height: auto;
    }
    
    .video-caption {
        padding: 0.75rem 0.5rem;
    }
    
    .video-caption h3 {
        font-size: 0.9rem;
        margin-bottom: 0.25rem;
    }
    
    .video-caption p {
        font-size: 0.75rem;
        line-height: 1.2;
    }
}

.price {
    font-size: 2rem;
    font-weight: 700;
    margin: 1rem 0 0.25rem;
    background: linear-gradient(90deg, var(--accent-color-1), var(--accent-color-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vat-note {
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--text-light);
    opacity: 0.7;
    margin: -0.25rem 0 1rem;
    text-align: center;
}

.package-card ul {
    text-align: left;
    margin: 1.5rem 0;
}

.package-card li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.75rem;
}

.package-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.last-minute-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 1.5rem;
    opacity: 0.8;
    font-style: italic;
}

/* Logo Styling */
.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(-45deg, var(--primary-color), var(--primary-hover), var(--accent-color-1), var(--accent-color-2));
    background-size: 400% 400%;
    animation: gradientAnimation 15s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    font-family: 'Inter', sans-serif;
    text-transform: lowercase;
    transition: transform 0.3s ease;
}

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

.footer-logo .logo-text {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

/* Removing old logo image styles */
.logo img {
    display: none;
}

.footer-logo img {
    display: none;
    margin-bottom: 1.5rem;
}

/* Add a subtle screen reflection effect */
.gallery-item .placeholder-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(120deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 20%, 
        rgba(255, 255, 255, 0) 60%);
    pointer-events: none;
    z-index: 2;
    border-radius: 23px; /* Slightly smaller than container */
}

/* Highlight effect for sections */
.highlight-section {
    animation: highlight-pulse 1.5s ease-out;
}

@keyframes highlight-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.4);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(99, 102, 241, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(99, 102, 241, 0);
    }
}

/* Hero Conversion Elements */
.hero-conversion {
    margin: 1.5rem auto;
    max-width: 800px;
}

.social-proof {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.rating, .clients-count {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.stars {
    color: #FFD700;
    letter-spacing: 2px;
    font-size: 1.2rem;
}

.rating-text, .clients-count span {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Preview Caption */
.preview-caption {
    text-align: center;
    margin-top: 0.75rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--accent-color-1);
    opacity: 0.9;
}

.preview-caption p {
    margin: 0;
}

/* Limited Time Offer */
.limited-offer {
    margin: 2rem auto;
    max-width: 700px;
    background: linear-gradient(135deg, rgba(249, 159, 177, 0.15), rgba(99, 102, 241, 0.15));
    border-radius: var(--border-radius);
    padding: 1rem 1.5rem;
    text-align: center;
    border: 1px dashed rgba(249, 159, 177, 0.4);
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.limited-offer p {
    margin: 0;
    font-weight: 500;
    color: var(--text-light);
    font-size: 0.95rem;
}

.offer-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--accent-color-1), var(--primary-color));
    color: white;
    font-weight: 600;
    font-size: 0.8rem;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

/* Media Queries for Mobile */
@media (max-width: 768px) {
    .social-proof {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem;
    }
    
    .preview-caption {
        display: block;
    }
    
    .limited-offer {
        margin: 1.5rem auto;
        padding: 1.25rem 1rem 1rem;
    }
    
    .limited-offer p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

@media (max-width: 576px) {
    .hero-conversion {
        margin: 1rem auto;
    }
    
    .social-proof {
        padding: 0.75rem;
    }
    
    .stars {
        font-size: 1rem;
    }
    
    .rating-text, .clients-count span {
        font-size: 0.8rem;
    }
    
    .limited-offer {
        margin: 1.25rem auto;
        padding: 1.25rem 0.75rem 0.75rem;
    }
    
    .offer-badge {
        font-size: 0.7rem;
        padding: 0.25rem 0.75rem;
        top: -10px;
    }
}

/* Pulsing Dot for Mobile */
.pulsing-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background-color: var(--accent-color-1);
    border-radius: 50%;
    z-index: 5;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        box-shadow: 0 0 0 0 rgba(249, 159, 177, 0.7);
    }
    70% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 0 15px rgba(249, 159, 177, 0);
    }
    100% {
        transform: translate(-50%, -50%) scale(0.8);
        box-shadow: 0 0 0 0 rgba(249, 159, 177, 0);
    }
}

/* Mobile Optimization */
@media (max-width: 576px) {
    /* ... existing styles ... */
    
    /* Make hero elements more compact and mobile-friendly */
    .hero {
        padding: 7rem 0 3rem;
    }
    
    .hero-subtitle {
        margin-bottom: 1.5rem;
    }
    
    /* Improve touch targets */
    .btn-primary, .btn-secondary {
        padding: 0.85rem 1.5rem;
        min-width: 180px;
    }
    
    /* Make preview more prominent */
    .hero-preview {
        margin: 2rem auto 1.5rem;
        max-width: 280px;
    }
    
    /* Improved spacing */
    .cta-buttons {
        margin-bottom: 2rem;
    }
}

/* Thank You Page Styling */
.thank-you-section, .error-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 1rem;
    position: relative;
    overflow: hidden;
}

.thank-you-content, .error-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.thank-you-message, .error-message {
    font-size: 1.2rem;
    color: var(--text-light);
    margin: 1.5rem 0;
}

.success-icon, .error-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto;
    font-size: 2.5rem;
    font-weight: bold;
}

.success-icon {
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.2), rgba(16, 185, 129, 0.2));
    color: rgb(16, 185, 129);
    border: 2px solid rgba(16, 185, 129, 0.3);
}

.error-icon {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(220, 38, 38, 0.2));
    color: rgb(239, 68, 68);
    border: 2px solid rgba(239, 68, 68, 0.3);
}

.redirect-notice {
    font-size: 0.9rem;
    color: var(--text-light);
    opacity: 0.7;
    margin: 2rem 0;
    font-style: italic;
}

.error-instructions {
    list-style-type: none;
    padding: 0;
    max-width: 450px;
    margin: 1.5rem auto;
    text-align: left;
}

.error-instructions li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.error-instructions li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.error-instructions a {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: underline;
}

.error-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

@media (max-width: 576px) {
    .thank-you-content, .error-content {
        padding: 2rem 1rem;
    }
    
    .error-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .success-icon, .error-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
        margin: 1.5rem auto;
    }
}

