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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    color: white;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
}

.hero {
    margin-bottom: 4rem;
    padding-top: 1rem;
}

.logo-container {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-logo {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.4));
    transition: all 0.3s ease;
}

.main-logo:hover {
    filter: drop-shadow(0 12px 35px rgba(0, 0, 0, 0.6));
    transform: translateY(-2px);
}

.subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    color: #FFD700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 0.5rem;
}

.vsl-section {
    margin-bottom: 2rem;
}

.vsl-video-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    margin: 0 auto;
    max-width: 800px;
    position: relative;
    transition: all 0.3s ease;
}

.video-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.video-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #FFD700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    margin: 0;
}

.vsl-video-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.vsl-video {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.vsl-video:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.cta-section {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.ai-call-button {
    background: linear-gradient(45deg, #4CAF50, #45a049);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

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

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

.ai-call-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.5);
    background: linear-gradient(45deg, #45a049, #4CAF50);
}

.ai-call-button:active {
    transform: translateY(0);
}

.cta-button {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    font-family: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.button-main-text {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.2;
}

.button-subtext {
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.8;
    line-height: 1.2;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.3);
}

.cta-button:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .main-logo {
        max-width: 200px;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .vsl-video-container {
        padding: 1.5rem;
        max-width: 100%;
    }
    
    .vsl-video {
        height: 300px;
    }
    
    .video-header h3 {
        font-size: 1.2rem;
    }
    
    .ai-call-button {
        padding: 0.8rem 2rem;
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .button-main-text {
        font-size: 1.1rem;
    }
    
    .button-subtext {
        font-size: 0.8rem;
    }
    
    .vsl-video {
        height: 250px;
    }
}

/* Lead Form Modal Styles */
.lead-form-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

.lead-form-content {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 90vw;
    max-height: 90vh;
    width: 600px;
    overflow: hidden;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.lead-form-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lead-form-header h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
}

.close-form-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.close-form-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.lead-form-body {
    padding: 0;
    overflow: hidden;
}

.lead-form {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
    text-align: left;
}

.form-group input {
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s ease;
    background: white;
}

.form-group input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group input:invalid {
    border-color: #ef4444;
}

.submit-lead-btn {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 16px 24px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.submit-lead-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.submit-lead-btn:active:not(:disabled) {
    transform: translateY(0);
}

.submit-lead-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-text {
    font-size: 1.1rem;
    font-weight: 600;
}

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

/* Mobile Responsive for Lead Form */
@media (max-width: 768px) {
    .lead-form-content {
        width: 95vw;
        max-height: 95vh;
    }
    
    .lead-form-header {
        padding: 16px;
    }
    
    .lead-form-header h3 {
        font-size: 1.2rem;
    }
    
    .close-form-btn {
        width: 28px;
        height: 28px;
        font-size: 18px;
    }
    
    .lead-form {
        padding: 20px;
        gap: 16px;
    }
}

/* Booking Modal Styles */
.booking-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 10001;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    touch-action: manipulation;
    -webkit-overflow-scrolling: touch;
}

.booking-modal-content {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 95vw;
    max-height: 95vh;
    width: 800px;
    overflow: hidden;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
    touch-action: manipulation;
}

.booking-modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.booking-modal-header h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
}

.close-booking-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.close-booking-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.booking-modal-body {
    padding: 0;
    overflow: auto;
    min-height: 600px;
    max-height: 80vh;
}

.booking-modal-body iframe {
    width: 100%;
    height: 600px;
    border: none;
    overflow: auto;
    pointer-events: auto;
    touch-action: manipulation;
    -webkit-overflow-scrolling: touch;
}

/* Mobile Responsive for Booking Modal */
@media (max-width: 768px) {
    .booking-modal-content {
        width: 95vw;
        max-height: 95vh;
    }
    
    .booking-modal-header {
        padding: 16px;
    }
    
    .booking-modal-header h3 {
        font-size: 1.2rem;
    }
    
    .close-booking-btn {
        width: 28px;
        height: 28px;
        font-size: 18px;
    }
    
    .booking-modal-body {
        min-height: 500px;
        max-height: 70vh;
    }
    
    .booking-modal-body iframe {
        height: 500px;
        pointer-events: auto;
        touch-action: manipulation;
        -webkit-overflow-scrolling: touch;
    }
    
    .form-group input {
        padding: 10px 14px;
        font-size: 0.9rem;
    }
    
    .submit-lead-btn {
        padding: 14px 20px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .lead-form-content {
        width: 98vw;
        border-radius: 15px;
    }
    
    .lead-form-header {
        padding: 14px;
    }
    
    .lead-form-header h3 {
        font-size: 1.1rem;
    }
    
    .lead-form {
        padding: 16px;
        gap: 14px;
    }
    
    .form-group input {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    .submit-lead-btn {
        padding: 12px 18px;
        font-size: 0.9rem;
    }
} 