/*
 * Csendes Társka Budapest - Style Sheet
 * Modern silent disco rental website for Hungarian youth market (18-35)
 * Color Palette: Electric Indigo, Hot Magenta, Lime Pulse, Midnight Navy
 */

/* ========================================
   CSS Reset & Base Styles
   ======================================== */

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

:root {
    /* Color Palette */
    --primary: #6C63FF;          /* Electric Indigo */
    --accent: #FF3FA4;           /* Hot Magenta */
    --cta: #C9FF2F;              /* Lime Pulse */
    --bg: #12142B;               /* Midnight Navy */
    --text: #F9F9FB;             /* Soft White */

    /* Shades & Variations */
    --primary-light: #8B84FF;
    --primary-dark: #4D45E0;
    --accent-light: #FF6BC0;
    --accent-dark: #E0358A;
    --bg-light: #1A1D3F;
    --bg-lighter: #242854;
    --text-gray: #B8B9C5;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    --gradient-cta: linear-gradient(135deg, var(--cta) 0%, #A8D924 100%);
    --gradient-bg: linear-gradient(180deg, var(--bg) 0%, var(--bg-light) 100%);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;

    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 40px rgba(108, 99, 255, 0.5);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

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

/* ========================================
   Typography
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: var(--space-md);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: var(--space-md);
    color: var(--text-gray);
}

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

a:hover {
    color: var(--accent-light);
}

/* Gradient Text */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* ========================================
   Container & Layout
   ======================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ========================================
   Navigation
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(18, 20, 43, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(108, 99, 255, 0.2);
    padding: var(--space-sm) 0;
    transition: var(--transition-base);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
}

.nav-brand i {
    color: var(--primary);
    font-size: 2rem;
}

.brand-name {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-location {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-gray);
    display: block;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-link {
    color: var(--text-gray);
    font-weight: 600;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-base);
}

.nav-link:hover {
    color: var(--text);
}

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

.nav-cta {
    background: var(--primary);
    color: var(--text);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-weight: 700;
    transition: var(--transition-fast);
}

.nav-cta:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108, 99, 255, 0.4);
}

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

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

/* ========================================
   Buttons
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-lg);
    border: none;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-base);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-cta);
    color: var(--bg);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(201, 255, 47, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(108, 99, 255, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--text);
}

.btn-lg {
    padding: var(--space-md) var(--space-xl);
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Pulse Animation for CTA */
.pulse-effect {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(201, 255, 47, 0.7);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(201, 255, 47, 0);
    }
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
}

.hero-bg-effect {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(108, 99, 255, 0.2) 0%, transparent 70%);
    filter: blur(60px);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-50px, 50px); }
}

.hero .container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    background: rgba(108, 99, 255, 0.2);
    border: 1px solid var(--primary);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: var(--space-lg);
}

.hero-title {
    margin-bottom: var(--space-md);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: var(--space-xl);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.hero-stats {
    display: flex;
    gap: var(--space-2xl);
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 600;
}

.hero-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text);
    box-shadow: var(--shadow-md);
    animation: float-icon 3s ease-in-out infinite;
}

.icon-1 {
    top: 10%;
    left: -30px;
    animation-delay: 0s;
}

.icon-2 {
    top: 50%;
    right: -30px;
    animation-delay: 1s;
}

.icon-3 {
    bottom: 10%;
    left: -20px;
    animation-delay: 2s;
}

@keyframes float-icon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* ========================================
   Trust Badges
   ======================================== */

.trust-badges {
    padding: var(--space-xl) 0;
    background: var(--bg-light);
    border-top: 1px solid rgba(108, 99, 255, 0.1);
    border-bottom: 1px solid rgba(108, 99, 255, 0.1);
}

.badges-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-lg);
}

.badge {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 600;
    color: var(--text-gray);
}

.badge i {
    font-size: 1.5rem;
    color: var(--primary);
}

/* ========================================
   Section Headers
   ======================================== */

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-badge {
    display: inline-block;
    background: rgba(108, 99, 255, 0.2);
    border: 1px solid var(--primary);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-md);
}

.section-header h2 {
    margin-bottom: var(--space-md);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   How It Works Section
   ======================================== */

.how-it-works {
    padding: var(--space-3xl) 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

.step-card {
    background: var(--bg-light);
    border: 1px solid rgba(108, 99, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    position: relative;
    transition: var(--transition-base);
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 12px 40px rgba(108, 99, 255, 0.3);
}

.step-number {
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(108, 99, 255, 0.15);
    line-height: 1;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text);
    margin-bottom: var(--space-md);
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.step-card p {
    color: var(--text-gray);
    margin-bottom: var(--space-md);
}

.step-highlight {
    display: inline-block;
    background: rgba(201, 255, 47, 0.2);
    color: var(--cta);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 700;
}

.process-video {
    text-align: center;
}

.video-placeholder {
    background: var(--bg-light);
    border: 2px dashed rgba(108, 99, 255, 0.3);
    border-radius: var(--radius-lg);
    padding: var(--space-3xl);
    cursor: pointer;
    transition: var(--transition-base);
}

.video-placeholder:hover {
    border-color: var(--primary);
    background: rgba(108, 99, 255, 0.05);
}

.video-placeholder i {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: var(--space-md);
}

.video-placeholder p {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin: 0;
}

/* ========================================
   Benefits Section
   ======================================== */

.benefits {
    padding: var(--space-3xl) 0;
    background: var(--bg-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.benefit-card {
    background: var(--bg);
    border: 1px solid rgba(108, 99, 255, 0.2);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    text-align: center;
    transition: var(--transition-base);
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(108, 99, 255, 0.2);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: rgba(108, 99, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    font-size: 2rem;
    color: var(--primary);
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.benefit-card p {
    color: var(--text-gray);
    margin: 0;
}

/* ========================================
   Pricing Section
   ======================================== */

.pricing {
    padding: var(--space-3xl) 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.pricing-card {
    background: var(--bg-light);
    border: 2px solid rgba(108, 99, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    position: relative;
    transition: var(--transition-base);
}

/* Make pricing cards stretch so CTAs align at the bottom */
.pricing-card {
    display: flex;
    flex-direction: column;
}

.pricing-card-bottom {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.pricing-card-bottom .btn {
    margin: 0; /* keep buttons compact */
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 12px 40px rgba(108, 99, 255, 0.3);
}

.pricing-card.popular {
    border-color: var(--accent);
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(255, 63, 164, 0.3);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--text);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 700;
    white-space: nowrap;
}

.pricing-header h3 {
    font-size: 2rem;
    margin-bottom: var(--space-xs);
}

.pricing-desc {
    color: var(--text-gray);
    margin-bottom: var(--space-lg);
}

.pricing-price {
    margin-bottom: var(--space-xl);
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-gray);
}

.price-period {
    display: block;
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-top: var(--space-xs);
}

.pricing-features {
    list-style: none;
    margin-bottom: var(--space-xl);
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid rgba(108, 99, 255, 0.1);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--primary);
    font-size: 1.125rem;
}

.pricing-features li.disabled {
    opacity: 0.4;
}

.pricing-features li.disabled i {
    color: var(--text-gray);
}

.pricing-tag {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg);
    border: 1px solid rgba(108, 99, 255, 0.3);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-gray);
    white-space: nowrap;
}

.pricing-note {
    background: rgba(108, 99, 255, 0.1);
    border: 1px solid rgba(108, 99, 255, 0.2);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
}

.pricing-note i {
    color: var(--primary);
    font-size: 1.5rem;
}

.pricing-note p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--text-gray);
}

/* ========================================
   Testimonials Section
   ======================================== */

.testimonials {
    padding: var(--space-3xl) 0;
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

.testimonial-card {
    background: var(--bg);
    border: 1px solid rgba(108, 99, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: var(--transition-base);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(108, 99, 255, 0.2);
}

.testimonial-rating {
    display: flex;
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
}

.testimonial-rating i {
    color: var(--cta);
    font-size: 1.125rem;
}

.testimonial-text {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-weight: 700;
    color: var(--text);
    margin-bottom: 2px;
}

.author-location {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.social-proof {
    display: flex;
    justify-content: center;
    gap: var(--space-3xl);
    flex-wrap: wrap;
}

.social-stat {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.social-stat i {
    font-size: 2.5rem;
    color: var(--primary);
}

.social-stat strong {
    display: block;
    font-size: 1.5rem;
    color: var(--text);
    margin-bottom: 2px;
}

.social-stat span {
    font-size: 0.875rem;
    color: var(--text-gray);
}

/* ========================================
   FAQ Section
   ======================================== */

.faq {
    padding: var(--space-3xl) 0;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-light);
    border: 1px solid rgba(108, 99, 255, 0.2);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    overflow: hidden;
    transition: var(--transition-base);
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg);
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.125rem;
    margin: 0;
    color: var(--text);
}

.faq-question i {
    color: var(--primary);
    transition: var(--transition-fast);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 var(--space-lg) var(--space-lg);
    margin: 0;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ========================================
   Booking Section
   ======================================== */

.booking {
    padding: var(--space-3xl) 0;
    background: var(--bg-light);
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-3xl);
    background: var(--bg);
    border: 1px solid rgba(108, 99, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-3xl);
}

.booking-info h2 {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.booking-subtitle {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: var(--space-xl);
}

.booking-benefits {
    margin-bottom: var(--space-2xl);
}

.booking-benefit {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.booking-benefit i {
    color: var(--primary);
    font-size: 1.25rem;
}

.booking-benefit span {
    color: var(--text-gray);
}

.contact-options h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    background: var(--bg-light);
    border: 1px solid rgba(108, 99, 255, 0.2);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    margin-bottom: var(--space-md);
    transition: var(--transition-base);
}

.contact-btn:hover {
    border-color: var(--primary);
    transform: translateX(5px);
}

.contact-btn i {
    font-size: 1.5rem;
    color: var(--primary);
}

.contact-btn.whatsapp i {
    color: #25D366;
}

.contact-btn strong {
    display: block;
    color: var(--text);
    margin-bottom: 2px;
}

.contact-btn span {
    display: block;
    font-size: 0.875rem;
    color: var(--text-gray);
}

/* Form Styles */
.booking-form {
    background: var(--bg-light);
    border: 1px solid rgba(108, 99, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text);
    margin-bottom: var(--space-xs);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--space-md);
    background: var(--bg);
    border: 1px solid rgba(108, 99, 255, 0.2);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.1);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.checkbox-label span {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.form-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-top: var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
}

.form-note i {
    color: var(--primary);
}

.form-success {
    text-align: center;
    padding: var(--space-3xl);
}

.form-success i {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: var(--space-md);
}

.form-success h3 {
    font-size: 2rem;
    margin-bottom: var(--space-md);
}

.form-success p {
    color: var(--text-gray);
}

/* ========================================
   Footer
   ======================================== */

.footer {
    background: var(--bg-light);
    border-top: 1px solid rgba(108, 99, 255, 0.2);
    padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-2xl);
}

.footer-brand .brand-logo {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: var(--space-md);
}

.footer-brand i {
    color: var(--primary);
    font-size: 2rem;
}

.footer-brand p {
    color: var(--text-gray);
    margin-bottom: var(--space-md);
}

.social-links {
    display: flex;
    gap: var(--space-md);
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(108, 99, 255, 0.1);
    border: 1px solid rgba(108, 99, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition-fast);
}

.social-links a:hover {
    background: var(--primary);
    color: var(--text);
    transform: translateY(-3px);
}

.footer-links h4 {
    font-size: 1.125rem;
    margin-bottom: var(--space-md);
    color: var(--text);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: var(--text-gray);
    transition: var(--transition-fast);
}

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

.footer-contact h4 {
    font-size: 1.125rem;
    margin-bottom: var(--space-md);
    color: var(--text);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.contact-item i {
    color: var(--primary);
    width: 20px;
}

.contact-item a {
    color: var(--text-gray);
    transition: var(--transition-fast);
}

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

.contact-item span {
    color: var(--text-gray);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(108, 99, 255, 0.1);
}

.footer-bottom p {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: var(--space-xs);
}

/* ========================================
   Floating Elements
   ======================================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #20B358 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--text);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-base);
    animation: pulse-whatsapp 2s infinite;
}

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

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8), 0 0 0 10px rgba(37, 211, 102, 0);
    }
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--text);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-light);
    transform: translateY(-5px);
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .booking-wrapper {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg);
        flex-direction: column;
        padding: var(--space-lg);
        gap: var(--space-md);
        transform: translateX(-100%);
        transition: var(--transition-base);
        border-top: 1px solid rgba(108, 99, 255, 0.2);
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-toggle {
        display: flex;
    }

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

    /* Reduce heavy animations and pulse on mobile to improve loading/performance */
    .hero-bg-effect,
    .floating-icon,
    .pulse-effect,
    .step-card:hover,
    .pricing-card:hover {
        animation: none !important;
        transform: none !important;
        box-shadow: none !important;
    }

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

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

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

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

    .back-to-top {
        bottom: 20px;
        left: 20px;
    }

    /* Booking section tweaks for small screens */
    .booking-wrapper {
        grid-template-columns: 1fr;
        gap: var(--space-md);
        padding: var(--space-lg);
    }

    .booking-info,
    .booking-form {
        width: 100%;
        padding: 0;
        margin: 0;
    }

    /* Make contact buttons full width and stacked */
    .contact-btn {
        width: 100%;
        justify-content: flex-start;
    }

    /* Ensure form elements are comfortable on small screens */
    .booking-form {
        padding: var(--space-md);
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.75rem;
        font-size: 0.95rem;
    }

    /* Ensure submit button is full width and aligned */
    .booking-form .btn-block,
    .booking-form .btn {
        width: 100%;
    }

    /* Checkbox label - wrap nicely */
    .checkbox-label {
        align-items: flex-start;
        gap: var(--space-sm);
    }

    /* Reduce large statures that may push layout */
    .booking-info h2 { font-size: 1.75rem; }
    .booking-subtitle { font-size: 1rem; }
}

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

    h2 {
        font-size: 1.75rem;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn-lg {
        padding: var(--space-sm) var(--space-lg);
        font-size: 1rem;
    }

    .price-amount {
        font-size: 2.5rem;
    }

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

/* ========================================
   Utility Classes
   ======================================== */

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

.mt-lg {
    margin-top: var(--space-lg);
}

.mb-lg {
    margin-bottom: var(--space-lg);
}

.hidden {
    display: none;
}

/* Print Styles */
@media print {
    .navbar,
    .whatsapp-float,
    .back-to-top {
        display: none;
    }
}