/* Global Styles */
:root {
    --primary-color: #0056b3;
    --secondary-color: #2c3e50;
    --accent-color: #e74c3c;
    --light-bg: #f8f9fa;
    --dark-bg: #2c3e50;
    --text-color: #333;
    --light-text: #6c757d;
    --light-text: #666;
    --white: #ffffff;
    --whatsapp-color: #25D366;  /* WhatsApp brand color */
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
    background: var(--primary-color) !important;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    padding: 0;
    margin-right: 1rem;
}

.navbar-brand img {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1); /* This will make the white logo visible on dark background */
}

.navbar-light .navbar-nav .nav-link {
    color: var(--white);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--white);
    opacity: 0.8;
}

.navbar-light .navbar-toggler {
    border-color: var(--white);
}

.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.phone-number {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.phone-number:hover {
    color: var(--white);
    opacity: 0.8;
}

@media (max-width: 991.98px) {
    .navbar-brand img {
        height: 35px;
    }
    
    .navbar-collapse {
        background: var(--primary-color);
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, rgba(0, 160, 220, 0.1) 0%, rgba(44, 62, 80, 0.1) 100%);
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: none;
}

.hero-slide.active {
    opacity: 1;
    display: block;
    position: relative;
}

.hero-content {
    padding: 2rem 0;
}

.hero-content .badge {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    font-weight: 500;
    background-color: rgba(0, 160, 220, 0.1);
    border: 1px solid rgba(0, 160, 220, 0.2);
    color: var(--primary-color);
}

.hero-content h1 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 3rem;
    line-height: 1.2;
}

.hero-content .lead {
    color: var(--light-text);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.hero-image {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.hero-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.hero-slide:hover .hero-image img {
    transform: scale(1.05);
}

.hero-slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    pointer-events: none;
}

.hero-slider-controls button {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-slider-controls button:hover {
    background: var(--white);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-slider-controls button i {
    font-size: 1.25rem;
    color: var(--primary-color);
}

.hero-slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.hero-slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-slider-dots .dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

@media (max-width: 991.98px) {
    .hero-section {
        padding: 6rem 0 3rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-slider-controls {
        padding: 0 1rem;
    }
    
    .hero-slider-controls button {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 5rem 0 2rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content .lead {
        font-size: 1.1rem;
    }
    
    .hero-slider-controls button {
        width: 35px;
        height: 35px;
    }
    
    .hero-slider-controls button i {
        font-size: 1rem;
    }
    
    .hero-slider-dots {
        bottom: 1rem;
    }
    
    .hero-slider-dots .dot {
        width: 10px;
        height: 10px;
    }
}

/* Search Section */
.search-box {
    transition: transform 0.3s ease;
}

.search-box:hover {
    transform: translateY(-5px);
}

/* Cards */
.card {
    transition: all 0.3s ease;
    overflow: hidden;
    border-radius: 15px;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.card-img-top {
    height: 250px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.card:hover .card-img-top {
    transform: scale(1.1);
}

.card-body {
    padding: 1.5rem;
    background: var(--white);
}

.card-title {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.card-text {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #0088c0;
    border-color: #0088c0;
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Section Styles */
.section-title {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

/* Form Styles */
.form-control, .form-select {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 160, 220, 0.25);
}

.form-label {
    font-weight: 500;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

/* About Section */
.about-section {
    background-color: var(--light-bg);
}

.about-section img {
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact-section {
    background-color: var(--white);
}

.contact-card {
    transition: all 0.3s ease;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card h4 {
    color: var(--secondary-color);
    font-weight: 600;
}

.contact-card h5 {
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 500;
}

.contact-card p {
    color: var(--light-text);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.contact-card i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 40px;
    text-align: center;
}

.map-section {
    background: var(--light-bg);
}

.map-info {
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-info h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.map-info h5 {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.map-info p {
    color: var(--light-text);
    margin-bottom: 0.5rem;
}

.map-info a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.map-info a:hover {
    color: var(--secondary-color);
}

.map-container {
    height: 100%;
    min-height: 450px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    border-radius: 15px;
}

@media (max-width: 991.98px) {
    .map-info {
        margin-bottom: 2rem;
    }
    
    .map-container {
        min-height: 350px;
    }
}

/* Footer */
.footer {
    background-color: var(--dark-bg);
}

.footer h5 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer p {
    color: rgba(255, 255, 255, 0.8);
}

.footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: var(--primary-color);
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0088c0;
}

/* WhatsApp Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    background-color: var(--whatsapp-color);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
    color: var(--white);
}

.whatsapp-button i {
    font-size: 24px;
    margin-right: 8px;
}

.whatsapp-button span {
    display: none;
}

.whatsapp-button .phone-number {
    display: none;
    margin-left: 8px;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Phone Call Widget */
.phone-widget {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 1000;
}

.phone-button {
    display: flex;
    align-items: center;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 160, 220, 0.3);
    transition: all 0.3s ease;
}

.phone-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 160, 220, 0.4);
    color: var(--white);
}

.phone-button i {
    font-size: 24px;
    margin-right: 8px;
}

.phone-button span {
    display: none;
}

.phone-button .phone-number {
    display: none;
    margin-left: 8px;
    font-size: 0.9rem;
    opacity: 0.9;
}

@media (min-width: 768px) {
    .whatsapp-button span,
    .phone-button span {
        display: inline;
    }
    
    .whatsapp-button .phone-number,
    .phone-button .phone-number {
        display: inline;
    }
}

@media (max-width: 767.98px) {
    .whatsapp-button,
    .phone-button {
        padding: 12px;
    }
    
    .whatsapp-button i,
    .phone-button i {
        margin-right: 0;
    }
    
    .whatsapp-widget {
        bottom: 20px;
    }
    
    .phone-widget {
        bottom: 70px;
    }
}

/* Header Call-to-Action Button */
.navbar .btn-primary {
    padding: 8px 16px;
    font-size: 0.9rem;
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.navbar .btn-primary:hover {
    background-color: #c0392b;
    border-color: #c0392b;
}

@media (max-width: 991.98px) {
    .navbar .btn-primary {
        margin-top: 10px;
        width: 100%;
        justify-content: center;
    }
    
    .phone-number {
        display: none;
    }
}

/* Form Select Styles */
.form-select {
    background-color: var(--white);
    cursor: pointer;
    padding: 1rem 0.75rem;
    padding-right: 2.5rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 0.95rem;
    color: var(--text-color);
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
}

.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 160, 220, 0.25);
    outline: none;
}

.form-select:hover {
    border-color: var(--primary-color);
}

.form-select option {
    padding: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-color);
    background-color: var(--white);
}

.form-select optgroup {
    font-weight: 600;
    color: var(--secondary-color);
    background-color: var(--light-bg);
    padding: 0.5rem;
}

.form-select option:checked {
    background-color: var(--primary-color);
    color: var(--white);
}

.form-floating {
    position: relative;
    margin-bottom: 1rem;
}

.form-floating > .form-select {
    height: calc(3.5rem + 2px);
    padding: 1rem 0.75rem;
    border-radius: 10px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.form-floating > .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 160, 220, 0.25);
}

.form-floating > .form-select:not(:focus) {
    border-color: #ddd;
}

.form-floating > label {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    padding: 1rem 0.75rem;
    overflow: hidden;
    text-align: start;
    text-overflow: ellipsis;
    white-space: nowrap;
    pointer-events: none;
    border: 1px solid transparent;
    transform-origin: 0 0;
    transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
    color: var(--light-text);
    z-index: 1;
}

.form-floating > .form-select:focus ~ label,
.form-floating > .form-select:not(:placeholder-shown) ~ label {
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
    color: var(--primary-color);
    background-color: var(--white);
    padding: 0 0.5rem;
}

.form-floating > .form-select:focus ~ label {
    color: var(--primary-color);
}

.form-floating > .form-select:not(:placeholder-shown) ~ label {
    color: var(--light-text);
}

/* Fix for dropdown options overlapping */
.form-select option,
.form-select optgroup {
    padding: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.5;
    background-color: var(--white);
    color: var(--text-color);
}

.form-select optgroup {
    font-weight: 600;
    color: var(--secondary-color);
    background-color: var(--light-bg);
    padding: 0.5rem;
}

.form-select option:checked {
    background-color: var(--primary-color);
    color: var(--white);
}

@media (max-width: 767.98px) {
    .form-floating > .form-select {
        height: calc(3rem + 2px);
        font-size: 0.95rem;
    }
    
    .form-select option {
        padding: 0.5rem;
    }
    
    .form-floating > label {
        padding: 0.75rem 0.75rem;
    }
}

/* Popular Tests Section */
.popular-tests {
    background-color: var(--light-bg);
}

.popular-tests .card {
    background: var(--white);
}

.popular-tests .card-title {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-top: 1rem;
}

.popular-tests .card-text {
    color: var(--light-text);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 767.98px) {
    .card-img-top {
        height: 200px;
    }
}

/* Schedule Your Test Section */
.schedule-section {
    background-color: var(--light-bg);
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

.schedule-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 160, 220, 0.1) 0%, rgba(44, 62, 80, 0.1) 100%);
    z-index: 1;
}

.schedule-card {
    position: relative;
    z-index: 2;
    border-radius: 20px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.schedule-image {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.schedule-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: brightness(0.9);
}

.schedule-card:hover .schedule-image img {
    transform: scale(1.05);
}

.schedule-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.schedule-features {
    text-align: center;
    color: var(--white);
    width: 100%;
}

.feature-item {
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(0, 0, 0, 0.7);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.feature-item i {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.feature-item h5 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.feature-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.schedule-header {
    text-align: left;
    margin-bottom: 2rem;
}

.schedule-header .badge {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    font-weight: 500;
    background-color: rgba(0, 160, 220, 0.1);
    border: 1px solid rgba(0, 160, 220, 0.2);
}

.schedule-header h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.schedule-header p {
    color: var(--light-text);
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* Form Styles */
.form-floating {
    position: relative;
    margin-bottom: 1rem;
}

.form-floating > .form-control,
.form-floating > .form-select {
    height: calc(3.5rem + 2px);
    padding: 1rem 0.75rem;
    border-radius: 10px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    background-color: var(--white);
}

.form-floating > .form-control:focus,
.form-floating > .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 160, 220, 0.25);
}

.form-floating > label {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    padding: 1rem 0.75rem;
    overflow: hidden;
    text-align: start;
    text-overflow: ellipsis;
    white-space: nowrap;
    pointer-events: none;
    border: 1px solid transparent;
    transform-origin: 0 0;
    transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
    color: var(--light-text);
    z-index: 1;
}

.form-floating > label i {
    color: var(--primary-color);
    opacity: 0.7;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select:focus ~ label,
.form-floating > .form-select:not(:placeholder-shown) ~ label {
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
    color: var(--primary-color);
    background-color: var(--white);
    padding: 0 0.5rem;
}

.form-check {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-label {
    color: var(--light-text);
    font-size: 0.95rem;
}

.form-check-label a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.form-check-label a:hover {
    text-decoration: underline;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 160, 220, 0.2);
}

.btn-primary:hover {
    background-color: #0088c0;
    border-color: #0088c0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 160, 220, 0.3);
}

@media (max-width: 991.98px) {
    .schedule-card {
        border-radius: 15px;
    }
    
    .schedule-header h3 {
        font-size: 1.75rem;
    }
    
    .schedule-image {
        height: 400px;
    }
    
    .feature-item {
        padding: 1rem;
    }
    
    .feature-item i {
        font-size: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .schedule-section {
        padding: 3rem 0;
    }
    
    .schedule-card {
        border-radius: 10px;
    }
    
    .schedule-header h3 {
        font-size: 1.5rem;
    }
    
    .schedule-header p {
        font-size: 1rem;
    }
    
    .form-floating > .form-control,
    .form-floating > .form-select {
        height: calc(3rem + 2px);
    }
    
    .schedule-image {
        height: 300px;
    }
    
    .btn-primary {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .feature-item {
        margin-bottom: 1rem;
        padding: 0.75rem;
    }
    
    .feature-item h5 {
        font-size: 1rem;
    }
    
    .feature-item p {
        font-size: 0.85rem;
    }
    
    .form-check {
        padding-left: 1.5rem;
    }
} 