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

html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    background-color: #000;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 100vh;
    font-family: 'Roboto Condensed', sans-serif;
}

@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;700&display=swap');

.image-only-container {
    width: 100%;
    margin: 0;
    text-align: center;
}

.full-page-img {
    width: 100%;
    height: auto;
    display: block;
}

/* CTA Banner Styles */
.cta-banner {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: linear-gradient(90deg, #1a237e 0%, #1a237e 30%, #ffd600 70%, #ffd600 100%);
    padding: 20px 5%;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}

/* Smoother transition between blue and yellow */
.cta-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 40% 50%, rgba(26, 35, 126, 0.8) 0%, transparent 60%);
    pointer-events: none;
}

.cta-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    z-index: 1;
}

.learn-more {
    display: flex;
    align-items: center;
    gap: 15px;
}

.play-circle {
    width: 50px;
    height: 50px;
    background-color: #ffd600;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
}

.play-circle svg {
    width: 30px;
    height: 30px;
    margin-left: 5px;
}

.learn-more-text {
    color: #ffd600;
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
}

.watch-video-btn {
    background-color: #1a1a1a;
    color: #fff;
    border: 2px solid #ffd600;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

.youtube-icon {
    width: 24px;
    height: 24px;
}

.cta-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 1;
}

.cta-text-top {
    color: #000;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.cta-text-bold {
    color: #000;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.book-appointment-btn {
    background: linear-gradient(180deg, #ffeb3b 0%, #ffd600 100%);
    color: #000;
    border: 2px solid #b7950b;
    border-radius: 12px;
    padding: 12px 40px;
    font-size: 28px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: inset 0 2px 4px rgba(255,255,255,0.5), 0 4px 8px rgba(0,0,0,0.4);
    transition: transform 0.2s;
}

.book-appointment-btn:hover {
    transform: scale(1.02);
}

/* Video Modal Styles */
.video-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    background-color: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(255, 214, 0, 0.3);
    border: 1px solid rgba(255, 214, 0, 0.2);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #fff;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1010;
    text-shadow: 0 0 10px rgba(0,0,0,0.8);
    transition: color 0.3s;
}

.close-modal:hover {
    color: #ffd600;
}

video {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    display: block;
    outline: none;
}

@media (max-width: 768px) {
    .cta-banner {
        flex-direction: column;
        gap: 30px;
        background: #ffd600; /* Simplify for mobile */
    }
    
    .cta-left {
        align-items: center;
    }
    
    .learn-more-text {
        font-size: 24px;
    }
    
    .cta-text-bold {
        font-size: 24px;
    }
    
    .book-appointment-btn {
        font-size: 20px;
        padding: 10px 20px;
    }
}

/* Booking Page Styles */
.booking-page {
    background-color: #f4f4f4;
    color: #333;
}

.booking-header {
    background-color: #1a237e;
    color: #fff;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.booking-header h1 {
    font-size: 24px;
    margin: 0;
}

.back-link {
    color: #ffd600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
}

.back-link svg {
    width: 20px;
    height: 20px;
}

.booking-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
    width: 100%;
}

.appointment-form {
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-section {
    margin-bottom: 40px;
}

.form-section h2 {
    color: #1a237e;
    border-bottom: 2px solid #ffd600;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 20px;
}

.input-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.input-group.full-width {
    grid-column: span 2;
}

.input-group label {
    font-weight: 700;
    font-size: 14px;
    color: #666;
}

.input-group input, 
.input-group select, 
.input-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    font-size: 16px;
}

.input-group textarea {
    min-height: 100px;
    resize: vertical;
}

.calendar-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.submit-appointment-btn {
    width: 100%;
    background: linear-gradient(180deg, #1a237e 0%, #0d1440 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 15px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-appointment-btn:hover {
    background: #ffd600;
    color: #000;
}

.booking-footer {
    text-align: center;
    padding: 40px 20px;
    color: #666;
    font-size: 14px;
}

@media (max-width: 600px) {
    .input-grid, .calendar-wrapper {
        grid-template-columns: 1fr;
    }
    .input-group.full-width {
        grid-column: span 1;
    }
    .booking-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}
