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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a5f3f;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #1a5f3f, #4a9d7f);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    font-weight: 400;
    margin-top: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Alternating Sections */
.section-alt {
    background: linear-gradient(135deg, #f8f6f3 0%, #f0ebe5 100%);
    position: relative;
}

.section-alt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%231a5f3f" fill-opacity="0.03"><circle cx="30" cy="30" r="4"/></g></svg>') repeat;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-logo h2 {
    font-family: 'Playfair Display', serif;
    color: rgb(255, 255, 255);
    font-weight: 700;
    font-size: 2rem;
    letter-spacing: -0.5px;
}

.logo-img {
    height: 70px;
    width: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
    object-fit: contain;
}

.nav-logo:hover .logo-img {
    transform: scale(1.05);
}

/* Fallback for logo loading issues */
.logo-img:not([src]),
.logo-img[src=""],
.logo-img[src="undefined"] {
    display: none;
}

.logo-img:not([src]) ~ h2,
.logo-img[src=""] ~ h2,
.logo-img[src="undefined"] ~ h2 {
    margin-left: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #1a5f3f;
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: #1a5f3f;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu .login-link {
    background: linear-gradient(135deg, #1a5f3f, #2d7a57);
    color: white !important;
    padding: 8px 15px;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none !important;
    border: none !important;
}

.nav-menu .login-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(26, 95, 63, 0.3);
}

.nav-menu .login-link:hover::after {
    width: 0 !important;
}

.nav-menu .login-link i {
    margin-right: 5px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 0;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(26, 95, 63, 0.7) 0%, 
        rgba(74, 157, 127, 0.5) 50%, 
        rgba(255, 255, 255, 0.1) 100%);
    z-index: -1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 600px;
    color: white;
    text-align: left;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 3rem;
    line-height: 1.6;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Buttons */
.btn {
    padding: 18px 35px;
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.4s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #1a5f3f, #4a9d7f);
    color: white;
    box-shadow: 0 8px 25px rgba(26, 95, 63, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(26, 95, 63, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.btn-outline {
    background: transparent;
    color: #1a5f3f;
    border: 2px solid #1a5f3f;
}

.btn-outline:hover {
    background: #1a5f3f;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 95, 63, 0.3);
}

.btn-large {
    padding: 22px 45px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

/* About Section */
.about {
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 3rem;
    line-height: 1.8;
    font-weight: 400;
}

/* ===== BENEFITS SECTION FIX ===== */

.benefits {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    margin-top: 2rem;
}

/* Tablet */
@media (min-width: 768px) {
    .benefits {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .benefits {
        flex-wrap: nowrap;
    }
}

.benefit-item {
    width: 100%;
    max-width: 260px;
    text-align: center;
    padding: 1.2rem;
    background: white;
    border-radius: 14px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 0.8rem;
    font-size: 1.2rem;
}

.benefit-item h3 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
}

.benefit-item p {
    font-size: 0.8rem;
    line-height: 1.4;
}

/* Mobile extra fix */
@media (max-width: 480px) {
    .benefit-item {
        max-width: 220px;
        padding: 1rem;
    }

    .benefit-item h3 {
        font-size: 0.95rem;
    }

    .benefit-item p {
        font-size: 0.75rem;
    }
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.about-image:hover img {
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

/* Classes Section */
.classes {
    background: white;
    position: relative;
}

.classes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    padding: 0 2rem;
}

.class-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(26, 95, 63, 0.08);
    display: flex;
    flex-direction: column;
}

.class-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    border-color: rgba(26, 95, 63, 0.2);
}

.class-header {
    position: relative;
    overflow: hidden;
}

.class-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.class-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.class-card:hover .class-image img {
    transform: scale(1.1);
}

.class-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #1a5f3f, #2d7a57);
    color: white;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 3;
    box-shadow: 0 6px 20px rgba(26, 95, 63, 0.4);
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.class-body {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.class-info {
    margin-bottom: 1.5rem;
}

.class-title {
    font-size: 1.4rem;
    color: #1a5f3f;
    margin-bottom: 0.8rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
}

.class-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.class-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #495057;
    font-size: 0.85rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f1f3f5;
}

.meta-item i {
    color: #1a5f3f;
    width: 16px;
    text-align: center;
}

.meta-item.price {
    color: #1a5f3f;
    font-weight: 600;
    font-size: 0.95rem;
}

.meta-item.price i {
    color: #2d7a57;
}

.class-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    color: #495057;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    padding: 0.3rem 0;
}

.feature-item:hover {
    color: #1a5f3f;
    transform: translateX(5px);
}

.feature-item i {
    color: #28a745;
    width: 14px;
    font-size: 0.8rem;
}

.class-actions {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.class-actions {
    display: flex;
    gap: 1rem;
}

/* Button Standardization */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

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

.btn:hover::before {
    left: 100%;
}

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

.btn:active {
    transform: translateY(0);
}

.btn-primary {
    background: linear-gradient(135deg, #1a5f3f, #2d7a57);
    color: white;
    box-shadow: 0 4px 15px rgba(26, 95, 63, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2d7a57, #1a5f3f);
    box-shadow: 0 8px 25px rgba(26, 95, 63, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #6c757d, #495057);
    color: white;
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #495057, #6c757d);
    box-shadow: 0 8px 25px rgba(108, 117, 125, 0.4);
}

.btn-success {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.btn-success:hover {
    background: linear-gradient(135deg, #20c997, #28a745);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
}

.btn-large {
    padding: 18px 32px;
    font-size: 1rem;
}

.btn i {
    font-size: 0.9em;
    margin-right: 6px;
}

/* Class-specific buttons override */
.btn-enroll,
.btn-details {
    flex: 1;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 0.85rem;
    min-height: 44px;
}

.btn-enroll {
    background: linear-gradient(135deg, #1a5f3f, #2d7a57);
    color: white;
    box-shadow: 0 4px 15px rgba(26, 95, 63, 0.3);
}

.btn-enroll:hover {
    background: linear-gradient(135deg, #2d7a57, #1a5f3f);
    box-shadow: 0 6px 20px rgba(26, 95, 63, 0.4);
}

.btn-details {
    background: linear-gradient(135deg, #6c757d, #495057);
    color: white;
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

.btn-details:hover {
    background: linear-gradient(135deg, #495057, #6c757d);
    box-shadow: 0 6px 20px rgba(108, 117, 125, 0.4);
}

/* Classes Section - Professional Design */
.classes {
    background: linear-gradient(135deg, #f8f6f3 0%, #f0ebe5 100%);
    position: relative;
    padding: 100px 0;
}

.classes::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%231a5f3f" fill-opacity="0.03"><circle cx="30" cy="30" r="4"/></g></svg>') repeat;
    pointer-events: none;
}

.classes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.class-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f1f3f5;
    position: relative;
}

.class-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(26, 95, 63, 0.15);
    border-color: rgba(26, 95, 63, 0.2);
}

.class-image-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.class-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.class-card:hover .class-image {
    transform: scale(1.05);
}

.class-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    z-index: 2;
}

.class-badge.beginner {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.class-badge.intermediate {
    background: linear-gradient(135deg, #fd7e14, #e67e22);
    color: white;
    box-shadow: 0 4px 15px rgba(253, 126, 20, 0.3);
}

.class-badge.all-levels {
    background: linear-gradient(135deg, #6f42c1, #8b5cf6);
    color: white;
    box-shadow: 0 4px 15px rgba(111, 66, 193, 0.3);
}

.class-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.class-card:hover .class-overlay {
    opacity: 1;
}

.class-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #ffd700;
    font-size: 0.9rem;
}

.class-rating span {
    color: white;
    font-weight: 600;
    margin-left: 5px;
}

.class-students {
    display: flex;
    align-items: center;
    gap: 5px;
    color: white;
    font-size: 0.85rem;
}

.class-content {
    padding: 2rem;
}

.class-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.class-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a5f3f;
    margin: 0;
    line-height: 1.3;
    flex: 1;
}

.class-price {
    text-align: right;
    margin-left: 1rem;
}

.price-amount {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a5f3f;
}

.price-period {
    display: block;
    font-size: 0.85rem;
    color: #6c757d;
    font-weight: 500;
}

.class-description {
    color: #495057;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.class-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #6c757d;
}

.meta-item i {
    color: #1a5f3f;
    width: 16px;
    text-align: center;
}

.class-features {
    margin-bottom: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: #495057;
}

.feature-item i {
    color: #28a745;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.class-actions {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.btn-enroll,
.btn-details {
    flex: 1;
    padding: 14px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

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

.btn-enroll:hover::before,
.btn-details:hover::before {
    left: 100%;
}

.btn-enroll {
    background: linear-gradient(135deg, #1a5f3f, #2d7a57);
    color: white;
    box-shadow: 0 4px 15px rgba(26, 95, 63, 0.3);
}

.btn-enroll:hover {
    background: linear-gradient(135deg, #2d7a57, #1a5f3f);
    box-shadow: 0 6px 20px rgba(26, 95, 63, 0.4);
    transform: translateY(-2px);
}

.btn-details {
    background: linear-gradient(135deg, #6c757d, #495057);
    color: white;
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

.btn-details:hover {
    background: linear-gradient(135deg, #495057, #6c757d);
    box-shadow: 0 6px 20px rgba(108, 117, 125, 0.4);
    transform: translateY(-2px);
}

/* Classes Responsive Design */
@media (max-width: 768px) {
    .classes-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .class-card {
        border-radius: 15px;
    }
    
    .class-content {
        padding: 1.5rem;
    }
    
    .class-title {
        font-size: 1.25rem;
    }
    
    .class-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .class-price {
        margin-left: 0;
        text-align: left;
    }
    
    .class-actions {
        flex-direction: column;
    }
    
    .btn-enroll,
    .btn-details {
        width: 100%;
    }
}

/* Pricing Section */
.pricing {
    background: linear-gradient(135deg, #f8f6f3 0%, #f0ebe5 100%);
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%231a5f3f" fill-opacity="0.03"><circle cx="30" cy="30" r="4"/></g></svg>') repeat;
}

.pricing-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%231a5f3f" fill-opacity="0.03"><circle cx="30" cy="30" r="4"/></g></svg>') repeat;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.pricing-card {
    background: white;
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.5s ease;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #1a5f3f, #4a9d7f);
}

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

.pricing-card.featured {
    border: 3px solid #1a5f3f;
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(26, 95, 63, 0.2);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
    box-shadow: 0 30px 70px rgba(26, 95, 63, 0.3);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #1a5f3f, #4a9d7f);
    color: white;
    padding: 8px 25px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(26, 95, 63, 0.3);
}

.pricing-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #1a5f3f;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a5f3f;
    margin-bottom: 2.5rem;
    line-height: 1;
}

.price span {
    font-size: 1.2rem;
    color: #6c757d;
    font-weight: 400;
}

.features {
    list-style: none;
    margin-bottom: 2.5rem;
    text-align: left;
    padding: 0 1rem;
}

.features li {
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #4a5568;
    font-weight: 500;
}

.features li:last-child {
    border-bottom: none;
}

.features li i {
    color: #1a5f3f;
    font-size: 1.1rem;
    width: 20px;
}

/* Testimonials Section */
.testimonials {
    background: white;
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
}

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

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1a5f3f, #4a9d7f);
}

.testimonial-card:hover {
    transform: translateY(-8px) translateZ(5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 3px solid #f8f9fa;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.testimonial-card:hover .testimonial-image img {
    transform: scale(1.05);
}

.testimonial-content {
    text-align: center;
}

.stars {
    color: #ffa500;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.testimonial-content p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.05rem;
    font-style: italic;
    position: relative;
}

.author {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.footer-section h3, .footer-section h4 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
    object-fit: contain;
}

.footer-logo:hover .footer-logo-img {
    transform: scale(1.05);
}

.footer-logo-img:not([src]) ~ h3,
.footer-logo-img[src=""] ~ h3,
.footer-logo-img[src="undefined"] ~ h3 {
    margin-left: 0;
}

.author-info h4 {
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-info p {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
    font-style: normal;
}

/* WhatsApp Button */
.whatsapp-btn {
display: inline-block;
background: #25d366;
color: white;
padding: 0.8rem 1.5rem;
border-radius: 25px;
text-decoration: none;
font-weight: 500;
transition: all 0.3s ease;
cursor: pointer;
}

.whatsapp-btn:hover {
background: #128c7e;
transform: translateY(-2px);
box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
color: white;
}

.whatsapp-btn i {
margin-right: 8px;
font-size: 1.1rem;
}

/* Notification Toast */
.notification-toast {
    position: fixed;
    top: 30px;
    right: 30px;
    background: linear-gradient(135deg, #fff, #f8f9fa);
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 3000;
    animation: slideInRight 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    min-width: 300px;
    max-width: 500px;
}

.notification-toast.success {
    border-left: 4px solid #28a745;
    color: #155724;
}

.notification-toast.error {
    border-left: 4px solid #dc3545;
    color: #721c24;
}

.notification-toast.info {
    border-left: 4px solid #17a2b8;
    color: #0c5460;
}

.notification-toast i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.notification-toast.success i {
    color: #28a745;
}

.notification-toast.error i {
    color: #dc3545;
}

.notification-toast.info i {
    color: #17a2b8;
}

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

/* FAQ Accordion Styles */
.faq-section {
    background: linear-gradient(135deg, #f8f6f3 0%, #f0ebe5 100%);
    padding: 80px 0;
    position: relative;
}

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

.faq-categories {
    text-align: center;
    margin-bottom: 3rem;
}

.category-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.category-tab {
    padding: 12px 24px;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    color: #495057;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-tab:hover {
    border-color: #1a5f3f;
    color: #1a5f3f;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(26, 95, 63, 0.1);
}

.category-tab.active {
    background: linear-gradient(135deg, #1a5f3f, #2d7a57);
    color: white;
    border-color: #1a5f3f;
    box-shadow: 0 6px 20px rgba(26, 95, 63, 0.3);
}

.faq-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f1f3f5;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.faq-item.active {
    box-shadow: 0 15px 40px rgba(26, 95, 63, 0.15);
    border-color: rgba(26, 95, 63, 0.2);
}

.faq-question {
    padding: 1.5rem 2rem;
    background: white;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background: #f8f9fa;
    color: #1a5f3f;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: inherit;
}

.faq-question i {
    color: #1a5f3f;
    font-size: 1rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: #2d7a57;
}

/* FAQ Section - New Implementation */
.faq-categories {
    margin-bottom: 3rem;
}

.category-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.category-tab {
    padding: 12px 24px;
    border: 2px solid #e9ecef;
    background: white;
    color: #6c757d;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.category-tab:hover {
    border-color: #1a5f3f;
    color: #1a5f3f;
    transform: translateY(-2px);
}

.category-tab.active {
    background: linear-gradient(135deg, #1a5f3f, #2d7a57);
    color: white;
    border-color: #1a5f3f;
    box-shadow: 0 6px 20px rgba(26, 95, 63, 0.3);
}

.faq-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f1f3f5;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.faq-item.active {
    box-shadow: 0 15px 40px rgba(26, 95, 63, 0.15);
    border-color: rgba(26, 95, 63, 0.2);
}

.faq-question {
    padding: 1.5rem 2rem;
    background: white;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background: #f8f9fa;
    color: #1a5f3f;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: inherit;
}

.faq-question i {
    color: #1a5f3f;
    font-size: 1rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: #2d7a57;
}

.faq-answer {
    display: none !important;
    overflow: hidden;
    background: #f8f9fa;
    border-radius: 0 0 12px 12px;
    border-top: 1px solid #e9ecef;
    padding: 1.5rem 2rem;
    opacity: 0 !important;
    transition: opacity 0.3s ease;
}

.faq-item.active .faq-answer {
    display: block !important;
    opacity: 1 !important;
}

.faq-answer p {
    margin: 0 0 1rem 0;
    line-height: 1.6;
    color: #495057;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul,
.faq-answer ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #495057;
}

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

.faq-answer p {
    padding: 1.5rem 2rem;
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

.faq-answer ol, .faq-answer ul {
    padding: 0 2rem 1.5rem 3rem;
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
}

.faq-answer li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.faq-answer strong {
    color: #1a5f3f;
    font-weight: 600;
}

.faq-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, #1a5f3f, #2d7a57);
    border-radius: 20px;
    color: white;
    position: relative;
    z-index: 1;
    box-shadow: 0 15px 40px rgba(26, 95, 63, 0.3);
}

.faq-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.faq-cta p {
    margin-bottom: 2rem;
    opacity: 0.9;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .category-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .category-tab {
        width: 200px;
        text-align: center;
    }
    
    .faq-question {
        padding: 1.2rem 1.5rem;
        font-size: 1rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 1.2rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .faq-answer ol, .faq-answer ul {
        padding: 0 1.5rem 1.2rem 2rem;
    }
    
    .faq-cta {
        padding: 2rem 1.5rem;
        margin: 3rem 1rem;
    }
    
    .faq-cta h2 {
        font-size: 1.5rem;
    }
}

.class-details-features {
    margin-bottom: 2rem;
}

.class-details-features h3 {
    color: #1a5f3f;
    margin: 0 0 1rem 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: #f8f9fa;
    border-color: #1a5f3f;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(26, 95, 63, 0.1);
}

.feature-card i {
    color: #28a745;
    font-size: 0.9rem;
    width: 16px;
}

.feature-card span {
    color: #495057;
    font-size: 0.85rem;
    line-height: 1.4;
}

.class-details-actions {
    display: flex;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 2px solid #f1f3f5;
}

.btn-large {
    padding: 18px 32px;
    font-size: 1rem;
    border-radius: 12px;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .class-details-header {
        flex-direction: column;
        text-align: center;
    }
    
    .class-details-image {
        width: 100%;
        height: 200px;
    }
    
    .class-details-meta {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .class-details-actions {
        flex-direction: column;
    }
}

/* Mobile Menu Styles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 10px;
    background: none;
    border: none;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #1a5f3f;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 90px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 10px 0;
    }
    
    .nav-menu a {
        display: block;
        padding: 15px;
        color: #2c3e50;
        text-decoration: none;
        border-bottom: 1px solid #f1f3f5;
        transition: all 0.3s ease;
    }
    
    .nav-menu a:hover {
        background: #f8f9fa;
        color: #1a5f3f;
    }
}

/* Floating WhatsApp Button */
.floating-whatsapp-btn {
position: fixed;
bottom: 25px;
right: 25px;
width: 60px;
height: 60px;
background: #25d366;
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
text-decoration: none;
font-size: 1.8rem;
box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
transition: all 0.3s ease;
z-index: 9999;
border: 3px solid rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.8rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    z-index: 9999;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.floating-whatsapp-btn:hover {
    background: #128c7e;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

.floating-whatsapp-btn i {
    margin: 0;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Notifications */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    padding: 0;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    transform: translateX(400px);
    transition: all 0.3s ease;
    max-width: 400px;
    overflow: hidden;
}

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

.notification.success {
    border-left: 4px solid #28a745;
}

.notification.info {
    border-left: 4px solid #17a2b8;
}

.notification-content {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    gap: 1rem;
}

.notification-content i {
    font-size: 1.5rem;
    color: #28a745;
}

.notification.info .notification-content i {
    color: #17a2b8;
}

.notification-content p {
    margin: 0;
    color: #2c3e50;
    font-weight: 500;
    flex: 1;
    line-height: 1.4;
}

.notification-close {
    background: none;
    border: none;
    color: #6c757d;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-close:hover {
    background: #f8f9fa;
    color: #2c3e50;
}

/* Interactive Animations */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translateY(0);
    }
    40%, 43% {
        transform: translateY(-10px);
    }
    70% {
        transform: translateY(-5px);
    }
    90% {
        transform: translateY(-2px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes glow {
    0% {
        box-shadow: 0 0 5px rgba(26, 95, 63, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(26, 95, 63, 0.8);
    }
    100% {
        box-shadow: 0 0 5px rgba(26, 95, 63, 0.5);
    }
}

/* Enhanced Button Animations */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    transform-style: preserve-3d;
}

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

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-3px) translateZ(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2d6a4f, #1a5f3f);
    transform: translateY(-3px) translateZ(10px) scale(1.05);
}

/* Form Input Animations */
.form-group input:focus,
.form-group textarea:focus {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 95, 63, 0.15);
}

/* Card Hover Effects */
.class-card:hover,
.testimonial-card:hover {
    transform: translateY(-8px) translateZ(5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Loading Spinner */
.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #1a5f3f;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 8px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Success Animation */
.success-message {
    background: #28a745;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    animation: slideInRight 0.5s ease;
}

/* Enhanced Contact Item Animations */
.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(26, 95, 63, 0.1), transparent);
    transition: left 0.6s ease;
}

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

.contact-item:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.contact-item:hover i {
    font-size: 2.5rem;
    color: #1a5f3f;
    transform: scale(1.1) rotate(5deg);
}

.contact-item i {
    font-size: 2.5rem;
    color: #1a5f3f;
    width: 60px;
    text-align: center;
}

.contact-item h3 {
    font-family: 'Playfair Display', serif;
    color: #1a5f3f;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.contact-item p {
    color: #4a5568;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Premium Floating Animation */
.hero-content {
    animation: premiumFloat 4s ease-in-out infinite;
}

@keyframes premiumFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(1deg);
    }
    50% {
        transform: translateY(0px) rotate(0deg);
    }
    75% {
        transform: translateY(-5px) rotate(-1deg);
    }
}

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

/* Parallax Effect for Hero Section */
.hero-background img {
    transform: scale(1.1);
    transition: transform 10s ease-out;
}

.hero:hover .hero-background img {
    transform: scale(1.05);
}

/* Stagger Animation for Elements - DISABLED TO FIX VISIBILITY */
.stagger-animation > * {
    opacity: 1;
    transform: translateY(0);
}

.stagger-animation > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-animation > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-animation > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-animation > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-animation > *:nth-child(5) { transition-delay: 0.5s; }
.stagger-animation > *:nth-child(6) { transition-delay: 0.6s; }

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #1a5f3f, #4a9d7f);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><circle cx="50" cy="50" r="3"/></g></g></svg>') repeat;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.cta p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #f8f6f3 0%, #f0ebe5 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%231a5f3f" fill-opacity="0.03"><circle cx="30" cy="30" r="4"/></g></g></svg>') repeat;
    pointer-events: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #1a5f3f, #4a9d7f);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.contact-item i {
    font-size: 2.5rem;
    color: #1a5f3f;
    width: 60px;
    text-align: center;
}

.contact-item h3 {
    font-family: 'Playfair Display', serif;
    color: #1a5f3f;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.contact-item p {
    color: #4a5568;
    font-size: 1.1rem;
    font-weight: 500;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a5f3f;
    background: white;
    box-shadow: 0 5px 15px rgba(26, 95, 63, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

/* Footer */
.footer {
    background: #2d6a4f;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
    object-fit: contain;
    background: white;
    padding: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.footer-logo-img:not([src]) ~ h3,
.footer-logo-img[src=""] ~ h3,
.footer-logo-img[src="undefined"] ~ h3 {
    margin-left: 0;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.story-content {
    background: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    overflow-y: auto;
    position: relative;
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
}

.close:hover {
    color: #333;
}

.modal-header {
    padding: 2rem;
    background: linear-gradient(135deg, #2d6a4f, #40916c);
    color: white;
    border-radius: 20px 20px 0 0;
}

.modal-body {
    padding: 2rem;
}

.modal-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    opacity: 0.9;
}

/* Payment Form */
.payment-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.payment-method {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-method:hover,
.payment-method.selected {
    border-color: #2d6a4f;
    background: #f8f9fa;
}

.payment-method i {
    font-size: 2rem;
    color: #2d6a4f;
    margin-bottom: 0.5rem;
}

.payment-summary {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.summary-row.total {
    font-weight: 600;
    font-size: 1.2rem;
    color: #2d6a4f;
    border-top: 2px solid #e0e0e0;
    padding-top: 1rem;
    margin-top: 1rem;
}

/* Booking Confirmation Modal */
.booking-confirmation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    animation: fadeIn 0.3s ease;
}

.booking-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
}

.booking-icon {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 1rem;
    animation: checkmark 0.6s ease;
}

.booking-content h3 {
    color: #28a745;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.booking-details {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    text-align: left;
}

.booking-details h4 {
    color: #1a5f3f;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.booking-details p {
    color: #4a5568;
    margin: 0.5rem 0;
    font-size: 0.95rem;
}

.booking-info {
    background: #e8f5e8;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.booking-info p {
    color: #4a5568;
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.booking-info i {
    color: #1a5f3f;
    font-size: 1rem;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        transform: translateY(50px);
        opacity: 0;
    }
    to { 
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes checkmark {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.action-buttons .btn {
    flex: 1;
}

.action-buttons .btn-outline {
    background: transparent;
    color: #1a5f3f;
    border: 2px solid #1a5f3f;
}

.action-buttons .btn-outline:hover {
    background: #1a5f3f;
    color: white;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #f8f6f3 0%, #e8f5e8 100%);
    padding: 100px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.contact-item i {
    font-size: 1.5rem;
    color: #1a5f3f;
    min-width: 30px;
    margin-top: 5px;
}

.contact-item h3 {
    color: #1a5f3f;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-item p {
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

.contact-item iframe {
    margin-top: 0.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.map-container {
    margin-top: 0.5rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 250px;
}

.map-container iframe {
    margin: 0;
    box-shadow: none;
}

.whatsapp-btn {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    background: #25d366;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.whatsapp-btn:hover {
    background: #128c7e;
}

/* Responsive Design - Mobile Compatibility Only */
@media (max-width: 768px) {
    /* Base Typography & Spacing */
    body {
        font-size: 16px;
        line-height: 1.5;
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
    }
    
    .container {
        padding: 0 20px;
        max-width: 100%;
    }
    
    /* Navigation - Mobile Optimized */
    .navbar {
        height: 60px;
        padding: 8px 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
    }
    
    .nav-container {
        height: 60px;
        padding: 0 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .nav-logo {
        flex: 1;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .nav-logo img {
        height: 35px;
        width: auto;
        border-radius: 8px;
    }
    
    .nav-logo h2 {
        font-size: 1.4rem;
        font-weight: 700;
        margin: 0;
        color: #1a5f3f;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s ease;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        padding: 0;
        z-index: 999;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-menu a {
        font-size: 1rem;
        font-weight: 500;
        padding: 18px 20px;
        display: block;
        color: #2c3e50;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .nav-menu a:hover {
        background: #f8f9fa;
        color: #1a5f3f;
    }
    
    .nav-menu .login-link {
        display: inline-block;
        margin: 10px 20px;
        text-align: center;
        width: fit-content;
        background: linear-gradient(135deg, #1a5f3f, #2d7a57);
        color: white !important;
        padding: 10px 20px;
        border-radius: 6px;
        font-weight: 500;
        transition: all 0.3s ease;
        text-decoration: none !important;
        border: none !important;
    }
    
    .nav-menu .login-link:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(26, 95, 63, 0.3);
        background: linear-gradient(135deg, #1a5f3f, #2d7a57);
    }
    
    .nav-menu .login-link::after {
        display: none !important;
    }

    /* Hamburger Menu - Mobile */
    .hamburger {
        display: block;
        cursor: pointer;
        z-index: 1000;
        width: 30px;
        height: 25px;
        position: relative;
    }

    .hamburger span {
        display: block;
        width: 100%;
        height: 3px;
        margin: 0 auto 6px;
        background-color: #1a5f3f;
        border-radius: 3px;
        transition: all 0.3s ease;
        position: relative;
    }

    .hamburger span:last-child {
        margin-bottom: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg);
        top: 8px;
        background-color: #1a5f3f;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg);
        top: -8px;
        background-color: #1a5f3f;
    }

    /* Hero Section - Mobile */
    .hero {
        min-height: 100vh;
        padding-top: 60px;
        position: relative;
    }
    
    .hero-background img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 30%;
    }
    
    .hero-overlay {
        background: linear-gradient(135deg, rgba(26, 95, 63, 0.85) 0%, rgba(74, 157, 127, 0.75) 100%);
    }
    
    .hero-content {
        text-align: center;
        padding: 40px 20px;
        max-width: 100%;
        position: relative;
        z-index: 2;
    }

    .hero-title {
        font-size: 2.2rem;
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 20px;
        color: white;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }

    .hero-subtitle {
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.6;
        margin-bottom: 30px;
        max-width: 100%;
        color: rgba(255, 255, 255, 0.9);
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        padding: 18px 30px;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 12px;
        text-transform: none;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    /* Section Headers - Mobile */
    .section-header {
        margin-bottom: 40px;
        padding: 0 10px;
    }

    .section-title {
        font-size: 2rem;
        font-weight: 700;
        line-height: 1.3;
        margin-bottom: 15px;
        color: #1a5f3f;
    }

    .section-title::after {
        width: 60px;
        height: 3px;
        bottom: -10px;
    }

    .section-subtitle {
        font-size: 1rem;
        font-weight: 400;
        margin-top: 20px;
        max-width: 100%;
        color: #6c757d;
        line-height: 1.6;
    }

    /* About Section - Mobile */
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 10px;
    }
    
    .about-text {
        order: 2;
    }
    
    .about-image {
        order: 1;
        max-width: 100%;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }
    
    .about-image img {
        width: 100%;
        height: auto;
        border-radius: 15px;
    }

    .benefits {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    .benefit-item {
        padding: 25px 20px;
        text-align: center;
        background: white;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        max-width: 100%;
    }

    .benefit-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

    .benefit-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 15px;
        background: linear-gradient(135deg, #1a5f3f, #4a9d7f);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 15px;
        color: white;
        box-shadow: 0 5px 15px rgba(26, 95, 63, 0.3);
    }

    .benefit-item h3 {
        font-size: 1.3rem;
        font-weight: 600;
        margin-bottom: 10px;
        color: #1a5f3f;
    }

    .benefit-item p {
        font-size: 0.95rem;
        line-height: 1.6;
        color: #6c757d;
    }

    /* Classes Grid - Mobile */
    .classes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }

    .class-card {
        background: white;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        border: none;
    }

    .class-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    }

    .class-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 15px 15px 0 0;
    }

    .class-content {
        padding: 25px 20px;
    }

    .class-title {
        font-size: 1.4rem;
        font-weight: 600;
        margin-bottom: 12px;
        color: #1a5f3f;
        line-height: 1.3;
    }

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

    .class-meta {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-bottom: 20px;
        padding: 15px;
        background: #f8f9fa;
        border-radius: 10px;
    }

    .class-meta span {
        font-size: 0.9rem;
        color: #495057;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .class-meta i {
        color: #1a5f3f;
        font-size: 0.9rem;
    }

    .class-features {
        margin-bottom: 25px;
    }

    .class-features ul {
        list-style: none;
        padding: 0;
    }

    .class-features li {
        font-size: 0.9rem;
        margin-bottom: 8px;
        padding-left: 25px;
        position: relative;
        color: #495057;
        line-height: 1.5;
    }

    .class-features li::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: #1a5f3f;
        font-weight: bold;
    }

    .class-price {
        font-size: 1.8rem;
        font-weight: 700;
        color: #1a5f3f;
        margin-bottom: 20px;
    }

    .btn-enroll {
        width: 100%;
        padding: 16px 24px;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 12px;
        background: linear-gradient(135deg, #1a5f3f, #4a9d7f);
        color: white;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(26, 95, 63, 0.3);
        text-transform: none;
        letter-spacing: 0.5px;
    }

    .btn-enroll:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(26, 95, 63, 0.4);
    }

    /* Testimonials - Mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }

    .testimonial-card {
        background: white;
        padding: 20px 15px;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .testimonial-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    }

    .testimonial-image {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        overflow: hidden;
        margin: 0 auto;
        flex-shrink: 0;
        border: 3px solid #f0f0f0;
    }

    .testimonial-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .testimonial-content {
        text-align: center;
        flex: 1;
    }

    .stars {
        font-size: 1rem;
        color: #ffc107;
        margin-bottom: 8px;
        letter-spacing: 1px;
    }

    .testimonial-content p {
        font-size: 0.9rem;
        line-height: 1.5;
        color: #495057;
        font-style: italic;
        margin-bottom: 12px;
        position: relative;
        z-index: 1;
    }

    .testimonial-card::before {
        content: '"';
        font-size: 2.5rem;
        color: #1a5f3f;
        position: absolute;
        top: 10px;
        left: 15px;
        opacity: 0.08;
        font-family: 'Playfair Display', serif;
    }

    .author {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        margin-top: 8px;
    }

    .author-info h4 {
        font-size: 1rem;
        font-weight: 600;
        color: #1a5f3f;
        margin: 0;
    }

    .author-info p {
        font-size: 0.8rem;
        color: #6c757d;
        margin: 0;
        line-height: 1.3;
    }

    /* Pricing Section - Mobile */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }

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

    .pricing-card.featured {
        border: 3px solid #1a5f3f;
        transform: scale(1.02);
    }

    .pricing-card.featured::before {
        content: 'POPULAR';
        position: absolute;
        top: 15px;
        right: -30px;
        background: #1a5f3f;
        color: white;
        padding: 5px 40px;
        font-size: 0.7rem;
        font-weight: 600;
        transform: rotate(45deg);
    }

    .pricing-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    }

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

    .plan-name {
        font-size: 1.4rem;
        font-weight: 600;
        color: #1a5f3f;
        margin-bottom: 15px;
    }

    .price {
        font-size: 2.5rem;
        font-weight: 700;
        color: #1a5f3f;
        margin-bottom: 10px;
    }

    .price span {
        font-size: 1rem;
        color: #6c757d;
        font-weight: 400;
    }

    .pricing-features {
        list-style: none;
        padding: 0;
        margin-bottom: 25px;
        text-align: left;
    }

    .pricing-features li {
        font-size: 0.95rem;
        margin-bottom: 10px;
        padding-left: 25px;
        position: relative;
        color: #495057;
        line-height: 1.5;
    }

    .pricing-features li::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: #1a5f3f;
        font-weight: bold;
    }

    /* Contact Section - Mobile */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 10px;
    }

    .contact-item {
        background: white;
        padding: 25px 20px;
        border-radius: 15px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        text-align: center;
        transition: all 0.3s ease;
    }

    .contact-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    }

    .contact-item i {
        font-size: 2.5rem;
        margin-bottom: 15px;
        color: #1a5f3f;
        display: block;
    }

    .contact-item h3 {
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 10px;
        color: #1a5f3f;
    }

    .contact-item p {
        font-size: 1rem;
        color: #6c757d;
        line-height: 1.6;
    }

    .contact-item iframe {
        width: 100%;
        height: 200px;
        border-radius: 10px;
        margin-top: 15px;
        border: none;
    }

    .contact-form {
        background: white;
        padding: 30px 25px;
        border-radius: 15px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        max-width: 100%;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
        color: #1a5f3f;
        font-size: 0.95rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        width: 100%;
        padding: 15px;
        font-size: 1rem;
        border: 2px solid #e9ecef;
        border-radius: 10px;
        transition: all 0.3s ease;
        font-family: 'Poppins', sans-serif;
        background: #f8f9fa;
    }

    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
        outline: none;
        border-color: #1a5f3f;
        background: white;
        box-shadow: 0 0 0 3px rgba(26, 95, 63, 0.1);
    }

    .form-group textarea {
        min-height: 120px;
        resize: vertical;
    }

    .btn-submit {
        width: 100%;
        padding: 16px 30px;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 12px;
        background: linear-gradient(135deg, #1a5f3f, #4a9d7f);
        color: white;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(26, 95, 63, 0.3);
        text-transform: none;
        letter-spacing: 0.5px;
    }

    .btn-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(26, 95, 63, 0.4);
    }

    /* FAQ Section - Mobile */
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 10px;
    }

    .faq-item {
        background: white;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
    }

    .faq-item:hover {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    }

    .faq-question {
        padding: 20px;
        font-size: 1rem;
        font-weight: 600;
        color: #1a5f3f;
        cursor: pointer;
        background: white;
        border: none;
        width: 100%;
        text-align: left;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: all 0.3s ease;
    }

    .faq-question:hover {
        background: #f8f9fa;
    }

    .faq-question::after {
        content: '+';
        font-size: 1.5rem;
        color: #1a5f3f;
        transition: transform 0.3s ease;
    }

    .faq-item.active .faq-question::after {
        transform: rotate(45deg);
    }

    .faq-answer {
        padding: 0 20px 20px;
        font-size: 0.95rem;
        line-height: 1.6;
        color: #6c757d;
        display: none;
    }

    .faq-item.active .faq-answer {
        display: block;
    }

    /* Blog Section - Mobile */
    .posts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }

    .blog-post {
        background: white;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }

    .blog-post:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    }

    .post-image {
        height: 200px;
        overflow: hidden;
    }

    .post-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .blog-post:hover .post-image img {
        transform: scale(1.05);
    }

    .post-content {
        padding: 25px 20px;
    }

    .post-meta {
        display: flex;
        gap: 15px;
        margin-bottom: 15px;
        flex-wrap: wrap;
        font-size: 0.85rem;
        color: #6c757d;
    }

    .post-content h3 {
        font-size: 1.3rem;
        font-weight: 600;
        color: #1a5f3f;
        margin-bottom: 12px;
        line-height: 1.3;
    }

    .post-content p {
        font-size: 0.95rem;
        line-height: 1.6;
        color: #495057;
        margin-bottom: 15px;
    }

    .read-more {
        color: #1a5f3f;
        font-weight: 600;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 5px;
        transition: all 0.3s ease;
    }

    .read-more:hover {
        color: #4a9d7f;
        gap: 8px;
    }

    /* Newsletter Section - Mobile */
    .newsletter-content {
        padding: 40px 20px;
        text-align: center;
    }

    .newsletter-content h2 {
        font-size: 2rem;
        margin-bottom: 15px;
        color: white;
    }

    .newsletter-content p {
        font-size: 1rem;
        margin-bottom: 25px;
        opacity: 0.95;
        max-width: 100%;
    }

    .newsletter-form {
        display: flex;
        flex-direction: column;
        gap: 15px;
        max-width: 100%;
    }

    .newsletter-form input {
        padding: 15px 20px;
        font-size: 1rem;
        border: none;
        border-radius: 10px;
        font-family: 'Poppins', sans-serif;
        background: rgba(255, 255, 255, 0.9);
    }

    .newsletter-form button {
        padding: 15px 30px;
        font-size: 1rem;
        font-weight: 600;
        border: none;
        border-radius: 10px;
        background: white;
        color: #1a5f3f;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
    }

    .newsletter-form button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
    }

    /* Footer - Mobile */
    .footer-content {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 20px;
        text-align: left;
        padding: 40px 20px 30px;
        background: linear-gradient(135deg, #1a5f3f 0%, #2d7a57 100%);
        border-radius: 20px 20px 0 0;
        position: relative;
    }

    .footer-content::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #d4a574, #f1faee, #d4a574);
        border-radius: 20px 20px 0 0;
    }

    .footer-section {
        flex: 0 0 calc(50% - 10px);
        margin-bottom: 25px;
        position: relative;
    }

    .footer-section:first-child {
        flex: 0 0 100%;
        text-align: center;
        margin-bottom: 35px;
    }

    .footer-logo {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-logo img {
        height: 45px;
        margin-bottom: 12px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease;
    }

    .footer-logo img:hover {
        transform: scale(1.05);
    }

    .footer-logo h3 {
        font-size: 1.6rem;
        margin-bottom: 10px;
        color: white;
        font-weight: 700;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        letter-spacing: 0.5px;
    }

    .footer-section p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 20px;
        color: rgba(255, 255, 255, 0.9);
        max-width: 100%;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    }

    .footer-section h4 {
        font-size: 1.2rem;
        margin-bottom: 15px;
        color: white;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        position: relative;
        padding-bottom: 8px;
    }

    .footer-section h4::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 2px;
        background: linear-gradient(90deg, #d4a574, #f1faee);
        border-radius: 1px;
    }

    .footer-section:not(:first-child) h4::after {
        left: 0;
    }

    .footer-section ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-section ul li {
        margin-bottom: 10px;
        position: relative;
        padding-left: 0;
    }

    .footer-section ul li a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        font-size: 0.9rem;
        transition: all 0.3s ease;
        display: inline-block;
        padding: 5px 0;
        border-bottom: 1px solid transparent;
        position: relative;
    }

    .footer-section ul li a:hover {
        color: white;
        border-bottom-color: #d4a574;
        transform: translateX(3px);
    }

    .social-links {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-top: 20px;
    }

    .social-links a {
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.1);
        color: white;
        text-decoration: none;
        border-radius: 50%;
        font-size: 1.2rem;
        transition: all 0.3s ease;
        border: 2px solid rgba(212, 165, 116, 0.3);
        position: relative;
        overflow: hidden;
    }

    .social-links a::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, #d4a574, #f1faee);
        opacity: 0;
        transition: opacity 0.3s ease;
        border-radius: 50%;
    }

    .social-links a:hover::before {
        opacity: 1;
    }

    .social-links a:hover {
        transform: translateY(-3px) scale(1.1);
        box-shadow: 0 8px 25px rgba(212, 165, 116, 0.4);
        border-color: #d4a574;
    }

    .social-links a i {
        position: relative;
        z-index: 1;
        transition: color 0.3s ease;
    }

    .social-links a:hover i {
        color: #1a5f3f;
    }

    .footer-bottom {
        text-align: center;
        padding: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 30px;
        background: rgba(0, 0, 0, 0.2);
        backdrop-filter: blur(10px);
    }

    .footer-bottom p {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.85rem;
        margin: 0;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    }

    /* CTA Section - Mobile */
    .cta {
        padding: 60px 20px;
        text-align: center;
    }

    .cta h2 {
        font-size: 2rem;
        font-weight: 700;
        line-height: 1.3;
        margin-bottom: 20px;
        color: white;
    }

    .cta-content {
        padding: 30px 20px;
        border-radius: 15px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
    }

    .cta p {
        font-size: 1rem;
        margin-bottom: 25px;
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.6;
    }

    .cta .btn {
        width: 100%;
        max-width: 300px;
        padding: 16px 30px;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 12px;
        background: white;
        color: #1a5f3f;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
        text-transform: none;
        letter-spacing: 0.5px;
    }

    .cta .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
    }

    /* Modals - Mobile */
    .modal {
        padding: 10px;
    }

    .modal-content {
        margin: 0;
        width: 100%;
        max-height: 90vh;
        overflow-y: auto;
        padding: 30px 20px;
        border-radius: 20px 20px 0 0;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    }

    .close {
        position: absolute;
        top: 15px;
        right: 15px;
        font-size: 2rem;
        color: #6c757d;
        cursor: pointer;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: #f8f9fa;
        transition: all 0.3s ease;
    }

    .close:hover {
        background: #e9ecef;
        color: #1a5f3f;
    }

    .booking-content {
        padding: 0;
    }

    .booking-content h3 {
        font-size: 1.5rem;
        margin-bottom: 20px;
        color: #1a5f3f;
    }

    .booking-content p {
        font-size: 1rem;
        line-height: 1.6;
        color: #6c757d;
        margin-bottom: 25px;
    }

    .action-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .action-buttons .btn {
        width: 100%;
        padding: 16px 24px;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 12px;
        transition: all 0.3s ease;
        text-transform: none;
        letter-spacing: 0.5px;
    }

    /* WhatsApp Button - Mobile */
    .floating-whatsapp-btn {
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
        background: #25d366;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        font-size: 1.6rem;
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
        transition: all 0.3s ease;
        z-index: 9999;
        border: 3px solid rgba(255, 255, 255, 0.2);
    }

    .floating-whatsapp-btn:hover {
        background: #128c7e;
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
        border-color: rgba(255, 255, 255, 0.4);
    }

    .floating-whatsapp-btn i {
        margin: 0;
        animation: pulse 2s infinite;
    }

    /* Section Spacing - Mobile */
    .section {
        padding: 60px 0;
    }

    .section-alt {
        padding: 60px 0;
    }

    /* Button Improvements - Mobile */
    .btn {
        padding: 14px 24px;
        font-size: 0.95rem;
        font-weight: 600;
        border-radius: 10px;
        transition: all 0.3s ease;
        cursor: pointer;
        text-transform: none;
        letter-spacing: 0.5px;
        border: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
    }

    .btn-primary {
        background: linear-gradient(135deg, #1a5f3f, #4a9d7f);
        color: white;
        box-shadow: 0 4px 15px rgba(26, 95, 63, 0.3);
    }

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(26, 95, 63, 0.4);
    }

    .btn-secondary {
        background: transparent;
        color: #1a5f3f;
        border: 2px solid #1a5f3f;
    }

    .btn-secondary:hover {
        background: #1a5f3f;
        color: white;
        transform: translateY(-2px);
    }

    /* Images - Mobile */
    img {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
    }

    /* Form Improvements - Mobile */
    input, textarea, select {
        font-size: 1rem;
        border-radius: 10px;
        border: 2px solid #e9ecef;
        background: #f8f9fa;
        transition: all 0.3s ease;
    }

    input:focus, textarea:focus, select:focus {
        outline: none;
        border-color: #1a5f3f;
        background: white;
        box-shadow: 0 0 0 3px rgba(26, 95, 63, 0.1);
    }

    /* Touch Improvements - Mobile */
    button, a, .btn {
        min-height: 44px;
        min-width: 44px;
        -webkit-tap-highlight-color: transparent;
    }

    /* Scroll Improvements - Mobile */
    html {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }

    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeLegibility;
    }

    /* Prevent Horizontal Scroll - Mobile */
    * {
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Focus States - Mobile */
    button:focus, a:focus, input:focus, textarea:focus, select:focus {
        outline: 2px solid #1a5f3f;
        outline-offset: 2px;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    /* Base Typography */
    body {
        font-size: 13px;
        line-height: 1.5;
    }
    
    .container {
        padding: 0 10px;
    }

    /* Navigation */
    .navbar {
        height: 60px;
        padding: 8px 0;
    }
    
    .nav-container {
        height: 60px;
        padding: 0 10px;
    }
    
    .nav-logo img {
        height: 35px;
    }
    
    .nav-logo h2 {
        font-size: 1.3rem;
    }
    
    .nav-menu {
        top: 60px;
        max-height: calc(100vh - 60px);
    }

    .hamburger span {
        width: 22px;
        height: 2px;
        margin: 4px auto;
    }

    /* Hero Section */
    .hero {
        min-height: 100vh;
        padding-top: 60px;
    }
    
    .hero-content {
        padding: 1.5rem 0.5rem;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }

    .hero-buttons .btn {
        max-width: 250px;
        padding: 14px 20px;
        font-size: 0.9rem;
    }

    /* Section Headers */
    .section-header {
        margin-bottom: 2.5rem;
        padding: 0 0.5rem;
    }

    .section-title {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 0.8rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
        margin-top: 1rem;
    }

    /* About Section */
    .about-content {
        gap: 1.5rem;
        padding: 0 0.5rem;
    }

    .benefits {
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .benefit-item {
        padding: 1rem;
    }

    .benefit-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .benefit-item h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .benefit-item p {
        font-size: 0.85rem;
    }

    /* Classes Grid */
    .classes-grid {
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .class-card {
        padding: 1rem;
    }

    .class-content {
        padding: 0.8rem;
    }

    .class-title {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .class-description {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .class-features li {
        font-size: 0.8rem;
        margin-bottom: 0.4rem;
    }

    /* Testimonials - Small Mobile */
    .testimonials-grid {
        gap: 15px;
        padding: 0 5px;
    }

    .testimonial-card {
        padding: 15px 12px;
        border-radius: 10px;
        gap: 10px;
    }

    .testimonial-image {
        width: 50px;
        height: 50px;
    }

    .stars {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }

    .testimonial-content p {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 10px;
    }

    .testimonial-card::before {
        font-size: 2rem;
        top: 8px;
        left: 12px;
    }

    .author-info h4 {
        font-size: 0.9rem;
    }

    .author-info p {
        font-size: 0.75rem;
    }

    /* Pricing Section */
    .pricing-grid {
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .pricing-card {
        padding: 1.5rem 1rem;
    }

    .price {
        font-size: 2rem;
    }

    .pricing-features li {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
    }

    /* Contact Section */
    .contact-content {
        gap: 1.5rem;
        padding: 0 0.5rem;
    }

    .contact-item {
        padding: 1rem;
    }

    .contact-item i {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .contact-item h3 {
        font-size: 1rem;
    }

    .contact-item p {
        font-size: 0.85rem;
    }

    .contact-item iframe {
        height: 150px;
    }

    .contact-form {
        padding: 1.5rem 1rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    /* FAQ */
    .faq-grid {
        gap: 0.8rem;
        padding: 0 0.5rem;
    }

    .faq-question {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .faq-answer {
        padding: 1rem;
        font-size: 0.85rem;
    }

    /* Blog Section */
    .posts-grid {
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .post-content {
        padding: 1rem;
    }

    .post-content h3 {
        font-size: 1.1rem;
    }

    .post-content p {
        font-size: 0.85rem;
    }

    /* Newsletter */
    .newsletter-form {
        padding: 0 0.5rem;
    }

    .newsletter-form input {
        padding: 12px;
        font-size: 0.9rem;
    }

    .newsletter-form button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    /* Footer - Small Mobile */
    .footer-content {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 15px;
        padding: 30px 15px 25px;
        border-radius: 15px 15px 0 0;
    }

    .footer-section {
        flex: 0 0 calc(50% - 7.5px);
        margin-bottom: 20px;
    }

    .footer-section:first-child {
        flex: 0 0 100%;
        text-align: center;
        margin-bottom: 25px;
    }

    .footer-logo {
        margin-bottom: 15px;
    }

    .footer-logo img {
        height: 40px;
        margin-bottom: 10px;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    }

    .footer-logo h3 {
        font-size: 1.4rem;
        margin-bottom: 8px;
        letter-spacing: 0.3px;
    }

    .footer-section p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 15px;
        max-width: 100%;
    }

    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 12px;
        letter-spacing: 0.8px;
        padding-bottom: 6px;
    }

    .footer-section h4::after {
        width: 35px;
        height: 2px;
    }

    .footer-section ul li {
        margin-bottom: 8px;
        position: relative;
        padding-left: 0;
    }

    .footer-section ul li a {
        font-size: 0.85rem;
        padding: 4px 0;
    }

    .social-links {
        gap: 12px;
        margin-top: 15px;
    }

    .social-links a {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .social-links a:hover {
        transform: translateY(-2px) scale(1.05);
        box-shadow: 0 6px 20px rgba(212, 165, 116, 0.35);
    }

    .footer-bottom {
        padding: 15px;
        margin-top: 25px;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }

    /* CTA Section */
    .cta {
        padding: 2.5rem 0.5rem;
    }

    .cta h2 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .cta-content {
        padding: 1.5rem;
    }

    .cta .btn {
        max-width: 250px;
        padding: 14px 20px;
        font-size: 0.9rem;
    }

    /* Modals */
    .modal-content {
        padding: 1.5rem 1rem;
        margin: 2% auto;
    }

    .booking-content {
        padding: 1rem;
    }

    .action-buttons .btn {
        padding: 12px;
        font-size: 0.9rem;
    }

    /* WhatsApp Button - Small Mobile */
    .floating-whatsapp-btn {
        bottom: 15px;
        right: 15px;
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }

    .floating-whatsapp-btn:hover {
        transform: translateY(-2px) scale(1.05);
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
    }

    /* Section Spacing */
    .section {
        padding: 3rem 0;
    }

    .section-alt {
        padding: 3rem 0;
    }

    /* Buttons */
    .btn {
        padding: 12px 20px;
        font-size: 0.85rem;
        border-radius: 8px;
    }

    /* Images */
    img {
        border-radius: 8px;
    }

    /* Form improvements */
    input, textarea, select {
        font-size: 0.9rem;
        border-radius: 8px;
    }

    /* Touch targets */
    button, a, .btn {
        min-height: 40px;
        min-width: 40px;
    }

    /* Text readability */
    h1, h2, h3, h4, h5, h6 {
        line-height: 1.2;
    }

    p, li, span {
        line-height: 1.5;
    }
}

/* Tablet Devices */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 20px;
        max-width: 95%;
    }

    /* Navigation */
    .navbar {
        height: 80px;
    }
    
    .nav-container {
        height: 80px;
    }
    
    .nav-logo img {
        height: 45px;
    }
    
    .nav-logo h2 {
        font-size: 1.8rem;
    }

    /* Hero Section */
    .hero {
        padding-top: 80px;
    }
    
    .hero-content {
        padding: 2rem 1rem;
    }

    .hero-title {
        font-size: 2.8rem;
        margin-bottom: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    /* Section Headers */
    .section-title {
        font-size: 2.5rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    /* Classes Grid */
    .classes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    /* Pricing */
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    /* Contact */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    /* Modals */
    .modal-content {
        width: 90%;
        padding: 2rem;
    }
}

/* Large Tablets and Small Desktops */
@media (min-width: 1025px) and (max-width: 1200px) {
    .container {
        max-width: 1100px;
    }

    .classes-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile Landscape */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding-top: 70px;
    }
    
    .hero-content {
        padding: 1rem;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: row;
        gap: 1rem;
    }

    .hero-buttons .btn {
        width: auto;
        max-width: 200px;
    }

    .section {
        padding: 2rem 0;
    }

    .section-alt {
        padding: 2rem 0;
    }
}

/* Mobile Performance Optimizations */
@media (max-width: 768px) {
    /* Reduce animations on mobile for better performance */
    .hero-background img {
        transform: scale(1.1);
        animation: none;
    }

    .class-card:hover {
        transform: none;
    }

    .testimonial-card:hover {
        transform: none;
    }

    .btn:hover {
        transform: none;
    }

    /* Optimize images for mobile */
    img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }

    /* Better touch feedback */
    .btn:active {
        transform: scale(0.95);
        transition: transform 0.1s ease;
    }

    /* Improve scrolling performance */
    .section {
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }

    /* Better text rendering */
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeLegibility;
    }

    /* Prevent horizontal scroll */
    * {
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Better form inputs for mobile */
    input, textarea, select {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        border-radius: 8px;
    }

    /* Better focus states for accessibility */
    button:focus, a:focus, input:focus, textarea:focus, select:focus {
        outline: 2px solid #1a5f3f;
        outline-offset: 2px;
    }

    /* Improve modal experience on mobile */
    .modal {
        padding: 10px;
    }

    .modal-content {
        margin: 0;
        width: 100%;
        max-height: 100vh;
        border-radius: 15px 15px 0 0;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        max-height: 90vh;
        overflow-y: auto;
    }

    /* Better WhatsApp button positioning */
    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        z-index: 999;
    }
}

/* Ultra Small Mobile Devices */
@media (max-width: 320px) {
    body {
        font-size: 12px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .btn {
        padding: 10px 15px;
        font-size: 0.8rem;
    }

    .class-card, .testimonial-card, .pricing-card {
        padding: 1rem;
    }

    .modal-content {
        padding: 1rem;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Additional visibility classes */
.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.fade-in {
    opacity: 1;
    transition: opacity 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
}

.slide-in-left {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.8s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.8s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.pulse {
    animation: pulse 2s infinite;
}

.float {
    animation: float 3s ease-in-out infinite;
}

/* Page Specific Styles */

/* Privacy Policy, Terms of Service, Refund Policy */
.privacy-policy, .terms-of-service, .refund-policy {
    background: white;
    padding: 120px 0 80px;
}

.policy-header, .terms-header {
    text-align: center;
    margin-bottom: 4rem;
}

.policy-header h1, .terms-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #1a5f3f;
    margin-bottom: 1rem;
    font-weight: 700;
}

.policy-subtitle, .terms-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto 1rem;
}

.last-updated {
    color: #999;
    font-size: 0.9rem;
    font-style: italic;
}

.policy-content, .terms-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-section, .terms-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 4px solid #1a5f3f;
}

.policy-section h2, .terms-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #1a5f3f;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.policy-subsection, .terms-subsection {
    margin-bottom: 2rem;
}

.policy-subsection h3, .terms-subsection h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.policy-section ul, .terms-section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.policy-section li, .terms-section li {
    margin-bottom: 0.5rem;
    color: #4a5568;
    line-height: 1.6;
}

.contact-info {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: #4a5568;
}

/* About Page */
.about-hero {
    padding: 0;
    height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.our-story {
    background: linear-gradient(135deg, #f8f6f3 0%, #f0ebe5 100%);
    position: relative;
}

.our-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%231a5f3f" fill-opacity="0.03"><circle cx="30" cy="30" r="4"/></g></g></svg>') repeat;
    pointer-events: none;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.story-text p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.stat-item h3 {
    font-size: 2.5rem;
    color: #1a5f3f;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #6c757d;
    font-weight: 500;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Philosophy Section */
.our-philosophy {
    background: white;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.philosophy-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.philosophy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1a5f3f, #4a9d7f);
}

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

.philosophy-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #1a5f3f, #4a9d7f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.philosophy-card:hover .philosophy-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(26, 95, 63, 0.3);
}

.philosophy-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #1a5f3f;
    margin-bottom: 1rem;
    font-weight: 600;
}

.philosophy-card p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* FAQ Page */
.faq-hero {
    padding: 0;
    height: 50vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.faq-section {
    background: linear-gradient(135deg, #f8f6f3 0%, #f0ebe5 100%);
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%231a5f3f" fill-opacity="0.03"><circle cx="30" cy="30" r="4"/></g></g></svg>') repeat;
    pointer-events: none;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.category-tab {
    padding: 12px 24px;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #6c757d;
}

.category-tab.active,
.category-tab:hover {
    background: #1a5f3f;
    color: white;
    border-color: #1a5f3f;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 95, 63, 0.3);
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.faq-question {
    padding: 1.5rem 2rem;
    background: white;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question i {
    color: #1a5f3f;
    transition: transform 0.3s ease;
}

.faq-answer {
    display: none;
    background: #f8f9fa;
    border-radius: 0 0 12px 12px;
    overflow: hidden;
}

.faq-answer p {
    padding: 1.5rem 2rem;
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
}

.faq-answer ol, .faq-answer ul {
    padding: 0 2rem 1.5rem 3rem;
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

.faq-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, #1a5f3f, #4a9d7f);
    color: white;
    border-radius: 20px;
    position: relative;
    z-index: 1;
}

.faq-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.faq-cta p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

/* Blog Page */
.blog-hero {
    padding: 0;
    height: 50vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.featured-post {
    background: linear-gradient(135deg, #f8f6f3 0%, #f0ebe5 100%);
    position: relative;
}

.featured-post::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%231a5f3f" fill-opacity="0.03"><circle cx="30" cy="30" r="4"/></g></g></svg>') repeat;
    pointer-events: none;
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.featured-image {
    position: relative;
}

.featured-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #1a5f3f;
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
}

.featured-text {
    padding: 2rem;
}

.article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.category {
    background: #1a5f3f;
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.date, .read-time {
    color: #6c757d;
    font-size: 0.9rem;
}

.featured-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #1a5f3f;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.featured-text p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.featured-excerpt {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border-left: 4px solid #1a5f3f;
}

.featured-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.featured-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.featured-author h4 {
    color: #2c3e50;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.featured-author p {
    color: #6c757d;
    font-size: 0.85rem;
    margin: 0;
}

.blog-categories {
    background: white;
    padding: 2rem 0;
    border-bottom: 1px solid #e9ecef;
}

.category-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #6c757d;
}

.filter-btn.active,
.filter-btn:hover {
    background: #1a5f3f;
    color: white;
    border-color: #1a5f3f;
    transform: translateY(-2px);
}

.blog-posts {
    background: linear-gradient(135deg, #f8f6f3 0%, #f0ebe5 100%);
    position: relative;
}

.blog-posts::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%231a5f3f" fill-opacity="0.03"><circle cx="30" cy="30" r="4"/></g></g></svg>') repeat;
    pointer-events: none;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.blog-post {
    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;
}

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

.post-image {
    height: 200px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-post:hover .post-image img {
    transform: scale(1.1);
}

.post-content {
    padding: 2rem;
}

.post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.post-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #1a5f3f;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.post-content p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.post-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.post-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.post-author span {
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 500;
}

.read-more {
    color: #1a5f3f;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #4a9d7f;
}

.load-more {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.newsletter-section {
    background: linear-gradient(135deg, #1a5f3f, #4a9d7f);
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><circle cx="50" cy="50" r="3"/></g></g></svg>') repeat;
    pointer-events: none;
}

.newsletter-content {
    position: relative;
    z-index: 1;
}

.newsletter-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 15px 30px;
    background: white;
    color: #1a5f3f;
    border: none;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.privacy-note {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 1rem;
}
.spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #2d6a4f;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

/* Success Message */
.success-message {
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    border: 1px solid #c3e6cb;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    border: 1px solid #f5c6cb;
}
