/* ==========================================
   EMPOWERFITНL — MAIN STYLESHEET
   ========================================== */

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

:root {
    --pink-light: #F5E1F0;
    --pink-bg: #FBF2F8;
    --pink-soft: #F0D6EC;
    --purple: #6B2D7B;
    --purple-dark: #4A1D5B;
    --purple-light: #9B59B6;
    --pink-accent: #E89AC5;
    --pink-hot: #FF69B4;
    --lavender: #E8D5F0;
    --white: #FFFFFF;
    --off-white: #FDF8FB;
    --text-dark: #3D1F4E;
    --text-body: #5A3D6A;
    --text-light: #8B6F9A;
    --shadow-sm: 0 2px 8px rgba(107, 45, 123, 0.08);
    --shadow-md: 0 8px 30px rgba(107, 45, 123, 0.12);
    --shadow-lg: 0 20px 60px rgba(107, 45, 123, 0.15);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-body);
    background-color: var(--off-white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant', 'Georgia', serif;
    color: var(--text-dark);
    line-height: 1.2;
    font-weight: 600;
}

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

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--purple-light);
    margin-bottom: 16px;
}

.section-intro {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 16px auto 0;
}

/* --- BUTTONS --- */
.btn {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 50px;
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--purple), var(--purple-light));
    color: var(--white);
    border-color: transparent;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(107, 45, 123, 0.35);
}

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

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

.btn-full {
    width: 100%;
}

/* --- NAVIGATION --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 248, 251, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: var(--transition);
    border-bottom: 1px solid rgba(107, 45, 123, 0.05);
}

.navbar.scrolled {
    background: rgba(253, 248, 251, 0.95);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

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

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

.nav-menu a:hover {
    color: var(--purple);
}

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

.nav-cta {
    background: linear-gradient(135deg, var(--purple), var(--purple-light));
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700 !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 45, 123, 0.3);
    color: var(--white) !important;
}

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

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

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    background: linear-gradient(160deg, var(--pink-bg) 0%, var(--pink-light) 30%, var(--lavender) 60%, var(--pink-soft) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(155, 89, 182, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232, 154, 197, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(30px, -30px); }
    66% { transform: translate(-20px, 20px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    font-weight: 700;
    color: var(--purple-dark);
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: var(--text-body);
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 44px;
}

.hero-highlights span {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-dark);
    border: 1px solid rgba(107, 45, 123, 0.08);
}

.scroll-indicator {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.scroll-indicator span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--purple-light);
    border-bottom: 2px solid var(--purple-light);
    transform: rotate(45deg);
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: 1; }
    50% { transform: rotate(45deg) translate(6px, 6px); opacity: 0.5; }
}

/* --- SPLIT CONTENT LAYOUT --- */
.split-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.split-content.reverse {
    direction: rtl;
}

.split-content.reverse > * {
    direction: ltr;
}

.split-text h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 24px;
}

.split-text p {
    margin-bottom: 18px;
    font-size: 1.05rem;
}

.split-text .btn {
    margin-top: 12px;
}

/* --- IMAGE PLACEHOLDERS --- */
.image-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.about-img {
    background: linear-gradient(135deg, var(--lavender), var(--pink-light));
}

.foryou-img {
    background: linear-gradient(135deg, var(--pink-soft), var(--lavender));
}

.coach-img {
    background: linear-gradient(135deg, var(--pink-light), var(--lavender));
}

.placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--purple);
    font-weight: 600;
    font-size: 1rem;
}

.placeholder-icon {
    font-size: 4rem;
}

/* --- ABOUT SECTION --- */
.about {
    background: var(--white);
}

/* --- PROGRAM SECTION --- */
.program {
    background: var(--off-white);
}

.program h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 8px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 60px;
}

.feature-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(107, 45, 123, 0.06);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* --- FOR YOU SECTION --- */
.for-you {
    background: var(--white);
}

.check-list {
    margin: 24px 0;
}

.check-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 14px;
    font-size: 1.05rem;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--purple-light);
    font-weight: 700;
    font-size: 1.1rem;
}

/* --- COACH SECTION --- */
.coach {
    background: linear-gradient(180deg, var(--off-white), var(--pink-bg));
}

.coach-stats {
    display: flex;
    gap: 40px;
    margin-top: 36px;
    padding-top: 32px;
    border-top: 1px solid rgba(107, 45, 123, 0.1);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: 'Cormorant', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--purple);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 4px;
}

/* --- PACKAGES SECTION --- */
.packages {
    background: var(--white);
}

.packages h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 8px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 60px;
    align-items: start;
}

.package-card {
    background: var(--off-white);
    border-radius: var(--radius);
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
}

.package-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.package-card.featured {
    background: linear-gradient(160deg, var(--purple-dark), var(--purple));
    color: var(--white);
    transform: scale(1.05);
    border-color: var(--purple-light);
    box-shadow: var(--shadow-lg);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-6px);
}

.package-card.featured h3,
.package-card.featured .price,
.package-card.featured .package-type,
.package-card.featured .price-period {
    color: var(--white);
}

.package-card.featured .package-features li {
    color: rgba(255, 255, 255, 0.9);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.package-card.featured .package-features li::before {
    color: var(--pink-accent);
}

.package-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--pink-accent), var(--pink-hot));
    color: var(--white);
    padding: 6px 24px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.package-badge.best-value {
    background: linear-gradient(135deg, var(--purple-light), var(--purple));
}

.package-header h3 {
    font-size: 1.6rem;
    margin-bottom: 4px;
}

.package-type {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.package-price {
    margin-bottom: 28px;
}

.price {
    font-family: 'Cormorant', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--purple);
    line-height: 1;
}

.price-period {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 4px;
}

.package-features {
    text-align: left;
    margin-bottom: 32px;
}

.package-features li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(107, 45, 123, 0.06);
}

.package-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--purple-light);
    font-weight: 700;
}

.package-features li:last-child {
    border-bottom: none;
}

/* --- TESTIMONIALS SECTION --- */
.testimonials {
    background: linear-gradient(180deg, var(--off-white), var(--pink-bg));
}

.testimonials h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 8px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 60px;
}

.testimonial-card {
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius);
    border: 1px solid rgba(107, 45, 123, 0.06);
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
}

.stars {
    color: #F5A623;
    font-size: 1.1rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-style: italic;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
    color: var(--text-body);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple-light), var(--pink-accent));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.testimonial-author strong {
    display: block;
    color: var(--text-dark);
    font-size: 0.95rem;
}

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

/* --- CONTACT SECTION --- */
.contact {
    background: linear-gradient(135deg, var(--purple-dark), var(--purple));
    color: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-text h2 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 20px;
}

.contact-text p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    margin-bottom: 32px;
}

.contact-highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.highlight-icon {
    font-size: 1.3rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.9);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='rgba(255,255,255,0.6)' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-group select option {
    background: var(--purple-dark);
    color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--pink-accent);
    background: rgba(255, 255, 255, 0.15);
}

.contact .btn-primary {
    background: var(--white);
    color: var(--purple);
    border: none;
    margin-top: 8px;
}

.contact .btn-primary:hover {
    background: var(--pink-light);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* --- FOOTER --- */
.footer {
    background: var(--purple-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    height: 45px;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 12px;
}

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

.social-links a:hover {
    background: var(--purple-light);
    transform: translateY(-2px);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--pink-accent);
}

.footer-bottom {
    padding-top: 24px;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* --- SCROLL REVEAL ANIMATIONS --- */
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

.reveal-up {
    transform: translateY(60px);
}

.reveal-left {
    transform: translateX(-80px);
}

.reveal-right {
    transform: translateX(80px);
}

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
    opacity: 1;
    transform: translate(0, 0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* Hero elements should always be visible */
.hero .reveal-up {
    opacity: 1;
    transform: none;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.hero .reveal-up.delay-1 { animation-delay: 0.15s; }
.hero .reveal-up.delay-2 { animation-delay: 0.3s; }
.hero .reveal-up.delay-3 { animation-delay: 0.45s; }

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

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .package-card.featured {
        transform: scale(1);
    }

    .package-card.featured:hover {
        transform: translateY(-6px);
    }

    .package-card:last-child {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 70px 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(253, 248, 251, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 32px 24px;
        gap: 0;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
        border-bottom: 1px solid rgba(107, 45, 123, 0.1);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 14px 0;
        font-size: 1rem;
        border-bottom: 1px solid rgba(107, 45, 123, 0.06);
    }

    .nav-menu a::after {
        display: none;
    }

    .nav-cta {
        text-align: center;
        margin-top: 12px;
    }

    .split-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .split-content.reverse {
        direction: ltr;
    }

    .split-content .split-image {
        order: -1;
    }

    .image-placeholder {
        aspect-ratio: 3/2;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .package-card:last-child {
        max-width: none;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .coach-stats {
        gap: 24px;
    }

    .hero-highlights {
        gap: 10px;
    }

    .hero-highlights span {
        font-size: 0.8rem;
        padding: 8px 14px;
    }

    /* Disable scroll animations on mobile for performance */
    .reveal-up,
    .reveal-left,
    .reveal-right {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .price {
        font-size: 2.8rem;
    }

    .contact-form {
        padding: 28px 20px;
    }
}
