/* ===== CEDRIC PILATES - SOFT & SERENE DESIGN ===== */

:root {
    /* Palette douce et apaisante */
    --sage: #7B9E89;
    --sage-light: #A8C4B8;
    --sage-dark: #5C7A68;
    --blush: #D4A5A5;
    --blush-light: #E8C4C4;
    --lavender: #B8A9C9;
    --sky: #9BB5C4;
    --cream: #FAF8F5;
    --warm-white: #FDFCFA;
    --sand: #E8E2D9;
    --taupe: #8B8178;
    
    /* Couleurs principales */
    --primary: var(--sage);
    --primary-light: var(--sage-light);
    --primary-dark: var(--sage-dark);
    --secondary: var(--blush);
    --accent: var(--lavender);
    --text: #4A4A4A;
    --text-light: #7A7A7A;
    --text-dark: #2D2D2D;
    --bg: var(--warm-white);
    --bg-alt: var(--cream);
    --bg-soft: var(--sand);
    
    /* Espacements */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 5rem;
    --space-3xl: 8rem;
    
    /* Bordures */
    --radius-sm: 8px;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    
    /* Fonts */
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Nunito Sans', sans-serif;
    
    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(123, 158, 137, 0.1);
    --shadow-medium: 0 8px 30px rgba(123, 158, 137, 0.15);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.06);
}

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

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

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul, ol {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 { font-size: clamp(2.5rem, 8vw, 5rem); }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
    font-size: 1rem;
    line-height: 1.8;
}

.label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--primary);
    margin-bottom: var(--space-sm);
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    background: var(--primary);
    color: white;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 1rem 2rem;
    border: 2px solid var(--primary);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    background: transparent;
    color: var(--primary);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 1rem 2rem;
    border: 2px solid var(--primary);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.btn-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    background: white;
    color: var(--primary);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 1rem 2rem;
    border: 2px solid white;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
}

.btn-white:hover {
    background: transparent;
    color: white;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 252, 250, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(123, 158, 137, 0.1);
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.nav-logo .logo-text {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.nav-logo .logo-sub {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--taupe);
}

.nav-menu {
    display: flex;
    gap: var(--space-lg);
}

.nav-menu a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
}

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    background: var(--primary);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.nav-cta i {
    transition: var(--transition);
}

.nav-cta:hover i {
    transform: translateX(3px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 28px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg);
    padding: var(--space-xl);
    z-index: 999;
    flex-direction: column;
    gap: var(--space-lg);
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.mobile-menu a {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--text-dark);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--warm-white) 50%, rgba(168, 196, 184, 0.1) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(123, 158, 137, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius-full);
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
    box-shadow: var(--shadow-soft);
}

.hero h1 {
    color: var(--text-dark);
    margin-bottom: var(--space-md);
}

.hero h1 span {
    display: block;
    color: var(--primary);
    font-style: italic;
}

.hero-text {
    font-size: 1.15rem;
    color: var(--text);
    max-width: 500px;
    margin-bottom: var(--space-lg);
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.hero-stats {
    display: flex;
    gap: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(123, 158, 137, 0.2);
}

.hero-stat {
    text-align: left;
}

.hero-stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

.hero-image {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.hero-image-badge {
    position: absolute;
    bottom: var(--space-md);
    left: var(--space-md);
    background: white;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.hero-image-badge .rating {
    display: flex;
    align-items: center;
    gap: 2px;
    color: #F4B942;
    margin-bottom: 2px;
}

.hero-image-badge .rating span {
    color: var(--text-dark);
    font-weight: 600;
    margin-left: 4px;
}

.hero-image-badge .reviews {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ===== MARQUEE ===== */
.marquee-section {
    background: var(--primary);
    padding: var(--space-md) 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    animation: marquee 40s linear infinite;
    white-space: nowrap;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0 var(--space-lg);
}

.marquee-item i {
    color: rgba(255, 255, 255, 0.7);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.333%); }
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: var(--space-3xl) 0;
    background: var(--bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.about-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.about-img:first-child {
    margin-top: var(--space-xl);
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.about-content h2 span {
    color: var(--primary);
    font-style: italic;
}

.about-content p {
    color: var(--text);
    margin-bottom: var(--space-md);
}

.about-quote {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--primary-dark);
    padding: var(--space-md);
    border-left: 3px solid var(--primary);
    background: rgba(123, 158, 137, 0.05);
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: var(--space-lg) 0;
}

.about-certs {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.about-cert {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    background: var(--cream);
    padding: 0.6rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark);
    border: 1px solid rgba(123, 158, 137, 0.2);
}

.about-cert i {
    color: var(--primary);
}

/* ===== SERVICES ===== */
.services-section {
    padding: var(--space-3xl) 0;
    background: var(--cream);
}

.services-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.services-header h2 span {
    color: var(--primary);
    font-style: italic;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.service-card {
    position: relative;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.service-card-bg {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.service-card:hover .service-card-bg img {
    transform: scale(1.1);
}

.service-card-content {
    padding: var(--space-lg);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: white;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
    margin-top: -40px;
    position: relative;
    box-shadow: var(--shadow-soft);
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: var(--space-sm);
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    flex-grow: 1;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: var(--space-md);
}

.service-card-link i {
    transition: var(--transition);
}

.service-card:hover .service-card-link i {
    transform: translateX(5px);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    padding: var(--space-3xl) 0;
    background: var(--bg);
    overflow: hidden;
}

.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: var(--space-2xl);
}

.testimonials-header h2 span {
    color: var(--primary);
    font-style: italic;
}

.testimonials-rating {
    text-align: right;
}

.testimonials-rating .stars {
    display: flex;
    justify-content: flex-end;
    gap: 2px;
    color: #F4B942;
    margin-bottom: 4px;
}

.testimonials-rating .score {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.testimonials-rating .count {
    font-size: 0.85rem;
    color: var(--text-light);
}

.testimonials-track {
    display: flex;
    gap: var(--space-lg);
    animation: scroll 30s linear infinite;
    width: max-content;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.testimonial-card {
    flex: 0 0 380px;
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(123, 158, 137, 0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
}

.testimonial-info {
    flex-grow: 1;
}

.testimonial-info h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.testimonial-info span {
    font-size: 0.8rem;
    color: var(--text-light);
}

.testimonial-stars {
    color: #F4B942;
    font-size: 0.85rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text);
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

.testimonial-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.8rem;
    color: var(--primary);
}

.testimonial-badge i {
    color: var(--primary);
}

/* ===== STATS ===== */
.stats-section {
    padding: var(--space-2xl) 0;
    background: var(--primary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ===== GALLERY ===== */
.gallery-section {
    padding: var(--space-3xl) 0;
    background: var(--cream);
}

.gallery-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.gallery-header h2 span {
    color: var(--primary);
    font-style: italic;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(92, 122, 104, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: var(--space-md);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay span {
    color: white;
    font-family: var(--font-display);
    font-size: 1.25rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    text-align: center;
}

.cta-section h2 {
    color: white;
    margin-bottom: var(--space-md);
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto var(--space-lg);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--text-dark);
    color: white;
    padding: var(--space-3xl) 0 var(--space-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer-brand .footer-logo {
    display: inline-flex;
    flex-direction: column;
    line-height: 1;
    margin-bottom: var(--space-md);
}

.footer-brand .logo-text {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: white;
}

.footer-brand .logo-sub {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--primary-light);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-md);
}

.footer-zone {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--primary-light);
    font-size: 0.9rem;
}

.footer-links h4 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: white;
    margin-bottom: var(--space-md);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-contact h4 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: white;
    margin-bottom: var(--space-md);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: var(--space-sm);
}

.footer-contact-item i {
    color: var(--primary-light);
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: var(--space-md);
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: var(--primary-light);
}

/* ===== CONTACT PAGE ===== */
.contact-hero {
    padding: calc(80px + var(--space-2xl)) 0 var(--space-2xl);
    background: linear-gradient(135deg, var(--cream) 0%, var(--warm-white) 100%);
}

.contact-hero h1 {
    text-align: center;
    margin-bottom: var(--space-sm);
}

.contact-hero p {
    text-align: center;
    color: var(--text-light);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-section {
    padding: var(--space-2xl) 0 var(--space-3xl);
    background: var(--bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-2xl);
}

.contact-form {
    background: white;
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.contact-form h3 {
    margin-bottom: var(--space-lg);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: var(--space-xs);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(123, 158, 137, 0.2);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text);
    background: var(--cream);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(123, 158, 137, 0.1);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.captcha-group {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    background: var(--cream);
    padding: var(--space-md);
    border-radius: var(--radius);
    margin-bottom: var(--space-md);
}

.captcha-question {
    font-weight: 500;
    color: var(--text-dark);
}

.captcha-input {
    width: 80px !important;
    text-align: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-info-card {
    background: white;
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.contact-info-card h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    color: var(--text);
}

.contact-info-item i {
    color: var(--primary);
    font-size: 1.25rem;
    margin-top: 2px;
}

.contact-free-session {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
}

.contact-free-session i {
    font-size: 3rem;
    margin-bottom: var(--space-md);
    opacity: 0.9;
}

.contact-free-session h4 {
    color: white;
    margin-bottom: var(--space-sm);
}

.contact-free-session p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

/* ===== SERVICE PAGE ===== */
.service-hero {
    padding: calc(80px + var(--space-2xl)) 0 var(--space-2xl);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: white;
}

.service-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.service-hero-content .breadcrumb {
    display: flex;
    gap: var(--space-sm);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-md);
}

.service-hero-content .breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
}

.service-hero-content .breadcrumb a:hover {
    color: white;
}

.service-hero-content h1 {
    color: white;
    margin-bottom: var(--space-md);
}

.service-hero-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    margin-bottom: var(--space-lg);
}

.service-hero-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.service-hero-image img {
    width: 100%;
    height: auto;
}

.service-content {
    padding: var(--space-3xl) 0;
    background: var(--bg);
}

.service-content-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: var(--space-2xl);
}

.service-main h2 {
    font-size: 1.75rem;
    margin-bottom: var(--space-md);
    margin-top: var(--space-xl);
}

.service-main h2:first-child {
    margin-top: 0;
}

.service-main p {
    color: var(--text);
    margin-bottom: var(--space-md);
}

.service-main ul {
    margin-bottom: var(--space-lg);
}

.service-main ul li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    color: var(--text);
}

.service-main ul li i {
    color: var(--primary);
    margin-top: 4px;
}

.service-sidebar {
    position: sticky;
    top: 100px;
}

.service-cta-card {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    margin-bottom: var(--space-lg);
}

.service-cta-card h3 {
    color: white;
    margin-bottom: var(--space-sm);
}

.service-cta-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-md);
}

.service-other {
    background: var(--cream);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
}

.service-other h4 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
}

.service-other-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.service-other-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm);
    background: white;
    border-radius: var(--radius);
    transition: var(--transition);
}

.service-other-item:hover {
    background: var(--primary);
    color: white;
}

.service-other-item i {
    font-size: 1.25rem;
}

/* ===== ABOUT PAGE ===== */
.about-hero {
    padding: calc(80px + var(--space-2xl)) 0 var(--space-2xl);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: white;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.about-hero-content .breadcrumb {
    display: flex;
    gap: var(--space-sm);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-md);
}

.about-hero-content .breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
}

.about-hero-content h1 {
    color: white;
    margin-bottom: var(--space-md);
}

.about-hero-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
}

.about-hero-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3/4;
    max-height: 500px;
}

.about-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.about-story {
    padding: var(--space-3xl) 0;
    background: var(--bg);
}

.about-story-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-story h2 {
    margin-bottom: var(--space-md);
}

.about-story h2 span {
    color: var(--primary);
    font-style: italic;
}

.about-story p {
    color: var(--text);
    font-size: 1.1rem;
    margin-bottom: var(--space-md);
}

.about-philosophy {
    padding: var(--space-3xl) 0;
    background: var(--cream);
}

.philosophy-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.philosophy-header h2 span {
    color: var(--primary);
    font-style: italic;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.philosophy-card {
    background: white;
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid rgba(123, 158, 137, 0.1);
    transition: var(--transition);
}

.philosophy-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.philosophy-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: white;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto var(--space-md);
}

.philosophy-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.philosophy-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.about-certs-section {
    padding: var(--space-3xl) 0;
    background: var(--primary);
    color: white;
}

.certs-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.certs-header h2 {
    color: white;
}

.certs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.cert-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
}

.cert-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.cert-card-icon {
    width: 60px;
    height: 60px;
    background: white;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto var(--space-sm);
}

.cert-card h3 {
    color: white;
    font-size: 1rem;
    margin-bottom: var(--space-xs);
}

.cert-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

/* ===== ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .hero-image {
        order: -1;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .service-hero-grid,
    .about-hero-grid {
        grid-template-columns: 1fr;
    }
    
    .service-content-grid {
        grid-template-columns: 1fr;
    }
    
    .service-sidebar {
        position: static;
    }
    
    .philosophy-grid,
    .certs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu,
    .nav-cta {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        padding-top: 100px;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: var(--space-lg);
    }
    
    .hero-stat {
        flex: 1 1 40%;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-md);
    }
    
    .testimonial-card {
        flex: 0 0 300px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-zone {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .about-certs {
        flex-wrap: wrap;
    }
    
    .testimonials-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-md);
    }
    
    .testimonials-rating {
        text-align: left;
    }
    
    .testimonials-rating .stars {
        justify-content: flex-start;
    }
    
    .philosophy-grid,
    .certs-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.75rem; }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn-primary,
    .hero-cta .btn-outline {
        width: 100%;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .hero-stat {
        flex: 1 1 100%;
        text-align: center;
        padding: var(--space-md);
        background: var(--cream);
        border-radius: var(--radius);
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}
