/* =============================================================================
   Hart aan Huis Zorg - v2 - Unique Layout
   Full-screen hero, mosaic services, card-based about, numbered why
   ============================================================================= */

:root {
    --green-dark: #3d4a34;
    --green-mid: #5c6b4f;
    --green-sage: #8b9b6e;
    --green-light: #a8b891;
    --cream: #f5f0e8;
    --cream-dark: #ede6d8;
    --beige: #d4c9b4;
    --white: #ffffff;
    --text-dark: #2c3327;
    --text-body: #4a5240;
    --text-muted: #7a8270;
    --shadow: 0 4px 24px rgba(60,74,52,.10);
    --shadow-lg: 0 12px 48px rgba(60,74,52,.15);
    --shadow-xl: 0 20px 60px rgba(60,74,52,.18);
    --radius: 20px;
}

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

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-body);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3 { font-family: 'DM Serif Display', Georgia, serif; color: var(--text-dark); line-height: 1.2; }
h4 { font-family: 'Plus Jakarta Sans', sans-serif; color: var(--text-dark); }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-mid); text-decoration: none; transition: color .3s; }
a:hover { color: var(--green-dark); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section-tag {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--green-sage);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
    display: inline-block;
}

.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 42px; margin-bottom: 12px; }
.section-header .subtitle { font-size: 17px; color: var(--text-muted); }
.section-header .line {
    width: 50px; height: 3px;
    background: linear-gradient(90deg, var(--green-sage), var(--green-light));
    margin: 18px auto 0; border-radius: 2px;
}

/* Floating leaves - hidden on mobile to prevent overflow */
.hero-leaf {
    position: fixed;
    opacity: .06;
    color: var(--green-mid);
    animation: floatLeaf 10s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}
.hero-leaf:nth-child(2) { animation-delay: -3s; animation-duration: 12s; }
.hero-leaf:nth-child(3) { animation-delay: -5s; animation-duration: 14s; }
.hero-leaf:nth-child(4) { animation-delay: -7s; animation-duration: 11s; }

@keyframes floatLeaf {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(8deg); }
    66% { transform: translateY(-10px) rotate(-5deg); }
}

/* =============================================================================
   NAVBAR
   ============================================================================= */

.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: #f5f0e8;
    box-shadow: var(--shadow);
    transition: background .4s, box-shadow .4s;
}

.navbar.scrolled {
    background: #f5f0e8;
    box-shadow: var(--shadow);
}

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

.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }

.nav-logo-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 20px; transition: transform .3s;
}
.nav-logo:hover .nav-logo-icon { transform: scale(1.05) rotate(-3deg); }

.nav-logo-text h1 { font-size: 20px; font-weight: 700; color: var(--green-dark); }
.nav-logo-text span { font-size: 11px; color: var(--text-muted); display: block; }

.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a {
    font-size: 15px; font-weight: 500; color: var(--text-body);
    transition: color .3s; position: relative; padding: 4px 0;
}
.nav-links a:hover, .nav-links a.active { color: var(--green-mid); }

.nav-links a::after {
    content: ''; position: absolute; bottom: -2px; left: 50%; width: 0; height: 2px;
    background: var(--green-sage); transition: width .3s, left .3s; border-radius: 1px;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; left: 0; }

.nav-phone {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 22px; background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
    color: var(--white); border-radius: 50px; font-weight: 600; font-size: 14px;
    transition: all .3s; box-shadow: 0 4px 16px rgba(92,107,79,.25);
}
.nav-phone:hover { color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(92,107,79,.35); }

.mobile-toggle {
    display: none; background: none; border: none;
    cursor: pointer; padding: 8px; border-radius: 8px;
    width: 44px; height: 44px;
    align-items: center; justify-content: center;
}

/* Animated hamburger icon */
.hamburger {
    width: 24px; height: 18px; position: relative;
    display: flex; flex-direction: column; justify-content: space-between;
}

.hamburger span {
    display: block; width: 100%; height: 2px;
    background: var(--green-dark); border-radius: 2px;
    transition: all .35s cubic-bezier(.4,0,.2,1);
    transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile menu overlay */
.mobile-menu-overlay {
    position: fixed; inset: 0; z-index: 101;
    background: rgba(0,0,0,.4); backdrop-filter: blur(4px);
    opacity: 0; pointer-events: none;
    transition: opacity .35s;
    display: none;
}

.mobile-menu-overlay.open { opacity: 1; pointer-events: auto; }

/* Mobile slide-in menu - hidden on desktop */
.mobile-menu {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: 300px; max-width: 85vw; z-index: 102;
    background: var(--cream);
    transform: translateX(100%);
    transition: transform .4s cubic-bezier(.4,0,.2,1);
    flex-direction: column;
    box-shadow: -8px 0 40px rgba(0,0,0,.15);
    display: none;
}

.mobile-menu.open { transform: translateX(0); }

.mobile-menu-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--beige);
}

.mobile-menu-links {
    flex: 1; padding: 16px 12px;
    display: flex; flex-direction: column; gap: 4px;
}

.mobile-menu-links a {
    display: flex; align-items: center; gap: 14px;
    padding: 16px 20px; border-radius: 14px;
    font-size: 16px; font-weight: 600; color: var(--text-dark);
    transition: all .25s; text-decoration: none;
}

.mobile-menu-links a i {
    width: 20px; text-align: center;
    color: var(--green-sage); font-size: 16px;
}

.mobile-menu-links a:hover,
.mobile-menu-links a:active {
    background: rgba(139,155,110,.12);
    transform: translateX(4px);
}

.mobile-menu-footer {
    padding: 20px 24px;
    border-top: 1px solid var(--beige);
    display: flex; flex-direction: column; gap: 10px;
}

.mobile-menu-call {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    padding: 14px; background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
    color: var(--white); border-radius: 14px;
    font-weight: 700; font-size: 15px; text-decoration: none;
    transition: transform .2s;
}

.mobile-menu-call:hover { transform: scale(1.02); color: var(--white); }

.mobile-menu-wa {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    padding: 12px; background: #25D366; color: var(--white);
    border-radius: 14px; font-weight: 700; font-size: 15px; text-decoration: none;
    transition: transform .2s;
}

.mobile-menu-wa:hover { transform: scale(1.02); color: var(--white); }

.mobile-menu-loc {
    text-align: center; font-size: 13px; color: var(--text-muted);
    padding: 8px 0;
}

.mobile-menu-loc i { margin-right: 6px; color: var(--green-sage); }

/* =============================================================================
   HERO - Full screen image with overlay
   ============================================================================= */

.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;
    transform: scale(1.1);
    transition: transform 8s ease;
}

.hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(135deg, rgba(61,74,52,.75) 0%, rgba(61,74,52,.4) 50%, rgba(61,74,52,.2) 100%);
}

.hero-grid {
    position: relative; z-index: 2;
    display: flex; justify-content: space-between; align-items: center;
    width: 100%; max-width: 1200px; margin: 0 auto; padding: 120px 24px 80px;
}

.hero-content { max-width: 600px; }

.hero-tag {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 18px; background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 50px; color: var(--white); font-size: 13px; font-weight: 600;
    margin-bottom: 24px; backdrop-filter: blur(8px);
}

.hero-content h1 { font-size: 58px; color: var(--white); margin-bottom: 16px; line-height: 1.1; }

.hero-tagline {
    font-family: 'DM Serif Display', serif; font-style: italic;
    font-size: 22px; color: rgba(255,255,255,.8); margin-bottom: 20px;
}

.hero-desc { font-size: 17px; color: rgba(255,255,255,.75); margin-bottom: 36px; max-width: 460px; line-height: 1.8; }

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

.hero-stats {
    display: flex; flex-direction: column; gap: 12px;
}

.hero-stat-card {
    background: rgba(255,255,255,.1); backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.12); border-radius: 16px;
    padding: 18px 28px; text-align: center; min-width: 0;
    transition: all .3s; color: var(--white);
}

.hero-stat-card:hover { background: rgba(255,255,255,.18); transform: translateX(-4px); }

.hero-stat-num { font-family: 'DM Serif Display', serif; font-size: 28px; font-weight: 700; }
.hero-stat-label { font-size: 12px; opacity: .75; margin-top: 4px; }

.hero-scroll {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
    z-index: 2; color: rgba(255,255,255,.5); font-size: 11px;
    text-transform: uppercase; letter-spacing: 3px;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
}

.hero-scroll-line {
    width: 1px; height: 40px; background: rgba(255,255,255,.3);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: .3; transform: scaleY(1); }
    50% { opacity: .7; transform: scaleY(1.3); }
}

/* Buttons */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; border-radius: 50px; font-weight: 600; font-size: 15px;
    cursor: pointer; transition: all .35s cubic-bezier(.4,0,.2,1);
    border: none; text-decoration: none; position: relative;
}

.btn-lg { padding: 16px 32px; font-size: 16px; }

.btn-primary {
    background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
    color: var(--white); box-shadow: 0 4px 16px rgba(92,107,79,.25);
}
.btn-primary:hover { color: var(--white); transform: translateY(-3px); box-shadow: 0 8px 28px rgba(92,107,79,.4); }

.btn-white {
    background: var(--white); color: var(--green-dark);
}
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.15); }

.btn-outline {
    background: transparent; color: var(--green-mid); border: 2px solid var(--green-sage);
}
.btn-outline:hover { background: var(--green-mid); color: var(--white); border-color: var(--green-mid); transform: translateY(-3px); }

.btn-outline-white {
    background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.4);
}
.btn-outline-white:hover { background: var(--white); color: var(--green-dark); transform: translateY(-3px); }

.btn-submit { width: 100%; justify-content: center; padding: 16px; font-size: 16px; }

/* =============================================================================
   USP STRIP
   ============================================================================= */

.usp-strip {
    background: var(--white); padding: 0; position: relative; z-index: 2;
    margin-top: -40px;
}

.usp-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.usp-item {
    display: flex; align-items: center; gap: 14px;
    padding: 28px 24px;
    border-right: 1px solid rgba(0,0,0,.05);
    transition: background .3s;
}

.usp-item:last-child { border-right: none; }
.usp-item:hover { background: rgba(139,155,110,.06); }

.usp-item i { font-size: 22px; color: var(--green-sage); flex-shrink: 0; }
.usp-item span { font-size: 14px; font-weight: 600; color: var(--text-dark); }

/* =============================================================================
   SERVICES - Mosaic layout
   ============================================================================= */

.services { padding: 100px 0; background: var(--cream); }

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

.service-block {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: all .4s cubic-bezier(.4,0,.2,1);
    border: 1px solid rgba(0,0,0,.04);
    position: relative; overflow: hidden;
}

.service-block::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px; background: linear-gradient(90deg, var(--green-sage), var(--green-light));
    transform: scaleX(0); transform-origin: left; transition: transform .4s;
}

.service-block:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.service-block:hover::after { transform: scaleX(1); }

.service-block.big { grid-row: span 1; }

.service-block-icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, rgba(92,107,79,.08), rgba(139,155,110,.12));
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; color: var(--green-mid); margin-bottom: 16px;
    transition: all .3s;
}

.service-block:hover .service-block-icon {
    background: linear-gradient(135deg, var(--green-mid), var(--green-sage));
    color: var(--white); transform: scale(1.08) rotate(-3deg);
}

.service-block h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--green-dark); }
.service-block p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* =============================================================================
   PHOTO BREAK
   ============================================================================= */

.photo-break { padding: 20px 0; background: var(--cream); }

.photo-break-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
}

.photo-break-item {
    border-radius: var(--radius); overflow: hidden; height: 260px;
    position: relative; cursor: pointer;
}

.photo-break-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .6s cubic-bezier(.4,0,.2,1);
}

.photo-break-item:hover img { transform: scale(1.06); }

.photo-break-label {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 16px 20px;
    background: linear-gradient(transparent, rgba(61,74,52,.8));
    color: var(--white); font-size: 14px; font-weight: 600;
    transform: translateY(100%); transition: transform .4s;
}

.photo-break-item:hover .photo-break-label { transform: translateY(0); }

/* =============================================================================
   ABOUT - Card layout
   ============================================================================= */

.about { padding: 100px 0; background: var(--white); }

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

.about-photo { position: relative; }

.about-photo img {
    width: 100%; height: 520px; object-fit: cover; object-position: top;
    border-radius: var(--radius); box-shadow: var(--shadow-xl);
    transition: transform .5s;
}

.about-photo:hover img { transform: scale(1.02); }

.about-name-card {
    position: absolute; bottom: -20px; left: 20px; right: 20px;
    background: var(--white); padding: 20px 24px; border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.about-name-card h4 { font-size: 18px; font-weight: 700; }
.about-name-card p { font-size: 13px; color: var(--text-muted); }
.about-name-card .about-location { color: var(--green-sage); font-weight: 600; margin-top: 4px; }
.about-name-card .about-location i { margin-right: 4px; }

.about-text-side h2 { font-size: 38px; margin-bottom: 20px; }

.about-lead { font-size: 17px; color: var(--text-body); margin-bottom: 16px; line-height: 1.8; font-weight: 500; }
.about-body { font-size: 15px; color: var(--text-muted); margin-bottom: 28px; line-height: 1.8; }

.about-features {
    display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 28px;
}

.about-feature {
    display: flex; align-items: center; gap: 10px;
    font-size: 14px; font-weight: 600; color: var(--text-dark);
    padding: 10px 14px; background: var(--cream); border-radius: 12px;
    transition: transform .3s;
}

.about-feature:hover { transform: translateX(4px); }
.about-feature i { color: var(--green-sage); font-size: 16px; flex-shrink: 0; }

.about-quote {
    padding: 20px 24px; background: linear-gradient(135deg, rgba(92,107,79,.06), rgba(139,155,110,.08));
    border-radius: 16px; border-left: 4px solid var(--green-sage); display: flex; gap: 12px; align-items: flex-start;
}

.about-quote i { color: var(--green-sage); font-size: 20px; margin-top: 2px; }
.about-quote p { font-family: 'DM Serif Display', serif; font-style: italic; font-size: 18px; color: var(--green-dark); }

/* =============================================================================
   WHY - Numbered cards
   ============================================================================= */

.why {
    padding: 100px 0; background: var(--green-dark); color: var(--white);
    position: relative; overflow: hidden;
}

.why::before {
    content: ''; position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 10 C25 30 20 60 50 85 C80 60 75 30 50 10Z' fill='%23ffffff' opacity='.02'/%3E%3C/svg%3E");
    background-size: 120px;
}

.why .section-header h2 { color: var(--white); }
.why .section-header .subtitle { color: rgba(255,255,255,.5); }

.why-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px;
    position: relative; z-index: 1;
}

.why-card {
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.06);
    border-radius: 18px; padding: 28px 20px; text-align: center;
    transition: all .4s cubic-bezier(.4,0,.2,1); position: relative;
}

.why-card:hover {
    background: rgba(255,255,255,.1); transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0,0,0,.2);
}

.why-num {
    font-family: 'DM Serif Display', serif; font-size: 36px; font-weight: 700;
    color: rgba(255,255,255,.06); position: absolute; top: 12px; right: 16px;
}

.why-card i { font-size: 28px; color: var(--green-light); margin-bottom: 14px; display: block; transition: transform .3s; }
.why-card:hover i { transform: scale(1.2); }

.why-card h4 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.why-card p { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.7; }

/* =============================================================================
   CTA SECTION
   ============================================================================= */

.cta-section { padding: 40px 0; background: var(--cream); }

.cta-card {
    background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
    border-radius: 24px; padding: 48px; color: var(--white);
    display: flex; align-items: center; justify-content: space-between; gap: 40px;
    box-shadow: var(--shadow-xl);
}

.cta-content h2 { font-size: 30px; color: var(--white); margin-bottom: 8px; }
.cta-content p { font-size: 15px; color: rgba(255,255,255,.7); }
.cta-actions { display: flex; gap: 12px; flex-shrink: 0; }

/* =============================================================================
   CONTACT
   ============================================================================= */

.contact { padding: 100px 0; background: var(--cream); }

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

.contact-cards { display: flex; flex-direction: column; gap: 14px; }

.contact-card {
    display: flex; align-items: center; gap: 16px;
    padding: 20px 24px; background: var(--white); border-radius: 16px;
    box-shadow: var(--shadow); transition: all .3s; border: 1px solid rgba(0,0,0,.04);
}

.contact-card:hover { transform: translateX(6px); box-shadow: var(--shadow-lg); }

.contact-card-icon {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--green-mid), var(--green-sage));
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 18px; flex-shrink: 0;
    transition: transform .3s;
}

.contact-card:hover .contact-card-icon { transform: rotate(-5deg) scale(1.05); }
.contact-card h4 { font-size: 13px; font-weight: 700; color: var(--green-dark); margin-bottom: 2px; }
.contact-card a, .contact-card span { font-size: 14px; color: var(--text-muted); }

.contact-form {
    background: var(--white); border-radius: 24px; padding: 40px;
    box-shadow: var(--shadow-lg); border: 1px solid rgba(0,0,0,.04);
}

.contact-form h3 { font-size: 22px; margin-bottom: 24px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }

.form-group input, .form-group textarea {
    width: 100%; padding: 13px 16px; background: var(--cream);
    border: 1.5px solid var(--beige); border-radius: 12px;
    font-size: 14px; color: var(--text-dark); font-family: inherit;
    transition: border-color .3s, box-shadow .3s, background .3s;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none; border-color: var(--green-sage);
    box-shadow: 0 0 0 4px rgba(139,155,110,.12); background: var(--white);
}

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

.form-check {
    display: flex; align-items: flex-start; gap: 10px;
    margin-bottom: 24px; font-size: 13px; color: var(--text-muted);
}
.form-check input[type="checkbox"] { margin-top: 2px; accent-color: var(--green-mid); width: 16px; height: 16px; }

/* =============================================================================
   FOOTER
   ============================================================================= */

.footer { background: var(--green-dark); color: rgba(255,255,255,.7); padding: 60px 0 30px; }

.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px;
}

.footer-brand .footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand .footer-logo i { font-size: 28px; color: var(--green-light); }
.footer-brand .footer-logo h3 { color: var(--white); font-size: 20px; }
.footer-brand p { font-size: 14px; line-height: 1.8; }

.footer h4 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 16px; }

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,.55); font-size: 14px; transition: color .3s, transform .3s; display: inline-block; }
.footer-links a:hover { color: var(--green-light); transform: translateX(4px); }
.footer-links li i { margin-right: 8px; color: var(--green-sage); width: 16px; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px;
    display: flex; justify-content: space-between; align-items: center; font-size: 13px;
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--green-light); }

/* =============================================================================
   AI CHAT WIDGET
   ============================================================================= */

.chat-widget {
    position: fixed; bottom: 160px; right: 24px; z-index: 98;
    width: 380px; max-width: calc(100vw - 32px);
    background: var(--white); border-radius: 20px;
    box-shadow: 0 12px 48px rgba(0,0,0,.18);
    display: flex; flex-direction: column;
    overflow: hidden;
    transform: translateY(20px) scale(.95);
    opacity: 0; pointer-events: none;
    transition: all .35s cubic-bezier(.4,0,.2,1);
}

.chat-widget.open {
    transform: translateY(0) scale(1);
    opacity: 1; pointer-events: auto;
}

.chat-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 20px;
    background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
    color: var(--white);
}

.chat-header-info { display: flex; align-items: center; gap: 12px; }

.chat-avatar {
    width: 40px; height: 40px; border-radius: 12px;
    background: rgba(255,255,255,.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
}

.chat-name { font-weight: 700; font-size: 15px; }
.chat-status { font-size: 11px; opacity: .8; }
.chat-status i { font-size: 7px; color: #4ade80; margin-right: 4px; }

.chat-close {
    background: rgba(255,255,255,.1); border: none; color: var(--white);
    width: 32px; height: 32px; border-radius: 8px;
    cursor: pointer; font-size: 14px;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s;
}
.chat-close:hover { background: rgba(255,255,255,.2); }

.chat-messages {
    flex: 1; padding: 16px; overflow-y: auto;
    max-height: 340px; min-height: 200px;
    display: flex; flex-direction: column; gap: 12px;
    background: var(--cream);
}

.chat-msg { display: flex; gap: 8px; align-items: flex-end; }
.chat-msg.user { flex-direction: row-reverse; }

.chat-msg-avatar {
    width: 28px; height: 28px; border-radius: 8px;
    background: linear-gradient(135deg, var(--green-mid), var(--green-sage));
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 12px; flex-shrink: 0;
}

.chat-msg-bubble {
    padding: 10px 14px; border-radius: 14px;
    font-size: 14px; line-height: 1.6; max-width: 80%;
}

.chat-msg.bot .chat-msg-bubble {
    background: var(--white); color: var(--text-body);
    border-bottom-left-radius: 4px;
    box-shadow: 0 1px 4px rgba(0,0,0,.06);
}

.chat-msg.user .chat-msg-bubble {
    background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
    color: var(--white); border-bottom-right-radius: 4px;
}

/* Typing dots */
.chat-msg-bubble.typing {
    display: flex; gap: 4px; padding: 14px 18px; align-items: center;
}
.chat-msg-bubble.typing span {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--green-sage); opacity: .4;
    animation: typingDot 1.4s ease-in-out infinite;
}
.chat-msg-bubble.typing span:nth-child(2) { animation-delay: .2s; }
.chat-msg-bubble.typing span:nth-child(3) { animation-delay: .4s; }

@keyframes typingDot {
    0%, 60%, 100% { opacity: .4; transform: translateY(0); }
    30% { opacity: 1; transform: translateY(-4px); }
}

.chat-input-area {
    display: flex; gap: 8px; padding: 12px 16px;
    border-top: 1px solid rgba(0,0,0,.06);
    background: var(--white);
}

.chat-input-area input {
    flex: 1; padding: 10px 14px; border: 1.5px solid var(--beige);
    border-radius: 12px; font-size: 16px; color: var(--text-dark);
    background: var(--cream); font-family: inherit;
    transition: border-color .3s;
}

.chat-input-area input:focus {
    outline: none; border-color: var(--green-sage);
}

.chat-limit-bar {
    padding: 6px 16px; background: var(--cream);
    border-top: 1px solid rgba(0,0,0,.04);
    font-size: 11px; color: var(--text-muted); text-align: center;
}

.chat-limit-bar.low { color: #d97706; font-weight: 600; }

.chat-summary-btn {
    display: inline-flex; align-items: center; gap: 4px;
    margin-left: 8px; padding: 4px 10px;
    background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
    color: var(--white); border: none; border-radius: 8px;
    font-size: 11px; font-weight: 600; cursor: pointer;
    font-family: inherit; transition: all .3s;
}

.chat-summary-btn:hover { transform: scale(1.05); }
.chat-summary-btn:disabled { opacity: .5; cursor: default; transform: none; }

.chat-paywall {
    padding: 24px 16px; text-align: center;
    border-top: 1px solid rgba(0,0,0,.06);
    background: var(--cream);
}

.chat-paywall-inner p { font-size: 14px; color: var(--text-dark); margin-bottom: 8px; }

.chat-send {
    width: 42px; height: 42px; border: none; border-radius: 12px;
    background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
    color: var(--white); font-size: 15px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: transform .2s;
}
.chat-send:hover { transform: scale(1.05); }

/* Chat toggle button */
.chat-toggle {
    position: fixed; bottom: 92px; right: 26px; z-index: 97;
    width: 56px; height: 56px; border-radius: 50%;
    background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
    color: var(--white); border: none; font-size: 24px;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(92,107,79,.35);
    transition: all .3s;
    transform: scale(0); opacity: 0; pointer-events: none;
}

.chat-toggle.pop-in {
    animation: popBounce .6s cubic-bezier(.34,1.56,.64,1) forwards;
    pointer-events: auto;
}

.chat-toggle.pop-in:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(92,107,79,.45); }

/* Floating label */
.float-label {
    position: absolute; right: 68px; top: 50%; transform: translateY(-50%);
    background: var(--white); color: var(--text-dark);
    padding: 8px 16px; border-radius: 10px; font-size: 13px; font-weight: 600;
    white-space: nowrap; box-shadow: 0 4px 16px rgba(0,0,0,.12);
    opacity: 0; pointer-events: none;
}

.float-label.fly-in {
    animation: flyLabel .5s cubic-bezier(.34,1.56,.64,1) forwards;
}

.float-label.fly-out {
    animation: flyLabelOut .4s ease-in forwards;
}

.float-label::after {
    content: ''; position: absolute; right: -6px; top: 50%; transform: translateY(-50%) rotate(45deg);
    width: 12px; height: 12px; background: var(--white);
    box-shadow: 2px -2px 4px rgba(0,0,0,.05);
}

@keyframes popBounce {
    0% { transform: scale(0); opacity: 0; }
    60% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes flyLabel {
    0% { opacity: 0; transform: translateY(-50%) translateX(30px); }
    100% { opacity: 1; transform: translateY(-50%) translateX(0); }
}

@keyframes flyLabelOut {
    0% { opacity: 1; transform: translateY(-50%) translateX(0); }
    100% { opacity: 0; transform: translateY(-50%) translateX(30px); }
}

.chat-toggle-badge {
    position: absolute; top: -4px; right: -4px;
    width: 20px; height: 20px; border-radius: 50%;
    background: #ef4444; color: #fff; font-size: 11px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/* WhatsApp floating button */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    z-index: 98;
    box-shadow: 0 4px 20px rgba(37,211,102,.4);
    transition: all .3s;
    text-decoration: none;
    transform: scale(0); opacity: 0; pointer-events: none;
}

.whatsapp-float.pop-in {
    animation: popBounce .6s cubic-bezier(.34,1.56,.64,1) forwards;
    pointer-events: auto;
}

.whatsapp-float.pop-in:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37,211,102,.5);
    color: #fff;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(37,211,102,.3);
    animation: whatsappPulse 2s ease-in-out infinite;
}

@keyframes whatsappPulse {
    0%, 100% { transform: scale(1); opacity: .6; }
    50% { transform: scale(1.15); opacity: 0; }
}

.whatsapp-tooltip {
    position: absolute;
    right: 72px;
    background: var(--white);
    color: var(--text-dark);
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateX(10px);
    transition: all .3s;
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--white);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* Mobile phone bar */
.mobile-phone-bar {
    position: fixed; bottom: 0; left: 0; right: 0;
    background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
    color: #fff; padding: 16px; text-align: center;
    font-weight: 700; font-size: 16px; z-index: 99; text-decoration: none;
    display: none; align-items: center; justify-content: center; gap: 10px;
    box-shadow: 0 -4px 20px rgba(0,0,0,.15);
}

/* =============================================================================
   RESPONSIVE - iPad Landscape
   ============================================================================= */

@media (max-width: 1080px) {
    .hero-content h1 { font-size: 46px; }
    .about-layout { grid-template-columns: 380px 1fr; gap: 40px; }
    .why-grid { grid-template-columns: repeat(3, 1fr); }
}

/* iPad Portrait */
@media (max-width: 1024px) {
    .usp-grid { grid-template-columns: repeat(2, 1fr); }
    .usp-item { border-bottom: 1px solid rgba(0,0,0,.05); }
    .usp-item:nth-child(2) { border-right: none; }

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

    .about-layout { grid-template-columns: 1fr 1fr; }
    .about-photo img { height: 460px; }

    .why-grid { grid-template-columns: repeat(3, 1fr); }

    .cta-card { flex-direction: column; text-align: center; padding: 36px; }
    .cta-actions { flex-direction: column; width: 100%; }
    .cta-actions .btn { justify-content: center; }

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

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

/* Tablet */
@media (max-width: 768px) {
    .hero-leaf { display: none; }

    .nav-links { display: none !important; }
    .nav-phone-desktop { display: none !important; }
    .mobile-toggle { display: flex; }
    .mobile-menu { display: flex; transform: translateX(100%); }
    .mobile-menu.open { transform: translateX(0); }
    .mobile-menu-overlay { display: block; }
    .navbar { background: #f5f0e8; }
    .navbar .hamburger span { background: var(--green-dark); }
    .navbar .nav-logo-text h1 { color: var(--green-dark); }
    .navbar .nav-logo-text span { color: var(--text-muted); }

    .hero { min-height: 100vh; }
    .hero-grid { flex-direction: column; padding: 100px 24px 80px; gap: 32px; text-align: center; }
    .hero-content { max-width: 100%; }
    .hero-content h1 { font-size: 36px; word-break: break-word; }
    .hero-tagline { font-size: 19px; }
    .hero-desc { max-width: 100%; margin: 0 auto 28px; }
    .hero-actions { justify-content: center; flex-wrap: wrap; }
    .hero-stats { flex-direction: row; justify-content: center; flex-wrap: wrap; }
    .hero-stat-card { min-width: auto; padding: 14px 18px; }
    .hero-stat-num { font-size: 22px; }
    .hero-scroll { display: none; }

    .usp-strip { margin-top: -30px; }
    .usp-grid { grid-template-columns: 1fr 1fr; }

    .section-header h2 { font-size: 32px; }
    .section-header .subtitle { font-size: 15px; }

    .services { padding: 70px 0; }
    .services-mosaic { grid-template-columns: 1fr 1fr; gap: 14px; }

    .photo-break-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .photo-break-item { height: 200px; }

    .about { padding: 70px 0; }
    .about-layout { grid-template-columns: 1fr; gap: 50px; }
    .about-photo img { height: 380px; }
    .about-text-side h2 { font-size: 32px; }
    .about-features { grid-template-columns: 1fr 1fr; }

    .why { padding: 70px 0; }
    .why-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

    .contact { padding: 70px 0; }
    .contact-grid { grid-template-columns: 1fr; gap: 32px; }
    .contact-cards { flex-direction: column; }
    .contact-card { min-width: auto; }

    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

    .mobile-phone-bar { display: flex !important; }
    body { padding-bottom: 56px; }
    .whatsapp-float { bottom: 72px; right: 16px; width: 54px; height: 54px; font-size: 26px; }
    .chat-toggle { bottom: 134px; right: 18px; width: 50px; height: 50px; font-size: 20px; }
    .chat-widget { bottom: 192px; right: 8px; left: 8px; width: auto; max-width: none; }
    .chat-messages { max-height: 260px; }
    .whatsapp-tooltip { display: none; }
    .float-label { right: 60px; font-size: 12px; padding: 6px 12px; }

    .cta-card { flex-direction: column; text-align: center; padding: 36px 24px; }
    .cta-actions { flex-direction: column; width: 100%; }
    .cta-actions .btn { justify-content: center; width: 100%; }
}

/* Mobile */
@media (max-width: 480px) {
    .container { padding: 0 16px; }

    .nav-inner { padding: 10px 16px; }
    .nav-logo-text h1 { font-size: 17px; }
    .nav-logo-icon { width: 38px; height: 38px; font-size: 17px; }

    .hero-grid { padding: 90px 16px 70px; }
    .hero-content h1 { font-size: 28px; }
    .hero-tagline { font-size: 16px; }
    .hero-desc { font-size: 14px; }
    .hero-actions { flex-direction: column; width: 100%; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-stats { flex-wrap: wrap; gap: 8px; }
    .hero-stat-card { padding: 10px 14px; flex: 1; min-width: 0; }
    .hero-stat-num { font-size: 16px; }
    .hero-stat-label { font-size: 11px; }
    .hero-tag { font-size: 11px; padding: 6px 12px; }

    .usp-strip { margin-top: -20px; }
    .usp-grid { grid-template-columns: 1fr; }
    .usp-item { border-right: none; border-bottom: 1px solid rgba(0,0,0,.05); padding: 20px 16px; }

    .services { padding: 50px 0; }
    .services-mosaic { grid-template-columns: 1fr; }
    .service-block { padding: 24px 20px; }

    .photo-break-grid { grid-template-columns: 1fr; gap: 12px; }
    .photo-break-item { height: 200px; }
    .photo-break-label { transform: translateY(0); }

    .about { padding: 50px 0; }
    .about-photo img { height: 300px; }
    .about-name-card { left: 12px; right: 12px; bottom: -16px; }
    .about-text-side h2 { font-size: 26px; }
    .about-features { grid-template-columns: 1fr; }
    .about-quote p { font-size: 16px; }

    .why { padding: 50px 0; }
    .why-grid { grid-template-columns: 1fr; }
    .why-card { padding: 24px 18px; }

    .cta-section { padding: 24px 0; }
    .cta-card { padding: 28px 18px; border-radius: 18px; }
    .cta-content h2 { font-size: 22px; }

    .contact { padding: 50px 0; }
    .contact-form { padding: 24px 18px; border-radius: 18px; }
    .contact-form h3 { font-size: 19px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }

    .footer { padding: 40px 0 20px; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }

    .whatsapp-float { bottom: 68px; right: 14px; width: 50px; height: 50px; font-size: 24px; }
    .chat-toggle { bottom: 126px; right: 16px; width: 46px; height: 46px; font-size: 18px; }
    .chat-widget { bottom: 180px; border-radius: 16px; }
    .chat-messages { max-height: 220px; }
    .float-label { right: 54px; font-size: 11px; padding: 5px 10px; }
}

/* =============================================================================
   ANIMATIONS
   ============================================================================= */

.fade-in { opacity: 0; transform: translateY(30px); transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1); }
.fade-in.visible { opacity: 1; transform: translateY(0); }

.fade-in-left { opacity: 0; transform: translateX(-40px); transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1); }
.fade-in-left.visible { opacity: 1; transform: translateX(0); }

.fade-in-right { opacity: 0; transform: translateX(40px); transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1); }
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

.scale-in { opacity: 0; transform: scale(.92); transition: opacity .6s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1); }
.scale-in.visible { opacity: 1; transform: scale(1); }

.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }
.delay-5 { transition-delay: .5s; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* =============================================================================
   COOKIE CONSENT
   ============================================================================= */

.cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
    background: var(--white);
    box-shadow: 0 -4px 30px rgba(0,0,0,.15);
    padding: 20px 24px;
    display: none;
    border-top: 3px solid var(--green-sage);
}

.cookie-banner.show { display: block; }

.cookie-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; gap: 24px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1; min-width: 280px;
    font-size: 14px; line-height: 1.6; color: var(--text-body);
}

.cookie-text a {
    color: var(--green-mid); text-decoration: underline;
}

.cookie-actions {
    display: flex; gap: 10px; flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 24px; border-radius: 10px; font-size: 14px;
    font-weight: 600; cursor: pointer; border: none;
    transition: all .3s; font-family: inherit;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
    color: var(--white);
}

.cookie-btn-accept:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(92,107,79,.35); }

.cookie-btn-decline {
    background: transparent; color: var(--text-muted);
    border: 1.5px solid var(--beige);
}

.cookie-btn-decline:hover { border-color: var(--text-muted); color: var(--text-dark); }

@media (max-width: 768px) {
    .cookie-banner { padding: 16px; bottom: 56px; }
    .cookie-inner { flex-direction: column; gap: 14px; }
    .cookie-actions { width: 100%; }
    .cookie-btn { flex: 1; text-align: center; }
}

@media (max-width: 480px) {
    .cookie-text { font-size: 13px; min-width: auto; }
}
