/* ─── TOKENS ─────────────────────────────────────────── */
:root {
  --navy:        #0c1a2e;
  --navy-mid:    #152540;
  --navy-light:  #1e3256;
  --white:       #ffffff;
  --gray-50:     #f7f8fa;
  --gray-100:    #eef0f3;
  --gray-400:    #9aa3b2;
  --gray-600:    #5a6378;
  --orange:      #e07b10;
  --gold:        #c9930a;
  --orange-light:#f4a33a;
  --green-wa:    #25d366;
  --radius:      10px;
  --radius-lg:   18px;
  --shadow-sm:   0 2px 12px rgba(12,26,46,.08);
  --shadow-md:   0 6px 28px rgba(12,26,46,.13);
  --shadow-lg:   0 16px 48px rgba(12,26,46,.18);
  --transition:  .3s cubic-bezier(.4,0,.2,1);
  --font-head:   'Cormorant Garamond', Georgia, serif;
  --font-body:   'DM Sans', system-ui, sans-serif;
  --max-w:       1200px;
}

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

/* ─── UTILS ──────────────────────────────────────────── */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.eyebrow { display: inline-block; font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--orange); margin-bottom: 12px; }
.eyebrow-dark { color: var(--orange); }
.section-header { text-align: center; max-width: 600px; margin: 0 auto 64px; }
.section-header h2 { font-family: var(--font-head); font-size: clamp(2rem,4vw,2.8rem); font-weight: 600; line-height: 1.2; color: var(--navy); margin-bottom: 16px; }
.section-header h2 em { font-style: italic; color: var(--orange); }
.section-header p { color: var(--gray-600); font-size: 1.05rem; }
.section-header-light h2 { color: var(--white); }
.section-header-light p { color: rgba(255,255,255,.72); }

/* ─── BUTTONS ────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius); font-size: .9rem; font-weight: 500;
  letter-spacing: .02em; transition: var(--transition); white-space: nowrap; border: 2px solid transparent;
}
.btn-primary { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn-primary:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(224,123,16,.35); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.6); }
.btn-outline-light:hover { background: var(--white); color: var(--navy); }
.btn-full { width: 100%; justify-content: center; padding: 15px 28px; font-size: 1rem; }

/* ─── REVEAL ─────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ─── HEADER ─────────────────────────────────────────── */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  padding: 14px 0; background: transparent;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
#header.scrolled { background: var(--navy); padding: 10px 0; box-shadow: var(--shadow-md); }
.header-inner { display: flex; align-items: center; gap: 24px; }
.logo-img {
  height: 46px;
  width: auto;
  object-fit: contain;
  background: var(--white);
  border-radius: 8px;
  padding: 4px 10px;
  display: block;
}
#nav { display: flex; gap: 2px; margin-left: auto; }
#nav a { color: rgba(255,255,255,.82); font-size: .875rem; font-weight: 400; padding: 8px 13px; border-radius: 6px; transition: var(--transition); }
#nav a:hover, #nav a.active { color: var(--white); background: rgba(255,255,255,.1); }
.header-cta { margin-left: 8px; padding: 9px 20px; font-size: .84rem; }
#menu-toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; margin-left: auto; }
#menu-toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
#menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
#menu-toggle.open span:nth-child(2) { opacity: 0; }
#menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ─── MOBILE MENU ────────────────────────────────────── */
#mobile-menu {
  position: fixed; top: 0; right: -100%; width: min(320px,85vw);
  height: 100%; background: var(--navy); z-index: 950; padding: 80px 32px 40px;
  transition: right var(--transition); box-shadow: var(--shadow-lg);
}
#mobile-menu.open { right: 0; }
#mobile-menu nav { display: flex; flex-direction: column; gap: 4px; }
#mobile-menu nav a { color: rgba(255,255,255,.85); font-size: 1.1rem; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.08); transition: color var(--transition); }
#mobile-menu nav a:hover { color: var(--orange-light); }
#mobile-menu nav .btn { margin-top: 18px; justify-content: center; }
#overlay { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 940; opacity: 0; pointer-events: none; transition: opacity var(--transition); }
#overlay.active { opacity: 1; pointer-events: all; }

/* ─── HERO ───────────────────────────────────────────── */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center top; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(130deg, rgba(12,26,46,.95) 0%, rgba(12,26,46,.8) 50%, rgba(12,26,46,.5) 100%); }
.hero-layout { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center; padding: 120px 0 80px; }
.hero-content .eyebrow { color: var(--orange-light); }
.hero-content h1 { font-family: var(--font-head); font-size: clamp(2.4rem,5.5vw,3.8rem); font-weight: 600; color: var(--white); line-height: 1.1; margin: 12px 0 14px; }
.hero-content h1 em { font-style: italic; color: var(--orange-light); }
.hero-sub { color: var(--orange-light); font-size: .95rem; font-weight: 500; margin-bottom: 12px; letter-spacing: .02em; }
.hero-desc { color: rgba(255,255,255,.78); font-size: 1.05rem; max-width: 500px; margin-bottom: 36px; line-height: 1.75; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-photo { position: relative; }
.hero-photo img { width: 100%; height: 500px; object-fit: cover; object-position: top; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); border: 3px solid rgba(255,255,255,.1); }
.hero-scroll-hint { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 2; }
.hero-scroll-hint span { display: block; width: 24px; height: 38px; border: 2px solid rgba(255,255,255,.3); border-radius: 12px; position: relative; }
.hero-scroll-hint span::after { content: ''; position: absolute; top: 6px; left: 50%; transform: translateX(-50%); width: 4px; height: 8px; background: var(--orange); border-radius: 2px; animation: scrollHint 1.8s ease infinite; }
@keyframes scrollHint { 0%,100%{top:6px;opacity:1} 80%{top:18px;opacity:0} }

/* ─── TRUST BAR ──────────────────────────────────────── */
.trust-bar { background: var(--navy); border-top: 1px solid rgba(255,255,255,.07); }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.trust-item { display: flex; align-items: center; gap: 12px; padding: 22px 28px; border-right: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.85); font-size: .88rem; font-weight: 500; }
.trust-item:last-child { border-right: none; }
.trust-item svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--orange); }

/* ─── SERVICES OVERVIEW ──────────────────────────────── */
.services-overview { background: var(--gray-50); }
.overview-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.overview-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 32px 24px;
  text-align: center; border: 1px solid var(--gray-100); transition: var(--transition); position: relative; overflow: hidden;
}
.overview-card::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--orange); transform: scaleX(0); transition: transform var(--transition); }
.overview-card:hover { border-color: transparent; box-shadow: var(--shadow-md); transform: translateY(-5px); }
.overview-card:hover::before { transform: scaleX(1); }
.ov-icon { width: 60px; height: 60px; background: rgba(224,123,16,.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; color: var(--orange); transition: var(--transition); }
.ov-icon svg { width: 24px; height: 24px; }
.overview-card:hover .ov-icon { background: var(--orange); color: var(--white); }
.overview-card h3 { font-family: var(--font-head); font-size: 1.2rem; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.overview-card p { font-size: .875rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 18px; }
.learn-more { font-size: .85rem; font-weight: 600; color: var(--orange); transition: color var(--transition); }
.learn-more:hover { color: var(--gold); }

/* ─── DETAIL SERVICES GRID ───────────────────────────── */
.services-detail { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(300px,1fr)); gap: 22px; }
.service-card {
  background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius-lg); padding: 28px 24px;
  transition: var(--transition); position: relative; overflow: hidden;
}
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform var(--transition); }
.service-card:hover { border-color: transparent; box-shadow: var(--shadow-md); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }
.sc-icon { width: 46px; height: 46px; background: rgba(224,123,16,.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; color: var(--orange); transition: var(--transition); }
.sc-icon svg { width: 20px; height: 20px; }
.service-card:hover .sc-icon { background: var(--orange); color: var(--white); }
.service-card h3 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.service-card p { font-size: .875rem; color: var(--gray-600); line-height: 1.7; }
.services-cta { text-align: center; margin-top: 48px; }

/* ─── ABOUT ──────────────────────────────────────────── */
.about { background: var(--gray-50); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.about-images { position: relative; padding-bottom: 32px; }
.about-img-main img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: top; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.about-img-accent { position: absolute; bottom: 0; right: -24px; width: 50%; border: 5px solid var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.about-img-accent img { width: 100%; aspect-ratio: 1; object-fit: cover; object-position: center; }
.about-badge { position: absolute; bottom: 48px; left: -16px; background: var(--orange); color: var(--white); padding: 10px 18px; border-radius: 50px; display: flex; align-items: center; gap: 8px; font-size: .82rem; font-weight: 600; box-shadow: var(--shadow-md); }
.about-badge svg { width: 16px; height: 16px; }
.about-text h2 { font-family: var(--font-head); font-size: clamp(2rem,3.5vw,2.7rem); font-weight: 600; line-height: 1.2; margin-bottom: 16px; }
.about-text h2 em { font-style: italic; color: var(--orange); }
.about-text .lead { font-size: 1.05rem; font-weight: 500; color: var(--navy); margin-bottom: 14px; line-height: 1.7; }
.about-text > p { color: var(--gray-600); margin-bottom: 14px; line-height: 1.75; }
.founder-box { display: flex; gap: 16px; align-items: flex-start; background: var(--white); border-radius: var(--radius-lg); padding: 22px; margin: 28px 0; border-left: 4px solid var(--orange); box-shadow: var(--shadow-sm); }
.founder-photo { width: 72px; height: 72px; border-radius: 50%; overflow: hidden; flex-shrink: 0; border: 3px solid var(--orange); }
.founder-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.founder-info h4 { font-family: var(--font-head); font-size: 1.15rem; font-weight: 700; color: var(--navy); }
.founder-info span { font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--orange); display: block; margin-bottom: 8px; }
.founder-info p { font-size: .875rem; color: var(--gray-600); line-height: 1.7; }

/* ─── WHY US ─────────────────────────────────────────── */
.why-us { position: relative; padding: 96px 0; overflow: hidden; }
.why-bg-img { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(.2) saturate(.3); }
.why-overlay { position: absolute; inset: 0; background: linear-gradient(135deg,rgba(12,26,46,.94) 0%,rgba(30,50,86,.88) 100%); }
.why-content { position: relative; z-index: 2; }
.why-content .section-header { margin-bottom: 52px; }
.why-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(250px,1fr)); gap: 22px; }
.why-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg); padding: 30px 26px; transition: var(--transition); }
.why-card:hover { background: rgba(255,255,255,.1); border-color: var(--orange); transform: translateY(-4px); }
.why-num { font-family: var(--font-head); font-size: 2.6rem; font-weight: 700; color: var(--orange); opacity: .55; line-height: 1; margin-bottom: 14px; }
.why-card h3 { font-family: var(--font-head); font-size: 1.2rem; font-weight: 600; color: var(--white); margin-bottom: 10px; }
.why-card p { font-size: .875rem; color: rgba(255,255,255,.65); line-height: 1.7; }

/* ─── PROCESS ────────────────────────────────────────── */
.process-section { background: var(--gray-50); }
.process-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; position: relative; max-width: 860px; margin: 0 auto 48px; }
.process-step { text-align: center; padding: 0 28px; position: relative; }
.step-num { width: 64px; height: 64px; border-radius: 50%; background: var(--orange); color: var(--white); font-family: var(--font-head); font-size: 1.6rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 22px; position: relative; z-index: 2; box-shadow: 0 6px 20px rgba(224,123,16,.4); }
.step-connector { position: absolute; top: 32px; left: calc(50% + 32px); right: -50%; height: 2px; background: linear-gradient(90deg,var(--orange),rgba(224,123,16,.2)); }
.step-connector.last { display: none; }
.process-step h3 { font-family: var(--font-head); font-size: 1.25rem; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.process-step p { font-size: .875rem; color: var(--gray-600); line-height: 1.7; }
.process-cta { text-align: center; }

/* ─── TESTIMONIALS ───────────────────────────────────── */
.testimonials-section { background: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testi-card { background: var(--gray-50); border-radius: var(--radius-lg); padding: 32px 28px; border: 1px solid var(--gray-100); transition: var(--transition); position: relative; }
.testi-card::before { content: '\201C'; position: absolute; top: 16px; right: 24px; font-family: var(--font-head); font-size: 5rem; color: var(--orange); opacity: .15; line-height: 1; }
.testi-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: rgba(224,123,16,.2); }
.testi-stars { color: var(--orange); font-size: 1.1rem; letter-spacing: 3px; margin-bottom: 16px; }
.testi-card > p { font-size: .92rem; color: var(--gray-600); line-height: 1.75; font-style: italic; margin-bottom: 22px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--orange); color: var(--white); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; flex-shrink: 0; }
.testi-author strong { display: block; font-size: .9rem; color: var(--navy); }
.testi-author span { font-size: .8rem; color: var(--gray-400); }

/* ─── CTA SECTION ────────────────────────────────────── */
.cta-section { position: relative; background: var(--navy-mid); padding: 80px 0; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: -40%; right: -5%; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(224,123,16,.15) 0%, transparent 70%); }
.cta-overlay { position: absolute; inset: 0; background: linear-gradient(135deg,rgba(12,26,46,.5) 0%,transparent 100%); }
.cta-content { position: relative; z-index: 2; text-align: center; max-width: 700px; margin: 0 auto; }
.cta-content h2 { font-family: var(--font-head); font-size: clamp(1.8rem,3.5vw,2.6rem); font-weight: 600; color: var(--white); line-height: 1.25; margin-bottom: 16px; }
.cta-content h2 em { font-style: italic; color: var(--orange-light); }
.cta-content p { color: rgba(255,255,255,.72); font-size: 1.05rem; margin-bottom: 36px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ─── GALLERY ────────────────────────────────────────── */
.gallery-section { background: var(--gray-50); }
.gallery-filters { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }
.filter-btn { padding: 9px 22px; border-radius: 50px; font-size: .85rem; font-weight: 500; border: 2px solid var(--gray-100); color: var(--gray-600); background: var(--white); transition: var(--transition); }
.filter-btn:hover { border-color: var(--orange); color: var(--orange); }
.filter-btn.active { background: var(--orange); border-color: var(--orange); color: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(260px,1fr)); gap: 16px; }
.gallery-item { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 1; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(0deg,rgba(12,26,46,.8) 0%,transparent 60%); display: flex; align-items: flex-end; padding: 18px; opacity: 0; transition: var(--transition); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: var(--white); font-size: .84rem; font-weight: 500; }
.gallery-item.hidden { display: none; }

/* ─── FAQ ────────────────────────────────────────────── */
.faq-section { background: var(--white); }
.faq-layout { display: grid; grid-template-columns: 340px 1fr; gap: 80px; align-items: start; }
.faq-header { position: sticky; top: 100px; }
.faq-header h2 { font-family: var(--font-head); font-size: clamp(1.8rem,3vw,2.4rem); font-weight: 600; line-height: 1.25; margin-bottom: 14px; }
.faq-header h2 em { font-style: italic; color: var(--orange); }
.faq-header p { color: var(--gray-600); font-size: .95rem; line-height: 1.75; margin-bottom: 24px; }
.faq-list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--gray-100); }
.faq-item { border-bottom: 1px solid var(--gray-100); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 0; font-size: .95rem; font-weight: 500; color: var(--navy); text-align: left; transition: color var(--transition); }
.faq-q:hover { color: var(--orange); }
.faq-q svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform var(--transition); color: var(--orange); }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s ease; }
.faq-a p { padding: 0 0 20px; font-size: .9rem; color: var(--gray-600); line-height: 1.75; }
.faq-item.open .faq-a { max-height: 300px; }

/* ─── CONTACT ────────────────────────────────────────── */
.contact-section { background: var(--gray-50); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-info h2 { font-family: var(--font-head); font-size: clamp(1.8rem,3vw,2.4rem); font-weight: 600; line-height: 1.25; margin-bottom: 12px; }
.contact-info h2 em { font-style: italic; color: var(--orange); }
.contact-info > p { color: var(--gray-600); margin-bottom: 32px; line-height: 1.75; }
.contact-details { display: flex; flex-direction: column; gap: 18px; margin-bottom: 32px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-item svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--orange); margin-top: 2px; }
.contact-item strong { display: block; font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--gray-400); margin-bottom: 3px; }
.contact-item a { display: block; color: var(--navy); font-size: .93rem; transition: color var(--transition); }
.contact-item a:hover { color: var(--orange); }
.wa-direct { gap: 10px; }
.contact-form-wrap { background: var(--white); border-radius: var(--radius-lg); padding: 36px 32px; box-shadow: var(--shadow-md); }
.contact-form-wrap h3 { font-family: var(--font-head); font-size: 1.5rem; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.contact-form-wrap > p { font-size: .88rem; color: var(--gray-600); margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .07em; color: var(--gray-600); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 15px; border: 1.5px solid var(--gray-100); border-radius: var(--radius);
  font-family: var(--font-body); font-size: .92rem; color: var(--navy); background: var(--gray-50);
  transition: border-color var(--transition), box-shadow var(--transition); outline: none; resize: vertical;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--orange); background: var(--white); box-shadow: 0 0 0 3px rgba(224,123,16,.12); }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239aa3b2' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 16px; padding-right: 40px; }

/* ─── FOOTER ─────────────────────────────────────────── */
.footer { background: var(--navy); color: rgba(255,255,255,.65); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 44px; }
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
  background: var(--white);
  border-radius: 8px;
  padding: 5px 12px;
  display: block;
}
.footer-brand > p { font-size: .875rem; line-height: 1.7; max-width: 280px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.footer-social a:hover { border-color: var(--orange); color: var(--orange); }
.footer-social a svg { width: 15px; height: 15px; }
.footer-links { display: flex; flex-direction: column; }
.footer-links h4, .footer-contact h4 { font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--white); margin-bottom: 18px; }
.footer-links a { font-size: .875rem; padding: 5px 0; color: rgba(255,255,255,.58); transition: color var(--transition); border-bottom: 1px solid rgba(255,255,255,.04); }
.footer-links a:hover { color: var(--orange-light); }
.footer-contact p { margin-bottom: 9px; font-size: .875rem; }
.footer-contact a { color: rgba(255,255,255,.58); transition: color var(--transition); }
.footer-contact a:hover { color: var(--orange-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); margin-top: 52px; padding: 18px 24px; text-align: center; }
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.32); }

/* ─── FLOATING WHATSAPP ──────────────────────────────── */
.wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 800; width: 56px; height: 56px; border-radius: 50%; background: var(--green-wa); color: var(--white); display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 24px rgba(37,211,102,.45); transition: var(--transition); }
.wa-float svg { width: 28px; height: 28px; }
.wa-float:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,.55); }

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1100px) {
  .overview-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 960px) {
  .hero-layout { grid-template-columns: 1fr; }
  .hero-photo { display: none; }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .trust-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.08); }
  .trust-item:nth-last-child(-n+2) { border-bottom: none; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-accent { display: none; }
  .about-badge { display: none; }
  .about-img-main img { aspect-ratio: 16/9; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .faq-header { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 36px; }
  .step-connector { display: none; }
}
@media (max-width: 768px) {
  #nav, .header-cta { display: none; }
  #menu-toggle { display: flex; }
  .section { padding: 64px 0; }
  .overview-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .trust-item:last-child { border-bottom: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px 20px; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
