/* =============================================================
   Verhuisservice Berkane — Main Stylesheet
   Mobile-first · WCAG 2.1 AA · CSS custom properties
   ============================================================= */

/* 1. Variables & Reset
   ============================================================= */
:root {
  --primary:        #111111;
  --primary-dark:   #0a0a0a;
  --primary-light:  #2a2a2a;
  --accent:         #f07020;
  --accent-dark:    #d95e0e;
  --accent-light:   #fed7aa;
  --white:          #ffffff;
  --gray-50:        #f8fafc;
  --gray-100:       #f1f5f9;
  --gray-200:       #e2e8f0;
  --gray-300:       #cbd5e1;
  --gray-400:       #94a3b8;
  --gray-500:       #64748b;
  --gray-600:       #475569;
  --gray-700:       #334155;
  --gray-800:       #1e293b;
  --gray-900:       #0f172a;
  --text:           #1e293b;
  --text-muted:     #64748b;
  --border:         #e2e8f0;
  --success:        #059669;
  --star:           #f59e0b;
  --font:           'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --r-sm:           0.375rem;
  --r-md:           0.5rem;
  --r-lg:           0.75rem;
  --r-xl:           1rem;
  --r-full:         9999px;
  --shadow-sm:      0 1px 2px rgba(0,0,0,.06);
  --shadow-md:      0 4px 12px rgba(0,0,0,.08);
  --shadow-lg:      0 10px 24px rgba(0,0,0,.10);
  --shadow-xl:      0 20px 40px rgba(0,0,0,.12);
  --t:              200ms ease;
  --container:      1200px;
  --pad:            1.5rem;
}

*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; font-size:16px; -webkit-text-size-adjust:100%; }
body { font-family:var(--font); font-size:1rem; line-height:1.6; color:var(--text);
       background:var(--white); -webkit-font-smoothing:antialiased; }
img  { max-width:100%; height:auto; display:block; }
a    { color:inherit; text-decoration:none; }
ul,ol{ list-style:none; }
button { cursor:pointer; border:none; background:none; font-family:inherit; }
input,select,textarea { font-family:inherit; }

/* Language switching */
[data-lang="nl"] .en-only { display:none !important; }
[data-lang="en"] .nl-only { display:none !important; }


/* 2. Layout
   ============================================================= */
.container { max-width:var(--container); margin:0 auto; padding:0 var(--pad); }
.section    { padding:5rem 0; }
.section-alt  { background:var(--gray-50); }
.section-dark { background:var(--primary); color:var(--white); }

.section-header { text-align:center; margin-bottom:3.5rem; }
.section-label  { display:inline-block; font-size:.8rem; font-weight:700;
                  letter-spacing:.12em; text-transform:uppercase; color:var(--accent);
                  margin-bottom:.75rem; }
.section-title  { font-size:clamp(1.75rem,3.5vw,2.5rem); font-weight:900;
                  line-height:1.15; letter-spacing:-.02em; color:var(--primary);
                  margin-bottom:1rem; }
.section-dark .section-title { color:var(--white); }
.section-subtitle { font-size:1.1rem; color:var(--text-muted); max-width:580px; margin:0 auto; }
.section-dark .section-subtitle { color:rgba(255,255,255,.7); }

.skip-link { position:absolute; top:-100%; left:1rem; background:var(--primary);
             color:var(--white); padding:.6rem 1.2rem; border-radius:var(--r-md);
             font-weight:600; z-index:9999; }
.skip-link:focus { top:1rem; }


/* 3. Buttons
   ============================================================= */
.btn { display:inline-flex; align-items:center; justify-content:center; gap:.5rem;
       padding:.75rem 1.75rem; font-size:1rem; font-weight:700; line-height:1.2;
       border-radius:var(--r-md); border:2px solid transparent;
       transition:all var(--t); cursor:pointer; white-space:nowrap; }
.btn:focus-visible { outline:3px solid var(--accent); outline-offset:2px; }

.btn-primary  { background:var(--accent); color:var(--white); border-color:var(--accent); }
.btn-primary:hover  { background:var(--accent-dark); border-color:var(--accent-dark);
                      transform:translateY(-1px); box-shadow:var(--shadow-md); }

.btn-outline  { background:transparent; color:var(--primary); border-color:var(--primary); }
.btn-outline:hover  { background:var(--primary); color:var(--white); }

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

.btn-white    { background:var(--white); color:var(--accent-dark); border-color:var(--white); }
.btn-white:hover    { background:rgba(255,255,255,.92); transform:translateY(-1px); box-shadow:var(--shadow-lg); }

.btn-lg { padding:1rem 2.25rem; font-size:1.1rem; border-radius:var(--r-lg); }
.btn-sm { padding:.45rem 1.1rem; font-size:.875rem; }
.btn-full { width:100%; }


/* 4. Header
   ============================================================= */
.site-header { position:sticky; top:0; z-index:100; background:var(--white);
               border-bottom:1px solid var(--border); box-shadow:var(--shadow-sm); }
.header-inner { display:flex; align-items:center; justify-content:space-between;
                height:72px; gap:2rem; }

.site-logo { display:flex; align-items:center; gap:.75rem; flex-shrink:0; }
.logo-icon { width:42px; height:42px; background:var(--accent); border-radius:var(--r-md);
             display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.logo-text { display:flex; flex-direction:column; line-height:1.15; }
.logo-name { font-size:.95rem; font-weight:900; color:var(--primary); letter-spacing:-.01em; }
.logo-sub  { font-size:.7rem; color:var(--text-muted); font-weight:500; }

.site-nav { display:flex; align-items:center; gap:.25rem; }
.site-nav a { padding:.45rem .75rem; font-size:.875rem; font-weight:500;
              color:var(--gray-700); border-radius:var(--r-sm);
              transition:color var(--t),background var(--t); }
.site-nav a:hover,
.site-nav a[aria-current="page"] { color:var(--primary); background:var(--gray-100); }

.header-actions { display:flex; align-items:center; gap:.75rem; }
.header-phone { display:flex; align-items:center; gap:.4rem; font-size:.875rem; font-weight:700;
                color:var(--primary); padding:.45rem .75rem; border-radius:var(--r-sm);
                transition:all var(--t); }
.header-phone:hover { background:var(--primary); color:var(--white); }

.menu-btn { display:none; flex-direction:column; gap:5px; padding:.5rem;
            background:none; border:none; cursor:pointer; }
.menu-btn span { display:block; width:24px; height:2px; background:var(--primary);
                 border-radius:2px; transition:all var(--t); }

/* Mobile nav drawer */
.mobile-nav { display:none; position:fixed; inset:72px 0 0 0; background:var(--white);
              z-index:99; overflow-y:auto; padding:1.5rem; flex-direction:column; gap:.5rem; }
.mobile-nav.open { display:flex; }
.mobile-nav a { display:block; padding:1rem 1.25rem; font-size:1.05rem; font-weight:600;
                color:var(--text); border-radius:var(--r-md);
                border-bottom:1px solid var(--border); }
.mobile-nav a:hover { background:var(--gray-50); color:var(--primary); }
.mobile-nav .nav-cta { margin-top:1rem; background:var(--accent); color:var(--white);
                        text-align:center; border-radius:var(--r-lg); font-size:1.1rem;
                        font-weight:800; border:none; }
.mobile-nav .nav-cta:hover { background:var(--accent-dark); }


/* 5. Language switcher (fixed corner chip)
   ============================================================= */
.lang-switcher { position:fixed; top:80px; right:1rem; z-index:200;
                 display:flex; background:var(--white); border:1.5px solid var(--border);
                 border-radius:var(--r-full); overflow:hidden; box-shadow:var(--shadow-sm); }
.lang-btn { padding:.3rem .7rem; font-size:.75rem; font-weight:700; letter-spacing:.05em;
            cursor:pointer; color:var(--text-muted); background:transparent; border:none;
            transition:all var(--t); }
.lang-btn.active { background:var(--primary); color:var(--white); }


/* 6. Hero
   ============================================================= */
.hero { background:linear-gradient(135deg,#0a0a0a 0%,#111111 60%,#1a1a1a 100%);
        color:var(--white); padding:5.5rem 0 4.5rem; position:relative; overflow:hidden;
        min-height:560px; display:flex; align-items:center; }
.hero::before { content:''; position:absolute; inset:0;
  background:radial-gradient(ellipse at 70% 50%,rgba(240,112,32,.18) 0%,transparent 55%),
             radial-gradient(ellipse at 10% 90%,rgba(255,255,255,.03) 0%,transparent 50%);
  pointer-events:none; }
.hero::after  { content:''; position:absolute; top:-60%; right:-15%;
  width:700px; height:700px; background:rgba(255,255,255,.02);
  border-radius:50%; pointer-events:none; }

.hero-inner  { position:relative; z-index:1; display:grid;
               grid-template-columns:1fr 1fr; gap:4rem; align-items:center; }
.hero-content { max-width:620px; }
.hero-photo  { display:flex; align-items:center; justify-content:center; }
.hero-photo img { width:100%; max-height:520px; object-fit:cover; object-position:center top;
                  border-radius:1.5rem; box-shadow:0 24px 56px rgba(0,0,0,.55); }
.hero-badge  { display:inline-flex; align-items:center; gap:.5rem;
               background:rgba(249,115,22,.18); border:1px solid rgba(249,115,22,.4);
               color:var(--accent-light); padding:.4rem 1rem; border-radius:var(--r-full);
               font-size:.8rem; font-weight:700; margin-bottom:1.5rem; }
.hero h1     { font-size:clamp(2rem,5.5vw,3.6rem); font-weight:900; line-height:1.1;
               letter-spacing:-.025em; margin-bottom:1.25rem; }
.hero h1 em  { font-style:normal; color:var(--accent); }
.hero-sub    { font-size:1.2rem; color:rgba(255,255,255,.82); line-height:1.6;
               margin-bottom:2rem; max-width:600px; }
.hero-actions{ display:flex; flex-wrap:wrap; gap:1rem; margin-bottom:2.5rem; }
.hero-meta   { display:flex; flex-wrap:wrap; gap:1.25rem; }
.hero-meta-item { display:flex; align-items:center; gap:.4rem;
                   font-size:.85rem; color:rgba(255,255,255,.72); }
.hero-meta-item svg { color:var(--accent); flex-shrink:0; }


/* 7. Trust bar
   ============================================================= */
.trust-bar { background:var(--white); border-bottom:1px solid var(--border);
             padding:1.25rem 0; box-shadow:var(--shadow-sm); }
.trust-items{ display:flex; flex-wrap:wrap; justify-content:center; gap:2rem; }
.trust-item { display:flex; align-items:center; gap:.75rem;
              font-weight:700; color:var(--primary); font-size:.875rem; }
.trust-icon { width:34px; height:34px; background:var(--accent); border-radius:var(--r-sm);
              display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.trust-icon svg { color:var(--white); }


/* 8. Stats band
   ============================================================= */
.stats-band { background:var(--accent); }
.stats-grid { display:grid; grid-template-columns:repeat(4,1fr); }
.stat-cell  { padding:2.5rem 1.5rem; text-align:center; border-right:1px solid rgba(255,255,255,.25); }
.stat-cell:last-child { border-right:none; }
.stat-num   { font-size:2.75rem; font-weight:900; color:var(--white); line-height:1; margin-bottom:.35rem; }
.stat-num span { color:var(--white); }
.stat-lbl   { font-size:.85rem; color:rgba(255,255,255,.82); font-weight:500; }


/* 9. Service cards
   ============================================================= */
.services-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
.service-card  { background:var(--white); border:1.5px solid var(--border);
                 border-radius:var(--r-xl); padding:2rem; position:relative;
                 transition:all var(--t); overflow:hidden; }
.service-card::before { content:''; position:absolute; top:0; left:0; width:4px;
                         height:100%; background:var(--primary); opacity:0;
                         transition:opacity var(--t); }
.service-card:hover { border-color:var(--primary-light); box-shadow:var(--shadow-lg);
                      transform:translateY(-4px); }
.service-card:hover::before { opacity:1; }
.svc-icon  { width:52px; height:52px;
             background:linear-gradient(135deg,var(--primary),var(--primary-light));
             border-radius:var(--r-lg); display:flex; align-items:center;
             justify-content:center; margin-bottom:1.25rem; }
.svc-icon svg { color:var(--white); }
.service-card h3 { font-size:1.15rem; font-weight:800; color:var(--primary); margin-bottom:.6rem; }
.service-card p  { font-size:.875rem; color:var(--text-muted); line-height:1.65; margin-bottom:1rem; }
.card-link { font-size:.875rem; font-weight:700; color:var(--accent);
             display:inline-flex; align-items:center; gap:.25rem; transition:gap var(--t); }
.service-card:hover .card-link { gap:.5rem; }


/* 10. USP grid (dark section)
   ============================================================= */
.usp-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:2rem; }
.usp-item  { text-align:center; padding:1rem; }
.usp-icon  { width:68px; height:68px; background:rgba(249,115,22,.15);
             border-radius:50%; display:flex; align-items:center; justify-content:center;
             margin:0 auto 1.25rem; }
.usp-icon svg { color:var(--accent); }
.usp-item h3 { font-size:1.1rem; font-weight:800; color:var(--white); margin-bottom:.6rem; }
.usp-item p  { font-size:.875rem; color:rgba(255,255,255,.68); line-height:1.7; }


/* 11. Pricing cards
   ============================================================= */
.pricing-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; align-items:start; }
.pricing-card { background:var(--white); border:2px solid var(--border);
                border-radius:var(--r-xl); padding:2rem; position:relative;
                transition:all var(--t); }
.pricing-card:hover { box-shadow:var(--shadow-xl); border-color:var(--primary-light); }
.pricing-card.featured { border-color:var(--accent); box-shadow:var(--shadow-xl); }
.pricing-badge { position:absolute; top:-13px; left:50%; transform:translateX(-50%);
                 background:var(--accent); color:var(--white); font-size:.7rem; font-weight:800;
                 letter-spacing:.08em; text-transform:uppercase; padding:.3rem .9rem;
                 border-radius:var(--r-full); white-space:nowrap; }
.pkg-head  { text-align:center; padding-bottom:1.5rem; border-bottom:1px solid var(--border);
             margin-bottom:1.5rem; }
.pkg-label { font-size:.75rem; font-weight:700; text-transform:uppercase; letter-spacing:.1em;
             color:var(--text-muted); margin-bottom:.4rem; }
.pkg-title { font-size:1.3rem; font-weight:900; color:var(--primary); margin-bottom:.25rem; }
.pkg-sub   { font-size:.8rem; color:var(--text-muted); }
.pkg-features { display:flex; flex-direction:column; gap:.75rem; margin-bottom:1.5rem; }
.pkg-feature  { display:flex; align-items:center; gap:.75rem; font-size:.875rem; color:var(--text); }
.pkg-feature svg { color:var(--success); flex-shrink:0; }
.pkg-price { background:var(--gray-50); border-radius:var(--r-md); padding:1rem;
             text-align:center; margin-bottom:1.5rem; }
.pkg-price-lbl { font-size:.7rem; font-weight:700; text-transform:uppercase;
                 letter-spacing:.08em; color:var(--text-muted); margin-bottom:.2rem; }
.pkg-price-val { font-size:1.1rem; font-weight:800; color:var(--primary); }

/* Info callout box */
.callout { background:var(--gray-50); border:1px solid var(--border);
           border-left:4px solid var(--accent); border-radius:var(--r-md);
           padding:1.25rem 1.5rem; }
.callout p { font-size:.875rem; color:var(--text-muted); line-height:1.7; }
.callout p strong { color:var(--text); }


/* 12. Testimonial cards
   ============================================================= */
.testimonials-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
.tcard { background:var(--white); border:1.5px solid var(--border);
         border-radius:var(--r-xl); padding:2rem; position:relative; box-shadow:var(--shadow-sm); }
.tcard-source { position:absolute; top:1.25rem; right:1.25rem; font-size:.7rem; font-weight:700;
                color:var(--text-muted); background:var(--gray-100); padding:.2rem .55rem;
                border-radius:var(--r-full); }
.tcard-stars  { color:var(--star); font-size:1rem; letter-spacing:1px; margin-bottom:1rem; }
.tcard-text   { font-size:.9rem; line-height:1.75; color:var(--text); margin-bottom:1.5rem;
                font-style:italic; }
.tcard-author { display:flex; align-items:center; gap:.75rem; }
.tcard-avatar { width:42px; height:42px; border-radius:50%; display:flex; align-items:center;
                justify-content:center; font-weight:800; color:var(--white); font-size:.95rem;
                flex-shrink:0;
                background:linear-gradient(135deg,var(--primary),var(--primary-light)); }
.tcard-name   { font-weight:700; color:var(--text); font-size:.875rem; }
.tcard-loc    { font-size:.75rem; color:var(--text-muted); }


/* 13. Service areas
   ============================================================= */
.areas-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(130px,1fr)); gap:.75rem; }
.area-pill  { display:flex; align-items:center; gap:.5rem;
              padding:.65rem 1rem; background:rgba(255,255,255,.07);
              border:1px solid rgba(255,255,255,.14); border-radius:var(--r-md);
              font-size:.875rem; font-weight:500; color:rgba(255,255,255,.9);
              transition:all var(--t); }
.area-pill:hover { background:rgba(255,255,255,.15); border-color:rgba(255,255,255,.28); }
.area-pill.highlight { border-color:rgba(249,115,22,.5); background:rgba(249,115,22,.12); }


/* 14. FAQ accordion
   ============================================================= */
.faq-list { max-width:820px; margin:0 auto; display:flex; flex-direction:column; gap:.6rem; }
.faq-item { border:1.5px solid var(--border); border-radius:var(--r-lg);
            overflow:hidden; background:var(--white); }
.faq-q    { display:flex; align-items:center; justify-content:space-between; gap:1rem;
            padding:1.2rem 1.5rem; cursor:pointer; font-size:.95rem; font-weight:700;
            color:var(--primary); background:none; width:100%; text-align:left;
            transition:background var(--t); }
.faq-q:hover { background:var(--gray-50); }
.faq-q[aria-expanded="true"] { background:var(--gray-50); border-bottom:1px solid var(--border); }
.faq-icon { width:24px; height:24px; background:var(--primary); border-radius:50%;
            display:flex; align-items:center; justify-content:center; flex-shrink:0;
            transition:transform var(--t),background var(--t); }
.faq-q[aria-expanded="true"] .faq-icon { transform:rotate(45deg); background:var(--accent); }
.faq-icon svg { color:var(--white); }
.faq-a    { padding:0 1.5rem; max-height:0; overflow:hidden;
            transition:max-height .3s ease,padding .2s ease; }
.faq-a.open { padding:1.1rem 1.5rem; max-height:400px; }
.faq-a p  { font-size:.875rem; line-height:1.8; color:var(--text-muted); }
.faq-a a  { color:var(--accent); font-weight:600; }


/* 15. Contact section
   ============================================================= */
.contact-layout { display:grid; grid-template-columns:1fr 1.6fr; gap:3.5rem; align-items:start; }
.contact-info    { display:flex; flex-direction:column; gap:1.5rem; }
.cinfo-item      { display:flex; gap:1rem; }
.cinfo-icon      { width:46px; height:46px;
                   background:linear-gradient(135deg,var(--primary),var(--primary-light));
                   border-radius:var(--r-lg); display:flex; align-items:center;
                   justify-content:center; flex-shrink:0; margin-top:2px; }
.cinfo-icon svg  { color:var(--white); }
.cinfo-lbl  { font-size:.7rem; font-weight:700; text-transform:uppercase; letter-spacing:.08em;
              color:var(--text-muted); margin-bottom:.15rem; }
.cinfo-val  { font-size:1.05rem; font-weight:700; color:var(--primary); }
.cinfo-val a{ transition:color var(--t); }
.cinfo-val a:hover { color:var(--accent); }
.map-wrap   { border-radius:var(--r-xl); overflow:hidden; border:1px solid var(--border);
              height:280px; box-shadow:var(--shadow-md); }
.map-wrap iframe { width:100%; height:100%; border:0; display:block; }

/* Contact form */
.cform-card { background:var(--white); border:1.5px solid var(--border);
              border-radius:var(--r-xl); padding:2.25rem; box-shadow:var(--shadow-md); }
.cform-card h3 { font-size:1.5rem; font-weight:900; color:var(--primary); margin-bottom:1.75rem; }
.form-row   { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.form-group { margin-bottom:1.25rem; }
.form-label { display:block; font-size:.8rem; font-weight:700; color:var(--text); margin-bottom:.4rem; }
.form-req   { color:var(--accent); margin-left:2px; }
.form-input, .form-select, .form-textarea {
  width:100%; padding:.7rem 1rem; font-size:.95rem; font-family:inherit;
  color:var(--text); background:var(--white); border:1.5px solid var(--border);
  border-radius:var(--r-md); transition:border-color var(--t),box-shadow var(--t); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline:none; border-color:var(--primary); box-shadow:0 0 0 3px rgba(26,58,92,.12); }
.form-textarea { height:110px; resize:vertical; min-height:80px; }
.form-select   { appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:right 1rem center; padding-right:2.5rem; cursor:pointer; }
.form-note  { font-size:.75rem; color:var(--text-muted); margin-top:.75rem; }
.form-success { display:none; background:#ecfdf5; border:1px solid #a7f3d0;
                border-radius:var(--r-md); padding:1rem 1.25rem; color:#065f46;
                font-weight:600; font-size:.9rem; margin-top:1rem; }


/* 16. CTA band
   ============================================================= */
.cta-band { background:linear-gradient(135deg,var(--accent) 0%,#d96010 100%);
            color:var(--white); text-align:center; padding:5rem 0; }
.cta-band h2 { font-size:clamp(1.5rem,3vw,2.5rem); font-weight:900; margin-bottom:1rem;
               letter-spacing:-.02em; }
.cta-band p  { font-size:1.1rem; margin-bottom:2.25rem; opacity:.9; max-width:560px; margin-left:auto; margin-right:auto; }
.cta-actions { display:flex; flex-wrap:wrap; justify-content:center; gap:1rem; }


/* 17. Footer
   ============================================================= */
.site-footer { background:var(--gray-900); color:rgba(255,255,255,.65);
               padding:5rem 0 2rem; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1.4fr; gap:3rem;
               margin-bottom:4rem; }
.footer-brand .logo-name { color:var(--white); }
.footer-brand .logo-sub  { color:rgba(255,255,255,.5); }
.footer-brand .logo-icon { background:var(--accent); }
.footer-about { font-size:.875rem; line-height:1.7; color:rgba(255,255,255,.55);
                margin-top:1rem; }
.footer-kvk   { font-size:.75rem; color:rgba(255,255,255,.35); margin-top:.75rem; }
.footer-col h4 { font-size:.75rem; font-weight:800; text-transform:uppercase;
                 letter-spacing:.1em; color:var(--white); margin-bottom:1.25rem; }
.footer-links  { display:flex; flex-direction:column; gap:.7rem; }
.footer-links a{ font-size:.875rem; color:rgba(255,255,255,.55); transition:color var(--t); }
.footer-links a:hover { color:var(--white); }
.fcontact-item { display:flex; align-items:flex-start; gap:.75rem; font-size:.875rem;
                 color:rgba(255,255,255,.55); margin-bottom:1rem; }
.fcontact-item svg { color:var(--accent); flex-shrink:0; margin-top:2px; }
.fcontact-item a   { color:rgba(255,255,255,.75); transition:color var(--t); }
.fcontact-item a:hover { color:var(--white); }
.footer-bottom { border-top:1px solid rgba(255,255,255,.1); padding-top:1.5rem;
                 display:flex; flex-wrap:wrap; justify-content:space-between;
                 align-items:center; gap:1rem; }
.footer-copy   { font-size:.75rem; color:rgba(255,255,255,.35); }
.footer-legal  { display:flex; gap:1.5rem; }
.footer-legal a{ font-size:.75rem; color:rgba(255,255,255,.35); transition:color var(--t); }
.footer-legal a:hover { color:rgba(255,255,255,.7); }


/* 18. WhatsApp float
   ============================================================= */
.wa-float { position:fixed; bottom:1.5rem; right:1.5rem; z-index:999;
            width:58px; height:58px; background:#25d366; border-radius:50%;
            display:flex; align-items:center; justify-content:center;
            box-shadow:0 4px 16px rgba(37,211,102,.5); text-decoration:none;
            transition:all var(--t); }
.wa-float:hover { transform:scale(1.1); box-shadow:0 6px 20px rgba(37,211,102,.6); }


/* 19. Page hero (inner pages)
   ============================================================= */
.page-hero { background:linear-gradient(135deg,#0a0a0a 0%,#111111 100%);
             color:var(--white); padding:4rem 0; text-align:center; }
.page-hero h1 { font-size:clamp(1.75rem,4vw,3rem); font-weight:900; letter-spacing:-.025em;
                margin-bottom:1rem; }
.page-hero p  { font-size:1.1rem; color:rgba(255,255,255,.78); max-width:620px; margin:0 auto; }
.breadcrumb   { font-size:.8rem; color:rgba(255,255,255,.55); margin-bottom:.75rem; }
.breadcrumb a { color:rgba(255,255,255,.55); }
.breadcrumb a:hover { color:var(--white); }
.breadcrumb span { margin:0 .4rem; }


/* 20. Utility helpers
   ============================================================= */
.text-center { text-align:center; }
.mt-8  { margin-top:2rem; }
.mt-10 { margin-top:2.5rem; }
.mt-12 { margin-top:3rem; }
.mb-6  { margin-bottom:1.5rem; }
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px;
           overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
.divider { border:none; border-top:1px solid var(--border); margin:2rem 0; }


/* 21a. Photo strip (3-across between sections)
   ============================================================= */
.photo-strip { overflow:hidden; line-height:0; }
.photo-strip-inner { display:grid; grid-template-columns:repeat(3,1fr); height:300px; }
.photo-strip-inner img { width:100%; height:100%; object-fit:cover; object-position:center; display:block; }

/* 21b. About-section real photo
   ============================================================= */
.owner-photo-img { width:100%; height:360px; object-fit:cover; object-position:top center;
                   border-radius:var(--r-xl); box-shadow:var(--shadow-xl); display:block; }
.owner-photo-frame.has-photo { background:none; border:none; padding:0; min-height:0; }

/* 21. Responsive
   ============================================================= */
@media (max-width:1024px) {
  .services-grid { grid-template-columns:repeat(2,1fr); }
  .usp-grid      { grid-template-columns:repeat(2,1fr); }
  .footer-grid   { grid-template-columns:1fr 1fr; }
  .contact-layout{ grid-template-columns:1fr; }
}

@media (max-width:768px) {
  :root { --pad:1rem; }
  .section { padding:3.5rem 0; }
  .site-nav         { display:none; }
  .header-actions .btn { display:none; }
  .menu-btn         { display:flex; }
  .hero             { padding:3.5rem 0; min-height:auto; }
  .hero-inner       { grid-template-columns:1fr; gap:2rem; }
  .hero-photo       { order:-1; }
  .hero-photo img   { max-height:280px; border-radius:1rem; }
  .hero-actions     { flex-direction:column; }
  .hero-actions .btn{ width:100%; justify-content:center; }
  .photo-strip-inner{ height:180px; }
  .trust-items      { gap:1rem; justify-content:flex-start; }
  .trust-item       { flex:1 1 calc(50% - .5rem); min-width:140px; }
  .stats-grid       { grid-template-columns:1fr 1fr; }
  .stat-cell        { border-right:none; border-bottom:1px solid rgba(255,255,255,.08); }
  .services-grid    { grid-template-columns:1fr; }
  .usp-grid         { grid-template-columns:1fr 1fr; gap:1rem; }
  .pricing-grid     { grid-template-columns:1fr; }
  .testimonials-grid{ grid-template-columns:1fr; }
  .footer-grid      { grid-template-columns:1fr; gap:2rem; }
  .footer-bottom    { flex-direction:column; text-align:center; }
  .form-row         { grid-template-columns:1fr; }
  .lang-switcher    { top:auto; bottom:5.5rem; right:1rem; }
}

@media (max-width:480px) {
  .usp-grid   { grid-template-columns:1fr; }
  .trust-item { flex:1 1 100%; }
  .stats-grid { grid-template-columns:1fr; }
  .hero h1    { font-size:1.9rem; }
  .areas-grid { grid-template-columns:repeat(auto-fill,minmax(110px,1fr)); }
}

@media print {
  .site-header,.hero,.wa-float,.lang-switcher,.menu-btn,.mobile-nav,.cta-band { display:none !important; }
}

/* Focus accessibility */
:focus-visible { outline:3px solid var(--accent); outline-offset:2px; border-radius:var(--r-sm); }


/* =============================================================
   MODERNIZATION & TRUST LAYER  (appended)
   ============================================================= */

/* --- Refined shadows --- */
:root {
  --shadow-card:       0 1px 3px rgba(0,0,0,.04), 0 6px 14px rgba(0,0,0,.06);
  --shadow-card-hover: 0 4px 10px rgba(0,0,0,.06), 0 18px 36px rgba(0,0,0,.10);
  --r-2xl: 1.5rem;
  --warm-bg: #faf8f5;
}

/* --- Cards: softer look, bigger radius, nicer hover --- */
.service-card {
  border-radius: var(--r-2xl) !important;
  box-shadow: var(--shadow-card) !important;
  border-color: var(--gray-100) !important;
}
.service-card:hover {
  box-shadow: var(--shadow-card-hover) !important;
  transform: translateY(-6px) !important;
  border-color: rgba(26,58,92,.15) !important;
}

/* --- Pricing cards: nicer feel --- */
.pricing-card {
  border-radius: var(--r-2xl) !important;
}
.pricing-card.featured {
  box-shadow: 0 6px 14px rgba(249,115,22,.15), 0 20px 40px rgba(249,115,22,.08) !important;
}

/* --- Better button hover: scale + glow --- */
.btn-primary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 22px rgba(249,115,22,.38) !important;
}
.btn-white:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(0,0,0,.15) !important;
}
.btn-ghost:hover {
  background: rgba(255,255,255,.14) !important;
  transform: translateY(-1px) !important;
}
.btn-outline:hover {
  transform: translateY(-1px) !important;
}

/* --- Hero: mesh gradient + warm glow --- */
.hero::before {
  background:
    radial-gradient(ellipse at 75% 40%, rgba(249,115,22,.16) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(45,94,150,.18) 0%, transparent 50%) !important;
}

/* Hero trust pills (replaces old hero-meta) */
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2.5rem;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--r-full);
  padding: .35rem .9rem;
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,.88);
  backdrop-filter: blur(4px);
}
.hero-pill svg { color: var(--accent); flex-shrink: 0; }

/* Hero badge: family feel */
.hero-badge {
  background: rgba(249,115,22,.15) !important;
  border-color: rgba(249,115,22,.35) !important;
  font-size: .82rem !important;
}

/* --- Testimonials: large decorative quote mark --- */
.tcard {
  overflow: hidden;
}
.tcard::before {
  content: '\201C';
  position: absolute;
  top: .5rem;
  left: 1.25rem;
  font-size: 5.5rem;
  color: rgba(26,58,92,.06);
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.tcard-text {
  padding-top: .35rem;
}
.tcard {
  background: #fffcf9 !important;
}

/* === ABOUT / FAMILY BUSINESS SECTION === */
.about-section {
  background: var(--warm-bg);
}
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4.5rem;
  align-items: center;
}
.about-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.owner-photo-frame {
  width: 100%;
  max-width: 300px;
  aspect-ratio: 4/5;
  background: linear-gradient(150deg, #0f2540 0%, #1a3a5c 60%, #1e507e 100%);
  border-radius: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  box-shadow: 0 20px 48px rgba(26,58,92,.22), 0 4px 12px rgba(26,58,92,.12);
  position: relative;
  overflow: hidden;
}
.owner-photo-frame::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 45%;
  background: linear-gradient(to top, rgba(249,115,22,.18), transparent);
  pointer-events: none;
}
.owner-photo-icon {
  width: 80px; height: 80px;
  background: rgba(255,255,255,.12);
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
}
.owner-photo-icon svg { color: rgba(255,255,255,.6); }
.owner-photo-hint {
  font-size: .72rem;
  color: rgba(255,255,255,.4);
  text-align: center;
  padding: 0 1.5rem;
  line-height: 1.5;
  position: relative; z-index: 1;
}
.years-badge-card {
  background: var(--primary);
  color: white;
  border-radius: var(--r-xl);
  padding: 1.1rem 1.5rem;
  text-align: center;
  width: 100%;
  max-width: 300px;
  box-shadow: var(--shadow-md);
}
.years-badge-card .yb-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: .2rem;
}
.years-badge-card .yb-label {
  font-size: .8rem;
  color: rgba(255,255,255,.7);
  font-weight: 600;
}
.family-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--r-full);
  padding: .55rem 1.1rem;
  font-size: .8rem;
  font-weight: 700;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.family-pill svg { color: var(--accent); }

/* About text side */
.about-text .section-title { text-align: left; margin-bottom: 1.25rem; }
.about-text p {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1rem;
}
.owner-promise {
  background: white;
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  font-size: .97rem;
  color: var(--text);
  font-style: italic;
  line-height: 1.75;
  box-shadow: var(--shadow-sm);
}
.owner-sig {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.owner-sig-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; color: white; font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(26,58,92,.25);
}
.owner-sig-name {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1.2;
}
.owner-sig-role {
  font-size: .78rem;
  color: var(--text-muted);
  margin-top: .15rem;
}
@media(max-width:768px) {
  .about-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-visual { flex-direction: row; flex-wrap: wrap; gap: 1rem; justify-content: center; }
  .owner-photo-frame { max-width: 200px; aspect-ratio: 1; }
  .years-badge-card { max-width: 200px; }
}

/* === GUARANTEE STRIP === */
.guarantee-strip {
  background: linear-gradient(135deg, #0d2240 0%, var(--primary) 100%);
  padding: 3rem 0;
}
.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}
.guarantee-item svg { color: var(--accent); margin-bottom: .75rem; }
.guarantee-item h4 {
  font-size: .95rem; font-weight: 800;
  color: white; margin-bottom: .3rem;
}
.guarantee-item p {
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  line-height: 1.5;
}

/* === Mobile header phone fix === */
@media (max-width:768px) {
  .header-phone { display:none; }
}
