/* ===== HOME PAGE SPECIFIC STYLES ===== */
/* This file contains styles that are ONLY used on the homepage (index.html) */

/* ===== HERO SECTION (Homepage) ===== */
.hero-section {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 25%, #1e40af 50%, #1e3a8a 75%, #1e3a8a 100%);
    color: white;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(245, 158, 11, 0.1) 0%, transparent 50%, rgba(245, 158, 11, 0.05) 100%);
    opacity: 0.8;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    height: 100%;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    text-align: left;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
    text-align: left;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.hero-buttons .btn {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
    text-decoration: none;
    min-width: 180px;
    text-align: center;
    justify-content: center;
}

.hero-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Hero Video Styles */
.hero-video {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-video video {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.image-placeholder {
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.image-placeholder.instructor {
    width: 300px;
    height: 300px;
    font-size: 6rem;
}

.image-placeholder.instructor-large {
    width: 500px;
    height: 500px;
    font-size: 10rem;
}



/* ===== BOOTSTRAP CAROUSEL SLIDESHOW ===== */
.slideshow-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.slideshow-container .carousel {
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.slideshow-container .carousel-inner {
    border-radius: 0.75rem;
}

.slideshow-container .carousel-item {
    height: 400px;
}

.slideshow-container .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.75rem;
}

/* Carousel Indicators */
.slideshow-container .carousel-indicators {
    bottom: 10px;
    gap: 6px;
}

.slideshow-container .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.slideshow-container .carousel-indicators button:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

.slideshow-container .carousel-indicators button.active {
    background-color: #fff;
    border-color: #fff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Carousel Controls */
.slideshow-container .carousel-control-prev,
.slideshow-container .carousel-control-next {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 10px;
}

.slideshow-container .carousel-control-prev:hover,
.slideshow-container .carousel-control-next:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

.slideshow-container .carousel-control-prev-icon,
.slideshow-container .carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

/* ===== ABOUT INSTRUCTOR SECTION (Homepage) ===== */
.about-instructor,
.about-steven {
    padding: 5rem 0;
    background: var(--bg-white);
}

.about-instructor {
    background: var(--bg-light);
}

.about-content h2 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.about-content .lead {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.experience-timeline {
    margin-top: 2rem;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.timeline-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
}

.timeline-content h4 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-content h5 {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.steven-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* ===== PACKAGES OVERVIEW SECTION (Homepage) ===== */
.packages-overview {
    padding: 5rem 0;
    background: var(--bg-white);
}

.package-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    padding: 2rem;
    height: 100%;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.package-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
}

.package-card.featured .badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

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

.package-header h3 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.package-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.package-content li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 1.5rem;
}

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

.package-content .btn {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: none;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    text-decoration: none;
}

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

.package-content .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3), 0 0 20px rgba(37, 99, 235, 0.2);
    color: white;
    text-decoration: none;
}

.package-content .btn:hover::before {
    left: 100%;
}

/* Special styling for Super Pakket button */
.package-card.featured .package-content .btn {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
}

.package-card.featured .package-content .btn:hover {
    background: linear-gradient(135deg, #34d399, #10b981);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.4), 0 0 25px rgba(16, 185, 129, 0.3);
}

.package-card.featured .package-content .btn::before {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

/* ===== SERVICE AREA SECTION (Homepage) ===== */
.service-area-section {
    padding: 3rem 0;
    background: var(--bg-light);
    border-bottom-right-radius: 50px;
    border-bottom-left-radius: 50px;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
}

.location-item {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    padding: 1.25rem 1rem;
    text-align: center;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    font-size: 0.95rem;
}

.location-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.location-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    color: var(--primary-color);
}

.location-item:hover::before {
    left: 100%;
}

.location-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.02) 0%, rgba(147, 51, 234, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.location-item:hover::after {
    opacity: 1;
}

/* ===== RUSH COURSE SECTION (Homepage) ===== */
.rush-course-section {
    padding: 2rem 0;
    background: var(--bg-light);
}

.rush-course-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    padding: 2.5rem;
    position: relative;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.rush-course-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.rush-course-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), #99b5c0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.2);
}

.rush-course-content h3 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

.rush-course-description {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.rush-course-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.feature-item i {
    font-size: 1.1rem;
}

.rush-course-cta {
    margin-top: 1rem;
}

.rush-course-cta .btn {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: none;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.rush-course-cta .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.rush-course-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4), 0 0 20px rgba(59, 130, 246, 0.2);
    color: white;
    text-decoration: none;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
}

.rush-course-cta .btn:hover::before {
    left: 100%;
}

.rush-course-cta .btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.rush-course-note {
    margin-top: 0.75rem;
    color: var(--text-light);
    font-size: 0.85rem;
    font-style: italic;
}

/* ===== TRUST ELEMENTS SECTION (Homepage) ===== */
.trust-elements {
    padding: 5rem 0;
    background: var(--bg-white);
    position: relative;
}

.trust-elements::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(147, 51, 234, 0.05) 100%);
    z-index: 1;
}

.trust-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    padding: 2.5rem;
    text-align: center;
    position: relative;
    z-index: 2;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.trust-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.trust-card.animate-border::before {
    animation: borderWave 4s ease-in-out;
}

@keyframes borderWave {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

.trust-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.02) 0%, rgba(147, 51, 234, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.trust-card:hover::before {
    left: 100%;
}

.trust-card:hover::after {
    opacity: 1;
}

.trust-card.animate-border {
    animation: cardGlow 3s ease-in-out, cardGrow 3s ease-in-out;
}

@keyframes cardGlow {
    0%, 100% {
        box-shadow: var(--shadow-md);
    }
    15% {
        box-shadow: 0 8px 20px rgba(37, 99, 235, 0.15), 0 0 10px rgba(37, 99, 235, 0.05);
    }
    85% {
        box-shadow: 0 8px 20px rgba(37, 99, 235, 0.15), 0 0 10px rgba(37, 99, 235, 0.05);
    }
}

@keyframes cardGrow {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    15% {
        transform: translateY(-5px) scale(1.02);
    }
    85% {
        transform: translateY(-5px) scale(1.02);
    }
}

.trust-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.trust-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
    transition: var(--transition);
}

.trust-card:hover .trust-icon {
    transform: scale(1.1);
}

.trust-card:hover .trust-icon::before {
    transform: scale(1.2);
    opacity: 0.5;
}

.trust-card h4 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    font-size: 1.5rem;
}

.trust-card p {
    color: var(--text-light);
    line-height: 1.6;
    position: relative;
    z-index: 2;
    margin: 0;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-section .lead {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

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

.cta-buttons .btn {
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 200px;
    justify-content: center;
}

.cta-buttons .btn-primary {
    background: white;
    color: var(--primary-color);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.cta-buttons .btn-outline-primary {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.cta-buttons .btn-outline-primary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* ===== RESPONSIVE DESIGN FOR HOMEPAGE ===== */

/* ===== MOBILE ONLY (max-width: 576px) ===== */
@media (max-width: 576px) {
    /* Hero section adjustments */
    .hero-section {
        padding: 8rem 0 3rem;
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
    }
    
    .hero-content {
        text-align: center;
        align-items: center;
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons .btn {
        margin: 0.5rem;
        min-width: 150px;
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    /* Typography adjustments */
    .hero-title,
    .page-title {
        font-size: 1.8rem;
        line-height: 1.2;
        text-align: center;
    }
    
    .hero-title {
        margin-bottom: 1rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        text-align: center;
    }

    .hero-video {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 2rem;
    }

    .hero-video video {
        width: 100%;
        max-width: 300px;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .hero-image {
        display: none;
    }

    .image-placeholder {
        width: 200px;
        height: 200px;
        font-size: 3rem;
    }

    /* About section adjustments */
    .about-instructor {
        flex-direction: column;
    }
    
    .about-content {
        text-align: center;
    }

    .home-about-image {
        margin-bottom: 2rem;
    }

    .slideshow-container {
        max-width: 100%;
        margin: 0 auto 2rem auto;
    }

    .slideshow-container .carousel-item {
        height: 300px;
    }

    .slideshow-container .carousel-indicators {
        bottom: 5px;
        gap: 4px;
    }

    .slideshow-container .carousel-indicators button {
        width: 8px;
        height: 8px;
    }

    .slideshow-container .carousel-control-prev,
    .slideshow-container .carousel-control-next {
        width: 35px;
        height: 35px;
        margin: 0 5px;
    }


    
    .about-content h2 {
        font-size: 2rem;
    }
    
    /* Package cards adjustments */
    .package-card,
    .package-card-detailed {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .package-card.featured {
        transform: none;
    }
    
    .package-card.featured .badge {
        font-size: 0.8rem;
    }
    
    .package-header {
        text-align: center;
    }
    
    .package-header h3 {
        font-size: 1.5rem;
    }
    
    .price,
    .price-detailed {
        font-size: 2rem;
    }
    
    .package-content ul {
        text-align: left;
    }
    
    .package-content li {
        margin-bottom: 0.5rem;
    }
    
    .package-content .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    /* Service area adjustments */
    .service-area-section {
        padding: 3rem 0;
    }
    
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .location-item {
        padding: 0.75rem 0.5rem;
        font-size: 0.85rem;
    }
    
    .rush-course-icon {
        font-size: 3rem;
    }
    
    .rush-course-content h3{
        font-size: 1.8rem;
    }
    
    .rush-course-content {
        text-align: center;
        padding: 1.5rem;
    }

    .instructor-image {
        max-width: 300px;
        margin: 0 auto;
    }
    
    /* CTA Section Small Mobile Adjustments */
    .cta-section h2 {
        font-size: 1.6rem;
    }
    
    .cta-section .lead {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-buttons .btn {
        max-width: 250px;
        padding: 0.9rem 1.3rem;
        font-size: 0.9rem;
    }
}

/* ===== TABLET ONLY (768px - 1024px) ===== */
@media (min-width: 577px) and (max-width: 1024px) {
    /* Hero Section Tablet Adjustments */
    .hero-section {
        padding-top: 150px;
    }
    
    .hero-content {
        text-align: center !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .hero-title {
        font-size: 2.4rem;
        margin-bottom: 1.1rem;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .hero-buttons {
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons .btn {
        padding: 0.7rem 1.3rem;
        font-size: 0.95rem;
        min-width: 160px;
    }
    
    .image-placeholder {
        display: none;
    }
    
    /* About Instructor Section Tablet Adjustments */
    .about-instructor {
        padding: 4rem 0;
    }
    
    .about-content h2 {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
    }
    
    .about-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .timeline-item {
        padding: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .timeline-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .timeline-content h4 {
        font-size: 1.1rem;
    }
    
    .timeline-content h5 {
        font-size: 0.9rem;
    }
    
    .timeline-content p {
        font-size: 0.9rem;
    }
    
    .home-about-image {
        display: none;
    }

    .slideshow-container {
        max-width: 450px;
        margin: 0 auto;
    }

    .slideshow-container .carousel-item {
        height: 350px;
    }

    .slideshow-container .carousel-indicators {
        bottom: 8px;
        gap: 5px;
    }

    .slideshow-container .carousel-indicators button {
        width: 9px;
        height: 9px;
    }


    
    /* Packages Section Tablet Adjustments */
    .packages-overview {
        padding: 4rem 0;
    }
    
    .package-card {
        padding: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .package-card.featured {
        transform: scale(1.02);
    }
    
    .package-header h3 {
        font-size: 1.4rem;
    }
    
    .price {
        font-size: 1.8rem;
    }
    
    .package-content ul {
        font-size: 0.9rem;
    }
    
    .package-content li {
        margin-bottom: 0.6rem;
        padding-left: 1.2rem;
    }
    
    .package-content .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
    
    /* Rush Course Section Tablet Adjustments */
    .rush-course-card {
        padding: 2rem;
    }
    
    .rush-course-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .rush-course-content h3 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    
    .rush-course-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .rush-course-features {
        gap: 1rem;
        margin: 1.5rem 0;
    }
    
    .feature-item {
        font-size: 0.9rem;
    }
    
    .feature-item i {
        font-size: 1rem;
        margin-right: 0.5rem;
    }
    
    .rush-course-cta .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
    
    /* Service Area Section Tablet Adjustments */
    .service-area-section {
        padding: 4rem 0;
    }
    
    .locations-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .location-item {
        padding: 1rem 0.8rem;
        font-size: 0.9rem;
    }
    
    /* CTA Section Tablet Adjustments */
    .cta-section {
        padding: 4rem 0;
    }
    
    .cta-section h2 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .cta-section .lead {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .cta-buttons {
        gap: 1rem;
    }
    
    .cta-buttons .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
        min-width: 160px;
    }
    }
    
/* ===== RUSH COURSE RESPONSIVE (max-width: 768px) ===== */
@media (max-width: 768px) {
    .rush-course-card {
        padding: 1.5rem;
    }
    
    .rush-course-features {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        text-align: center;
    }
    
    .rush-course-content h3 {
        font-size: 1.5rem;
    }
    
    .rush-course-description {
        font-size: 0.95rem;
    }
}

/* ===== TRUST CARDS RESPONSIVE (max-width: 768px) ===== */
@media (max-width: 768px) {
    .trust-card {
        padding: 1.5rem;
    }
    
    .trust-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .trust-card h4 {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }
} 