/* =====================================================
   DUBAI ROOF SEAL — home.css
   Loaded ONLY on the homepage (index.php).
   Contains all homepage-specific styles.
   global.css must be loaded first.
   ===================================================== */

/* ── Section commons ── */
section { padding: 90px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-desc { color: var(--light-text); font-size: 1.05rem; line-height: 1.7; max-width: 620px; }
.section-head { margin-bottom: 52px; }
.section-head.center { text-align: center; }
.section-head.center .section-desc { margin: 0 auto; }

/* ── Hero ── */
#home {
  background: linear-gradient(135deg, #0d2540 0%, var(--navy) 60%, #1a4a6e 100%);
  min-height: 100vh; display: flex; align-items: center; padding-top: 104px;
  position: relative; overflow: hidden;
}
#home::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 80% at 20% 50%, rgba(15,110,86,.18) 0%, transparent 60%),
              radial-gradient(ellipse 60% 60% at 80% 20%, rgba(232,160,32,.1) 0%, transparent 50%);
  pointer-events: none;
  animation: heroGlow 8s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  0%   { opacity: .5; transform: scale(1); }
  100% { opacity: 1;  transform: scale(1.15); }
}
#home::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(2px 2px at 15% 35%, rgba(232,160,32,.35) 50%, transparent 51%),
    radial-gradient(2px 2px at 75% 25%, rgba(255,255,255,.2) 50%, transparent 51%),
    radial-gradient(1.5px 1.5px at 40% 70%, rgba(232,160,32,.25) 50%, transparent 51%),
    radial-gradient(2px 2px at 85% 65%, rgba(255,255,255,.15) 50%, transparent 51%),
    radial-gradient(1px 1px at 55% 15%, rgba(232,160,32,.3) 50%, transparent 51%),
    radial-gradient(1.5px 1.5px at 25% 85%, rgba(255,255,255,.18) 50%, transparent 51%);
  animation: heroDots 12s ease-in-out infinite alternate;
}
@keyframes heroDots {
  0%   { transform: translateY(0); opacity: .6; }
  100% { transform: translateY(-25px); opacity: 1; }
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; padding: 60px 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-block;
  background: rgba(232,160,32,.15); border: 1px solid rgba(232,160,32,.4);
  color: var(--gold); font-size: .75rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 50px; margin-bottom: 20px;
  animation: fadeSlideUp .6s ease .1s both;
}
.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem,4vw,3rem); font-weight: 800;
  color: var(--white); line-height: 1.15; margin-bottom: 20px;
  animation: fadeSlideUp .7s ease .25s both;
  word-break: break-word; overflow-wrap: break-word;
}
.hero-title span { color: var(--gold); }
.hero-desc {
  color: rgba(255,255,255,.78); font-size: 1.05rem; line-height: 1.7;
  margin-bottom: 36px;
  animation: fadeSlideUp .7s ease .4s both;
}
.hero-btns {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: fadeSlideUp .7s ease .55s both;
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.btn-primary {
  background: var(--gold); color: var(--navy);
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  padding: 14px 28px; border-radius: 8px; font-size: .95rem;
  transition: background .2s, transform .15s, box-shadow .2s;
  border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: #d4911a; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,160,32,.35); }
.hero-trust {
  display: flex; gap: 28px; margin-top: 40px; flex-wrap: wrap;
  animation: fadeSlideUp .7s ease .7s both;
}
.trust-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.75); font-size: .85rem; }
.trust-icon {
  width: 36px; height: 36px; background: rgba(255,255,255,.1);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.hero-card-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  animation: fadeSlideUp .8s ease .4s both;
}
.hero-card {
  background: rgba(255,255,255,.07); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px; padding: 22px 18px; text-align: center;
  transition: transform .25s, background .25s, border-color .25s;
}
.hero-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.12); border-color: rgba(232,160,32,.3); }
.hero-card .hc-icon { font-size: 2rem; margin-bottom: 10px; }
.hero-card .hc-label { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--gold); font-size: 1.1rem; margin-bottom: 4px; }
.hero-card .hc-desc { color: rgba(255,255,255,.7); font-size: .8rem; }

/* ── Trust bar ── */
.trust-bar { background: var(--gold); padding: 14px 0; }
.trust-bar-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; align-items: center;
}
.tb-item {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  color: var(--navy); font-size: .88rem;
  display: flex; align-items: center; gap: 8px;
}

/* ── Services ── */
#services { background: var(--light-bg); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.service-card {
  background: var(--white); border-radius: 12px;
  padding: 32px 26px; border: 1px solid var(--border);
  transition: transform .2s, box-shadow .2s; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--teal));
  transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(26,58,92,.12); }
.sc-icon { width: 52px; height: 52px; background: var(--light-bg); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 18px; }
.sc-title { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1rem; color: var(--navy); margin-bottom: 10px; }
.sc-desc { color: var(--light-text); font-size: .88rem; line-height: 1.6; margin-bottom: 16px; }
.sc-price {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: .78rem; color: var(--teal);
  background: rgba(15,110,86,.08); border: 1px solid rgba(15,110,86,.2);
  border-radius: 20px; padding: 4px 10px;
}
.sc-price::before { content: '✓'; font-weight: 900; color: var(--teal); }

/* ── Gallery (Our Work) ── */
.gallery-track-wrap { width: 100%; overflow: hidden; position: relative; }
.gallery-track-wrap::before,
.gallery-track-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.gallery-track-wrap::before { left: 0; background: linear-gradient(to right, var(--navy), transparent); }
.gallery-track-wrap::after  { right: 0; background: linear-gradient(to left, var(--navy), transparent); }
.gallery-track { display: flex; gap: 16px; width: max-content; animation: galleryScroll 40s linear infinite; }
.gallery-track:hover { animation-play-state: paused; }
.gallery-track img {
  height: 260px; width: auto; border-radius: 12px; object-fit: cover; flex-shrink: 0;
  box-shadow: 0 8px 32px rgba(0,0,0,.4); transition: transform .3s, box-shadow .3s;
}
.gallery-track img:hover { transform: scale(1.04); box-shadow: 0 16px 48px rgba(0,0,0,.6); }
@keyframes galleryScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Why Us / About ── */
#about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-text .section-desc { max-width: 100%; }
.about-text p { color: var(--light-text); font-size: .97rem; line-height: 1.75; margin-bottom: 16px; }
.usp-list { margin: 28px 0; display: flex; flex-direction: column; gap: 14px; }
.usp-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 18px; background: var(--light-bg);
  border-radius: 10px; border-left: 4px solid var(--teal);
}
.usp-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.usp-title { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .92rem; color: var(--navy); margin-bottom: 3px; }
.usp-detail { font-size: .83rem; color: var(--light-text); }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.stat-box { background: var(--navy); border-radius: 14px; padding: 28px 22px; text-align: center; color: var(--white); }
.stat-box .stat-num { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 2.2rem; color: var(--gold); line-height: 1; }
.stat-box .stat-label { font-size: .82rem; color: rgba(255,255,255,.75); margin-top: 6px; line-height: 1.4; }
.stat-box.teal-box { background: var(--teal); }

/* ── How It Works ── */
.how-section { background: var(--light-bg); }
.steps-row { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 0; position: relative; }
.step { text-align: center; padding: 32px 20px; position: relative; }
.step:not(:last-child)::after { content: '→'; position: absolute; right: 0; top: 50%; transform: translateY(-50%); color: var(--gold); font-size: 1.4rem; font-weight: bold; }
.step-num { width: 52px; height: 52px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.1rem; color: var(--gold); margin: 0 auto 14px; }
.step-title { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .9rem; color: var(--navy); margin-bottom: 8px; }
.step-desc { font-size: .82rem; color: var(--light-text); line-height: 1.5; }

/* ── Contact ── */
#contact { background: var(--navy); }
#contact .section-label { color: var(--gold); }
#contact .section-title { color: var(--white); }
#contact .section-desc { color: rgba(255,255,255,.7); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.contact-card { display: flex; align-items: center; gap: 16px; background: rgba(255,255,255,.08); border-radius: 10px; padding: 18px 20px; border: 1px solid rgba(255,255,255,.12); }
.contact-card-icon { width: 44px; height: 44px; background: var(--gold); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.cc-label { font-size: .75rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: 1px; }
.cc-value { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--white); font-size: .95rem; }
.hours-box { background: rgba(255,255,255,.05); border-radius: 10px; padding: 20px 22px; border: 1px solid rgba(255,255,255,.1); margin-top: 4px; }
.hours-title { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--gold); font-size: .85rem; margin-bottom: 10px; }
.hours-row { display: flex; justify-content: space-between; margin-bottom: 6px; }
.hours-day { font-size: .83rem; color: rgba(255,255,255,.65); }
.hours-time { font-size: .83rem; color: var(--white); font-weight: 600; }

/* ── Contact Form ── */
.contact-form { background: var(--white); border-radius: 16px; padding: 40px 36px; }
.form-title { font-family: 'Montserrat', sans-serif; font-weight: 800; color: var(--navy); font-size: 1.3rem; margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: .82rem; font-weight: 600; color: var(--dark-text); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-size: .92rem; font-family: inherit; color: var(--dark-text);
  background: #fff; transition: border-color .2s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--navy); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit {
  width: 100%; background: var(--navy); color: var(--white);
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: .95rem; padding: 14px; border-radius: 8px;
  border: none; cursor: pointer; transition: background .2s; margin-top: 6px;
}
.form-submit:hover { background: #0f2339; }
.form-note { font-size: .78rem; color: var(--light-text); margin-top: 10px; text-align: center; }

/* ── FAQ ── */
#faq { background: var(--light-bg); }
.faq-layout { display: grid; grid-template-columns: 1fr 1.7fr; gap: 64px; align-items: start; }
.faq-sidebar { position: sticky; top: 120px; }
.faq-sidebar-title { font-family: 'Montserrat', sans-serif; font-size: 1.8rem; font-weight: 800; color: var(--navy); line-height: 1.2; margin-bottom: 16px; }
.faq-sidebar-title span { color: var(--gold); }
.faq-sidebar-desc { color: var(--light-text); font-size: .95rem; line-height: 1.75; margin-bottom: 28px; }
.faq-cta-box { background: var(--navy); border-radius: 16px; padding: 24px; }
.faq-cta-box p { color: rgba(255,255,255,.75); font-size: .85rem; line-height: 1.6; margin-bottom: 16px; }
.faq-cta-box .faq-wa-btn { display: flex; align-items: center; gap: 8px; background: #25d366; color: #fff; font-weight: 700; font-size: .88rem; padding: 12px 18px; border-radius: 8px; width: 100%; justify-content: center; transition: background .2s; }
.faq-cta-box .faq-wa-btn:hover { background: #1ebe5d; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid rgba(10,30,55,.09); }
.faq-item:first-child { border-top: 1px solid rgba(10,30,55,.09); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer; text-align: left;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .95rem; color: var(--navy);
  padding: 20px 4px; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  transition: color .2s;
}
.faq-q:hover, .faq-q.open { color: var(--teal); }
.faq-q::after { content: '+'; font-size: 1.4rem; font-weight: 400; flex-shrink: 0; transition: transform .3s; }
.faq-q.open::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-a.open { max-height: 400px; }
.faq-a p { padding: 0 4px 20px; font-size: .92rem; color: var(--light-text); line-height: 1.7; }

/* ── Photo images ── */
.hero-img-wrap {
  position: relative; border-radius: 16px; overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.45); animation: fadeSlideUp .8s ease .4s both; height: 480px;
}
.hero-img-wrap > img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.hero-img-badges { position: absolute; bottom: 0; left: 0; right: 0; display: grid; grid-template-columns: 1fr 1fr; }
.hero-img-badge {
  background: rgba(10,22,44,.88); backdrop-filter: blur(8px);
  padding: 13px 10px; text-align: center;
  border-top: 1px solid rgba(255,255,255,.1); border-right: 1px solid rgba(255,255,255,.07);
  transition: background .2s;
}
.hero-img-badge:hover { background: rgba(10,22,44,.97); }
.hero-img-badge .hib-icon { font-size: 1.3rem; }
.hero-img-badge .hib-label { font-family:'Montserrat',sans-serif; font-weight:700; color:var(--gold); font-size:.8rem; margin:4px 0 2px; }
.hero-img-badge .hib-desc { color:rgba(255,255,255,.6); font-size:.67rem; line-height:1.3; }

.photo-strip { display:grid; grid-template-columns:1fr 1fr 1fr; height:310px; gap:3px; overflow:hidden; }
.photo-strip-item { overflow:hidden; }
.photo-strip-item img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .5s ease; }
.photo-strip-item:hover img { transform:scale(1.05); }

.about-photo { border-radius:12px; overflow:hidden; margin-bottom:20px; box-shadow:0 8px 32px rgba(0,0,0,.13); }
.about-photo img { width:100%; height:250px; object-fit:cover; object-position:center top; display:block; }

.photo-banner { position:relative; height:400px; overflow:hidden; }
.photo-banner > img { width:100%; height:100%; object-fit:cover; object-position:center; display:block; }
.photo-banner-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to right,rgba(10,22,44,.84) 0%,rgba(10,22,44,.42) 55%,rgba(10,22,44,.08) 100%);
  display:flex; align-items:center;
}
.photo-banner-text { max-width:520px; padding: 0 24px; }

.how-flex { display:grid; grid-template-columns:1fr 400px; gap:60px; align-items:start; }
.how-img { border-radius:14px; overflow:hidden; box-shadow:0 12px 40px rgba(0,0,0,.13); position:sticky; top:120px; }
.how-img img { width:100%; height:480px; object-fit:cover; display:block; }

.proof-strip { display:grid; grid-template-columns:1fr 1fr; gap:3px; height:260px; overflow:hidden; }
.proof-strip-item { overflow:hidden; position:relative; }
.proof-strip-item img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .5s; }
.proof-strip-item:hover img { transform:scale(1.04); }
.proof-strip-item.wide { grid-column:span 2; height:300px; }

/* ── Services intro image ── */
.services-intro-img { width:100%; border-radius:12px; overflow:hidden; }

/* ── Areas ── */
.areas-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px,1fr)); gap: 10px; }
.area-pill {
  background: var(--white); border: 1px solid var(--border); border-radius: 8px;
  padding: 12px 10px; text-align: center; font-size: .82rem; font-weight: 600;
  color: var(--navy); transition: background .2s, color .2s, border-color .2s;
}
.area-pill:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ── Responsive ── */
@media (max-width: 960px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .faq-layout { grid-template-columns: 1fr; gap: 32px; }
  .faq-sidebar { position: static; }
  .photo-strip { height:220px; grid-template-columns:1fr 1fr; }
  .photo-strip-item:nth-child(3) { display:none; }
  .how-flex { grid-template-columns:1fr; gap:0; }
  .how-img { display:none; }
  .photo-banner { height:320px; }
  .hero-img-wrap { height:340px; }
  .proof-strip-item.wide { height:220px; }
  .services-intro-img { height:220px !important; }
}
@media (max-width: 768px) {
  .gallery-track img { height: 180px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 40px 24px; }
  .hero-card-grid { grid-template-columns: 1fr 1fr; }
  .hero-img-wrap { display: none; }
  .trust-bar-inner { gap: 12px; padding: 0 16px; }
  .tb-item { font-size: .72rem; gap: 6px; }
  .ba-slider { height: 320px; }
  .how-img img { height: 400px; }
}
/* ============================================================
   MOBILE — max-width: 640px
   Reliable class-based rules. All inline-style overrides
   use !important. Sections ordered top to bottom.
   ============================================================ */
@media (max-width: 640px) {

  /* ── GLOBAL ── */
  section { padding: 40px 0; }
  .container { padding: 0 16px; }
  .section-head { margin-bottom: 22px; }
  .section-title { font-size: clamp(1.3rem, 5.5vw, 1.6rem) !important; line-height: 1.2 !important; }
  .section-desc { font-size: .85rem !important; line-height: 1.6 !important; max-width: 100% !important; }
  .section-label { font-size: .65rem !important; letter-spacing: .12em !important; }

  /* ── HERO ── */
  #home { min-height: auto !important; padding-top: 72px; padding-bottom: 0; overflow: hidden; max-width: 100vw; width: 100%; }
  #home::before, #home::after { animation: none !important; transform: none !important; }
  .hero-inner { grid-template-columns: 1fr; gap: 0; padding: 28px 16px 32px; max-width: 100%; width: 100%; box-sizing: border-box; }
  #waterCanvas { max-width: 100vw !important; left: 0 !important; right: 0 !important; }
  .hero-badge { font-size: .63rem; padding: 4px 12px; margin-bottom: 12px; }
  .hero-title { font-size: clamp(1.55rem, 7vw, 2rem); margin-bottom: 12px; line-height: 1.18; }
  .hero-desc {
    font-size: .85rem; line-height: 1.6; margin-bottom: 20px;
    display: -webkit-box; -webkit-line-clamp: 3;
    -webkit-box-orient: vertical; overflow: hidden;
  }
  .hero-btns { flex-direction: column; gap: 10px; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; font-size: .88rem !important; padding: 13px 18px; }
  .hero-trust {
    display: flex; gap: 0; margin-top: 18px;
    flex-wrap: nowrap; overflow-x: auto;
    -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 2px;
  }
  .hero-trust::-webkit-scrollbar { display: none; }
  .trust-item {
    flex-shrink: 0; font-size: .73rem; gap: 6px;
    padding-right: 14px; border-right: 1px solid rgba(255,255,255,.15);
    margin-right: 14px; white-space: nowrap;
  }
  .trust-item:last-child { border-right: none; padding-right: 0; margin-right: 0; }
  .trust-icon { width: 26px; height: 26px; font-size: .8rem; flex-shrink: 0; }

  /* ── TRUST BAR ── */
  .trust-bar { padding: 9px 0; }
  .trust-bar-inner {
    flex-wrap: nowrap !important; overflow-x: auto;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
    gap: 0 !important; padding: 0 !important; justify-content: flex-start !important;
  }
  .trust-bar-inner::-webkit-scrollbar { display: none; }
  .tb-item {
    flex-shrink: 0; font-size: .72rem; padding: 0 14px;
    border-right: 1px solid rgba(10,22,44,.18); white-space: nowrap; line-height: 2.2;
  }
  .tb-item:last-child { border-right: none; padding-right: 18px; }

  /* ── SERVICES ── */
  #services { padding: 40px 0; }
  .services-intro-img { height: 150px !important; margin-bottom: 18px !important; border-radius: 10px !important; }
  .services-grid { grid-template-columns: 1fr 1fr !important; gap: 10px; }
  .service-card { padding: 16px 12px; border-radius: 10px; }
  .sc-icon { width: 38px; height: 38px; font-size: 1.1rem; margin-bottom: 9px; border-radius: 8px; }
  .sc-title { font-size: .8rem; margin-bottom: 0; line-height: 1.3; }
  .sc-desc { display: none !important; }
  .sc-price { font-size: .66rem; padding: 3px 7px; margin-top: 7px; }

  /* ── PHOTO STRIP ── */
  .photo-strip { display: none !important; }

  /* ── ADDITIONAL SERVICES ──
     Uses new classes: .addl-emoji, .addl-text, .addl-title, .addl-desc */
  #additional-services { padding: 40px 0 !important; }
  #additional-services .section-desc { display: none !important; }
  .addl-services-grid { grid-template-columns: 1fr !important; gap: 8px !important; }
  .addl-service-card { padding: 12px 14px !important; border-radius: 10px !important; gap: 10px !important; }
  .addl-emoji { font-size: 1.3rem !important; }
  .addl-desc { display: none !important; }
  .addl-title { font-size: .84rem !important; margin-bottom: 0 !important; }
  .addl-service-card.mobile-hidden { display: none !important; }
  .addl-show-more-wrap { display: block !important; margin-top: 12px !important; text-align: center; }

  /* ── PHOTO BANNER (tech + about) ── */
  .photo-banner { height: 195px; }
  .photo-banner-text { padding: 0 16px !important; }
  .photo-banner-text h2 { font-size: clamp(.9rem, 4.2vw, 1.1rem) !important; margin-bottom: 10px !important; line-height: 1.25 !important; }
  .photo-banner-text .btn-primary { font-size: .82rem !important; padding: 10px 16px !important; }

  /* ── TECH WORKS ──
     Uses new classes: .tech-item, .tech-item-body, .tech-item-title, .tech-item-desc */
  #technical-works { padding: 40px 0 !important; }
  #technical-works .section-desc { display: none !important; }
  .tech-accordion-trigger { padding: 10px 0 !important; gap: 10px !important; margin-bottom: 10px !important; }
  .tech-accordion-trigger h3 { font-size: .88rem !important; }
  /* Bodies: hidden by default, flex column when .open */
  .tech-accordion-body { display: none !important; gap: 7px !important; }
  .tech-accordion-body.open { display: flex !important; flex-direction: column !important; }
  /* Each item */
  .tech-item { padding: 11px 12px !important; border-radius: 8px !important; gap: 8px !important; }
  .tech-item-desc { display: none !important; }
  .tech-item-title { font-size: .82rem !important; margin-bottom: 0 !important; }

  /* ── OUR WORK GALLERY ── */
  #our-work { padding: 36px 0 !important; }
  .gallery-track img { height: 130px; border-radius: 8px; }

  /* ── BEFORE/AFTER + MOSAIC ── */
  .ba-slider { height: 210px !important; border-radius: 10px; }
  .ba-label { font-size: .75rem; padding: 4px 10px; bottom: 12px; }
  .ba-slider-line::after { width: 30px; height: 30px; font-size: 1rem; }
  .proof-strip { display: none !important; }

  /* ── ABOUT / WHY US ── */
  #about { padding: 40px 0; }
  .about-grid { grid-template-columns: 1fr !important; gap: 20px; }
  .about-text > p { display: none !important; }
  .usp-list { gap: 8px; margin: 12px 0; }
  .usp-item { padding: 10px 12px; border-radius: 8px; gap: 10px; border-left-width: 3px; }
  .usp-icon { font-size: 1.05rem; }
  .usp-title { font-size: .82rem; }
  .usp-detail { display: none !important; }
  .about-photo { display: none !important; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 0; }
  .stat-box { padding: 16px 10px; border-radius: 10px; }
  .stat-box .stat-num { font-size: 1.5rem; }
  .stat-box .stat-label { font-size: .7rem; }
  .about-areas-mobile-hide { display: none !important; }

  /* ── HOW IT WORKS ── */
  .how-section { padding: 40px 0; }
  /* Break the how-flex 2-col grid so steps get full width */
  .how-flex { display: block !important; }
  .how-img { display: none !important; }
  /* Horizontal swipe row */
  .steps-row {
    display: flex !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    gap: 0 !important;
    padding-bottom: 10px;
    /* prevent the auto-fill grid from applying */
    grid-template-columns: none !important;
  }
  .steps-row::-webkit-scrollbar { display: none; }
  .step {
    flex: 0 0 160px !important;
    width: 160px !important;
    scroll-snap-align: start;
    padding: 18px 12px !important;
    border-right: 1px solid rgba(0,0,0,.08);
    border-bottom: none;
  }
  .step:not(:last-child)::after { display: none !important; }
  .step-num { width: 40px; height: 40px; font-size: .9rem; margin-bottom: 9px; }
  .step-title { font-size: .8rem; margin-bottom: 4px; }
  .step-desc { font-size: .73rem; line-height: 1.45; }
  .steps-scroll-hint { display: block !important; text-align: center; font-size: .68rem; color: var(--light-text); margin-top: 6px; opacity: .7; }

  /* ── FAQ ── */
  #faq { padding: 40px 0; }
  .faq-layout { grid-template-columns: 1fr !important; gap: 18px; }
  .faq-sidebar { position: static; }
  .faq-sidebar-title { font-size: 1.3rem; }
  .faq-sidebar-desc { display: none !important; }
  .faq-cta-box { padding: 14px 16px; border-radius: 12px; }
  .faq-cta-box p { font-size: .8rem; margin-bottom: 12px; }
  .faq-q { font-size: .83rem; padding: 13px 4px; }
  .faq-a p { font-size: .8rem; padding-bottom: 14px; }
  .faq-a.open { max-height: 600px; }

  /* ── MULTILINGUAL STRIP ── */
  #multilingual-strip { padding: 36px 0 !important; }
  .lang-cards-grid {
    display: flex !important; overflow-x: auto;
    scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
    gap: 12px !important; padding-bottom: 8px;
    scrollbar-width: none; max-width: 100% !important; margin: 0 !important;
  }
  .lang-cards-grid::-webkit-scrollbar { display: none; }
  .lang-cards-grid > div {
    flex: 0 0 78vw !important; max-width: 280px;
    scroll-snap-align: start; display: block !important;
    padding: 16px !important; border-radius: 12px !important; min-height: unset !important;
  }
  .lang-scroll-hint { display: block !important; margin-top: 4px !important; }
  .trust-stats-row {
    overflow-x: auto; flex-wrap: nowrap !important; scrollbar-width: none;
    padding-bottom: 6px; justify-content: flex-start !important;
    gap: 20px !important; margin-top: 22px !important; padding-top: 16px !important;
  }
  .trust-stats-row::-webkit-scrollbar { display: none; }
  .trust-stats-row > div { flex-shrink: 0; }

  /* ── SOCIAL ── */
  #social { padding: 36px 0 48px !important; }

  /* ── CONTACT ── */
  #contact { padding: 40px 0; }
  .contact-grid { grid-template-columns: 1fr !important; gap: 20px; display: flex !important; flex-direction: column-reverse !important; }
  .contact-form { padding: 20px 14px; border-radius: 12px; }
  .form-title { font-size: 1.05rem; margin-bottom: 14px; }
  .form-row { grid-template-columns: 1fr !important; gap: 0 !important; }
  .form-group { margin-bottom: 13px; }
  .form-group label { font-size: .78rem; }
  .form-group input, .form-group select, .form-group textarea { font-size: .85rem; padding: 10px 12px; }
  .form-group textarea { min-height: 80px; }
  .form-submit { font-size: .85rem; padding: 13px; }
  .form-note { font-size: .72rem; }
  .contact-info { gap: 8px; margin-top: 0; }
  .contact-card { padding: 12px 14px; gap: 10px; border-radius: 8px; }
  .contact-card-icon { width: 36px; height: 36px; font-size: .95rem; border-radius: 8px; }
  .cc-label { font-size: .7rem; }
  .cc-value { font-size: .85rem; }
  .hours-box { padding: 12px 14px; margin-top: 4px; }
  .hours-title { font-size: .8rem; margin-bottom: 8px; }
  .hours-day, .hours-time { font-size: .78rem; }

  /* ── AREAS WE SERVE ── */
  #areas-we-serve { padding: 36px 0 !important; }
  .areas-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 7px; }
  .area-pill { padding: 9px 6px; font-size: .72rem; border-radius: 6px; }

  /* ── MISC ── */
  .gallery-track img { height: 130px; }
}
@media (max-width: 390px) {
  /* Very small phones — tighten further */
  section { padding: 32px 0; }
  .container { padding: 0 14px; }
  .hero-title { font-size: clamp(1.45rem, 7vw, 1.75rem); }
  .hero-inner { padding: 24px 14px 28px; }
  .services-grid { grid-template-columns: 1fr 1fr !important; }
  .service-card { padding: 13px 10px; }
  .sc-title { font-size: .76rem; }
  .stats-grid { gap: 7px; }
  .stat-box .stat-num { font-size: 1.4rem; }
  .photo-banner { height: 180px; }
  .photo-banner-text h2 { font-size: clamp(.85rem, 4.5vw, 1.05rem) !important; }
  .services-intro-img { height: 140px !important; }
  .areas-grid,
  #areas-we-serve > .container > div[style*="grid-template-columns"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .faq-a.open { max-height: 800px; }
  .lang-cards-grid > div { flex: 0 0 85vw !important; }
  #social > .container > div[style*="display:flex"],
  #social > .container > div[style*="display:grid"] {
    grid-template-columns: 1fr 1fr !important;
  }
}

/* ── Before / After Slider ── */
.ba-slider { position: relative; width: 100%; height: 400px; border-radius: 16px; overflow: hidden; box-shadow: 0 16px 40px rgba(0,0,0,0.5); }
.ba-image { position: absolute; inset: 0; width: 100%; height: 100%; }
.ba-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-after { z-index: 1; }
.ba-before { z-index: 2; width: 50%; overflow: hidden; border-right: 3px solid var(--gold); }
.ba-label { position: absolute; bottom: 20px; padding: 6px 14px; border-radius: 6px; font-family: 'Montserrat', sans-serif; font-size: 0.85rem; font-weight: 700; color: #fff; background: rgba(10,22,44,0.8); z-index: 3; pointer-events: none; }
.ba-label-after { right: 20px; }
.ba-label-before { left: 20px; }
.ba-range { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 4; opacity: 0; cursor: ew-resize; margin: 0; }
.ba-slider-line { position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: var(--gold); z-index: 3; pointer-events: none; transform: translateX(-50%); display: flex; align-items: center; justify-content: center; }
.ba-slider-line::after { content: '↔'; color: var(--navy); background: var(--gold); width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 1.2rem; }
@media (max-width: 640px) { .ba-slider { height: 260px; } }

/* ── Touch / motion / cross-browser ── */
@media (hover: none) and (pointer: coarse) {
  .hero-card:hover, .service-card:hover, .faq-q:hover, .area-pill:hover { transform: none; }
}
@supports (-webkit-touch-callout: none) {
  .hero-inner { -webkit-align-items: center; }
  .hero-btns { -webkit-flex-wrap: wrap; }
}
