/*
Theme Name: Ludo Theme
Theme URI: http://example.com/ludo-theme
Author: Ton Nom
Author URI: http://example.com
Description: Thème WordPress pour une boutique de jeux de société et curiosités ludiques.
Version: 2.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ludo-theme
*/

:root {
    /* Couleurs principales - Palette enfantine douce */
    --bg-beige: #F5F3EE;
    --bg-beige-light: #FDFBF7;
    --bg-beige-dark: #E8E4DC;

    /* Accents vifs modernes */
    --pink-soft: rgba(251, 106, 1, 1);
    --blue-sky: rgba(1, 118, 197, 1);
    --green-mint: rgba(1, 118, 197, 1);
    --yellow-soft: rgba(255, 218, 5, 1);
    --peach-soft: rgba(251, 106, 1, 1);

    /* Textes */
    --text-dark: #2D2D2D;
    --text-medium: #5A5A5A;
    --text-light: #8A8A8A;

    /* Alias pour compatibilité */
    --primary-dark: var(--text-dark);
    --primary-light: var(--bg-beige);
    --text-secondary: var(--text-medium);
    --accent-sage: var(--pink-soft);

    /* Anciens noms pour compatibilité */
    --blue-night: var(--text-dark);
    --blue-deep: var(--bg-beige-dark);
    --gold-main: var(--pink-soft);
    --gold-soft: var(--peach-soft);
    --paper-light: var(--bg-beige-light);
    --paper-warm: var(--bg-beige);
    --text-muted: var(--text-light);
}


body {
    margin: 0;
    padding: 0;
    font-family: 'Nunito', 'Poppins', 'Inter', sans-serif;
    background: var(--bg-beige);
    color: var(--text-dark);
    line-height: 1.8;
}


h1, h2, h3, h4, h5, h6 {
    font-family: 'Nunito', 'Poppins', sans-serif;
    color: var(--text-dark);
    letter-spacing: 0.3px;
    font-weight: 700;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-dark);
}

h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.1rem;
}

p {
    color: var(--text-medium);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

/* Hero Section */
.ludo-hero {
    background: var(--bg-beige-light);
    padding: 120px 20px;
    text-align: center;
    position: relative;
    overflow: visible;
}

.ludo-hero::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 400px;
    height: 400px;
    background: var(--pink-soft);
    opacity: 0.15;
    border-radius: 50%;
}

.ludo-hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 400px;
    height: 400px;
    background-image: url('fond.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom left;
    z-index: 10;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: var(--text-dark);
}

.subtitle {
    display: inline-block;
    color: var(--pink-soft);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 20px;
    padding: 8px 20px;
    background: rgba(255, 181, 181, 0.15);
    border-radius: 20px;
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-medium);
    margin-bottom: 40px;
    line-height: 1.8;
}

/* Buttons */
.cta-group {
    margin-top: 40px;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--pink-soft);
    color: white;
    border: 2px solid var(--pink-soft);
}

.btn-primary:hover {
    background: transparent;
    color: var(--pink-soft);
    transform: translateY(-2px);
}

.btn-secondary {
    border: 2px solid var(--blue-sky);
    color: var(--blue-sky);
    background: transparent;
}

.btn-secondary:hover {
    background: var(--blue-sky);
    color: white;
    transform: translateY(-2px);
}
/* Features */
.ludo-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    background: var(--bg-beige);
}

.feature-card {
    flex: 1;
    max-width: 300px;
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--pink-soft), var(--blue-sky), var(--green-mint));
}

.feature-card:nth-child(1)::before {
    background: var(--pink-soft);
}

.feature-card:nth-child(2)::before {
    background: var(--blue-sky);
}

.feature-card:nth-child(3)::before {
    background: var(--green-mint);
}

.feature-card h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.feature-card .icon {
    font-size: 3rem;
    margin-bottom: 25px;
    display: block;
    transition: transform 0.3s ease;
}

.feature-card:hover .icon {
    transform: scale(1.1);
}


/* Selection Section */
.ludo-selection {
    background: var(--paper-warm);
    color: var(--text-dark);
}

.ludo-selection h2 {
    color: var(--blue-night);
}

.ludo-selection h2::after {
    background: var(--gold-main);
}

/* Game Grid */
.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.game-item {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.game-item:hover {
    transform: translateY(-12px);
}

.game-item:hover .game-img {
    box-shadow: 0 25px 60px rgba(44, 51, 51, 0.15);
}

.game-item:hover .game-img::after {
    opacity: 0.6;
}

.game-img {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.game-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(44, 51, 51, 0.7));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.game-item h4 {
    color: var(--blue-night);
    font-weight: 500;
}
/* Responsive Design */
@media (max-width: 1024px) {
    .ludo-features {
        flex-direction: column;
        align-items: center;
        gap: 50px;
        padding: 80px 5%;
    }

    .game-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .subtitle {
        letter-spacing: 4px;
        font-size: 0.75rem;
    }

    .btn-primary,
    .btn-secondary {
        display: block;
        margin: 10px auto;
        max-width: 280px;
    }

    .ludo-features {
        padding: 60px 5%;
    }

    .ludo-selection {
        padding: 60px 5%;
    }

    .game-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Selection animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.game-item {
    animation: fadeInUp 0.6s ease-out backwards;
}

.game-item:nth-child(1) { animation-delay: 0.1s; }
.game-item:nth-child(2) { animation-delay: 0.2s; }
.game-item:nth-child(3) { animation-delay: 0.3s; }

/* ===================================
   HEADER STYLES
   =================================== */

/* Header Principal */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo et Branding */
.site-branding {
    flex-shrink: 0;
}

.logo-link {
    text-decoration: none;
    display: block;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.02);
}

.logo-text {
    font-family: 'Nunito', 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--pink-soft);
    margin: 0;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.logo-tagline {
    font-family: 'Nunito', 'Poppins', sans-serif;
    font-size: 0.75rem;
    color: var(--text-medium);
    margin: 0;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.site-logo {
    height: 50px;
    width: auto;
    display: block;
    object-fit: contain;
}

/* Navigation Desktop */
.main-navigation {
    display: none;
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-family: 'Nunito', 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.5rem 0;
    display: block;
    position: relative;
    transition: color 0.3s ease;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--pink-soft);
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu a:hover {
    color: var(--pink-soft);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu .current-menu-item > a,
.nav-menu .current_page_item > a {
    color: var(--pink-soft);
}

.nav-menu .current-menu-item > a::after,
.nav-menu .current_page_item > a::after {
    width: 100%;
}

/* Bouton Menu Mobile */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    transition: transform 0.3s ease;
}

.mobile-menu-toggle:hover {
    transform: scale(1.1);
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: var(--pink-soft);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

/* Menu Mobile Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: linear-gradient(180deg, var(--blue-night) 0%, var(--blue-deep) 100%);
    z-index: 999;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
}

.mobile-menu-overlay.active {
    right: 0;
}

.mobile-menu-overlay::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.mobile-menu-overlay.active::before {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-content {
    padding: 2rem;
    position: relative;
}

.mobile-menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: var(--gold-main);
    font-size: 3rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    color: var(--gold-soft);
    transform: rotate(90deg);
}

.mobile-navigation {
    margin-top: 3rem;
}

.mobile-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-menu li {
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.mobile-nav-menu a {
    color: var(--paper-light);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    padding: 1rem 0;
    display: block;
    transition: all 0.3s ease;
}

.mobile-nav-menu a:hover {
    color: var(--gold-main);
    padding-left: 1rem;
}

.mobile-nav-menu .current-menu-item > a,
.mobile-nav-menu .current_page_item > a {
    color: var(--gold-main);
    font-weight: 500;
}

/* Backdrop pour mobile menu */
.mobile-menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-menu-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

/* Responsive - Desktop */
@media (min-width: 769px) {
    .main-navigation {
        display: block;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .mobile-menu-overlay {
        display: none;
    }

    .site-logo {
        height: 60px;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .site-logo {
        height: 45px;
    }
}

/* ===================================
   FOOTER STYLES
   =================================== */

/* Footer Principal */
.site-footer {
    background: white;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    margin-top: 4rem;
    color: var(--text-dark);
}

.footer-top {
    padding: 3rem 0 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-top .footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-family: 'Nunito', 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: var(--pink-soft);
    margin: 0 0 1.5rem 0;
    font-weight: 700;
    letter-spacing: 0.3px;
}

/* Footer About */
.footer-description {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-beige-light);
    border: 2px solid var(--pink-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pink-soft);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--pink-soft);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 181, 181, 0.3);
}

/* Footer Links */
.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 0.75rem;
}

.footer-menu a {
    color: var(--text-medium);
    text-decoration: none;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-menu a::before {
    content: '→';
    opacity: 0;
    margin-right: 0;
    transition: all 0.3s ease;
    color: var(--pink-soft);
}

.footer-menu a:hover {
    color: var(--pink-soft);
    padding-left: 1.5rem;
}

.footer-menu a:hover::before {
    opacity: 1;
    margin-right: 0.5rem;
}

/* Footer Contact */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    width: 30px;
    text-align: center;
}

.contact-text {
    flex: 1;
}

.contact-text strong {
    display: block;
    color: var(--pink-soft);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.contact-text p {
    margin: 0;
    color: var(--text-medium);
    font-size: 0.9rem;
    line-height: 1.6;
}

.contact-text a {
    color: var(--text-medium);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: var(--pink-soft);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: 1.5rem 0;
    margin-top: 2rem;
    background: var(--bg-beige-light);
}

.footer-bottom .footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.copyright,
.credits {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
}

.heart {
    color: var(--pink-soft);
    display: inline-block;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-top .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-column {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-menu a {
        justify-content: center;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .footer-top .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-about {
        grid-column: 1 / -1;
        text-align: center;
    }

    .footer-about .social-icons {
        justify-content: center;
    }
}

/* ===================================
   TEMPLATE PAGES STYLES
   =================================== */

/* Container Global */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Page Hero Sections */
.page-hero {
    position: relative;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bg-beige-light);
    overflow: hidden;
}

.page-hero-activites::before,
.page-hero-apropos::before,
.page-hero-contact::before,
.page-hero-tarifs::before,
.page-hero-concept::before,
.page-hero-espace::before,
.page-hero-ecoles::before,
.page-hero-faq::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    opacity: 0.15;
}

.page-hero-activites::before {
    background: var(--pink-soft);
}

.page-hero-apropos::before {
    background: var(--blue-sky);
}

.page-hero-contact::before {
    background: var(--green-mint);
}

.page-hero-tarifs::before {
    background: var(--yellow-soft);
}

.page-hero-concept::before {
    background: var(--peach-soft);
}

.page-hero-espace::before {
    background: var(--green-mint);
}

.page-hero-ecoles::before {
    background: var(--blue-sky);
}

.page-hero-faq::before {
    background: var(--yellow-soft);
}

.page-hero-overlay {
    display: none;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    padding: 4rem 2rem;
}

.page-hero-title {
    font-family: 'Nunito', 'Poppins', sans-serif;
    font-size: 3rem;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
    font-weight: 800;
}

.page-hero-subtitle {
    font-family: 'Nunito', 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: var(--text-medium);
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Content Sections */
.content-section {
    padding: 4rem 0;
}

.section-intro {
    background: var(--bg-beige-light);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: var(--text-dark);
}

.lead-text {
    font-size: 1.15rem;
    color: var(--text-medium);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Activities Grid */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.activity-card {
    background: white;
    border: 2px solid var(--bg-beige-dark);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.activity-card:hover {
    transform: translateY(-5px);
    border-color: var(--pink-soft);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.activity-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.activity-title {
    font-family: 'Nunito', 'Poppins', sans-serif;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
    text-align: center;
    font-weight: 700;
}

.activity-description {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.activity-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.activity-features li {
    color: var(--text-medium);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.activity-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--pink-soft);
    font-weight: bold;
}

/* Two Column Layout (Histoire) */
.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.column-text h2 {
    color: var(--text-dark);
    text-align: left;
}

.column-text p {
    color: var(--text-medium);
    line-height: 1.8;
}

.column-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--bg-beige-light);
    border: 2px solid var(--pink-soft);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.placeholder-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--pink-soft);
}

.image-placeholder p {
    color: var(--text-medium);
    font-size: 1.1rem;
    margin: 0;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    border: 2px solid var(--bg-beige-dark);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--blue-sky);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-title {
    font-family: 'Nunito', 'Poppins', sans-serif;
    font-size: 1.4rem;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
    font-weight: 700;
}

.value-description {
    color: var(--text-medium);
    line-height: 1.7;
    margin: 0;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.team-member {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.member-photo {
    margin-bottom: 1.5rem;
}

.photo-placeholder {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    border-radius: 50%;
    background: var(--bg-beige-light);
    border: 3px solid var(--pink-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.member-name {
    font-family: 'Nunito', 'Poppins', sans-serif;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
    font-weight: 700;
}

.member-role {
    color: var(--pink-soft);
    font-size: 0.95rem;
    margin: 0 0 1rem 0;
    font-weight: 600;
}

.member-bio {
    color: var(--text-medium);
    line-height: 1.7;
    margin: 0;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.contact-info-column h2,
.contact-form-column h2 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.intro-text {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Contact Info List */
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.info-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 50px;
    text-align: center;
}

.info-content h3 {
    font-family: 'Nunito', 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: var(--pink-soft);
    margin: 0 0 0.5rem 0;
    font-weight: 700;
}

.info-content p {
    color: var(--text-medium);
    margin: 0;
    line-height: 1.7;
}

.info-content a {
    color: var(--text-medium);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: var(--pink-soft);
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--text-dark);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: white;
    border: 2px solid var(--bg-beige-dark);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    color: var(--text-dark);
    font-family: 'Nunito', 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--pink-soft);
    box-shadow: 0 0 0 3px rgba(255, 181, 181, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
    font-style: italic;
}

/* Map Section */
.section-map {
    padding: 0;
    margin: 4rem 0 0 0;
}

.map-container {
    width: 100%;
    height: 450px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--blue-night), var(--blue-deep));
    border-top: 3px solid var(--gold-main);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder-content {
    text-align: center;
}

.map-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
}

.map-placeholder-content p {
    color: var(--gold-main);
    font-size: 1.2rem;
    margin: 0.5rem 0;
}

.map-address {
    color: var(--paper-warm);
    font-size: 1rem;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: white;
    border: 2px solid var(--bg-beige-dark);
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--pink-soft);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card-featured {
    border-color: var(--pink-soft);
    border-width: 3px;
    transform: scale(1.03);
}

.pricing-card-featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--pink-soft);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--bg-beige-dark);
}

.pricing-title {
    font-family: 'Nunito', 'Poppins', sans-serif;
    font-size: 1.8rem;
    color: var(--text-dark);
    margin: 0 0 1.5rem 0;
    font-weight: 800;
}

.pricing-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.price-currency {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    font-family: 'Nunito', 'Poppins', sans-serif;
    display: inline;
    vertical-align: top;
    margin-right: 0.25rem;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    font-family: 'Nunito', 'Poppins', sans-serif;
    line-height: 1;
    display: inline;
}

.price-period {
    color: var(--text-light);
    font-size: 1rem;
    display: block;
    text-align: center;
    width: 100%;
}

.pricing-savings {
    color: var(--pink-soft);
    font-size: 0.95rem;
    margin: 1rem 0 0 0;
    font-weight: 600;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex-grow: 1;
}

.pricing-features li {
    color: var(--text-medium);
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid var(--bg-beige-dark);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--pink-soft);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Special Pricing Grid */
.special-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.special-pricing-card {
    background: white;
    border: 2px solid var(--bg-beige-dark);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.special-pricing-card:hover {
    border-color: var(--blue-sky);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.special-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.special-pricing-card h3 {
    font-family: 'Nunito', 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
    font-weight: 700;
}

.special-price {
    font-size: 1.8rem;
    color: var(--text-dark);
    font-weight: 700;
    margin: 1rem 0;
    font-family: 'Nunito', 'Poppins', sans-serif;
}

.special-description {
    color: var(--text-medium);
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

/* FAQ List */
.faq-list {
    max-width: 900px;
    margin: 2rem auto 0;
}

.faq-item {
    background: white;
    border-left: 4px solid var(--pink-soft);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
    border-left-width: 6px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.faq-question {
    font-family: 'Nunito', 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
    font-weight: 700;
}

.faq-answer {
    color: var(--text-medium);
    line-height: 1.8;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: var(--bg-beige-light);
    padding: 4rem 0;
    margin: 4rem 0 0 0;
    border-top: 3px solid var(--pink-soft);
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Nunito', 'Poppins', sans-serif;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
    font-weight: 800;
}

.cta-text {
    color: var(--text-medium);
    font-size: 1.15rem;
    line-height: 1.8;
    margin: 0 0 2rem 0;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: 'Nunito', 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--pink-soft);
    color: white;
    border-color: var(--pink-soft);
}

.btn-primary:hover {
    background: transparent;
    color: var(--pink-soft);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 181, 181, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--blue-sky);
    border-color: var(--blue-sky);
}

.btn-secondary:hover {
    background: var(--blue-sky);
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

/* ===================================
   ABOUT PAGE STYLES
   =================================== */

/* Founder Section */
.section-founder {
    padding: 4rem 0;
    background: var(--bg-beige);
    clear: both;
    overflow: hidden;
}

.section-founder .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.founder-layout {
    display: flex;
    flex-direction: row;
    gap: 3rem;
    align-items: flex-start;
}

.founder-image {
    flex: 0 0 250px;
}

.founder-photo {
    width: 250px;
    height: 250px;
}

.founder-photo .photo-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: white;
    border: 4px solid var(--pink-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.founder-photo .photo-placeholder:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 181, 181, 0.3);
}

.founder-content {
    flex: 1;
    min-width: 0;
}

.founder-content h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
    text-align: left;
}

.founder-intro {
    font-size: 1.2rem;
    color: var(--pink-soft);
    font-weight: 600;
    margin: 0 0 1.5rem 0;
    font-style: italic;
    line-height: 1.6;
}

.founder-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin: 0 0 1.2rem 0;
}

/* About Section with Image */
.section-about-with-image {
    padding: 5rem 0;
    background: var(--bg-beige-light);
    clear: both;
    overflow: visible;
}

.section-about-with-image .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
}

.about-image-layout {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 4rem;
    align-items: flex-start;
    justify-content: space-between;
}

.about-image-wrapper {
    flex: 0 0 400px;
    width: 400px;
    min-width: 400px;
}

.about-image-placeholder {
    width: 100%;
    height: 300px;
    background: white;
    border: 3px solid var(--blue-sky);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image-placeholder:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.about-image-placeholder .image-icon {
    font-size: 4rem;
    margin-bottom: 0.5rem;
    color: var(--blue-sky);
}

.about-image-placeholder p {
    color: var(--text-medium);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.about-space-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.about-text-wrapper {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 600px;
}

.about-text-wrapper h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin: 0 0 2rem 0;
    text-align: left;
}

.about-text-content {
    margin-bottom: 2.5rem;
}

.about-paragraph-styled {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-medium);
    margin: 0 0 1.5rem 0;
}

.about-highlight {
    background: white;
    border-left: 4px solid var(--pink-soft);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
}

.highlight-icon {
    font-size: 2rem;
    flex-shrink: 0;
    line-height: 1;
}

.highlight-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-dark);
    font-weight: 600;
    margin: 0;
    font-style: italic;
}

/* Activities Page - Intro Quote */
.section-activities-intro {
    padding: 3rem 0;
    background: var(--bg-beige);
}

.activities-quote {
    max-width: 900px;
    margin: 0 auto;
    padding: 2.5rem 3rem;
    background: white;
    border-left: 6px solid var(--pink-soft);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.activities-quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 5rem;
    color: var(--pink-soft);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

.quote-text {
    font-size: 1.3rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin: 0;
    font-weight: 500;
    font-style: italic;
}

/* Activities Page - Promise Box */
.section-promise {
    background: var(--bg-beige-light);
}

.promise-box {
    background: white;
    border: 3px solid var(--yellow-soft);
    border-radius: 25px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    max-width: 900px;
    margin: 0 auto;
}

.promise-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.promise-box h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.promise-text {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-medium);
    margin: 0;
    font-weight: 500;
}

/* Pricing Page Sections */
.section-pricing {
    padding: 4rem 0;
    background: var(--bg-beige);
}

.section-special-pricing {
    padding: 4rem 0;
    background: var(--bg-beige-light);
}

/* ===================================
   CONTACT PAGE STYLES
   =================================== */

.section-contact-main {
    padding: 4rem 0;
    background: var(--bg-beige);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

/* Contact Info Side */
.contact-info-side {
    position: sticky;
    top: 2rem;
}

.contact-info-side h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: left;
}

.contact-intro {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-detail-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.detail-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    line-height: 1;
}

.detail-content h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
    font-weight: 700;
}

.detail-content p {
    color: var(--text-medium);
    margin: 0;
    line-height: 1.7;
}

.detail-content a {
    color: var(--pink-soft);
    text-decoration: none;
    transition: color 0.3s ease;
}

.detail-content a:hover {
    color: var(--text-dark);
}

.social-links h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
    font-weight: 700;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    font-size: 2rem;
    text-decoration: none;
    transition: transform 0.3s ease;
    display: inline-block;
}

.social-icon:hover {
    transform: translateY(-3px);
}

/* Contact Form Side */
.contact-form-side {
    background: white;
    border: 2px solid var(--bg-beige-dark);
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

.form-wrapper h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
    text-align: left;
}

.form-description {
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-form select {
    background: var(--bg-beige-light);
    border: 2px solid var(--bg-beige-dark);
    border-radius: 12px;
    padding: 0.85rem 1rem;
    color: var(--text-dark);
    font-family: 'Nunito', 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-form select:focus {
    outline: none;
    border-color: var(--pink-soft);
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 181, 181, 0.1);
}

/* Pre-Launch Section */
.section-prelaunch {
    padding: 4rem 0;
    background: var(--bg-beige-light);
}

.prelaunch-box {
    background: white;
    border: 3px solid var(--green-mint);
    border-radius: 25px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    max-width: 800px;
    margin: 0 auto;
}

.prelaunch-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.prelaunch-box h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.prelaunch-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

/* Responsive Templates */
@media (max-width: 768px) {
    .page-hero-title {
        font-size: 2.5rem;
    }

    .page-hero-subtitle {
        font-size: 1.1rem;
    }

    .container {
        padding: 0 1.5rem;
    }

    .content-section {
        padding: 3rem 0;
    }

    .activities-grid,
    .values-grid,
    .team-grid,
    .special-pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .two-column-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card-featured {
        transform: scale(1);
    }

    .pricing-card-featured:hover {
        transform: translateY(-5px);
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .section-activities-intro {
        padding: 2rem 0;
    }

    .activities-quote {
        padding: 1.5rem 2rem;
        border-left-width: 4px;
    }

    .activities-quote::before {
        font-size: 3.5rem;
        top: -5px;
        left: 15px;
    }

    .quote-text {
        font-size: 1.1rem;
    }

    .promise-box {
        padding: 2rem 1.5rem;
    }

    .promise-box h2 {
        font-size: 1.6rem;
    }

    .promise-text {
        font-size: 1.05rem;
    }

    .promise-icon {
        font-size: 2.5rem;
    }

    .section-founder {
        padding: 3rem 0;
    }

    .section-founder .container {
        padding: 0 1.5rem;
    }

    .founder-layout {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }

    .founder-image {
        flex: none;
    }

    .founder-photo {
        width: 180px;
        height: 180px;
    }

    .founder-photo .photo-placeholder {
        font-size: 4rem;
    }

    .founder-content {
        text-align: center;
    }

    .founder-content h2 {
        font-size: 1.8rem;
        text-align: center;
    }

    .founder-intro {
        font-size: 1.1rem;
    }

    .founder-description {
        font-size: 1rem;
        text-align: left;
    }

    .section-about-with-image {
        padding: 3rem 0;
    }

    .section-about-with-image .container {
        padding: 0 1.5rem;
    }

    .about-image-layout {
        flex-direction: column;
        gap: 2rem;
    }

    .about-image-wrapper {
        flex: none;
        width: 100%;
    }

    .about-image-placeholder .image-icon {
        font-size: 3.5rem;
    }

    .about-text-wrapper h2 {
        font-size: 1.8rem;
        text-align: center;
    }

    .about-paragraph-styled {
        font-size: 1rem;
    }

    .about-highlight {
        padding: 1rem 1.2rem;
        gap: 0.8rem;
    }

    .highlight-icon {
        font-size: 1.8rem;
    }

    .highlight-text {
        font-size: 0.95rem;
    }

    .section-pricing,
    .section-special-pricing {
        padding: 3rem 0;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info-side {
        position: relative;
        top: 0;
    }

    .contact-form-side {
        padding: 2rem 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .prelaunch-box {
        padding: 2rem 1.5rem;
    }

    .prelaunch-box h2 {
        font-size: 1.6rem;
    }

    .prelaunch-icon {
        font-size: 2.5rem;
    }
}

/* ===================================
   CONTACT FORM STYLES
   =================================== */

.contact-form-section {
    padding: 4rem 0;
    background: var(--bg-beige-light);
}

.contact-form-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-form {
    background: white;
    border: 2px solid var(--bg-beige-dark);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.contact-form label {
    color: var(--text-dark);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-family: 'Nunito', 'Poppins', sans-serif;
}

.contact-form input,
.contact-form textarea {
    background: var(--bg-beige-light);
    border: 2px solid var(--bg-beige-dark);
    border-radius: 12px;
    padding: 0.85rem 1rem;
    color: var(--text-dark);
    font-family: 'Nunito', 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--pink-soft);
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 181, 181, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    background: var(--pink-soft);
    color: white;
    border: 2px solid var(--pink-soft);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-family: 'Nunito', 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
}

.submit-button:hover:not(:disabled) {
    background: transparent;
    color: var(--pink-soft);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 181, 181, 0.3);
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-messages {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-messages:not(:empty) {
    display: block;
}

.form-messages.success {
    background: rgba(184, 243, 216, 0.2);
    color: #2d5f3e;
    border: 2px solid var(--green-mint);
}

.form-messages.error {
    background: rgba(255, 181, 181, 0.2);
    color: #8b2424;
    border: 2px solid var(--pink-soft);
}

@media (max-width: 768px) {
    .contact-form-container {
        padding: 0 1rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }
}
