/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1001;
    background: #2c3e50;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: #34495e;
    transform: scale(1.1);
}

.mobile-menu-toggle i {
    font-size: 20px;
}

/* Sidebar Styles */
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 280px;
    height: 100vh;
    background: linear-gradient(135deg, #1774d1 0%, #17232f 100%);
    color: white;
    z-index: 1000;
    transition: transform 0.3s ease;
    overflow-y: auto;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
}

.sidebar-header {
    padding: 30px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: relative;
    text-align: center;
}

.sidebar-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    font-family: 'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    text-transform: uppercase;
}

.header-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.header-icon i {
    font-size: 2.5rem;
    color: #3498db;
    background: rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.header-icon i:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.1);
}

.logo-image {
    max-width: 80px;
    max-height: 80px;
    width: auto;
    height: auto;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    filter: brightness(1.1);
    /* 3D Effects */
    box-shadow: 
        0 8px 16px rgba(0, 0, 0, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    transform: perspective(1000px) rotateX(5deg) rotateY(-5deg);
    transform-style: preserve-3d;
}

.logo-image:hover {
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg) scale(1.05) translateZ(10px);
    filter: brightness(1.2);
    box-shadow: 
        0 12px 24px rgba(0, 0, 0, 0.4),
        0 6px 12px rgba(0, 0, 0, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.5),
        inset 0 -2px 0 rgba(0, 0, 0, 0.3);
}

.close-btn {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.close-btn:hover {
    background: rgba(255,255,255,0.1);
}

.nav-menu {
    list-style: none;
    padding: 20px 0;
}

.nav-item {
    margin: 5px 0;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 16px 25px;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    font-family: 'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.nav-link:hover {
    background: rgba(255,255,255,0.1);
    color: white;
    border-left-color: #3498db;
}

.nav-item.active .nav-link {
    background: rgba(255,255,255,0.1);
    color: white;
    border-left-color: #3498db;
}

.nav-link i {
    width: 22px;
    margin-right: 16px;
    font-size: 17px;
    opacity: 0.9;
}

/* Main Content */
.main-content {
    margin-left: 280px;
    min-height: 100vh;
    transition: margin-left 0.3s ease;
}

.content-section {
    display: none;
    padding: 0 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.content-section.active {
    display: block;
}

/* Hero Slider - Full Width Container */
.hero-slider-fullwidth {
    width: 100%;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 790px;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
}

.slide.prev {
    transform: translateX(-100%);
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 40px;
}

.slide-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    animation: slideInUp 0.8s ease 0.2s both;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    animation: slideInUp 0.8s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: slideInUp 0.8s ease 0.6s both;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 80px;
    z-index: 1;
}

.slide-icon {
    font-size: 15rem;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 3;
    pointer-events: none;
}

.nav-btn {
    background: rgba(255,255,255,0.2);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.nav-btn:active {
    transform: scale(0.95);
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255,255,255,0.7);
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Slide Variations - Only for non-video slides */
.slide:nth-child(2):not(.video-slide) {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.slide:nth-child(3):not(.video-slide) {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
}

.slide:nth-child(4):not(.video-slide) {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
}

/* Video Slide Styles */
.video-slide {
    background: #000 !important;
}

.slide-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide-video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    position: relative;
    z-index: 1;
    background: #000;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(52,152,219,0.3) 100%);
    z-index: 2;
}

.video-slide .slide-content {
    position: relative;
    z-index: 3;
}

/* Buttons */
.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

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

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

.btn-secondary {
    background: rgb(32, 119, 35);
    color: white;
}

.btn-secondary:hover {
    background: rgb(26, 98, 29);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(32, 119, 35, 0.3);
}

/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

/* Zip Code Locator Trigger */
.zip-locator-trigger-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 40px 0 60px 0;
    text-align: center;
}

.zip-locator-trigger {
    font-size: 1.2rem;
    padding: 20px 40px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border: none;
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.3);
    transition: all 0.3s ease;
}

.zip-locator-trigger:hover {
    background: linear-gradient(135deg, #2980b9 0%, #1f5f8b 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(52, 152, 219, 0.4);
}

.zip-locator-trigger-container p {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

/* Zip Code Modal */
.zip-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.zip-modal.active {
    display: flex;
}

.zip-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.zip-modal-content {
    position: relative;
    background: linear-gradient(135deg, #000000 0%, #2980b9 100%);
    color: white;
    border-radius: 20px;
    max-width: 698px;
    width: 95%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

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

.zip-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px 20px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.zip-modal-header h3 {
    font-size: 1.8rem;
    margin: 0;
}

.zip-modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zip-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.zip-modal-body {
    padding: 30px 40px 40px 40px;
    text-align: center;
}

.zip-modal-body p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.zip-input-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.zip-input-group input {
    padding: 15px 20px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    width: 200px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.zip-input-group input:focus {
    outline: none;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.zip-input-group .btn {
    padding: 15px 25px;
    font-size: 1.1rem;
    background: #061f3f5e;
    border: none;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
    transition: all 0.3s ease;
}

.zip-input-group .btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

.zip-results {
    margin-top: 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
    animation: slideDown 0.5s ease;
}

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

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.results-header h4 {
    margin: 0;
    font-size: 1.3rem;
}

.results-count {
    background: rgba(255,255,255,0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.location-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.location-item {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #e74c3c;
    transition: all 0.3s ease;
    cursor: pointer;
}

.location-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateX(5px);
}

.location-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.location-address {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 10px;
}

.location-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.location-distance {
    background: rgba(255,255,255,0.2);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

.location-phone {
    font-size: 0.9rem;
    opacity: 0.8;
}

.no-results {
    text-align: center;
    padding: 30px;
    opacity: 0.8;
}

.no-results i {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.5;
}

/* Package Styles */
.package-item {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 15px;
    border-left: 4px solid #3498db;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    margin-bottom: 15px;
}

.package-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.package-item.popular-package {
    border-left-color: #f39c12;
    background: rgba(243, 156, 18, 0.1);
}

.popular-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #f39c12;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(243, 156, 18, 0.3);
}

.package-title {
    text-align: left;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.package-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.package-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
}

.package-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #f7fbfe;
    background: rgba(52, 152, 219, 0.2);
    padding: 8px 16px;
    border-radius: 25px;
}

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

.package-action .btn {
    background: #3498db;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    width: auto;
    min-width: 120px;
}

.package-action .btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

/* Courses Grid */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.course-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.course-card:hover {
    transform: translateY(-5px);
}

.course-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.course-card ul {
    list-style: none;
    margin: 20px 0;
}

.course-card li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.course-card li:before {
    content: "✓";
    color: #27ae60;
    font-weight: bold;
    margin-right: 10px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-top: 10px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Instructors Grid */
.instructors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.instructor-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.instructor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: #3498db;
}

.instructor-card.featured-instructor {
    border: 2px solid #f39c12;
    background: linear-gradient(135deg, #fff 0%, #fef9e7 100%);
}

.instructor-card.featured-instructor:hover {
    border-color: #f39c12;
    box-shadow: 0 15px 40px rgba(243, 156, 18, 0.2);
}

/* Instructor Badge */
.instructor-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-instructor .instructor-badge {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

/* Instructor Avatar */
.instructor-avatar {
    margin-bottom: 20px;
    position: relative;
}

.avatar-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
    transition: all 0.3s ease;
}

.instructor-card:hover .avatar-image {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(52, 152, 219, 0.4);
}

.avatar-image i {
    font-size: 2.5rem;
    color: white;
}

/* Instructor Rating */
.instructor-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    margin-top: 10px;
}

.instructor-rating i {
    color: #f39c12;
    font-size: 0.9rem;
}

.instructor-rating span {
    margin-left: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.9rem;
}

/* Instructor Info */
.instructor-card h3 {
    margin: 15px 0 5px;
    color: #2c3e50;
    font-size: 1.4rem;
    font-weight: 700;
}

.instructor-title {
    color: #e74c3c;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.instructor-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* Instructor Stats */
.instructor-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 20px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Instructor Specialties */
.instructor-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin: 20px 0;
}

.specialty-tag {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.featured-instructor .specialty-tag {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

/* Instructor Certifications */
.instructor-certifications {
    margin-top: 20px;
    padding: 15px;
    background: #ecf0f1;
    border-radius: 10px;
    font-size: 0.85rem;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 8px;
}

.instructor-certifications i {
    color: #27ae60;
    font-size: 1rem;
}

/* Instructor CTA */
.instructor-cta {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 20px;
    color: white;
}

.instructor-cta h3 {
    margin-bottom: 10px;
    font-size: 1.8rem;
    font-weight: 700;
}

.instructor-cta p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    background: white;
    color: #3498db;
    border: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-large:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Instructor Expanded Content */
.instructor-expanded {
    margin-top: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border-top: 3px solid #3498db;
    animation: expandIn 0.3s ease;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.instructor-card.expanded .instructor-expanded {
    max-height: 500px;
}

.expanded-details h4 {
    color: #2c3e50;
    margin: 20px 0 10px 0;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.expanded-details h4:first-child {
    margin-top: 0;
}

.expanded-details h4 i {
    color: #3498db;
    font-size: 0.9rem;
}

.expanded-details p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.expanded-details ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 15px 0;
}

.expanded-details li {
    padding: 5px 0;
    color: #666;
    font-size: 0.9rem;
    position: relative;
    padding-left: 20px;
}

.expanded-details li:before {
    content: "✓";
    color: #27ae60;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.schedule-btn {
    margin-top: 15px;
    padding: 10px 20px;
    font-size: 0.9rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.schedule-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

/* Animations */
@keyframes expandIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #27ae60;
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    animation: slideIn 0.3s ease;
}

/* Schedule Section */
.schedule-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.schedule-info {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.time-slots {
    margin-top: 20px;
}

.time-slot {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.time-slot i {
    color: #f39c12;
    margin-right: 15px;
    width: 20px;
}

.schedule-form {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.schedule-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.schedule-form input,
.schedule-form select,
.schedule-form textarea {
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.schedule-form input:focus,
.schedule-form select:focus,
.schedule-form textarea:focus {
    outline: none;
    border-color: #3498db;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured {
    border: 3px solid #3498db;
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #3498db;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 20px 0;
}

.pricing-card ul {
    list-style: none;
    margin: 30px 0;
}

.pricing-card li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.pricing-card li:before {
    content: "✓";
    color: #27ae60;
    font-weight: bold;
    margin-right: 10px;
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.contact-info {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-item i {
    color: #3498db;
    font-size: 1.5rem;
    margin-right: 20px;
    margin-top: 5px;
}

.contact-form {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.about-text {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-text h3 {
    color: #2c3e50;
    margin: 30px 0 20px 0;
}

.about-text ul {
    list-style: none;
}

.about-text li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.about-text li:before {
    content: "✓";
    color: #27ae60;
    font-weight: bold;
    margin-right: 10px;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 10px;
}

.stat-label {
    color: #7f8c8d;
    font-weight: 600;
}

/* Section Headers */
h2 {
    font-size: 2.5rem;
    color: #f2f2f2;
    margin-bottom: 20px;
    text-align: center;
}

/* Overlay */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-content {
        margin-left: 0;
    }
    
    .sidebar {
        transform: translateX(-100%);
        width: 100%;
    }
    
    .sidebar.active {
        transform: translateX(0);
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .close-btn {
        display: block;
    }
    
    .overlay.active {
        display: block;
    }
    
    .content-section {
        padding: 0 20px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .schedule-container,
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .stat {
        flex: 1;
        min-width: 150px;
    }
    
    /* Tablet optimizations */
    .features {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .instructors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* Small tablets and large mobile devices */
@media (max-width: 900px) {
    .features {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .instructors-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .features {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    
    .courses-grid,
    .instructors-grid,
    .pricing-grid,
    .location-results {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .package-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .package-price {
        align-self: flex-end;
    }
    
    .feature-card {
        padding: 30px 25px;
    }
    
    .course-card,
    .instructor-card {
        padding: 25px 20px;
    }
    
    .hero-slider-fullwidth {
        margin-bottom: 40px;
    }
    
    .hero-slider {
        height: 400px;
    }
    
    .slide-content {
        padding: 0 20px;
    }
    
    .slide-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .slide-background {
        padding-right: 40px;
    }
    
    .slide-icon {
        font-size: 10rem;
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    /* Zip Modal Responsive */
    .zip-modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .zip-modal-header {
        padding: 25px 30px 15px 30px;
    }
    
    .zip-modal-header h3 {
        font-size: 1.6rem;
    }
    
    .zip-modal-body {
        padding: 25px 30px 35px 30px;
    }
    
    .zip-input-group {
        flex-direction: column;
        gap: 15px;
    }
    
    .zip-input-group input {
        width: 100%;
        max-width: 300px;
    }
    
    .about-stats {
        flex-direction: column;
    }
    
    .zip-locator-box {
        padding: 30px 20px;
        margin: 0 10px;
    }
    
    .zip-locator-box h3 {
        font-size: 1.5rem;
    }
    
    .zip-input-group {
        flex-direction: column;
        gap: 15px;
    }
    
    .zip-input-group input {
        width: 100%;
        max-width: 250px;
    }
    
    .location-details {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    /* Instructor Mobile Styles */
    .instructors-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .instructor-card {
        padding: 25px 20px;
    }
    
    .instructor-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        padding: 15px;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .instructor-specialties {
        gap: 6px;
    }
    
    .specialty-tag {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
    
    .instructor-cta {
        padding: 30px 20px;
        margin-top: 30px;
    }
    
    .instructor-cta h3 {
        font-size: 1.5rem;
    }
    
    .btn-large {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .content-section {
        padding: 0 15px;
    }
    
    .hero-slider-fullwidth {
        margin-bottom: 30px;
    }
    
    .hero-slider {
        height: 350px;
    }
    
    .slide-content {
        padding: 0 15px;
    }
    
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    /* Enhanced mobile styles for cards */
    .features {
        gap: 15px;
        margin-top: 30px;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
    }
    
    .feature-card i {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .courses-grid,
    .instructors-grid,
    .location-results {
        gap: 15px;
    }
    
    .package-item {
        padding: 15px;
    }
    
    .package-name {
        font-size: 1.2rem;
    }
    
    .package-price {
        font-size: 1.4rem;
        padding: 6px 12px;
    }
    
    .course-card,
    .instructor-card {
        padding: 20px 15px;
    }
    
    .course-card h3,
    .instructor-card h3 {
        font-size: 1.3rem;
    }
    
    .slide-background {
        display: none;
    }
    
    .nav-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .slider-nav {
        padding: 0 10px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .feature-card,
    .course-card,
    .instructor-card,
    .pricing-card {
        padding: 20px;
    }
    
    .sidebar {
        width: 100%;
    }
    
    .mobile-menu-toggle {
        top: 15px;
        left: 15px;
        width: 45px;
        height: 45px;
    }
    
    /* Small Screen Instructor Styles */
    .section-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .instructor-card {
        padding: 20px 15px;
    }
    
    .instructor-card h3 {
        font-size: 1.2rem;
    }
    
    .instructor-title {
        font-size: 0.9rem;
    }
    
    .instructor-description {
        font-size: 0.9rem;
    }
    
    .instructor-stats {
        grid-template-columns: repeat(3, 1fr);
        padding: 12px;
        gap: 8px;
    }
    
    .stat-number {
        font-size: 1.1rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
        line-height: 1.2;
    }
    
    .instructor-certifications {
        padding: 12px;
        font-size: 0.8rem;
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
    
    .instructor-cta {
        padding: 25px 15px;
    }
    
    .instructor-cta h3 {
        font-size: 1.3rem;
    }
    
    .instructor-cta p {
        font-size: 1rem;
    }
    
    /* Zip Modal Mobile */
    .zip-modal-content {
        width: 95%;
        margin: 10px;
        max-height: 90vh;
    }
    
    .zip-modal-header {
        padding: 20px 20px 15px 20px;
    }
    
    .zip-modal-header h3 {
        font-size: 1.4rem;
    }
    
    .zip-modal-close {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .zip-modal-body {
        padding: 20px 20px 30px 20px;
    }
    
    .zip-modal-body p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .zip-input-group input {
        font-size: 1rem;
        padding: 12px 15px;
    }
    
    .zip-input-group .btn {
        font-size: 1rem;
        padding: 12px 20px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-section.active {
    animation: fadeIn 0.5s ease;
}

/* Notification System Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    max-width: 400px;
    min-width: 300px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: all 0.3s ease;
    opacity: 0;
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-content {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    gap: 12px;
}

.notification-content i {
    font-size: 20px;
    flex-shrink: 0;
}

.notification-content span {
    flex: 1;
    font-size: 14px;
    line-height: 1.4;
}

.notification-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
    flex-shrink: 0;
}

.notification-close:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.notification-close i {
    font-size: 14px;
    color: #666;
}

/* Notification Types */
.notification-success {
    border-left: 4px solid #27ae60;
}

.notification-success .notification-content i {
    color: #27ae60;
}

.notification-error {
    border-left: 4px solid #e74c3c;
}

.notification-error .notification-content i {
    color: #e74c3c;
}

.notification-info {
    border-left: 4px solid #3498db;
}

.notification-info .notification-content i {
    color: #3498db;
}

/* Extra small mobile devices */
@media (max-width: 360px) {
    .content-section {
        padding: 0 10px;
    }
    
    .features {
        gap: 10px;
        margin-top: 25px;
    }
    
    .feature-card {
        padding: 20px 15px;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
    }
    
    .feature-card i {
        font-size: 2.2rem;
        margin-bottom: 12px;
    }
    
    .courses-grid,
    .instructors-grid {
        gap: 10px;
    }
    
    .course-card,
    .instructor-card {
        padding: 15px 12px;
    }
    
    .course-card h3,
    .instructor-card h3 {
        font-size: 1.2rem;
    }
    
    .slide-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Mobile notification adjustments */
@media (max-width: 768px) {
    .notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        min-width: auto;
    }
    
    .notification-content {
        padding: 14px 16px;
        gap: 10px;
    }
    
    .notification-content span {
        font-size: 13px;
    }
}

