/* ============================================================
   BLOSSOM HANDS HOME CARE — Brand Styles
   Warm, compassionate, professional
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #2B3A67;
    --primary-light: #F8F9FC;
    --accent: #E8638B;
    --accent-hover: #D4507A;
    --accent-light: #EEF2FA;
    --warm-cream: #F8F9FC;
    --text-dark: #2D2926;
    --text-body: #5A5550;
    --text-muted: #8A8580;
    --green-accent: #5A8F5C;
    --purple-accent: #6B4C8A;
    --bg-white: #FFFFFF;
    --bg-light: #F8F9FC;
    --border: #E8ECF0;
    --shadow-sm: 0 2px 8px rgba(232,99,139,0.06);
    --shadow-md: 0 10px 30px rgba(232,99,139,0.08);
    --shadow-lg: 0 20px 40px rgba(43,58,103,0.10);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, sans-serif;
    color: var(--text-body);
    background: var(--bg-white);
    line-height: 1.6;
}

h1, h2, h3, h4, h5 {
    font-family: 'Outfit', sans-serif;
    color: var(--primary);
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 5%; }
.container-sm { max-width: 800px; margin: 0 auto; }
.w-full { width: 100%; }

/* ====================== BUTTONS ====================== */
.btn-primary {
    background: var(--accent);
    color: var(--bg-white);
    padding: 1rem 2.25rem;
    border-radius: var(--radius-md);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--transition);
}
.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(232,99,139,0.3);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    padding: 1rem 2.25rem;
    border-radius: var(--radius-md);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.btn-outline:hover {
    background: var(--primary);
    color: var(--bg-white);
}

/* ====================== TOP BAR ====================== */
.top-bar {
    background: var(--primary);
    color: var(--bg-white);
    padding: 0.6rem 0;
    font-size: 0.8rem;
    font-weight: 500;
}
.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar-text { display: flex; align-items: center; gap: 0.4rem; }
.top-bar-phone { display: flex; align-items: center; gap: 0.4rem; color: #fff; }
.top-bar-phone:hover { color: var(--accent-light); }

/* ====================== NAVBAR ====================== */
.navbar {
    background: rgba(255,255,255,0.98);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}
.navbar.scrolled {
    box-shadow: var(--shadow-md);
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.logo-img {
    height: 80px;
    width: auto;
}
.logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.1;
}
.logo-text small {
    display: block;
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}
.nav-links a:not(.btn-nav) {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}
.nav-links a:not(.btn-nav)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}
.nav-links a:not(.btn-nav):hover::after { width: 100%; }
.nav-links a:not(.btn-nav):hover { color: var(--accent); }
.btn-nav {
    background: var(--accent);
    color: var(--bg-white) !important;
    padding: 0.8rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-md);
}
.btn-nav:hover { background: var(--accent-hover); }
.btn-nav::after { display: none !important; }
.mobile-toggle { display: none; background: none; border: none; color: var(--text-dark); cursor: pointer; }

/* ====================== MOBILE NAV OVERLAY ====================== */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: #FFFFFF;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        z-index: 9999;
    }
    .nav-links.open { display: flex; }
    .nav-links a:not(.btn-nav) { font-size: 1.4rem; letter-spacing: 2px; }
    .mobile-toggle { display: block; z-index: 10000; position: relative; }
}

/* ====================== UTILITIES ====================== */
.section-header { margin-bottom: 3rem; }
.section-header.center { text-align: center; margin-left: auto; margin-right: auto; max-width: 650px; }
.section-header h2 { font-size: clamp(2rem, 4vw, 2.75rem); margin-bottom: 1rem; }
.section-header p { font-size: 1.1rem; color: var(--text-body); line-height: 1.7; }
.section-badge {
    display: inline-block;
    color: var(--accent);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    background: var(--accent-light);
    padding: 0.4rem 1rem;
    border-radius: 50px;
}

/* ====================== BOUTIQUE SPLIT HERO ====================== */
.boutique-hero {
    padding: 40px 0 80px;
    min-height: auto;
    width: 100%;
    background: var(--bg-white);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.boutique-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3rem;
}
.hero-left-content {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-left-content .content-wrapper { width: 100%; }
.hero-right-image {
    width: 100%;
    max-width: 1000px;
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    order: -1;
}
.hero-right-image img {
    width: 100%;
    height: auto;
    max-height: 550px;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-xl);
}
.hero-left-content h1 {
    font-size: clamp(2.5rem, 4vw, 3.8rem);
    color: #5BA4E6;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
.hero-left-content h1 span { color: var(--accent); }
.hero-left-content p {
    font-size: 1.2rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}
.hero-badge {
    display: inline-block;
    background: var(--accent-light);
    color: var(--accent);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}
.hero-highlights span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.05rem;
}
.hero-highlights i {
    color: var(--green-accent);
    width: 22px;
    height: 22px;
}
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.hero-buttons .btn-primary {
    padding: 1.2rem 2.5rem;
    border-radius: var(--radius-md);
    font-weight: 700;
}
.hero-buttons .btn-outline {
    padding: 1.2rem 2.5rem;
    border-radius: var(--radius-md);
    font-weight: 700;
}
.hero-buttons a:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* ====================== TRUST STRIP ====================== */
.trust-strip {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    border-top: 3px solid var(--accent);
    padding: 2rem 0;
}
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
}
.trust-item i { color: var(--green-accent); width: 22px; height: 22px; }

/* ====================== STORY (WHY US) ====================== */
.story-section { padding: 7rem 0; background: var(--bg-white); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.story-image-col { position: relative; }
.story-img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    display: block;
    position: relative;
    z-index: 2;
}
.story-img-accent {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent);
    border-radius: var(--radius-xl);
    z-index: 1;
}
.story-text-col h2 { margin-bottom: 1.25rem; }
.story-lead { font-size: 1.15rem; margin-bottom: 2.5rem; }
.feature-list { display: flex; flex-direction: column; gap: 2rem; }
.feature-item { display: flex; gap: 1.5rem; align-items: flex-start; }
.check-icon {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--accent-light);
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}
.check-icon i { color: var(--accent); width: 20px; height: 20px; }
.feature-item h4 { font-family: 'Outfit', sans-serif; font-size: 1.1rem; margin-bottom: 0.4rem; }
.feature-item p { font-size: 0.95rem; }

/* ====================== PHOTO SERVICES GRID ====================== */
.services { padding: 7rem 0; background: var(--primary-light); }
.services-photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 0;
}
.photo-card {
    border-radius: var(--radius-lg);
    background: var(--bg-white);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    border: 1px solid var(--border);
    position: relative;
}
.photo-card::after {
    content: '';
    position: absolute;
    top: 0; left: -150%; width: 50%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    transition: all 0.75s ease;
    pointer-events: none;
    z-index: 10;
}
.photo-card:hover::after {
    left: 200%;
}
.photo-card:hover {
    box-shadow: 0 24px 48px rgba(43,58,103,0.12);
    transform: translateY(-8px);
    border-color: #5BA4E6;
}
.photo-card img { width: 100%; height: 280px; object-fit: cover; transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1); }
.photo-card:hover img { transform: scale(1.06); }
.photo-card-content { padding: 2rem; }
.photo-card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--primary);
    font-family: 'Outfit', sans-serif;
}
.photo-card-content p { font-size: 0.98rem; line-height: 1.6; }

/* Center the 7th card */
.services-photo-grid .photo-card:last-child:nth-child(3n+1) {
    grid-column: 2;
}

/* ====================== HOW IT WORKS ====================== */
.how-it-works {
    padding: 6rem 0;
    background: var(--bg-white);
}
.how-it-works .section-badge { background: var(--accent-light); }
.steps-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 1.5rem;
    align-items: start;
}
.step-card { text-align: center; }
.step-number {
    width: 64px; height: 64px; border-radius: 50%;
    background: var(--accent); color: var(--bg-white);
    font-size: 1.5rem; font-weight: 700;
    font-family: 'Outfit', sans-serif;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(232,99,139,0.25);
}
.step-card h3 {
    color: var(--text-dark);
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}
.step-card p { color: var(--text-body); font-size: 0.95rem; }
.step-connector {
    height: 2px;
    width: 60px;
    background: var(--accent);
    opacity: 0.3;
    margin-top: 32px;
}

/* ====================== FAQ ====================== */
.faq { padding: 7rem 0; background: var(--primary-light); }
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border-left: 4px solid transparent;
}
.faq-item:hover {
    box-shadow: 0 4px 16px rgba(43,58,103,0.06);
}
.faq-item.open {
    border-left-color: #5BA4E6;
    box-shadow: 0 8px 24px rgba(43,58,103,0.08);
    background: var(--bg-white);
}
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 1rem;
}
.faq-question span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    font-family: 'Outfit', sans-serif;
}
.faq-item.open .faq-question span {
    color: var(--primary);
}
.faq-chevron {
    color: var(--text-muted);
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); color: #5BA4E6; }
.faq-answer {
    max-height: 0;
    padding: 0 2rem;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer p {
    color: var(--text-body);
    line-height: 1.8;
    font-size: 1rem;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 2rem 2rem; }

/* ====================== TESTIMONIALS ====================== */
.testimonials { padding: 7rem 0; background: var(--bg-white); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
}
.testimonial-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.testimonial-card:hover {
    box-shadow: 0 15px 35px rgba(43,58,103,0.08);
    transform: translateY(-4px);
    border-color: #5BA4E6;
}
.stars {
    display: flex;
    gap: 0.25rem;
}
.star-filled {
    color: #F4B740;
    width: 20px;
    height: 20px;
    fill: #F4B740;
}
.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-body);
    font-style: italic;
    flex-grow: 1;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}
.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
}
.testimonial-author h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    margin-bottom: 0.15rem;
    color: var(--text-dark);
}
.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-muted);
}
.google-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: var(--text-body);
    padding: 1rem 2rem;
    background: var(--primary-light);
    border-radius: 50px;
    width: fit-content;
    margin: 0 auto;
    border: 1px solid var(--border);
}
.google-badge .star-filled {
    width: 18px;
    height: 18px;
}

/* ====================== CTA ====================== */
.cta-section {
    background: linear-gradient(135deg, #2B3A67 0%, #3D6098 50%, #5BA4E6 100%);
    position: relative;
    padding: 6rem 0;
    text-align: center;
}
.cta-container { position: relative; z-index: 2; }
.cta-container h2 {
    color: var(--bg-white);
    margin-bottom: 1rem;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
}
.cta-container p {
    color: rgba(255,255,255,0.85);
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.cta-section .btn-primary {
    background: var(--bg-white);
    color: var(--primary);
    font-size: 1.1rem;
    padding: 1.2rem 2.5rem;
}
.cta-section .btn-primary:hover {
    background: #F0F4FA;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transform: translateY(-2px);
}
.btn-large { font-size: 1.1rem; padding: 1.2rem 2.5rem; }

/* ====================== CONTACT ====================== */
.contact { padding: 7rem 0; background: var(--primary-light); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.contact-details { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.5rem; }
.contact-method { display: flex; align-items: center; gap: 1.5rem; }
.icon-circle {
    width: 60px; height: 60px; border-radius: 50%;
    background: var(--accent-light);
    border: 1px solid var(--border);
    color: var(--accent);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.contact-method h4 { font-family: 'Outfit', sans-serif; font-size: 1rem; margin-bottom: 0.2rem; }
.contact-method span { color: var(--text-body); font-size: 0.95rem; }

.contact-form-wrapper {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}
.contact-form-wrapper h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}
.form-group { margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group label {
    display: block; font-weight: 600; color: var(--text-dark);
    margin-bottom: 0.5rem; font-size: 0.9rem;
}
.form-group input, .form-group textarea {
    width: 100%; padding: 0.9rem 1rem; border: 1px solid var(--border);
    border-radius: var(--radius-sm); font-size: 1rem;
    background: #F8F9FC; font-family: inherit;
}
.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(232,99,139,0.1);
}
.form-group textarea { min-height: 120px; resize: vertical; }

/* ====================== FOOTER ====================== */
footer { background: var(--bg-white); color: var(--text-body); padding: 5rem 0 2rem; border-top: 1px solid var(--border); }
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem; padding-bottom: 4rem;
    border-bottom: 1px solid var(--border);
}
.footer-brand .logo { margin-bottom: 1.5rem; }
.footer-brand .logo-img { height: 160px; width: auto; }
.footer-brand .logo-text { color: var(--primary); }
.footer-brand .logo-text small { color: var(--accent); }
.footer-brand p { line-height: 1.7; }
.footer-links h4, .footer-contact h4 {
    color: var(--primary);
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}
.footer-links a { display: block; margin-bottom: 0.8rem; color: var(--text-body); }
.footer-links a:hover { color: var(--accent); }
.footer-contact p { margin-bottom: 0.8rem; }
.footer-bottom { text-align: center; margin-top: 2rem; font-size: 0.85rem; color: var(--text-muted); }
.footer-license {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}
.footer-license i { color: var(--purple-accent); }

/* ====================== SCROLL TO TOP ====================== */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(232,99,139,0.3);
    z-index: 999;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--accent-hover); transform: translateY(-3px); }

/* ====================== ANIMATIONS ====================== */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1); }
.reveal.revealed { opacity: 1; transform: translateY(0); }

.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1); }
.reveal-left.revealed { opacity: 1; transform: translateX(0); }

.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1); }
.reveal-right.revealed { opacity: 1; transform: translateX(0); }

.reveal-scale { opacity: 0; transform: scale(0.95); transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1); }
.reveal-scale.revealed { opacity: 1; transform: scale(1); }

.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; }

/* ====================== RESPONSIVE ====================== */
@media (max-width: 1100px) {
    .boutique-container { gap: 2rem; }
    .hero-left-content h1 { font-size: 3rem; }
}

@media (max-width: 992px) {
    .boutique-container {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    .hero-left-content { order: 2; padding: 0; }
    .hero-right-image { order: 1; width: 100%; max-width: 700px; height: auto; }
    .hero-left-content .content-wrapper { max-width: 800px; }
    .hero-buttons { justify-content: center; }
    .hero-highlights { justify-items: center; grid-template-columns: 1fr; }
    .hero-highlights span { justify-content: center; }
    .story-grid { grid-template-columns: 1fr; gap: 3rem; }
    .story-image-col { max-width: 500px; margin: 0 auto; }
    .services-photo-grid { grid-template-columns: repeat(2, 1fr); }
    .services-photo-grid .photo-card:last-child:nth-child(odd) { grid-column: 1 / -1; max-width: 400px; margin: 0 auto; }
    .contact-grid { grid-template-columns: 1fr; gap: 4rem; }
    .steps-grid { grid-template-columns: 1fr; gap: 2rem; }
    .step-connector { display: none; }
    .testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .top-bar-container { flex-direction: column; gap: 0.5rem; padding: 0.5rem 0; text-align: center; }
    .boutique-hero { padding: 40px 0; }
    .hero-left-content h1 { font-size: 2.2rem; }
    .hero-left-content p { font-size: 1.1rem; }
    .btn-primary, .btn-outline { width: 100%; padding: 1rem; }
    .trust-grid { grid-template-columns: 1fr 1fr; }
    .services-photo-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrapper { padding: 2rem; }
}

@media (max-width: 480px) {
    .hero-left-content h1 { font-size: 1.8rem; }
    .trust-grid { grid-template-columns: 1fr; }
    .icon-circle { width: 50px; height: 50px; }
}
