/* ===== CSS VARIABLES ===== */
:root {
    --sage: #8B9D77;
    --sage-light: #A8B896;
    --sage-dark: #6B7D5A;
    --sand: #E8DDD3;
    --sand-light: #F5F0EB;
    --sand-dark: #D4C4B5;
    --terracotta: #C4856A;
    --terracotta-dark: #A66B52;
    --cream: #FDFAF6;
    --charcoal: #2C2C2C;
    --charcoal-light: #4A4A4A;
    --white: #FFFFFF;
    --gold: #C5A572;
    --gold-light: #D4BB8A;
    --deep-green: #3D5A3E;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--charcoal);
    background-color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
}

img {
    max-width: 100%;
    display: block;
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-lotus {
    width: 80px;
    height: 80px;
    font-size: 4rem;
    animation: breathe 2s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--sage);
    margin-top: 15px;
    letter-spacing: 3px;
    text-align: center;
}

@keyframes breathe {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.15); opacity: 1; }
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(253, 250, 246, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 2px 30px rgba(0,0,0,0.06);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--charcoal);
    text-decoration: none;
    letter-spacing: 1px;
}

.logo span {
    color: var(--sage);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--charcoal);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--sage);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--sage-dark);
}

.nav-cta {
    background: var(--sage) !important;
    color: var(--white) !important;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.8rem !important;
    letter-spacing: 1.5px;
    transition: all 0.3s !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--sage-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(139, 157, 119, 0.3);
}

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}

.burger span {
    width: 25px;
    height: 2px;
    background: var(--charcoal);
    transition: all 0.3s;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--sand-light) 0%, var(--cream) 50%, #E8E0D8 100%);
}

.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.hero-circle-1 {
    width: 600px;
    height: 600px;
    background: var(--sage);
    top: -200px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.hero-circle-2 {
    width: 400px;
    height: 400px;
    background: var(--terracotta);
    bottom: -100px;
    left: -100px;
    animation: float 10s ease-in-out infinite reverse;
}

.hero-circle-3 {
    width: 200px;
    height: 200px;
    background: var(--gold);
    top: 30%;
    right: 20%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 30px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-badge {
    display: inline-block;
    background: rgba(139, 157, 119, 0.15);
    color: var(--sage-dark);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 300;
    margin-bottom: 25px;
    color: var(--charcoal);
}

.hero h1 strong {
    font-weight: 600;
    color: var(--sage-dark);
    font-style: italic;
}

.hero-text {
    font-size: 1.1rem;
    color: var(--charcoal-light);
    margin-bottom: 40px;
    max-width: 480px;
    font-weight: 300;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--sage);
    color: var(--white);
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--sage-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 157, 119, 0.3);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--charcoal);
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s;
    border: 2px solid var(--sand-dark);
}

.btn-secondary:hover {
    border-color: var(--sage);
    color: var(--sage-dark);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--sage-dark);
}

.hero-stat-label {
    font-size: 0.75rem;
    color: var(--charcoal-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.hero-visual {
    position: relative;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 120%;
    border-radius: 200px 200px 100px 100px;
    overflow: hidden;
    background: linear-gradient(180deg, var(--sage-light) 0%, var(--sand) 100%);
}

.hero-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-floating-card {
    position: absolute;
    background: var(--white);
    padding: 20px 25px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    animation: floatCard 4s ease-in-out infinite;
}

.hero-floating-card-1 {
    bottom: 15%;
    left: -40px;
}

.hero-floating-card-2 {
    top: 15%;
    right: -30px;
    animation-delay: 1s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.floating-card-icon {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.floating-card-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--charcoal);
}

.floating-card-sub {
    font-size: 0.7rem;
    color: var(--charcoal-light);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== MARQUEE ===== */
.marquee-section {
    background: var(--sage);
    padding: 18px 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-right: 50px;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    flex-shrink: 0;
}

.marquee-dot {
    width: 6px;
    height: 6px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== SECTIONS COMMON ===== */
.section {
    padding: 100px 0;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 15px;
}

.section-title {
    font-size: 3rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-title em {
    font-style: italic;
    color: var(--sage-dark);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--charcoal-light);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.7;
}

/* ===== ABOUT ===== */
.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image-main {
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--sand) 0%, var(--sage-light) 100%);
    aspect-ratio: 4/5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.about-image-accent {
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--sage);
    border-radius: 30px;
    bottom: -30px;
    right: -30px;
    z-index: -1;
    opacity: 0.15;
}

.about-experience-badge {
    position: absolute;
    top: 30px;
    right: -20px;
    background: var(--terracotta);
    color: var(--white);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(196, 133, 106, 0.3);
}

.about-experience-badge .number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.about-experience-badge .text {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content h2 {
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-content h2 em {
    font-style: italic;
    color: var(--sage-dark);
}

.about-text {
    font-size: 1rem;
    color: var(--charcoal-light);
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 300;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 35px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(139, 157, 119, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.about-feature-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--charcoal);
}

/* ===== SERVICES ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 25px;
    padding: 40px 35px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.04);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--sage);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(139, 157, 119, 0.15), rgba(139, 157, 119, 0.05));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 25px;
    overflow: hidden;
}

.service-icon img {
    width: 60%;
    height: 60%;
    object-fit: contain;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--charcoal-light);
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 20px;
}

.service-details {
    list-style: none;
    margin-bottom: 25px;
}

.service-details li {
    font-size: 0.85rem;
    color: var(--charcoal-light);
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-details li::before {
    content: '✓';
    color: var(--sage);
    font-weight: 700;
    font-size: 0.8rem;
}

.service-tag {
    display: inline-block;
    background: var(--sand-light);
    color: var(--charcoal-light);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ===== BENEFITS ===== */
.benefits {
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.benefit-card {
    text-align: center;
    padding: 40px 25px;
    border-radius: 20px;
    background: var(--cream);
    transition: all 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--sage-light), var(--sage));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    overflow: hidden;
}

.benefit-icon img {
    width: 60%;
    height: 60%;
    object-fit: contain;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.benefit-card p {
    font-size: 0.85rem;
    color: var(--charcoal-light);
    font-weight: 300;
    line-height: 1.6;
}

/* ===== SCHEDULE ===== */
.schedule {
    background: linear-gradient(135deg, var(--sage) 0%, var(--deep-green) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.schedule .section-label {
    color: var(--gold-light);
}

.schedule .section-title {
    color: var(--white);
}

.schedule .section-title em {
    color: var(--gold-light);
}

.schedule .section-subtitle {
    color: rgba(255,255,255,0.7);
}

.schedule-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image: radial-gradient(circle, var(--white) 1px, transparent 1px);
    background-size: 30px 30px;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    position: relative;
    z-index: 1;
}

.schedule-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s;
}

.schedule-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
}

.schedule-day {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--gold-light);
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.schedule-item:last-child {
    border-bottom: none;
}

.schedule-time {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold-light);
    min-width: 90px;
}

.schedule-class {
    font-size: 0.9rem;
    font-weight: 400;
}

.schedule-level {
    font-size: 0.7rem;
    background: rgba(255,255,255,0.15);
    padding: 4px 12px;
    border-radius: 50px;
    font-weight: 500;
}

/* ===== PRICING ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start;
}

.pricing-card {
    background: var(--white);
    border-radius: 25px;
    padding: 45px 35px;
    text-align: center;
    transition: all 0.4s;
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.pricing-card.featured {
    border-color: var(--sage);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-popular {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--terracotta);
    color: var(--white);
    padding: 6px 22px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.pricing-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.pricing-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.pricing-desc {
    font-size: 0.85rem;
    color: var(--charcoal-light);
    margin-bottom: 25px;
    font-weight: 300;
}

.pricing-price {
    margin-bottom: 30px;
}

.pricing-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--charcoal);
}

.pricing-currency {
    font-size: 1.5rem;
    vertical-align: top;
    color: var(--sage);
}

.pricing-period {
    font-size: 0.85rem;
    color: var(--charcoal-light);
}

.pricing-features {
    list-style: none;
    margin-bottom: 35px;
    text-align: left;
}

.pricing-features li {
    padding: 10px 0;
    font-size: 0.9rem;
    color: var(--charcoal-light);
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--sand-light);
}

.pricing-features li::before {
    content: '✓';
    color: var(--sage);
    font-weight: 700;
}

.pricing-features li.disabled {
    opacity: 0.4;
}

.pricing-features li.disabled::before {
    content: '✕';
    color: var(--charcoal-light);
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 15px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s;
    border: 2px solid var(--sage);
    background: transparent;
    color: var(--sage-dark);
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
}

.pricing-btn:hover {
    background: var(--sage);
    color: var(--white);
}

.pricing-card.featured .pricing-btn {
    background: var(--sage);
    color: var(--white);
}

.pricing-card.featured .pricing-btn:hover {
    background: var(--sage-dark);
}

/* ===== GALLERY ===== */
.gallery {
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 20px;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--sand), var(--sage-light));
    display: block; /* Изменено с flex на block для картинки */
    cursor: pointer;
    transition: all 0.3s;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0,0,0,0.6));
    color: var(--white);
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-overlay h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.gallery-overlay p {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    border-radius: 25px;
    padding: 40px;
    position: relative;
    transition: all 0.3s;
    border: 1px solid rgba(0,0,0,0.04);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.testimonial-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: var(--sage-light);
    line-height: 1;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--charcoal-light);
    line-height: 1.7;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 25px;
}

.testimonial-stars {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 0.9rem;
    letter-spacing: 3px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--sage-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    overflow: hidden;
}

.testimonial-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.testimonial-role {
    font-size: 0.8rem;
    color: var(--charcoal-light);
}

/* ===== PROCESS ===== */
.process {
    background: var(--white);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 45px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: var(--sand-dark);
}

.process-step {
    text-align: center;
    position: relative;
}

.process-number {
    width: 70px;
    height: 70px;
    background: var(--sage);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    position: relative;
    z-index: 1;
    border: 5px solid var(--white);
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.process-step p {
    font-size: 0.85rem;
    color: var(--charcoal-light);
    font-weight: 300;
    line-height: 1.6;
}

/* ===== FAQ ===== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 16px;
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--charcoal);
    user-select: none;
}

.faq-toggle {
    width: 35px;
    height: 35px;
    background: var(--sand-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--sage);
    transition: all 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    background: var(--sage);
    color: var(--white);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-content {
    padding: 0 30px 25px;
    font-size: 0.9rem;
    color: var(--charcoal-light);
    line-height: 1.7;
    font-weight: 300;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* ===== INSTAGRAM ===== */
.instagram {
    background: var(--white);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.instagram-item {
    aspect-ratio: 1;
    border-radius: 15px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--sand), var(--sage-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    position: relative;
    cursor: pointer;
    transition: all 0.3s;
}

.instagram-item:hover {
    transform: scale(1.05);
}

.instagram-item:hover .insta-overlay {
    opacity: 1;
}

.insta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(139, 157, 119, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    color: var(--white);
    font-size: 1.5rem;
}

.instagram-link {
    text-align: center;
    margin-top: 30px;
}

.instagram-link a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--charcoal);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s;
}

.instagram-link a:hover {
    color: var(--sage-dark);
}

/* ===== BLOG ===== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid rgba(0,0,0,0.04);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.blog-image {
    height: 220px;
    background: linear-gradient(135deg, var(--sand), var(--sage-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.blog-content {
    padding: 30px;
}

.blog-date {
    font-size: 0.75rem;
    color: var(--sage);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.blog-card h3 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-card p {
    font-size: 0.9rem;
    color: var(--charcoal-light);
    line-height: 1.6;
    font-weight: 300;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    color: var(--sage-dark);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: gap 0.3s;
}

.blog-link:hover {
    gap: 12px;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--charcoal) 0%, #1a1a2e 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-bg-circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cta-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.05);
}

.cta-circle-1 {
    width: 500px;
    height: 500px;
    top: -200px;
    right: -100px;
}

.cta-circle-2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: -50px;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 20px;
    color: var(--white);
}

.cta-content h2 em {
    color: var(--gold-light);
    font-style: italic;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.6);
    max-width: 600px;
    margin: 0 auto 40px;
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: var(--charcoal);
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(197, 165, 114, 0.3);
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid rgba(255,255,255,0.3);
    color: var(--white);
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.btn-outline-white:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.1);
}

/* ===== CONTACT ===== */
.contact {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 400;
}

.contact-info > p {
    font-size: 0.95rem;
    color: var(--charcoal-light);
    margin-bottom: 35px;
    font-weight: 300;
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 35px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-method-icon {
    width: 50px;
    height: 50px;
    background: rgba(139, 157, 119, 0.12);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-method-text {
    font-size: 0.95rem;
    font-weight: 500;
}

.contact-method-label {
    font-size: 0.8rem;
    color: var(--charcoal-light);
    font-weight: 400;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--sand-light);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s;
    color: var(--charcoal);
}

.social-link:hover {
    background: var(--sage);
    transform: translateY(-3px);
    color: var(--white);
}

.contact-form {
    background: var(--cream);
    border-radius: 25px;
    padding: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--sand);
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--charcoal);
    background: var(--white);
    transition: border-color 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--sage);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit {
    width: 100%;
    padding: 16px;
    background: var(--sage);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}

.form-submit:hover {
    background: var(--sage-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 157, 119, 0.3);
}

/* ===== MAP ===== */
.map-section {
    height: 400px;
    background: var(--sand);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    text-align: center;
}

.map-placeholder .map-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.map-placeholder p {
    color: var(--charcoal-light);
    font-size: 0.9rem;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--charcoal);
    color: rgba(255,255,255,0.6);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 20px;
    display: inline-block;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 25px;
}

.footer-heading {
    color: var(--white);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 300;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--sage-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--sage-light);
}

/* ===== FIXED BUTTONS ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--sage);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(139, 157, 119, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--sage-dark);
    transform: translateY(-3px);
}

.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 55px;
    height: 55px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.3);
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--charcoal);
    color: var(--white);
    padding: 20px 30px;
    z-index: 9999;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-content p {
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.5;
}

.cookie-btn {
    background: var(--sage);
    color: var(--white);
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.3s;
}

.cookie-btn:hover {
    background: var(--sage-dark);
}

/* ===== ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero h1 { font-size: 3rem; }
    .hero-container { gap: 40px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-card.featured { transform: scale(1); }
    .pricing-card.featured:hover { transform: translateY(-10px); }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .process-timeline { grid-template-columns: repeat(2, 1fr); }
    .process-timeline::before { display: none; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
    .gallery-item:nth-child(1) { grid-column: span 2; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--cream);
        flex-direction: column;
        padding: 100px 40px 40px;
        transition: right 0.4s;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        gap: 20px;
    }

    .nav-links.active {
        right: 0;
    }

    .burger {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 100px;
    }

    .hero h1 { font-size: 2.5rem; }
    .hero-text { margin: 0 auto 40px; }
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { max-width: 400px; margin: 0 auto; }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-title { font-size: 2.2rem; }

    .services-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    .gallery-item:nth-child(1) { grid-column: span 2; }
    .gallery-item { min-height: 180px; }
    
    .instagram-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .form-row { grid-template-columns: 1fr; }
    .about-features { grid-template-columns: 1fr; }
    
    .hero-floating-card-1 { left: 10px; bottom: 10%; }
    .hero-floating-card-2 { right: 10px; top: 10%; }
    
    .cta-content h2 { font-size: 2.2rem; }
    .cookie-content { flex-direction: column; text-align: center; }
    
    .section { padding: 70px 0; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2rem; }
    .section-title { font-size: 1.8rem; }
    .hero-stats { flex-wrap: wrap; gap: 20px; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .instagram-grid { grid-template-columns: repeat(2, 1fr); }
}