/* ============================================
   NOURISHED BY NADIA - MAIN STYLESHEET
   Design: Mobile-First Responsive
   ============================================ */

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Rasa', Georgia, 'Times New Roman', serif;
    font-size: 16px;
    line-height: 1.7;
    color: #56453f;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Taviraj', Georgia, 'Times New Roman', serif;
    color: #56453f;
    line-height: 1.3;
    font-weight: 500;
}

h1 {
    font-size: 34px;
    margin-bottom: 20px;
}

h2 {
    font-size: 26px;
    margin-bottom: 16px;
}

h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

p {
    margin-bottom: 16px;
}

a {
    color: #d8a1a1;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-rose-hover);
}

/* ============================================
   COLORS - Option 3A: Earthy Neutral + Dusty Rose
   ============================================ */
:root {
    --color-rose: #4a6741;        /* Forest Green - primary CTAs */
    --color-rose-hover: #3d5435;  /* Darker Forest Green - hover states */
    --color-brown: #56453f;       /* Rich Brown - text */
    --color-light-bg: #f7f5f2;    /* Off-White - backgrounds */
    --color-taupe: #c9b8a8;       /* Warm Taupe - header & subtle accents */
    --color-dusty-rose: #b8948f;  /* Dusty Rose - feminine accent */
    --color-dusty-rose-hover: #a6817c; /* Darker Dusty Rose - hover */
    --color-white: #ffffff;
    --color-link: #2ea3f2;

    /* Semantic naming for easier updates */
    --color-primary: var(--color-rose);      /* Forest green */
    --color-secondary: var(--color-dusty-rose); /* Dusty rose */
}

/* ============================================
   LAYOUT & CONTAINER
   ============================================ */
.container {
    width: 90%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 40px 0;
}

.section-light {
    background-color: var(--color-light-bg);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
    background-color: var(--color-dusty-rose);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    font-family: 'Taviraj', serif;
    font-size: 20px;
    color: var(--color-brown);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mobile-menu-toggle {
    background: none;
    border: none;
    font-size: 28px;
    color: var(--color-brown);
    cursor: pointer;
    display: block;
}

.main-nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--color-white);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 999;
}

.main-nav.active {
    display: block;
}

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

.nav-list li {
    margin-bottom: 20px;
}

.nav-list a {
    font-family: 'Taviraj', serif;
    font-size: 18px;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    padding: 10px;
}

.nav-list a:hover {
    color: var(--color-light-bg);
    opacity: 0.9;
}

.cart-icon {
    font-size: 24px;
    color: var(--color-white);
    margin-left: 20px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    font-family: 'Taviraj', serif;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 15px 50px;
    border-radius: 50px;
    border: 2px solid var(--color-rose);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background-color: var(--color-rose);
    color: var(--color-white);
    border-color: var(--color-rose);
}

.btn-primary:hover {
    background-color: var(--color-rose-hover);
    border-color: var(--color-rose-hover);
    letter-spacing: 4px;
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-rose);
    border-color: var(--color-rose);
}

.btn-secondary:hover {
    background-color: var(--color-rose);
    color: var(--color-white);
    letter-spacing: 4px;
}

.btn-white {
    background-color: var(--color-white);
    color: var(--color-rose);
    border-color: var(--color-white);
}

.btn-white:hover {
    background-color: var(--color-light-bg);
    color: var(--color-rose);
    border-color: var(--color-light-bg);
    letter-spacing: 4px;
}

.btn-dark {
    background-color: var(--color-brown);
    color: var(--color-white);
    border-color: var(--color-brown);
}

.btn-rose {
    background-color: var(--color-dusty-rose);
    color: var(--color-white);
    border-color: var(--color-dusty-rose);
}

.btn-rose:hover {
    background-color: var(--color-dusty-rose-hover);
    border-color: var(--color-dusty-rose-hover);
    letter-spacing: 4px;
}

.btn-dark:hover {
    background-color: #3d2f2b;
    border-color: #3d2f2b;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    text-align: center;
    padding: 60px 0;
}

.hero-image {
    width: 200px;
    height: 200px;
    border-radius: 100%;
    margin: 0 auto 30px;
    box-shadow: 0px 2px 18px rgba(0,0,0,0.3);
    object-fit: cover;
}

.hero h1 {
    color: var(--color-brown);
    margin-bottom: 20px;
}

.hero-subheadline {
    font-size: 16px;
    margin-bottom: 30px;
    color: var(--color-brown);
    line-height: 1.6;
}

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

.hero-ctas .btn {
    width: 100%;
    max-width: 320px;
}

/* ============================================
   COMMUNITY SECTION
   ============================================ */
.community-section {
    text-align: center;
}

.community-section h2 {
    color: var(--color-brown);
    margin-bottom: 20px;
}

.community-description {
    margin-bottom: 30px;
}

.benefit-list {
    list-style: none;
    text-align: left;
    max-width: 500px;
    margin: 30px auto;
}

.benefit-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.benefit-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-rose);
    font-size: 20px;
    font-weight: bold;
}

.community-image {
    width: 100%;
    max-width: 600px;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* ============================================
   YOUTUBE SECTION
   ============================================ */
.youtube-section {
    text-align: center;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 800px;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
    text-align: center;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background-color: var(--color-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-left: 4px solid var(--color-rose);
}

.testimonial-photo {
    width: 80px;
    height: 80px;
    border-radius: 100%;
    margin: 0 auto 20px;
    object-fit: cover;
}

.testimonial-quote {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
    color: var(--color-brown);
}

.testimonial-author {
    font-family: 'Taviraj', serif;
    font-weight: 600;
    color: var(--color-dusty-rose);
}

/* ============================================
   BLOG SECTION
   ============================================ */
.blog-section {
    text-align: center;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

.blog-card {
    background-color: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.15);
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 25px;
    text-align: left;
}

.blog-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--color-brown);
}

.blog-excerpt {
    margin-bottom: 15px;
    color: var(--color-brown);
    line-height: 1.6;
}

.blog-link {
    color: var(--color-rose);
    font-family: 'Taviraj', serif;
    font-weight: 600;
}

.blog-link:after {
    content: " →";
}

/* ============================================
   MEMBERSHIP TIERS
   ============================================ */
.tiers-section {
    text-align: center;
}

.tier-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

.tier-card {
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tier-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.15);
}

.tier-free {
    background-color: var(--color-white);
    border: 2px solid var(--color-light-bg);
}

.tier-premium {
    background-color: var(--color-rose);
    color: var(--color-white);
    border: 3px solid var(--color-brown);
}

.tier-premium h3,
.tier-premium .tier-price {
    color: var(--color-white);
}

.tier-premium .benefit-list li {
    color: var(--color-white);
}

.tier-vip {
    background-color: var(--color-brown);
    color: var(--color-white);
    position: relative;
}

.tier-vip h3,
.tier-vip .tier-price {
    color: var(--color-white);
}

.tier-vip .benefit-list li {
    color: var(--color-white);
}

.tier-badge {
    background-color: #ffd700;
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 15px;
}

.tier-name {
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.tier-price {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
}

.tier-description {
    margin-bottom: 25px;
    font-size: 14px;
}

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

.tier-features li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
}

.tier-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    font-size: 18px;
    font-weight: bold;
}

.tier-free .tier-features li:before {
    color: var(--color-rose);
}

.tier-premium .tier-features li:before,
.tier-vip .tier-features li:before {
    color: var(--color-white);
}

.tier-note {
    font-size: 13px;
    color: var(--color-brown);
    opacity: 0.7;
    margin-top: 10px;
    font-style: italic;
    text-align: center;
}

/* ============================================
   CONSULTATION SECTION
   ============================================ */
.consultation-section {
    text-align: center;
    background-color: var(--color-light-bg);
}

.consultation-benefits {
    list-style: none;
    max-width: 500px;
    margin: 30px auto;
    text-align: left;
}

.consultation-benefits li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.consultation-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-rose);
    font-size: 20px;
    font-weight: bold;
}

.consultation-pricing {
    margin: 30px 0;
    font-size: 18px;
}

.consultation-pricing strong {
    color: var(--color-rose);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background-color: var(--color-light-bg);
    padding: 60px 0 30px;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-logo {
    font-family: 'Taviraj', serif;
    font-size: 24px;
    color: var(--color-brown);
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-tagline {
    font-size: 14px;
    color: var(--color-brown);
}

.footer-nav {
    list-style: none;
}

.footer-nav li {
    margin-bottom: 12px;
}

.footer-nav a {
    color: var(--color-brown);
    font-size: 14px;
}

.footer-nav a:hover {
    color: var(--color-rose);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-input {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Rasa', serif;
    font-size: 14px;
}

.newsletter-btn {
    padding: 12px 30px;
}

.social-links {
    list-style: none;
}

.social-links li {
    margin-bottom: 12px;
}

.social-links a {
    color: var(--color-brown);
    font-size: 14px;
}

.social-links a:hover {
    color: var(--color-rose);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #ddd;
    font-size: 14px;
    color: var(--color-brown);
}

.footer-bottom a {
    color: var(--color-brown);
    margin: 0 10px;
}

/* ============================================
   STICKY FLOATING BUTTON
   ============================================ */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 900;
    display: none;
}

.sticky-cta.visible {
    display: block;
    animation: slideUp 0.3s ease;
}

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

.sticky-cta .btn {
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* ============================================
   TABLET BREAKPOINT (768px - 980px)
   ============================================ */
@media (min-width: 768px) {
    h1 {
        font-size: 44px;
    }

    h2 {
        font-size: 32px;
    }

    h3 {
        font-size: 22px;
    }

    .section {
        padding: 60px 0;
    }

    .hero {
        padding: 80px 0;
    }

    .hero-image {
        width: 300px;
        height: 300px;
    }

    .hero-ctas {
        flex-direction: row;
        justify-content: center;
    }

    .hero-ctas .btn {
        width: auto;
    }

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

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

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

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

/* ============================================
   DESKTOP BREAKPOINT (981px+)
   ============================================ */
@media (min-width: 981px) {
    h1 {
        font-size: 55px;
    }

    h2 {
        font-size: 40px;
    }

    .section {
        padding: 80px 0;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .main-nav {
        display: block;
        position: static;
        box-shadow: none;
        background: none;
    }

    .nav-list {
        display: flex;
        padding: 0;
        align-items: center;
    }

    .nav-list li {
        margin-bottom: 0;
        margin-left: 30px;
    }

    .nav-list a {
        font-size: 14px;
        padding: 5px 0;
    }

    .hero {
        padding: 100px 0;
    }

    .hero-image {
        width: 400px;
        height: 400px;
    }

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

    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0;
}

.mt-30 {
    margin-top: 30px;
}

.hidden {
    display: none;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-hero {
    background: linear-gradient(135deg, var(--color-light-bg) 0%, var(--color-white) 100%);
    padding: 80px 0 60px;
}

.about-hero-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 30px;
    display: block;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.story-section {
    background-color: var(--color-white);
}

.story-content {
    max-width: 700px;
    margin: 0 auto 40px;
}

.story-lead {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-brown);
    margin-bottom: 25px;
    line-height: 1.6;
}

.story-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.story-image-wrapper {
    text-align: center;
    margin-top: 40px;
}

.story-image {
    max-width: 500px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.approach-section {
    background-color: var(--color-light-bg);
}

.section-intro {
    text-align: center;
    max-width: 600px;
    margin: -10px auto 40px;
    font-size: 18px;
    opacity: 0.9;
}

.approach-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 40px;
}

.approach-card {
    background-color: var(--color-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.approach-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.approach-card h3 {
    font-family: var(--font-heading);
    color: var(--color-dusty-rose);
    margin-bottom: 12px;
    font-size: 20px;
}

.approach-card p {
    margin: 0;
    line-height: 1.7;
    opacity: 0.9;
}

.credentials-section {
    background-color: var(--color-white);
}

.credentials-content {
    max-width: 700px;
    margin: 0 auto;
}

.credentials-intro {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.7;
}

.credentials-list {
    list-style: none;
    padding: 0;
}

.credentials-list li {
    padding: 15px 0;
    padding-left: 30px;
    position: relative;
    border-bottom: 1px solid var(--color-light-bg);
}

.credentials-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-rose);
    font-size: 20px;
    font-weight: bold;
}

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

.cta-banner-section {
    background: linear-gradient(135deg, var(--color-rose) 0%, #b98088 100%);
    color: var(--color-white);
    text-align: center;
    padding: 60px 0;
}

.cta-banner-section h2,
.cta-banner-section p {
    color: var(--color-white);
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin: 30px auto 0;
}

.cta-buttons .btn {
    width: 100%;
}

.cta-buttons .btn-secondary {
    background-color: var(--color-white);
    color: var(--color-rose);
}

.cta-buttons .btn-secondary:hover {
    background-color: var(--color-light-bg);
    color: var(--color-rose);
}

@media (min-width: 768px) {
    .approach-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cta-buttons {
        flex-direction: row;
        max-width: 600px;
    }

    .about-hero-image {
        width: 250px;
        height: 250px;
    }
}

@media (min-width: 981px) {
    .approach-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

/* ============================================
   BLOG ARCHIVE PAGE
   ============================================ */
.blog-hero {
    background: linear-gradient(135deg, var(--color-light-bg) 0%, var(--color-white) 100%);
    padding: 80px 0 60px;
}

.blog-archive-section {
    background-color: var(--color-white);
    padding: 60px 0;
}

.blog-archive-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.blog-archive-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.blog-archive-card {
    background-color: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-archive-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.blog-archive-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-archive-content {
    padding: 25px;
}

.blog-category {
    display: inline-block;
    background-color: var(--color-rose);
    color: var(--color-white);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 5px 12px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.blog-archive-title {
    font-family: var(--font-heading);
    color: var(--color-brown);
    font-size: 22px;
    margin: 12px 0 15px;
    line-height: 1.4;
}

.blog-archive-title:hover {
    color: var(--color-rose);
}

.blog-archive-excerpt {
    color: var(--color-brown);
    opacity: 0.85;
    line-height: 1.7;
    margin-bottom: 15px;
}

.blog-archive-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--color-light-bg);
}

.blog-date {
    font-size: 14px;
    opacity: 0.7;
}

.blog-read-more {
    color: var(--color-rose);
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.blog-read-more:hover {
    opacity: 0.7;
}

.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.pagination-link {
    padding: 10px 15px;
    background-color: var(--color-light-bg);
    color: var(--color-brown);
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.pagination-link:hover,
.pagination-link.active {
    background-color: var(--color-rose);
    color: var(--color-white);
}

/* Sidebar */
.blog-sidebar {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-content: start;
}

.sidebar-widget {
    background-color: var(--color-light-bg);
    padding: 25px;
    border-radius: 12px;
}

.sidebar-widget-title {
    font-family: var(--font-heading);
    color: var(--color-brown);
    font-size: 20px;
    margin-bottom: 20px;
}

.sidebar-categories {
    list-style: none;
    padding: 0;
}

.sidebar-categories li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

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

.sidebar-categories a {
    color: var(--color-brown);
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    transition: color 0.3s ease;
}

.sidebar-categories a:hover {
    color: var(--color-rose);
}

.sidebar-categories span {
    opacity: 0.6;
    font-size: 14px;
}

.sidebar-newsletter {
    background: linear-gradient(135deg, var(--color-rose) 0%, #b98088 100%);
    color: var(--color-white);
}

.sidebar-newsletter .sidebar-widget-title,
.sidebar-newsletter p {
    color: var(--color-white);
}

.sidebar-newsletter-form {
    margin-top: 15px;
}

.sidebar-newsletter-input {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 6px;
    margin-bottom: 10px;
    font-size: 14px;
}

.sidebar-newsletter-btn {
    width: 100%;
    background-color: var(--color-white);
    color: var(--color-rose);
}

.sidebar-newsletter-btn:hover {
    background-color: var(--color-light-bg);
}

.sidebar-cta {
    background-color: var(--color-white);
    border: 2px solid var(--color-rose);
}

.sidebar-cta .btn {
    width: 100%;
    margin-top: 15px;
}

@media (min-width: 768px) {
    .blog-archive-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 981px) {
    .blog-archive-layout {
        grid-template-columns: 2fr 1fr;
    }

    .blog-archive-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-hero {
    background: linear-gradient(135deg, var(--color-light-bg) 0%, var(--color-white) 100%);
    padding: 80px 0 60px;
}

.contact-section {
    background-color: var(--color-white);
    padding: 60px 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

.contact-form-wrapper h2 {
    margin-bottom: 15px;
}

.contact-intro {
    color: var(--color-brown);
    opacity: 0.85;
    margin-bottom: 30px;
    line-height: 1.7;
}

.contact-form {
    background-color: var(--color-light-bg);
    padding: 35px;
    border-radius: 12px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--color-brown);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 16px;
    transition: border-color 0.3s ease;
}

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

.btn-full-width {
    width: 100%;
}

.form-note {
    font-size: 13px;
    opacity: 0.7;
    margin-top: 15px;
    text-align: center;
}

.contact-info h3 {
    font-family: var(--font-heading);
    color: var(--color-brown);
    margin-bottom: 25px;
}

.contact-info-card {
    background-color: var(--color-light-bg);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.contact-info-card h4 {
    font-family: var(--font-heading);
    color: var(--color-dusty-rose);
    margin-bottom: 12px;
    font-size: 18px;
}

.contact-info-card p {
    margin-bottom: 10px;
}

.contact-info-card a {
    color: var(--color-rose);
    text-decoration: none;
}

.contact-info-card a:hover {
    text-decoration: underline;
}

.contact-card-note {
    font-size: 14px;
    opacity: 0.7;
}

.contact-info-card .btn {
    margin-top: 15px;
}

.contact-social {
    background-color: var(--color-light-bg);
    padding: 25px;
    border-radius: 12px;
}

.contact-social h4 {
    font-family: var(--font-heading);
    color: var(--color-brown);
    margin-bottom: 15px;
}

.contact-social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-social-links a {
    color: var(--color-brown);
    text-decoration: none;
    padding: 10px;
    background-color: var(--color-white);
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.contact-social-links a:hover {
    background-color: var(--color-rose);
    color: var(--color-white);
}

.contact-faq-section {
    background-color: var(--color-light-bg);
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 981px) {
    .contact-layout {
        grid-template-columns: 2fr 1fr;
    }
}

/* ============================================
   SCHEDULE PAGE
   ============================================ */
.schedule-hero {
    background: linear-gradient(135deg, var(--color-light-bg) 0%, var(--color-white) 100%);
    padding: 80px 0 60px;
}

.schedule-section {
    background-color: var(--color-white);
    padding: 60px 0;
}

.schedule-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

.schedule-info h2 {
    margin-bottom: 30px;
}

.schedule-info-block {
    background-color: var(--color-light-bg);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.schedule-info-block h3 {
    font-family: var(--font-heading);
    color: var(--color-dusty-rose);
    margin-bottom: 15px;
}

.schedule-info-block p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.schedule-list {
    margin: 15px 0;
    padding-left: 25px;
}

.schedule-list li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.schedule-note {
    font-size: 14px;
    opacity: 0.8;
    font-style: italic;
    margin-top: 15px;
}

.schedule-calendar h2 {
    margin-bottom: 25px;
}

.calendar-placeholder {
    background-color: var(--color-light-bg);
    padding: 40px;
    border-radius: 12px;
    border: 2px dashed var(--color-rose);
    min-height: 600px;
}

.calendar-placeholder-content {
    text-align: center;
}

.calendar-placeholder-content h3 {
    font-family: var(--font-heading);
    color: var(--color-dusty-rose);
    margin-bottom: 15px;
}

.calendar-placeholder-content p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.calendar-instructions {
    background-color: var(--color-white);
    padding: 25px;
    border-radius: 8px;
    text-align: left;
    margin: 25px 0;
}

.calendar-instructions h4 {
    font-family: var(--font-heading);
    color: var(--color-brown);
    margin-bottom: 15px;
}

.calendar-instructions ol {
    margin: 15px 0;
    padding-left: 25px;
}

.calendar-instructions li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.calendar-instructions a {
    color: var(--color-rose);
}

.calendar-example {
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
}

.calendar-code {
    background-color: #f5f5f5;
    padding: 15px;
    border-radius: 6px;
    font-size: 13px;
    overflow-x: auto;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.calendar-temp-cta {
    margin-top: 25px;
    font-weight: 600;
}

@media (min-width: 981px) {
    .schedule-layout {
        grid-template-columns: 1fr 1.5fr;
    }
}

/* ============================================
   PROGRAMS PAGE - COMPARISON TABLE
   ============================================ */
.comparison-section {
    background-color: var(--color-white);
}

.section-subtitle {
    text-align: center;
    color: var(--color-brown);
    opacity: 0.8;
    margin-top: -10px;
    margin-bottom: 40px;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 40px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--color-white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

.comparison-table thead {
    background-color: var(--color-rose);
    color: var(--color-white);
}

.comparison-table th {
    padding: 20px 15px;
    text-align: center;
    font-family: var(--font-heading);
    font-weight: 600;
}

.comparison-table th:first-child {
    text-align: left;
}

.table-price {
    font-size: 14px;
    font-weight: normal;
    opacity: 0.9;
}

.comparison-table td {
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
    text-align: center;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.comparison-table tbody tr:hover {
    background-color: var(--color-light-bg);
}

/* ============================================
   PROGRAMS PAGE - FAQ SECTION
   ============================================ */
.faq-section {
    background-color: var(--color-light-bg);
}

.faq-list {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    background-color: var(--color-white);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background-color: var(--color-white);
    border: none;
    text-align: left;
    font-size: 18px;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-brown);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--color-light-bg);
}

.faq-icon {
    font-size: 24px;
    color: var(--color-rose);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 25px 20px;
    margin: 0;
    color: var(--color-brown);
    opacity: 0.9;
    line-height: 1.7;
}

/* ============================================
   PROGRAMS PAGE - CONSULTATION DETAIL
   ============================================ */
.consultation-detail-section {
    background-color: var(--color-light-bg);
}

.consultation-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
    align-items: center;
}

.consultation-content h3 {
    font-family: var(--font-heading);
    color: var(--color-brown);
    margin-bottom: 20px;
}

.consultation-pricing-box {
    background-color: var(--color-white);
    padding: 30px;
    border-radius: 8px;
    margin-top: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.consultation-pricing-box h3 {
    margin-top: 0;
    margin-bottom: 15px;
}

.pricing-highlight {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-rose);
    margin: 10px 0;
}

.pricing-note {
    font-size: 14px;
    opacity: 0.8;
    font-style: italic;
}

.consultation-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* ============================================
   PROGRAMS PAGE - CTA OPTIONS
   ============================================ */
.cta-section {
    background-color: var(--color-light-bg);
    text-align: center;
}

.cta-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.cta-option {
    background-color: var(--color-white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.cta-option h3 {
    font-family: var(--font-heading);
    color: var(--color-brown);
    margin-bottom: 15px;
}

.cta-option p {
    margin-bottom: 25px;
    opacity: 0.9;
}

/* ============================================
   PROGRAMS PAGE - HERO
   ============================================ */
.programs-hero {
    background: linear-gradient(135deg, var(--color-light-bg) 0%, var(--color-white) 100%);
    padding: 80px 0 60px;
}

/* ============================================
   RESPONSIVE - PROGRAMS PAGE
   ============================================ */
@media (min-width: 768px) {
    .consultation-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cta-options {
        grid-template-columns: 1fr 1fr;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 20px;
    }
}
