/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #2D2A26;
    background: #FDF8F4;
    line-height: 1.6;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 { font-family: 'Outfit', sans-serif; line-height: 1.2; font-weight: 700; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

/* ===== CUSTOM PROPERTIES ===== */
:root {
    --terracotta: #C05A3A;
    --terracotta-dark: #A3482D;
    --terracotta-light: #D4785A;
    --sand: #E8D5C0;
    --sand-light: #F5EDE4;
    --sand-dark: #C4A882;
    --cream: #FDF8F4;
    --charcoal: #2D2A26;
    --charcoal-light: #4A4540;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(45, 42, 38, 0.08);
    --shadow-md: 0 8px 30px rgba(45, 42, 38, 0.12);
    --shadow-lg: 0 20px 60px rgba(45, 42, 38, 0.15);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ===== NAV ===== */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}
.nav.scrolled {
    background: rgba(253, 248, 244, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
}
.nav-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
    display: flex; align-items: center; gap: 10px;
    font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.2rem;
    color: var(--white);
    transition: var(--transition);
}
.nav.scrolled .nav-logo { color: var(--charcoal); }
.nav-logo-icon { color: var(--terracotta); }
.nav-logo-accent { color: var(--terracotta); }
.nav.scrolled .nav-logo-accent { color: var(--terracotta); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
    font-weight: 500; font-size: 0.95rem; color: rgba(255,255,255,0.85);
    transition: var(--transition); position: relative;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
    background: var(--terracotta); transition: var(--transition);
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--white); }
.nav.scrolled .nav-links a { color: var(--charcoal-light); }
.nav.scrolled .nav-links a:hover { color: var(--charcoal); }
.nav-cta {
    background: var(--terracotta) !important; color: var(--white) !important;
    padding: 10px 24px; border-radius: 50px; font-weight: 600 !important;
    transition: var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--terracotta-dark) !important; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(192, 90, 58, 0.3); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span {
    width: 24px; height: 2px; background: var(--white); border-radius: 2px;
    transition: var(--transition);
}
.nav.scrolled .nav-toggle span { background: var(--charcoal); }
.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 ===== */
.hero {
    position: relative; min-height: 100vh; display: flex; align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
    width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(45, 42, 38, 0.82) 0%, rgba(192, 90, 58, 0.65) 100%);
}
.hero-shape {
    position: absolute; z-index: 1;
}
.hero-shape-1 {
    width: 500px; height: 500px; border-radius: 50%;
    background: rgba(192, 90, 58, 0.15);
    top: -150px; right: -100px;
    animation: float 8s ease-in-out infinite;
}
.hero-shape-2 {
    width: 300px; height: 300px; border-radius: 50%;
    background: rgba(232, 213, 192, 0.1);
    bottom: 10%; left: 5%;
    animation: float 6s ease-in-out infinite reverse;
}
.hero-shape-3 {
    width: 120px; height: 120px; border-radius: 50%;
    background: rgba(192, 90, 58, 0.2);
    top: 30%; right: 15%;
    animation: float 5s ease-in-out infinite 1s;
}
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}
.hero-content {
    position: relative; z-index: 2;
    max-width: 1200px; margin: 0 auto; padding: 120px 24px 80px;
    width: 100%;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(192, 90, 58, 0.2); border: 1px solid rgba(192, 90, 58, 0.4);
    color: var(--sand); padding: 8px 20px; border-radius: 50px;
    font-size: 0.875rem; font-weight: 600; margin-bottom: 24px;
    backdrop-filter: blur(10px);
}
.hero-badge svg { color: var(--terracotta-light); }
.hero-headline {
    font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 900;
    color: var(--white); line-height: 1.1; margin-bottom: 24px;
    max-width: 800px;
}
.hero-headline em { font-style: italic; color: var(--sand); }
.hero-highlight {
    background: linear-gradient(135deg, var(--terracotta-light) 0%, var(--terracotta) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-sub {
    font-size: clamp(1.05rem, 2vw, 1.25rem); color: rgba(255,255,255,0.8);
    max-width: 560px; margin-bottom: 40px; line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 32px; border-radius: 50px; font-weight: 600; font-size: 1rem;
    transition: var(--transition);
}
.btn-primary {
    background: var(--terracotta); color: var(--white);
    box-shadow: 0 8px 30px rgba(192, 90, 58, 0.35);
}
.btn-primary:hover {
    background: var(--terracotta-dark); transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(192, 90, 58, 0.45);
}
.btn-outline {
    background: transparent; color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
    border-color: var(--white); background: rgba(255,255,255,0.1);
    transform: translateY(-3px);
}
.btn-full { width: 100%; justify-content: center; }
.hero-stats {
    display: flex; gap: 40px; align-items: center;
    flex-wrap: wrap;
}
.hero-stat { display: flex; flex-direction: column; gap: 4px; }
.hero-stat-num {
    font-family: 'Outfit', sans-serif; font-size: 2rem; font-weight: 800;
    color: var(--terracotta-light);
}
.hero-stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.hero-stat-divider {
    width: 1px; height: 48px; background: rgba(255,255,255,0.2);
}
.hero-scroll {
    position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
    z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: rgba(255,255,255,0.5); font-size: 0.75rem; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
}
.hero-scroll-line {
    width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===== SECTION COMMON ===== */
.section-header { margin-bottom: 64px; }
.section-header-center { text-align: center; }
.section-tag {
    display: inline-block; font-size: 0.8rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.15em; color: var(--terracotta);
    margin-bottom: 12px;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem); font-weight: 800;
    color: var(--charcoal); margin-bottom: 16px;
}
.text-accent { color: var(--terracotta); }
.section-sub {
    font-size: 1.1rem; color: var(--charcoal-light); max-width: 600px;
    line-height: 1.7;
}
.section-header-center .section-sub { margin: 0 auto; }

/* ===== SERVICES ===== */
.services {
    position: relative; padding: 120px 0; overflow: hidden;
    background: var(--cream);
}
.services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    position: relative; z-index: 1;
}
.service-card {
    position: relative; background: var(--white); border-radius: var(--radius-lg);
    padding: 40px 32px; transition: var(--transition);
    border: 1px solid rgba(232, 213, 192, 0.5);
    overflow: hidden;
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--terracotta), var(--terracotta-light));
    transform: scaleX(0); transform-origin: left;
    transition: var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.service-card-accent {
    position: absolute; top: -60px; right: -60px;
    width: 160px; height: 160px; border-radius: 50%;
    background: radial-gradient(circle, rgba(192, 90, 58, 0.06) 0%, transparent 70%);
    transition: var(--transition);
}
.service-card:hover .service-card-accent {
    transform: scale(1.5); background: radial-gradient(circle, rgba(192, 90, 58, 0.1) 0%, transparent 70%);
}
.service-icon {
    width: 64px; height: 64px; border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(192, 90, 58, 0.1) 0%, rgba(192, 90, 58, 0.05) 100%);
    display: flex; align-items: center; justify-content: center;
    color: var(--terracotta); margin-bottom: 24px;
    transition: var(--transition);
}
.service-card:hover .service-icon {
    background: var(--terracotta); color: var(--white);
    transform: scale(1.1) rotate(5deg);
}
.service-card h3 {
    font-size: 1.25rem; font-weight: 700; color: var(--charcoal);
    margin-bottom: 12px;
}
.service-card p { font-size: 0.95rem; color: var(--charcoal-light); line-height: 1.7; }
.services-shape {
    position: absolute; border-radius: 50%; pointer-events: none;
}
.services-shape-1 {
    width: 400px; height: 400px; background: rgba(232, 213, 192, 0.3);
    bottom: -100px; left: -100px;
}
.services-shape-2 {
    width: 200px; height: 200px; background: rgba(192, 90, 58, 0.05);
    top: 50px; right: 50px;
}

/* ===== ABOUT ===== */
.about {
    position: relative; padding: 120px 0; overflow: hidden;
    background: var(--white);
}
.about-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-visual { position: relative; }
.about-img-main {
    border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 750px; object-fit: cover; }
.about-img-accent {
    position: absolute; bottom: -40px; right: -40px;
    border-radius: var(--radius-md); overflow: hidden;
    box-shadow: var(--shadow-lg); border: 6px solid var(--white);
    width: 280px;
}
.about-img-accent img { width: 100%; height: 200px; object-fit: cover; }
.about-badge {
    position: absolute; top: -20px; left: -20px;
    background: var(--terracotta); color: var(--white);
    padding: 20px 28px; border-radius: var(--radius-md);
    display: flex; flex-direction: column; align-items: center; gap: 4px;
    box-shadow: var(--shadow-md);
}
.about-badge-num {
    font-family: 'Outfit', sans-serif; font-size: 2.5rem; font-weight: 900; line-height: 1;
}
.about-badge-label { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.about-shape {
    position: absolute; top: 50%; left: -60px; transform: translateY(-50%);
    width: 200px; height: 200px; border-radius: 50%;
    background: var(--sand); opacity: 0.3; z-index: -1;
}
.about-content .section-title { margin-bottom: 24px; }
.about-text {
    font-size: 1.05rem; color: var(--charcoal-light); line-height: 1.8;
    margin-bottom: 20px;
}
.about-features { margin-top: 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-feature {
    display: flex; align-items: center; gap: 12px;
    font-weight: 500; color: var(--charcoal);
}
.about-feature-check {
    width: 24px; height: 24px; border-radius: 50%;
    background: rgba(192, 90, 58, 0.1); color: var(--terracotta);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

/* ===== APPROACH ===== */
.approach {
    position: relative; padding: 120px 0; overflow: hidden;
    background: linear-gradient(135deg, var(--charcoal) 0%, #3D3832 100%);
    color: var(--white);
}
.approach .section-tag { color: var(--terracotta-light); }
.approach .section-title { color: var(--white); }
.approach .section-sub { color: rgba(255,255,255,0.6); }
.approach-bg-shape {
    position: absolute; width: 600px; height: 600px; border-radius: 50%;
    background: rgba(192, 90, 58, 0.08); top: -200px; right: -200px;
}
.approach-steps {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
    position: relative; z-index: 1;
}
.approach-step {
    position: relative; padding: 40px 28px;
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg); transition: var(--transition);
}
.approach-step:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-8px);
    border-color: rgba(192, 90, 58, 0.3);
}
.approach-step-num {
    font-family: 'Outfit', sans-serif; font-size: 3rem; font-weight: 900;
    color: var(--terracotta); line-height: 1; margin-bottom: 16px;
    opacity: 0.8;
}
.approach-step-line {
    width: 40px; height: 3px; background: var(--terracotta);
    border-radius: 2px; margin-bottom: 20px;
}
.approach-step-content h3 {
    font-size: 1.15rem; font-weight: 700; color: var(--white);
    margin-bottom: 12px;
}
.approach-step-content p {
    font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.7;
}
.approach-step-icon {
    margin-top: 24px; color: rgba(192, 90, 58, 0.4);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    position: relative; padding: 120px 0; overflow: hidden;
    background: var(--sand-light);
}
.testimonials-slider { position: relative; z-index: 1; }
.testimonials-track {
    display: flex; gap: 24px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-card {
    min-width: calc(50% - 12px); background: var(--white);
    border-radius: var(--radius-lg); padding: 48px 40px;
    border: 1px solid rgba(232, 213, 192, 0.5);
    transition: var(--transition);
}
.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    border-color: transparent;
}
.testimonial-quote {
    color: var(--terracotta); margin-bottom: 20px;
}
.testimonial-text {
    font-size: 1.1rem; color: var(--charcoal-light); line-height: 1.8;
    margin-bottom: 28px; font-style: italic;
}
.testimonial-author {
    display: flex; align-items: center; gap: 16px;
}
.testimonial-avatar {
    width: 40px; height: 40px; border-radius: 50%; overflow: hidden;
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-name {
    display: block; font-weight: 700; font-size: 0.95rem; color: var(--charcoal);
}
.testimonial-role {
    display: block; font-size: 0.85rem; color: var(--charcoal-light);
}
.testimonials-controls {
    display: flex; align-items: center; gap: 16px; margin-top: 40px; justify-content: center;
}
.testimonials-btn {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--white); border: 2px solid var(--sand);
    color: var(--charcoal); display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.testimonials-btn:hover {
    background: var(--terracotta); border-color: var(--terracotta); color: var(--white);
}
.testimonials-dots { display: flex; gap: 8px; }
.testimonials-dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--sand); border: none; cursor: pointer;
    transition: var(--transition);
}
.testimonials-dot.active {
    background: var(--terracotta); transform: scale(1.3);
}
.testimonials-shape {
    position: absolute; border-radius: 50%; pointer-events: none;
}
.testimonials-shape-1 {
    width: 300px; height: 300px; background: rgba(192, 90, 58, 0.06);
    top: 50px; left: -80px;
}
.testimonials-shape-2 {
    width: 150px; height: 150px; background: rgba(232, 213, 192, 0.5);
    bottom: 50px; right: 5%;
}

/* ===== CONTACT ===== */
.contact {
    position: relative; padding: 120px 0; overflow: hidden;
    background: var(--cream);
}
.contact-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
}
.contact-info .section-title { margin-bottom: 16px; }
.contact-text {
    font-size: 1.05rem; color: var(--charcoal-light); line-height: 1.7;
    margin-bottom: 40px;
}
.contact-details { display: flex; flex-direction: column; gap: 24px; margin-bottom: 32px; }
.contact-detail {
    display: flex; gap: 16px; align-items: flex-start;
}
.contact-detail-icon {
    width: 48px; height: 48px; border-radius: var(--radius-sm);
    background: rgba(192, 90, 58, 0.1); color: var(--terracotta);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.contact-detail-label {
    display: block; font-size: 0.8rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.05em; color: var(--charcoal-light);
    margin-bottom: 4px;
}
.contact-detail-value {
    display: block; font-weight: 600; color: var(--charcoal); line-height: 1.5;
}
.contact-detail a { color: var(--charcoal); transition: var(--transition); }
.contact-detail a:hover { color: var(--terracotta); }
.contact-map { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }

.contact-form-wrap { position: relative; z-index: 1; }
.contact-form-card {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 48px; box-shadow: var(--shadow-lg);
    border: 1px solid rgba(232, 213, 192, 0.3);
}
.contact-form-card h3 {
    font-size: 1.5rem; font-weight: 800; color: var(--charcoal); margin-bottom: 8px;
}
.contact-form-sub {
    font-size: 0.95rem; color: var(--charcoal-light); margin-bottom: 32px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block; font-size: 0.85rem; font-weight: 600;
    color: var(--charcoal); margin-bottom: 8px;
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 14px 16px; border: 2px solid var(--sand);
    border-radius: var(--radius-sm); background: var(--cream);
    color: var(--charcoal); font-size: 0.95rem;
    transition: var(--transition); outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--terracotta); background: var(--white);
    box-shadow: 0 0 0 4px rgba(192, 90, 58, 0.1);
}
.form-group input::placeholder, .form-group textarea::placeholder {
    color: var(--sand-dark);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
    display: none; text-align: center; padding: 40px 20px;
}
.form-success.show { display: block; }
.form-success-icon { margin-bottom: 16px; }
.form-success h4 {
    font-size: 1.5rem; font-weight: 800; color: var(--charcoal); margin-bottom: 8px;
}
.form-success p { color: var(--charcoal-light); }

/* ===== FOOTER ===== */
.footer {
    position: relative; padding: 80px 0 0; background: var(--charcoal);
    color: rgba(255,255,255,0.7); overflow: hidden;
}
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px;
    padding-bottom: 60px;
}
.footer-logo {
    display: flex; align-items: center; gap: 10px;
    font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.2rem;
    color: var(--white); margin-bottom: 16px;
}
.footer-logo span { color: var(--terracotta-light); }
.footer-desc { font-size: 0.95rem; line-height: 1.7; max-width: 300px; }
.footer-links h4, .footer-contact h4 {
    font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 700;
    color: var(--white); margin-bottom: 20px;
}
.footer-links ul, .footer-contact ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
    font-size: 0.9rem; transition: var(--transition);
    display: flex; align-items: center; gap: 8px;
}
.footer-links a:hover { color: var(--terracotta-light); }
.footer-contact li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 0.9rem;
}
.footer-contact svg { color: var(--terracotta-light); flex-shrink: 0; margin-top: 2px; }
.footer-contact a { transition: var(--transition); display: flex; align-items: center; gap: 8px; }
.footer-contact a:hover { color: var(--terracotta-light); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 24px 0; display: flex; justify-content: space-between;
    align-items: center; flex-wrap: wrap; gap: 16px;
    font-size: 0.85rem;
}
.footer-shape {
    position: absolute; width: 400px; height: 400px; border-radius: 50%;
    background: rgba(192, 90, 58, 0.05); bottom: -200px; right: -100px;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed; bottom: 32px; right: 32px; z-index: 999;
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--terracotta); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-md); transition: var(--transition);
    opacity: 0; visibility: hidden; transform: translateY(20px);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--terracotta-dark); transform: translateY(-4px); }

/* ===== ANIMATIONS ===== */
.reveal {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .approach-steps { grid-template-columns: repeat(2, 1fr); }
    .about-grid { gap: 60px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .testimonial-card { min-width: calc(100% - 0px); }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed; top: 0; right: -100%; width: 80%; max-width: 320px;
        height: 100vh; background: var(--cream);
        flex-direction: column; justify-content: center; align-items: center;
        gap: 24px; transition: var(--transition);
        box-shadow: var(--shadow-lg);
    }
    .nav-links.open { right: 0; }
    .nav-links a { color: var(--charcoal) !important; font-size: 1.1rem; }
    .nav-toggle { display: flex; }
    .hero-headline { font-size: clamp(2rem, 8vw, 3rem); }
    .hero-stats { gap: 24px; }
    .hero-stat-divider { display: none; }
    .services-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .about-img-accent { position: relative; bottom: auto; right: auto; width: 100%; margin-top: 16px; }
    .about-img-main img { height: 400px; }
    .about-badge { top: auto; bottom: -20px; left: 20px; }
    .about-shape { display: none; }
    .approach-steps { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-form-card { padding: 32px 24px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .testimonials-shape { display: none; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { justify-content: center; }
    .about-features { grid-template-columns: 1fr; }
    .service-card { padding: 32px 24px; }
}
