/* ============================================
   OJ HEALINGS - MAIN STYLESHEET
   ============================================ */

/* ========== BASE STYLES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2d5f5d;
    --secondary: #c9a96e;
    --accent: #8b7355;
    --light: #f8f6f1;
    --dark: #1a1a1a;
    --text: #4a4a4a;
}

body {
    padding-top: 125px; /* Space for fixed header */
    font-family: 'Cormorant Garamond', serif;
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--light);
}

/* ========== TOP HEADER BAR ========== */
.top-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--primary);
    color: white;
    padding: 0.8rem 5%;
    font-size: 0.95rem;
    z-index: 10000;
}

.top-header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-contact a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: color 0.3s ease;
}

.header-contact a:hover {
    color: var(--secondary);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.social-links a:hover {
    color: var(--secondary);
    transform: translateY(-2px);
}

/* ========== MAIN NAVIGATION ========== */
nav {
    position: fixed !important;
    top: 42px;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(248, 246, 241, 0.98);
    backdrop-filter: blur(10px);
    z-index: 9999 !important;
    padding: 1.2rem 5%;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Philosopher', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-image {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.logo-icon {
    font-size: 2.5rem;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    text-decoration: none;
    color: var(--text);
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-menu > li > a:hover {
    color: var(--primary);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 250px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    border-radius: 10px;
    padding: 1rem 0;
    margin-top: 0.5rem;
    animation: fadeInDown 0.3s ease;
    z-index: 1000;
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
    background: transparent;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown:hover .dropdown-content,
.dropdown-content:hover {
    display: block;
}

.dropdown-content a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.05rem;
}

.dropdown-content a:hover {
    background: var(--light);
    color: var(--primary);
    padding-left: 2rem;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.apply-button {
    background: #000000;
    color: #ffffff;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid #000000;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
}

.apply-button:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(201, 169, 110, 0.5);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    font-size: 1.8rem;
    color: var(--primary);
    cursor: pointer;
}

/* ========== IMAGE SLIDER ========== */
.slider-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .slider-container {
        height: 400px;
    }
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide.active {
    opacity: 1;
}

.slider-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 3rem;
    transform: translateY(-50%);
    z-index: 10;
}

.arrow {
    background: rgba(255,255,255,0.2);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.5rem;
    backdrop-filter: blur(5px);
}

.arrow:hover {
    background: rgba(255,255,255,0.4);
    transform: scale(1.1);
}

.slider-nav {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.slider-dot:hover {
    background: rgba(255,255,255,0.8);
    transform: scale(1.2);
}

.slider-dot.active {
    background: white;
    width: 35px;
    border-radius: 10px;
}

/* ========== SECTIONS ========== */
section {
    padding: 6rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: 'Philosopher', sans-serif;
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary);
}

.section-header p {
    font-size: 1.3rem;
    color: var(--text);
    margin-top: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ========== INTRO SECTION ========== */
.intro-section {
    background: white;
    padding: 5rem 5%;
}

.intro-content {
    max-width: 1100px;
    margin: 0 auto;
}

.intro-content h2 {
    font-family: 'Philosopher', sans-serif;
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 1.5rem;
}

.intro-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--secondary);
}

.intro-content p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text);
    margin-bottom: 1.5rem;
    text-align: justify;
}

.intro-content p:first-of-type {
    font-size: 1.25rem;
    font-weight: 500;
}

/* ========== SOUND BATH SESSIONS ========== */
.sessions-section {
    background: linear-gradient(135deg, var(--light) 0%, #faf9f5 100%);
    padding: 5rem 5%;
}

.sessions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto 3rem auto;
}

.session-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid transparent;
}

.session-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    border-color: var(--secondary);
}

.session-card.featured {
    border: 2px solid var(--secondary);
    transform: scale(1.05);
}

.session-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: var(--dark);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(201, 169, 110, 0.4);
}

.session-image {
    width: 100%;
    height: 220px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: relative;
}

.session-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.session-card:hover .session-image img {
    transform: scale(1.1);
}

.session-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.1) 100%);
    pointer-events: none;
}

.session-card h3 {
    font-family: 'Philosopher', sans-serif;
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.session-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 2rem;
    min-height: 100px;
}

.session-details {
    background: var(--light);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 1.15rem;
}

.detail-item:last-child {
    margin-bottom: 0;
}

.detail-icon {
    font-size: 1.3rem;
}

.detail-text {
    font-weight: 600;
    color: var(--primary);
}

.session-button {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
}

.session-button:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--dark);
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.sessions-note {
    text-align: center;
    margin-top: 3rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.sessions-note p {
    font-size: 1.15rem;
    color: var(--text);
    margin: 0;
}

.sessions-note a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sessions-note a:hover {
    color: var(--secondary);
}

    padding: 1.5rem;

.chakra-section {
    background: var(--light);
    padding: 5rem 5%;
}

.chakra-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.chakra-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.chakra-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.chakra-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8rem;
    color: white;
    opacity: 0.3;
    text-shadow: 0 0 30px rgba(0,0,0,0.5);
}

.chakra-content h2 {
    font-family: 'Philosopher', sans-serif;
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.chakra-intro {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.chakra-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.chakra-features {
    margin: 2rem 0;
}

.chakra-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.chakra-feature-item i {
    color: var(--secondary);
    font-size: 1.3rem;
}

.chakra-details {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.detail-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.2rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.detail-box i {
    font-size: 2rem;
    color: var(--primary);
}

.detail-box strong {
    display: block;
    color: var(--primary);
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.detail-box span {
    display: block;
    color: var(--text);
    font-weight: 600;
}

.chakra-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--primary);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
    border: 2px solid var(--primary);
}

.chakra-button:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--dark);
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* ========== FEATURES SECTION ========== */
.features {
    background: var(--primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.05), transparent);
    border-radius: 50%;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.feature-card {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.feature-card h3 {
    font-family: 'Philosopher', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.feature-card p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* ========== TESTIMONIALS / GOOGLE REVIEWS ========== */
.testimonials {
    background: var(--light);
    padding: 5rem 5%;
}

.google-reviews-container {
    max-width: 1300px;
    margin: 0 auto;
}

.google-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.google-rating {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.rating-stars {
    display: flex;
    gap: 0.3rem;
}

.rating-stars i {
    color: #fbbc04;
    font-size: 1.8rem;
}

.rating-text {
    display: flex;
    flex-direction: column;
}

.rating-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.rating-label {
    font-size: 1rem;
    color: var(--text);
    margin-top: 0.3rem;
}

.google-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.5rem;
    color: var(--text);
}

.google-logo i {
    font-size: 2.5rem;
    color: #4285f4;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.12);
    border-color: var(--secondary);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reviewer-info {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.reviewer-name {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.review-stars {
    display: flex;
    gap: 0.2rem;
}

.review-stars i {
    color: #fbbc04;
    font-size: 0.9rem;
}

.google-icon {
    font-size: 1.5rem;
    color: #4285f4;
}

.review-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 1rem;
}

.review-date {
    font-size: 0.9rem;
    color: #999;
}

.view-more-reviews {
    text-align: center;
}

.view-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: white;
    color: var(--primary);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.view-more-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.view-more-btn i.fab {
    font-size: 1.5rem;
    color: #4285f4;
}

.view-more-btn:hover i.fab {
    color: white;
}


footer p {
    font-size: 1rem;
    opacity: 0.8;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 968px) {

    .courses-grid-simple {
        grid-template-columns: 1fr;
    }

    .dates-layout {
        grid-template-columns: 1fr;
    }

    .dates-grid-left {
        grid-template-columns: 1fr;
    }

    .pricing-sidebar {
        border-left: none;
        border-top: 3px solid #e0e0e0;
        padding-left: 0;
        padding-top: 2rem;
    }
    .top-header-container {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
        margin-top: 0.5rem;
        padding-left: 1rem;
    }

    .slider-arrows {
        padding: 0 1rem;
    }

    .arrow {
        width: 40px;
        height: 40px;
    }

    .intro-content h2 {
        font-size: 2rem;
    }

    .intro-content p {
        text-align: left;
    }

    .sessions-grid {
        grid-template-columns: 1fr;
    }

    .session-card.featured {
        transform: scale(1);
    }

    .session-card.featured:hover {
        transform: translateY(-10px);
    }

    .session-description {
        min-height: auto;
    }

    .courses-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .dates-info {
        grid-template-columns: 1fr;
    }

    .modern-table thead {
        display: none;
    }

    .modern-table tbody tr {
        display: block;
        margin-bottom: 1.5rem;
        border: 2px solid var(--light);
        border-radius: 15px;
        padding: 1rem;
    }

    .modern-table td {
        display: block;
        text-align: left;
        padding: 0.8rem 0;
        border-bottom: 1px solid var(--light);
    }

    .modern-table td:last-child {
        border-bottom: none;
    }

    .modern-table td::before {
        content: attr(data-label);
        font-weight: 700;
        color: var(--primary);
        display: block;
        margin-bottom: 0.3rem;
    }

    .modern-table tbody tr:hover {
        transform: none;
    }

    .chakra-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .chakra-image img {
        height: 400px;
    }

    .chakra-content h2 {
        font-size: 2rem;
    }

    .chakra-details {
        flex-direction: column;
        gap: 1rem;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .google-header {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .google-rating {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ========== FAQ SECTION ========== */
.faq-section {
    background: white;
    padding: 5rem 5%;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 10px;
    border: 2px solid var(--light);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--secondary);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    background: var(--light);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f0ede7;
}

.faq-question h3 {
    font-family: 'Philosopher', sans-serif;
    font-size: 1.3rem;
    color: var(--primary);
    margin: 0;
    font-weight: 600;
}

.faq-question i {
    font-size: 1.2rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1.5rem 2rem;
}

.faq-answer p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
    margin: 0;
}


/* ========== FOOTER ========== */
footer {
    background: var(--dark);
    color: white;
    padding: 0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 1fr;
    gap: 3rem;
    padding: 4rem 5%;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-column h4 {
    font-family: 'Philosopher', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo i {
    font-size: 2.5rem;
    color: var(--secondary);
}

.footer-logo h3 {
    font-family: 'Philosopher', sans-serif;
    font-size: 1.8rem;
    color: white;
    margin: 0;
}

.footer-description {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.85;
    margin: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

.footer-contact i {
    color: var(--secondary);
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

.footer-contact a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--secondary);
}

.footer-contact span {
    color: rgba(255,255,255,0.8);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--secondary);
    color: var(--dark);
    transform: translateY(-5px);
}

.footer-bottom {
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
}

.footer-bottom p {
    margin: 0;
    opacity: 0.7;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--secondary);

    .faq-question h3 {
        font-size: 1.1rem;
    }

    .faq-question {
        padding: 1.2rem 1.5rem;
    }

    .faq-answer {
        padding: 0 1.5rem;
    }

    .faq-item.active .faq-answer {
        padding: 1.2rem 1.5rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-bottom-links {

    .courses-grid {
        grid-template-columns: 1fr;
    }

    .course-card.featured-course {
        transform: scale(1);
    }

    .course-overlay {
        opacity: 1;
        transform: translateY(0);
    }

    .dates-info-compact {
        flex-direction: column;
        gap: 1.5rem;
    }

    .dates-boxes-grid {
        grid-template-columns: 1fr;
    }

    .month-title {
        font-size: 1.5rem;
    }
        gap: 1.5rem;
    }
}


/* ========== BLOG SECTION ========== */
.blog-section {
    background: white;
    padding: 5rem 5%;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    border-color: var(--secondary);
}

.blog-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.blog-category {
    background: var(--primary);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.blog-date {
    color: var(--text);
    font-size: 0.95rem;
}

.blog-card h3 {
    font-family: 'Philosopher', sans-serif;
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    color: var(--secondary);
    gap: 1rem;
}

.blog-cta {
    text-align: center;
}

.view-all-blog-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--primary);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
}

.view-all-blog-btn:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* ========== COURSES SECTION - CLEAN ========== */
.courses-grid-clean {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.course-card-clean {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.course-card-clean:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.course-card-clean.featured {
    border: 2px solid var(--secondary);
}

.featured-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary);
    color: var(--dark);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 10;
}

.course-img {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
}

.course-details {
    padding: 1.5rem;
}

.course-details h3 {
    font-family: 'Philosopher', sans-serif;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
}

.course-details p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 1.2rem;
    min-height: 75px;
}

.course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-top: 2px solid var(--light);
    border-bottom: 2px solid var(--light);
    margin-bottom: 1.2rem;
}

.course-duration {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 600;
}

.course-duration i {
    color: var(--secondary);
    margin-right: 0.4rem;
}

.course-pricing {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
}

.learn-more-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--primary);
    color: white;
    padding: 0.9rem 1.3rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.learn-more-btn:hover {
    background: var(--secondary);
    color: var(--dark);
}

.learn-more-btn i {
    transition: transform 0.3s ease;
}

.learn-more-btn:hover i {
    transform: translateX(5px);
}

/* ========== DATES SECTION - MODERN ========== */
.dates-modern {
    background: #f8f9fa;
    padding: 5rem 5%;
}

.dates-header {
    text-align: center;
    margin-bottom: 3rem;
}

.dates-header h2 {
    font-family: 'Philosopher', sans-serif;
    font-size: 3rem;
    color: #ff8c00;
    margin-bottom: 0.5rem;
}

.dates-header p {
    font-size: 1.3rem;
    color: #2c5f7d;
    font-weight: 600;
}

.dates-container-modern {
    max-width: 1400px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    border: 2px solid #e0e0e0;
    padding: 2.5rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.dates-left {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
    padding-right: 2rem;
    border-right: 2px solid #e0e0e0;
}

.date-box {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 1rem 0.8rem;
    border-bottom: 1px solid #f0f0f0;
}

.date-box i {
    color: #ff6600;
    font-size: 1.4rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.date-box div {
    flex: 1;
}

.date-box strong {
    display: block;
    font-size: 0.95rem;
    color: #2c5f7d;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.date-box span {
    display: block;
    font-size: 0.9rem;
    color: #ff6600;
    font-weight: 600;
}

.dates-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-block h3 {
    font-family: 'Philosopher', sans-serif;
    font-size: 1.2rem;
    color: #ff8c00;
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
}

.big-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2c5f7d;
    margin: 0;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.price-row:last-child {
    border-bottom: none;
}

.price-big {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c5f7d;
}

.price-label {
    text-align: right;
    font-size: 0.9rem;
    color: #2c5f7d;
    font-weight: 600;
    line-height: 1.4;
}

.price-label small {
    font-size: 0.8rem;
    display: block;
    margin-top: 0.2rem;
}

.big-book-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ff8c00;
    color: white;
    padding: 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.big-book-btn:hover {
    background: #ff6600;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.4);
}

/* Responsive */
@media (max-width: 968px) {
    .courses-grid-clean {
        grid-template-columns: 1fr;
    }
    
    .course-details p {
        min-height: auto;
    }
    
    .dates-container-modern {
        grid-template-columns: 1fr;
    }
    
    .dates-left {
        grid-template-columns: 1fr;
        border-right: none;
        border-bottom: 2px solid #e0e0e0;
        padding-right: 0;
        padding-bottom: 2rem;
    }
}


/* ========== COMPREHENSIVE MOBILE RESPONSIVE & STICKY HEADER ========== */

/* Ensure sticky header works properly */
body {
    padding-top: 0;
}

nav {
    position: sticky !important;
    top: 0 !important;
    z-index: 9999 !important;
}

.top-header {
    position: relative;
    z-index: 10000;
}

/* Tablet & Mobile: 968px and below */
@media (max-width: 968px) {
    /* Top Header - Responsive */
    .top-header {
        font-size: 0.85rem;
        padding: 0.6rem 4%;
    }
    
    .top-header-container {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .header-contact {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
        font-size: 0.85rem;
    }
    
    /* Navigation */
    nav {
        padding: 1rem 4%;
    }
    
    .logo-image {
        height: 50px !important;
    }
    
    .mobile-menu-toggle {
        display: block !important;
        font-size: 1.8rem;
        cursor: pointer;
        color: var(--primary);
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(248, 246, 241, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        display: flex !important;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
        padding: 0.8rem 0;
        border-bottom: 1px solid rgba(45, 95, 93, 0.1);
    }
    
    .dropdown-content {
        position: static !important;
        box-shadow: none !important;
        background: rgba(45, 95, 93, 0.05) !important;
        display: none;
    }
    
    .dropdown.active .dropdown-content {
        display: block !important;
    }
    
    .apply-button {
        margin: 0.5rem auto !important;
        display: inline-block !important;
        width: auto !important;
    }
    
    /* Footer Responsive */
    .footer-container {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-column {
        margin-bottom: 1.5rem;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    /* Section Headers */
    .section-header h2 {
        font-size: 2rem !important;
    }
    
    .section-header p {
        font-size: 1rem !important;
    }
    
    /* Containers */
    .container {
        padding: 0 4% !important;
    }
}

/* Small Mobile: 600px and below */
@media (max-width: 600px) {
    .top-header {
        font-size: 0.75rem;
        padding: 0.5rem 3%;
    }
    
    .header-contact a {
        font-size: 0.75rem;
    }
    
    .social-links {
        gap: 0.5rem;
    }
    
    .social-links a {
        font-size: 1rem;
    }
    
    nav {
        padding: 0.8rem 3%;
    }
    
    .logo-image {
        height: 40px !important;
    }
    
    /* Footer */
    .footer-container {
        padding: 2rem 3%;
    }
    
    .footer-logo {
        height: 60px !important;
    }
    
    .footer-column h3 {
        font-size: 1.2rem !important;
    }
    
    .footer-column p,
    .footer-column a,
    .footer-column li {
        font-size: 0.9rem !important;
    }
    
    .footer-bottom {
        padding: 1rem 3%;
        font-size: 0.85rem;
    }
}

/* Extra Small: 400px and below */
@media (max-width: 400px) {
    .header-contact {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .logo-image {
        height: 35px !important;
    }
    
    .mobile-menu-toggle {
        font-size: 1.5rem;
    }
}

/* Landscape orientation fix */
@media (max-width: 968px) and (orientation: landscape) {
    nav {
        padding: 0.5rem 4%;
    }
    
    .logo-image {
        height: 35px !important;
    }
}

/* ========== END MOBILE RESPONSIVE ========== */

/* ========== FOOTER MOBILE RESPONSIVE FIX ========== */

@media (max-width: 968px) {
    /* Footer Container */
    footer {
        padding: 2rem 4% !important;
    }
    
    .footer-container {
        grid-template-columns: 1fr !important;
    }
    
    .footer-top {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .footer-column {
        text-align: center !important;
        margin-bottom: 2rem;
    }
    
    .footer-logo {
        justify-content: center !important;
    }
    
    .footer-description {
        max-width: 100% !important;
        margin: 0 auto;
    }
    
    .footer-links {
        list-style: none !important;
        padding: 0 !important;
    }
    
    .footer-contact {
        list-style: none !important;
        padding: 0 !important;
    }
    
    .footer-contact li {
        justify-content: center !important;
        text-align: center !important;
    }
    
    .footer-social {
        justify-content: center !important;
        gap: 1rem !important;
    }
    
    .footer-bottom {
        flex-direction: column !important;
        text-align: center !important;
        gap: 1rem !important;
        padding: 1.5rem 0 !important;
    }
    
    .footer-bottom-links {
        display: flex !important;
        justify-content: center !important;
        gap: 1rem !important;
        flex-wrap: wrap !important;
    }
}

@media (max-width: 600px) {
    footer {
        padding: 1.5rem 3% !important;
    }
    
    .footer-column h4 {
        font-size: 1.2rem !important;
    }
    
    .footer-column p,
    .footer-column a,
    .footer-column li {
        font-size: 0.9rem !important;
    }
    
    .footer-logo i {
        font-size: 2rem !important;
    }
    
    .footer-logo h3 {
        font-size: 1.5rem !important;
    }
    
    .footer-social a {
        width: 35px !important;
        height: 35px !important;
        font-size: 1rem !important;
    }
}

/* ========== MOBILE HEADER FIX ========== */

@media (max-width: 968px) {
    body {
        padding-top: 70px !important; /* Just nav on mobile */
    }
    
    .top-header {
        display: none !important; /* Hide top bar on mobile */
    }
    
    nav {
        top: 0 !important;
        padding: 1rem 4% !important;
    }
}

@media (max-width: 600px) {
    body {
        padding-top: 60px !important;
    }
    
    nav {
        padding: 0.8rem 3% !important;
    }
}


/* ========== FOOTER MOBILE RESPONSIVE - CRITICAL FIX ========== */

@media (max-width: 968px) {
    /* Footer structure */
    footer {
        padding: 0 !important;
    }
    
    .footer-top {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
        padding: 3rem 5% !important;
        text-align: center !important;
    }
    
    .footer-column {
        width: 100% !important;
        text-align: center !important;
    }
    
    .footer-column h4 {
        font-size: 1.4rem !important;
        margin-bottom: 1.2rem !important;
    }
    
    /* Logo section */
    .footer-logo {
        justify-content: center !important;
        flex-direction: column !important;
        gap: 0.8rem !important;
    }
    
    .footer-logo i {
        font-size: 2.5rem !important;
    }
    
    .footer-logo h3 {
        font-size: 1.8rem !important;
    }
    
    .footer-description {
        text-align: center !important;
        max-width: 100% !important;
        font-size: 1rem !important;
    }
    
    /* Links */
    .footer-links {
        text-align: center !important;
    }
    
    .footer-links li {
        margin-bottom: 1rem !important;
    }
    
    .footer-links a {
        font-size: 1.05rem !important;
    }
    
    /* Contact */
    .footer-contact {
        text-align: center !important;
    }
    
    .footer-contact li {
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.5rem !important;
        text-align: center !important;
        margin-bottom: 1.5rem !important;
    }
    
    .footer-contact i {
        margin-top: 0 !important;
    }
    
    /* Social icons */
    .footer-social {
        justify-content: center !important;
        gap: 1.2rem !important;
        flex-wrap: wrap !important;
    }
    
    .social-icon {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.3rem !important;
    }
    
    /* Footer bottom */
    .footer-bottom {
        flex-direction: column !important;
        text-align: center !important;
        gap: 1.5rem !important;
        padding: 2rem 5% !important;
    }
    
    .footer-bottom p {
        font-size: 0.95rem !important;
        margin: 0 !important;
    }
    
    .footer-bottom-links {
        flex-direction: column !important;
        gap: 1rem !important;
    }
    
    .footer-bottom-links a {
        font-size: 0.95rem !important;
    }
}

@media (max-width: 600px) {
    .footer-top {
        padding: 2rem 4% !important;
        gap: 2rem !important;
    }
    
    .footer-column h4 {
        font-size: 1.2rem !important;
    }
    
    .footer-logo i {
        font-size: 2rem !important;
    }
    
    .footer-logo h3 {
        font-size: 1.5rem !important;
    }
    
    .footer-description,
    .footer-links a,
    .footer-contact li {
        font-size: 0.95rem !important;
    }
    
    .social-icon {
        width: 45px !important;
        height: 45px !important;
        font-size: 1.1rem !important;
    }
    
    .footer-bottom {
        padding: 1.5rem 4% !important;
    }
    
    .footer-bottom p,
    .footer-bottom-links a {
        font-size: 0.85rem !important;
    }
}

@media (max-width: 400px) {
    .footer-top {
        padding: 1.5rem 3% !important;
    }
    
    .footer-column h4 {
        font-size: 1.1rem !important;
    }
    
    .footer-logo h3 {
        font-size: 1.3rem !important;
    }
    
    .social-icon {
        width: 40px !important;
        height: 40px !important;
        font-size: 1rem !important;
    }
}

/* ========== END FOOTER MOBILE RESPONSIVE ========== */