/* ============================================
   J & J Chimney Sweep — Stylesheet
   Palette: Plum (#4A1942, #6B2158, #8B2F75) + Amber (#F5A623, #D4891A)
   ============================================ */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --plum-900: #1A0A18;
    --plum-800: #2D1025;
    --plum-700: #4A1942;
    --plum-600: #6B2158;
    --plum-500: #8B2F75;
    --plum-400: #A84490;
    --plum-200: #E8B4D8;
    --plum-100: #F5D8EC;
    --plum-50:  #FCF0F7;

    --amber-600: #D4891A;
    --amber-500: #F5A623;
    --amber-400: #FFB84D;
    --amber-300: #FFD080;
    --amber-200: #FFE4B4;
    --amber-100: #FFF3DC;

    --white: #FFFFFF;
    --off-white: #FAFAF8;
    --gray-50: #F7F7F5;
    --gray-100: #EFEFEA;
    --gray-200: #E0E0DA;
    --gray-400: #9E9E96;
    --gray-600: #5C5C56;
    --gray-800: #2A2A26;
    --gray-900: #1A1A16;

    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'DM Sans', sans-serif;

    --shadow-sm: 0 1px 3px rgba(74,25,66,0.08);
    --shadow-md: 0 4px 16px rgba(74,25,66,0.10);
    --shadow-lg: 0 8px 32px rgba(74,25,66,0.14);
    --shadow-xl: 0 16px 48px rgba(74,25,66,0.18);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

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

body {
    font-family: var(--font-body);
    color: var(--gray-800);
    background: var(--off-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
}

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

/* ============================================
   NAVBAR
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 250, 248, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--gray-200);
    transition: box-shadow 0.3s ease;
}

.nav.scrolled {
    box-shadow: var(--shadow-md);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--plum-700);
    line-height: 1.2;
}

.logo-icon {
    color: var(--amber-500);
    flex-shrink: 0;
}

.logo-accent {
    color: var(--amber-600);
    font-weight: 600;
}

.logo-light {
    color: var(--white);
}

.logo-light .logo-accent {
    color: var(--amber-400);
}

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

.nav-links a {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--gray-600);
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--plum-700);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--plum-700);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem !important;
    transition: background 0.2s, transform 0.2s !important;
}

.nav-cta:hover {
    background: var(--plum-600);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--plum-700);
    padding: 8px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--plum-700);
    padding: 120px 0 80px;
    overflow: hidden;
}

/* Geometric shapes */
.geo {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.geo-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245,166,35,0.12) 0%, transparent 70%);
    top: -200px;
    right: -100px;
}

.geo-2 {
    width: 300px;
    height: 300px;
    background: rgba(139, 47, 117, 0.3);
    bottom: 10%;
    left: -80px;
    border-radius: 40% 60% 55% 45%;
}

.geo-3 {
    width: 120px;
    height: 120px;
    background: var(--amber-500);
    top: 20%;
    left: 38%;
    border-radius: 24px;
    transform: rotate(45deg);
    opacity: 0.15;
}

.geo-4 {
    width: 60px;
    height: 60px;
    background: var(--amber-400);
    top: 35%;
    right: 25%;
    border-radius: 12px;
    transform: rotate(20deg);
    opacity: 0.2;
}

.geo-5 {
    width: 200px;
    height: 200px;
    border: 2px solid rgba(245,166,35,0.15);
    border-radius: 50%;
    bottom: 5%;
    right: 10%;
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245,166,35,0.15);
    border: 1px solid rgba(245,166,35,0.3);
    color: var(--amber-400);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: var(--font-heading);
    letter-spacing: 0.02em;
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--amber-500);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-headline {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 20px;
}

.text-amber {
    color: var(--amber-500);
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--plum-200);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn-primary {
    background: var(--amber-500);
    color: var(--plum-900);
    box-shadow: 0 4px 20px rgba(245,166,35,0.35);
}

.btn-primary:hover {
    background: var(--amber-400);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(245,166,35,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.08);
}

.btn-ghost {
    background: rgba(255,255,255,0.12);
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.25);
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.2);
    border-color: var(--white);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.05rem;
}

/* Hero cards */
.hero-cards {
    position: relative;
    height: 560px;
}

.hero-photo-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 520px;
    box-shadow: var(--shadow-xl);
}

.hero-photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(74,25,66,0.4) 0%, transparent 50%);
    border-radius: var(--radius-lg);
}

/* Floating stat cards */
.float-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    box-shadow: var(--shadow-lg);
    z-index: 3;
}

.float-card-number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--plum-700);
    line-height: 1;
}

.float-card-label {
    font-size: 0.8rem;
    color: var(--gray-600);
    margin-top: 4px;
    line-height: 1.3;
}

.float-card-1 {
    top: 20px;
    left: -40px;
    animation: float-1 4s ease-in-out infinite;
}

.float-card-2 {
    bottom: 100px;
    right: -30px;
    animation: float-2 5s ease-in-out infinite;
}

.float-card-3 {
    bottom: -10px;
    left: 20px;
    animation: float-3 4.5s ease-in-out infinite;
}

@keyframes float-1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes float-2 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

@keyframes float-3 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* Hero wave */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 80px;
}

/* ============================================
   SECTION COMMON
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--amber-600);
    background: var(--amber-100);
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--plum-800);
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
    padding: 100px 0;
    background: var(--off-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1px solid var(--gray-100);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--plum-600), var(--amber-500));
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--plum-50);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum-600);
    margin-bottom: 20px;
    transition: background 0.3s;
}

.service-card:hover .service-icon {
    background: var(--plum-700);
    color: var(--amber-400);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--plum-800);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.65;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--plum-600);
    transition: gap 0.2s, color 0.2s;
}

.service-link:hover {
    gap: 10px;
    color: var(--amber-600);
}

/* ============================================
   WHY US
   ============================================ */
.why-us {
    padding: 100px 0;
    background: var(--plum-700);
    position: relative;
    overflow: hidden;
}

.geo-shape {
    position: absolute;
    pointer-events: none;
}

.geo-left {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245,166,35,0.08) 0%, transparent 70%);
    border-radius: 50%;
    top: -100px;
    left: -150px;
}

.geo-right {
    width: 250px;
    height: 250px;
    background: rgba(139,47,117,0.2);
    border-radius: 30% 70% 60% 40%;
    bottom: -50px;
    right: -50px;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.why-content .section-tag {
    background: rgba(245,166,35,0.15);
    color: var(--amber-400);
}

.why-content .section-title {
    color: var(--white);
    text-align: left;
}

.why-content .section-desc {
    color: var(--plum-200);
    text-align: left;
    margin: 0 0 40px 0;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.why-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.why-check {
    width: 28px;
    height: 28px;
    background: rgba(245,166,35,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--amber-500);
    flex-shrink: 0;
    margin-top: 2px;
}

.why-item strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: 4px;
}

.why-item span {
    font-size: 0.9rem;
    color: var(--plum-200);
    line-height: 1.6;
}

.why-image {
    position: relative;
}

.why-img-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.why-img-wrapper img {
    width: 100%;
    height: 620px;
    object-fit: cover;
}

.why-img-accent {
    position: absolute;
    inset: 0;
    border: 2px solid rgba(245,166,35,0.2);
    border-radius: var(--radius-xl);
}

.why-floating-card {
    position: absolute;
    bottom: -20px;
    left: -30px;
    background: var(--amber-500);
    color: var(--plum-900);
    padding: 24px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.wfc-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.wfc-label {
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.3;
    margin-top: 4px;
}

/* ============================================
   PROCESS
   ============================================ */
.process {
    padding: 100px 0;
    background: var(--off-white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--plum-100);
    line-height: 1;
    margin-bottom: 16px;
}

.step-visual {
    width: 80px;
    height: 80px;
    background: var(--white);
    border: 2px solid var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--plum-600);
    transition: all 0.3s;
}

.process-step:hover .step-visual {
    background: var(--plum-700);
    border-color: var(--plum-700);
    color: var(--amber-400);
    transform: scale(1.08);
}

.process-step h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--plum-800);
    margin-bottom: 8px;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
    max-width: 220px;
    margin: 0 auto;
}

.step-connector {
    display: none;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    padding: 100px 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1px solid var(--gray-100);
    position: relative;
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--plum-200);
}

.testimonial-quote {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: var(--amber-500);
    line-height: 0.8;
    position: absolute;
    top: 20px;
    right: 28px;
    opacity: 0.4;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--gray-800);
    line-height: 1.75;
    margin-bottom: 24px;
    margin-top: 20px;
}

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

.ta-initial {
    width: 44px;
    height: 44px;
    background: var(--plum-700);
    color: var(--amber-400);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.ta-info {
    display: flex;
    flex-direction: column;
}

.ta-name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--plum-800);
}

.ta-location {
    font-size: 0.8rem;
    color: var(--gray-400);
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    padding: 100px 0;
    background: var(--plum-800);
    position: relative;
    overflow: hidden;
}

.cta-geo {
    position: absolute;
    pointer-events: none;
}

.cta-geo-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245,166,35,0.08) 0%, transparent 70%);
    border-radius: 50%;
    top: -200px;
    right: -100px;
}

.cta-geo-2 {
    width: 100px;
    height: 100px;
    background: var(--amber-500);
    border-radius: 20px;
    bottom: 20%;
    left: 8%;
    transform: rotate(30deg);
    opacity: 0.1;
}

.cta-geo-3 {
    width: 60px;
    height: 60px;
    border: 2px solid rgba(245,166,35,0.2);
    border-radius: 50%;
    top: 15%;
    left: 20%;
}

.cta-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 16px;
}

.cta-desc {
    font-size: 1.1rem;
    color: var(--plum-200);
    line-height: 1.7;
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
    padding: 100px 0;
    background: var(--off-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info .section-tag {
    background: var(--amber-100);
    color: var(--amber-600);
}

.contact-info .section-title {
    text-align: left;
}

.contact-info .section-desc {
    text-align: left;
    margin: 0 0 40px 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.ci-icon {
    width: 48px;
    height: 48px;
    background: var(--plum-700);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--amber-400);
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--plum-800);
    margin-bottom: 4px;
}

.contact-item span,
.contact-item a {
    font-size: 0.95rem;
    color: var(--gray-600);
}

.contact-item a:hover {
    color: var(--amber-600);
}

/* Form */
.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--plum-800);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--gray-800);
    background: var(--gray-50);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--plum-500);
    box-shadow: 0 0 0 3px rgba(139,47,117,0.1);
    background: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

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

.form-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    margin: 0 auto 16px;
}

.form-success h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--plum-800);
    margin-bottom: 8px;
}

.form-success p {
    color: var(--gray-600);
    font-size: 0.95rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--plum-900);
    color: var(--plum-200);
    padding: 80px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-brand p {
    margin-top: 16px;
    font-size: 0.9rem;
    color: var(--plum-400);
    line-height: 1.6;
    max-width: 280px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.fl-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fl-col strong {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.fl-col a,
.fl-col span {
    font-size: 0.88rem;
    color: var(--plum-400);
    transition: color 0.2s;
}

.fl-col a:hover {
    color: var(--amber-400);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: var(--plum-400);
}

/* ============================================
   REVEAL ANIMATIONS (progressive enhancement)
   ============================================ */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }

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

/* Fallback: always visible if JS disabled or reduced motion */
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-cards {
        height: 400px;
        max-width: 480px;
        margin: 0 auto;
    }

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

    .why-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .why-image {
        max-width: 480px;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

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

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

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

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(250,250,248,0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid var(--gray-200);
        transform: translateY(-120%);
        transition: transform 0.3s ease;
        box-shadow: var(--shadow-lg);
    }

    .nav-links.open {
        transform: translateY(0);
    }

    .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-toggle[aria-expanded="true"] svg {
        transform: rotate(90deg);
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-cards {
        height: 320px;
    }

    .hero-photo-card {
        height: 320px;
    }

    .float-card-1 {
        left: -10px;
        top: 10px;
    }

    .float-card-2 {
        right: -10px;
        bottom: 60px;
    }

    .float-card-3 {
        left: 10px;
    }

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

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

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

    .contact-form-wrap {
        padding: 24px;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        justify-content: center;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-actions .btn-lg {
        width: 100%;
        justify-content: center;
    }
}
