:root {
    --primary-color: #065f46;
    /* Deep Emerald */
    --accent-color: #d4af37;
    /* Soft Gold */
    --text-dark: #1f2937;
    --light-bg: #f9fafb;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 10%;
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
}

/* Hero Section */
.hero {
    height: 80vh;
    /* background: linear-gradient(rgba(6, 95, 70, 0.8), rgba(6, 95, 70, 0.8)),
        url('https://images.unsplash.com/photo-1585032226651-759b368d7246?auto=format&fit=crop&q=80&w=1000') center/cover; */
    background: linear-gradient(rgba(6, 95, 70, 0.8), rgba(6, 95, 70, 0.8)),
        url('photo-1711986924308-f85d2cfbc913.avif?auto=format&fit=crop&q=80&w=1000') center/cover;
   
   
        display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 0 1rem;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-family: 'Amiri', serif;
}

.highlight {
    color: var(--accent-color);
}

.btn-primary {
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 0.8rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn-secondary {
    border: 2px solid var(--white);
    color: var(--white);
    padding: 0.8rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    margin-left: 1rem;
}

/* Sessions Section */
.sessions {
    padding: 5rem 10%;
    background: var(--light-bg);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--primary-color);
}

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

.session-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Pricing */
.pricing {
    padding: 5rem 10%;
}

.pricing-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.price-card {
    border: 1px solid #e5e7eb;
    padding: 3rem;
    border-radius: 15px;
    width: 350px;
    text-align: center;
    position: relative;
}

.price-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.price {
    font-size: 3rem;
    font-weight: bold;
    margin: 1.5rem 0;
}

.price span {
    font-size: 1rem;
    color: #6b7280;
}

ul {
    list-style: none;
    margin-bottom: 2rem;
}

ul li {
    margin: 0.8rem 0;
    color: #4b5563;
}

footer {
    text-align: center;
    padding: 3rem;
    background: var(--primary-color);
    color: var(--white);
}

.hero-btns {
    margin-top: 3rem;
}

/* Improved Hero Section for Readability */
.hero-content h1 {
    font-size: 3.5rem;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5); /* Makes text pop against background */
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    font-weight: 300;
}

/* Statistics Section */
.stats {
    display: flex;
    justify-content: space-around;
    padding: 4rem 10%;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.stat-item h2 {
    font-size: 2.5rem;
    color: var(--accent-color);
}

/* How it Works / Steps */
.workflow {
    padding: 5rem 10%;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.step {
    position: relative;
    padding-top: 2rem;
}

.step-num {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(6, 95, 70, 0.1);
    position: absolute;
    top: -10px;
    left: 0;
    z-index: -1;
}

/* Testimonials */
.testimonials {
    padding: 5rem 10%;
    background: #f0f4f8;
}

.testimonial-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    width: 45%;
    min-width: 300px;
    border-left: 5px solid var(--accent-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-card h4 {
    color: var(--primary-color);
}

/* Contact Form Section */
.contact-section {
    padding: 5rem 10%;
    background: var(--white);
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form button {
    width: 100%;
    padding: 1rem;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    display: none;
}

.form-message.success {
    display: block;
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
}

.form-message.info {
    display: block;
    background: #dbeafe;
    color: #1e40af;
    border: 1px solid #3b82f6;
}

.form-message.error {
    display: block;
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
}


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

.modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 30px rgba(0,0,0,0.3);
}

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

.close:hover { color: #000; }

/* ============================================ */
/* RESPONSIVE DESIGN - MEDIA QUERIES */
/* ============================================ */

/* Tablets and Small Laptops */
@media screen and (max-width: 1024px) {
    .navbar {
        padding: 1.5rem 5%;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .sessions, .workflow, .pricing, .testimonials, .contact-section {
        padding: 4rem 5%;
    }
    
    .stats {
        padding: 3rem 5%;
    }
}

/* Tablets Portrait */
@media screen and (max-width: 768px) {
    /* Navigation */
    .navbar {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 5%;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    /* Hero Section */
    .hero {
        height: auto;
        min-height: 60vh;
        padding: 3rem 1rem;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .btn-secondary {
        margin-left: 0;
        margin-top: 1rem;
    }
    
    .hero-btns {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .hero-btns a {
        display: block;
        text-align: center;
    }
    
    /* Statistics */
    .stats {
        flex-wrap: wrap;
        gap: 2rem;
    }
    
    .stat-item {
        flex: 1 1 45%;
    }
    
    /* Session Grid */
    .session-grid {
        grid-template-columns: 1fr;
    }
    
    /* Steps */
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Testimonials */
    .testimonial-container {
        flex-direction: column;
    }
    
    .testimonial-card {
        width: 100%;
    }
    
    /* Pricing */
    .pricing-container {
        flex-direction: column;
        align-items: center;
    }
    
    .price-card {
        width: 100%;
        max-width: 400px;
    }
    
    .price-card.featured {
        transform: scale(1);
    }
    
    /* Contact Form */
    .contact-form {
        padding: 1.5rem;
    }
}

/* Mobile Devices */
@media screen and (max-width: 480px) {
    /* Typography */
    .section-title {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 0.95rem;
    }
    
    /* Navigation */
    .logo {
        font-size: 1.2rem;
    }
    
    .nav-links {
        font-size: 0.9rem;
    }
    
    /* Buttons */
    .btn-primary, .btn-secondary {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Statistics */
    .stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .stat-item {
        flex: 1 1 100%;
    }
    
    .stat-item h2 {
        font-size: 2rem;
    }
    
    /* Cards */
    .session-card, .price-card {
        padding: 1.5rem;
    }
    
    /* Pricing */
    .price {
        font-size: 2.5rem;
    }
    
    /* Steps */
    .step-num {
        font-size: 3rem;
    }
    
    /* Modal */
    .modal-content {
        width: 95%;
        padding: 20px;
    }
    
    /* Sections Padding */
    .sessions, .workflow, .pricing, .testimonials, .contact-section {
        padding: 3rem 5%;
    }
    
    .stats {
        padding: 2rem 5%;
    }
}

/* Extra Small Devices */
@media screen and (max-width: 320px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
}