/* ============================================
   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 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--light);
}

/* ========== TOP HEADER BAR ========== */
.top-header {
    background: var(--primary);
    color: white;
    padding: 0.8rem 5%;
    font-size: 0.95rem;
}

.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: sticky;
    top: 0;
    width: 100%;
    background: rgba(248, 246, 241, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    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-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: 1rem;
    animation: fadeInDown 0.3s ease;
}

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

.dropdown:hover .dropdown-content {
    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: var(--primary);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
}

.apply-button:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* 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: 85vh;
    overflow: hidden;
}

.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);
}

/* ========== COURSES SECTION ========== */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.course-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.course-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.course-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="30" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/><circle cx="50" cy="50" r="20" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/><circle cx="50" cy="50" r="10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></svg>');
    background-size: 200px;
    background-position: center;
}

.course-content {
    padding: 2rem;
}

.course-duration {
    display: inline-block;
    background: var(--light);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.course-card h3 {
    font-family: 'Philosopher', sans-serif;
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.course-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.course-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.course-button {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.course-button:hover {
    background: var(--secondary);
    color: var(--dark);
    transform: scale(1.05);
}

/* ========== DATES SECTION ========== */
.dates-section {
    background: white;
    padding: 4rem 5%;
}

.dates-container {
    max-width: 1300px;
    margin: 0 auto;
}

.dates-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.info-card {
    background: var(--light);
    padding: 1.3rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.info-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.7rem;
}

.info-card h3 {
    font-family: 'Philosopher', sans-serif;
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 0.4rem;
}

.info-card p {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin: 0;
}

/* Modern Table */
.modern-table-container {
    overflow-x: auto;
    margin-bottom: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.modern-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    font-size: 0.95rem;
}

.modern-table thead {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
}

.modern-table th {
    padding: 0.9rem 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
}

.modern-table th i {
    margin-right: 0.4rem;
}

.modern-table tbody tr {
    border-bottom: 1px solid var(--light);
    transition: all 0.3s ease;
}

.modern-table tbody tr:hover {
    background: #fafafa;
    transform: scale(1.005);
}

.modern-table tbody tr:last-child {
    border-bottom: none;
}

.modern-table td {
    padding: 0.9rem 1rem;
    color: var(--text);
}

.month-tag {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
}

.month-tag.feb { background: linear-gradient(135deg, #e74c3c, #c0392b); }
.month-tag.mar { background: linear-gradient(135deg, #3498db, #2980b9); }
.month-tag.apr { background: linear-gradient(135deg, #2ecc71, #27ae60); }
.month-tag.may { background: linear-gradient(135deg, #f39c12, #e67e22); }
.month-tag.jun { background: linear-gradient(135deg, #9b59b6, #8e44ad); }

.seats-badge {
    display: inline-block;
    background: var(--light);
    color: var(--primary);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-weight: 700;
    font-size: 0.85rem;
}

.table-btn {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
}

.table-btn:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--dark);
    transform: scale(1.05);
}

.custom-date-note {
    background: linear-gradient(135deg, var(--light), #faf9f5);
    padding: 1.3rem;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    border-left: 4px solid var(--secondary);
}

.custom-date-note i {
    font-size: 1.3rem;
    color: var(--primary);
    margin-top: 0.1rem;
}

.custom-date-note p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    color: var(--text);
}

.custom-date-note strong {
    color: var(--primary);
}

.custom-date-note a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.custom-date-note a:hover {
    color: var(--secondary);
}

/* ========== CHAKRA HEALING SECTION ========== */
.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) {
    .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 {
        gap: 1.5rem;
    }
}

