/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Open Sans', sans-serif; color: #222; background: #fff; overflow-x: hidden; }
img { display: block; width: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== CSS VARIABLES ===== */
:root {
  --navy: #0e1e3d;
  --navy-dark: #081428;
  --red: #c8102e;
  --red-dark: #a00d24;
  --gold: #f0a500;
  --gold-dark: #d48e00;
  --white: #fff;
  --gray-light: #f4f6fa;
  --gray: #6b7280;
  --shadow: 0 4px 24px rgba(14,30,61,0.10);
  --shadow-lg: 0 8px 40px rgba(14,30,61,0.18);
  --radius: 10px;
  --transition: 0.25s ease;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 { font-family: 'Montserrat', sans-serif; font-weight: 700; line-height: 1.15; }
h1 { font-size: clamp(1.75rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1rem, 2.5vw, 1.35rem); }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(16px, 4vw, 40px); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 6px; font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 0.9rem; letter-spacing: 0.04em;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-dark); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.8); }
.btn-outline:hover { background: rgba(255,255,255,0.15); }
.btn-white { background: #fff; color: var(--red); font-weight: 700; }
.btn-white:hover { background: #f0f0f0; }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid #fff; }
.btn-outline-white:hover { background: rgba(255,255,255,0.15); }
.full-width { width: 100%; justify-content: center; }

/* ===== SECTION LABELS / TITLES ===== */
.section-label { display: inline-block; font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red);
  margin-bottom: 10px; }
.section-label.light { color: var(--gold); }
.section-title { color: var(--navy); margin-bottom: 16px; }
.section-title.light { color: #fff; }
.section-desc { color: var(--gray); max-width: 600px; margin: 0 auto; line-height: 1.7; }
.section-intro { color: var(--gray); line-height: 1.75; margin-bottom: 24px; }
.section-intro.light { color: rgba(255,255,255,0.82); }
.section-header { text-align: center; margin-bottom: clamp(32px, 5vw, 56px); }

/* ===== TOP BAR ===== */
.top-bar { background: var(--navy-dark); padding: 9px 0; border-bottom: 2px solid var(--gold); }
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.top-bar-left { display: flex; gap: 24px; align-items: center; }
.top-bar-right { display: flex; gap: 20px; }
.top-bar-item { display: flex; align-items: center; gap: 7px; font-size: 0.82rem; color: rgba(255,255,255,0.75); }
.top-bar-item svg { color: var(--gold); flex-shrink: 0; }
.top-phone { color: var(--gold); font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.88rem; }
.top-whatsapp { color: #25d366 !important; font-weight: 700; font-size: 0.88rem; display: flex; align-items: center; gap: 5px; }
.top-whatsapp svg { color: #25d366 !important; }
.top-bar-right a { color: rgba(255,255,255,0.7); font-size: 0.82rem; transition: color var(--transition); }
.top-bar-right a:hover { color: var(--gold); }
@media (max-width: 900px) { .top-bar-hide-sm { display: none !important; } }
.quick-tile-phones { cursor: default; }
.quick-phone-link { color: inherit; text-decoration: none; display: block; }
.quick-phone-link:hover { color: var(--gold); }

/* ===== NAVBAR ===== */
.navbar { background: var(--navy); position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.25); transition: background var(--transition); }
.nav-inner { display: flex; align-items: center; gap: 24px; padding-top: 14px; padding-bottom: 14px; }
.nav-logo { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.5rem; display: flex; align-items: center; }
.logo-wise { color: #fff; }
.logo-4 { color: var(--gold); margin: 0 1px; }
.logo-moving { color: var(--red); }

.nav-links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-links > li { position: relative; }
.nav-links > li > a { display: flex; align-items: center; gap: 3px; color: rgba(255,255,255,0.87); font-size: 0.875rem;
  font-weight: 600; padding: 8px 12px; border-radius: 5px; transition: color var(--transition), background var(--transition); }
.nav-links > li > a:hover { color: #fff; background: rgba(255,255,255,0.1); }

.dropdown { position: absolute; top: calc(100% + 8px); left: 0; background: #fff;
  min-width: 210px; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 8px 0; opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  border-top: 3px solid var(--red); }
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a { display: block; padding: 9px 18px; color: var(--navy); font-size: 0.875rem;
  font-weight: 500; transition: background var(--transition), color var(--transition); }
.dropdown li a:hover { background: var(--gray-light); color: var(--red); }

.nav-cta { margin-left: 12px; padding: 10px 20px; font-size: 0.83rem; }
.hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px; margin-left: auto; }
.hamburger span { display: block; height: 2.5px; background: #fff; border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s; }

/* ===== MOBILE PANEL ===== */
.mobile-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 1100;
  opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s; }
.mobile-overlay.active { opacity: 1; visibility: visible; }
.mobile-panel { position: fixed; top: 0; right: -320px; width: min(300px, 85vw); height: 100%;
  background: var(--navy); z-index: 1200; padding: 28px 24px;
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1); overflow-y: auto; }
.mobile-panel.active { right: 0; }
.mobile-close { position: absolute; top: 18px; right: 20px; color: rgba(255,255,255,0.7); font-size: 1.4rem; }
.mobile-close:hover { color: #fff; }
.mobile-logo { margin-top: 40px; display: block; margin-bottom: 28px; }
.mobile-nav li { border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-nav li a { display: block; padding: 13px 4px; color: rgba(255,255,255,0.85); font-size: 0.95rem; font-weight: 600; }
.mobile-cta { display: block; text-align: center; margin-top: 24px; }
.mobile-phone { margin-top: 16px; text-align: center; }
.mobile-phone a { color: var(--gold); font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.95rem; }

/* ===== HERO SLIDER ===== */
.hero-slider { position: relative; overflow: hidden; height: clamp(520px, 80vh, 780px); }
.slides-wrapper { position: relative; height: 100%; }
.slide { position: absolute; inset: 0; background-size: cover; background-position: center;
  display: flex; align-items: center; opacity: 0; transition: opacity 1s ease; pointer-events: none; }
.slide.active { opacity: 1; pointer-events: auto; }

/* ── HERO BOTTOM STRIP ── */
.hero-bottom-strip {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 10;
  background: rgba(8, 20, 40, 0.88);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  gap: 0; padding: 0;
}
.hbs-items {
  display: flex; align-items: stretch; width: 100%; max-width: 1200px;
}
.hbs-item {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 28px; flex: 1; justify-content: center;
  border-right: 1px solid rgba(255,255,255,0.1);
  font-family: 'Montserrat', sans-serif;
}
.hbs-item:last-child { border-right: none; }
.hbs-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(200,16,46,0.2); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hbs-icon svg { color: var(--red); }
.hbs-text { display: flex; flex-direction: column; }
.hbs-label { font-size: 0.68rem; font-weight: 600; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.07em; }
.hbs-value { font-size: 0.9rem; font-weight: 700; color: #fff; }
.hbs-price-item { background: var(--red); }
.hbs-price-item .hbs-icon { background: rgba(255,255,255,0.15); }
.hbs-price-item .hbs-label { color: rgba(255,255,255,0.75); }
.hbs-price-item .hbs-value { font-size: 1.05rem; }
.hbs-price-item .price-val { font-size: 1.6rem; font-weight: 800; letter-spacing: -0.02em; }
@media (max-width: 700px) {
  .hbs-item { padding: 12px 14px; gap: 8px; }
  .hbs-label { font-size: 0.6rem; }
  .hbs-value { font-size: 0.78rem; }
  .hbs-price-item .price-val { font-size: 1.25rem; }
  .hbs-icon { width: 30px; height: 30px; }
}
@media (max-width: 480px) {
  .hbs-items { flex-wrap: wrap; }
  .hbs-item { flex: 1 1 50%; border-bottom: 1px solid rgba(255,255,255,0.1); }
}
.slide-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,20,40,0.82) 0%, rgba(8,20,40,0.45) 60%, rgba(8,20,40,0.25) 100%); }
.slide-content { position: relative; z-index: 1; color: #fff; max-width: 680px; padding: 0 60px 0 0; }
.slide-badge { display: inline-block; background: var(--red); color: #fff;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.72rem;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 14px; border-radius: 20px; margin-bottom: 16px; }
.slide-content h1 { margin-bottom: 18px; text-shadow: 0 2px 12px rgba(0,0,0,0.3); }
.slide-content p { font-size: clamp(1rem, 2vw, 1.15rem); color: rgba(255,255,255,0.88); line-height: 1.7; margin-bottom: 32px; max-width: 520px; }
.slide-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.slide-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  background: rgba(14,30,61,0.6); color: #fff; width: 52px; height: 52px; border-radius: 50%;
  font-size: 2rem; display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), transform var(--transition); line-height: 1; }
.slide-arrow:hover { background: var(--red); transform: translateY(-50%) scale(1.05); }
.slide-prev { left: 20px; }
.slide-next { right: 20px; }

.slide-dots { position: absolute; bottom: 80px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 11; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.45);
  transition: background var(--transition), transform var(--transition); }
.dot.active { background: var(--red); transform: scale(1.3); }

/* ===== QUICK ACTIONS ===== */
.quick-actions { background: var(--navy); }
.quick-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.quick-tile { display: flex; align-items: center; gap: 16px; padding: clamp(20px, 3vw, 28px) clamp(16px, 2.5vw, 28px);
  color: #fff; border-right: 1px solid rgba(255,255,255,0.1);
  transition: background var(--transition); }
.quick-tile:last-child { border-right: none; }
.quick-tile:hover { background: rgba(255,255,255,0.07); }
.quick-tile.highlight-tile { background: var(--red); }
.quick-tile.highlight-tile:hover { background: var(--red-dark); }
.quick-icon { width: 52px; height: 52px; background: var(--red); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.highlight-tile .quick-icon { background: rgba(255,255,255,0.2); }
.quick-title { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1rem; }
.quick-sub { font-size: 0.78rem; color: rgba(255,255,255,0.65); margin-top: 3px; }

/* ===== WHY CHOOSE US ===== */
.why-section { padding: clamp(60px, 8vw, 100px) 0; background: var(--gray-light); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.why-image-col { position: relative; }
.why-img { border-radius: var(--radius); box-shadow: var(--shadow-lg); aspect-ratio: 4/5; object-fit: cover; }
.years-badge { position: absolute; bottom: -20px; right: -20px; background: var(--red);
  color: #fff; border-radius: var(--radius); padding: 20px 22px; text-align: center;
  box-shadow: var(--shadow-lg); }
.years-num { display: block; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 2.2rem; line-height: 1; }
.years-text { font-size: 0.78rem; font-weight: 600; line-height: 1.4; opacity: 0.9; margin-top: 4px; display: block; }

.why-list { margin-top: 28px; display: flex; flex-direction: column; gap: 22px; }
.why-list li { display: flex; gap: 16px; align-items: flex-start; }
.why-icon-wrap { width: 44px; height: 44px; background: rgba(200,16,46,0.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--red); }
.why-list li strong { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--navy);
  display: block; margin-bottom: 4px; }
.why-list li p { font-size: 0.9rem; color: var(--gray); line-height: 1.6; margin: 0; }

/* ===== SERVICES GRID ===== */
.services-section { padding: clamp(60px, 8vw, 100px) 0; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.service-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
  overflow: hidden; transition: transform var(--transition), box-shadow var(--transition); }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-img-wrap { height: 220px; overflow: hidden; }
.service-img-wrap img { height: 100%; transition: transform 0.4s ease; }
.service-card:hover .service-img-wrap img { transform: scale(1.06); }
.service-body { padding: 20px; }
.service-body h3 { color: var(--navy); margin-bottom: 10px; font-size: 1.05rem; }
.service-body p { font-size: 0.875rem; color: var(--gray); line-height: 1.65; margin-bottom: 14px; }
.service-link { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.82rem;
  color: var(--red); letter-spacing: 0.03em; transition: color var(--transition); }
.service-link:hover { color: var(--red-dark); }

/* ===== STATS BANNER ===== */
.stats-banner { background: var(--navy); padding: clamp(50px, 7vw, 80px) 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; }
.stat-item { text-align: center; color: #fff; }
.stat-num { font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 3.2rem); color: var(--gold); line-height: 1; }
.stat-label { font-size: 0.9rem; color: rgba(255,255,255,0.7); margin-top: 8px;
  font-weight: 600; letter-spacing: 0.04em; }

/* ===== VIDEO SECTION ===== */
.video-section { background: var(--navy-dark); padding: clamp(60px, 8vw, 100px) 0; }
.video-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.video-features { display: flex; flex-direction: column; gap: 14px; margin-top: 8px; }
.video-features li { display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.85); font-size: 0.92rem; }
.video-features li svg { color: var(--gold); flex-shrink: 0; }

.video-thumb-wrap { position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 16/9; box-shadow: var(--shadow-lg); cursor: pointer; }
.video-thumb { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.video-thumb-wrap:hover .video-thumb { transform: scale(1.03); }
.video-thumb-wrap::after { content: ''; position: absolute; inset: 0;
  background: rgba(8,20,40,0.4); transition: background 0.3s; }
.video-thumb-wrap:hover::after { background: rgba(8,20,40,0.55); }

.play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  z-index: 5; width: 72px; height: 72px; border-radius: 50%; background: var(--red);
  color: #fff; display: flex; align-items: center; justify-content: center;
  animation: pulse 2s infinite; transition: transform 0.3s, background 0.3s; box-shadow: 0 0 0 0 rgba(200,16,46,0.5); }
.play-btn:hover { background: var(--red-dark); transform: translate(-50%,-50%) scale(1.1); animation: none; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(200,16,46,0.5); }
  70% { box-shadow: 0 0 0 22px rgba(200,16,46,0); }
  100% { box-shadow: 0 0 0 0 rgba(200,16,46,0); }
}

/* ===== VIDEO MODAL ===== */
.modal-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,0.88); z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s; padding: 20px; }
.modal-backdrop.active { opacity: 1; visibility: visible; }
.video-modal-inner { position: relative; width: 100%; max-width: 880px; }
.video-iframe-wrap { position: relative; padding-top: 56.25%; border-radius: var(--radius); overflow: hidden; }
.video-iframe-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border-radius: var(--radius); }
.modal-close { position: absolute; top: -42px; right: 0; color: #fff; font-size: 1.6rem;
  background: none; line-height: 1; transition: opacity 0.2s; }
.modal-close:hover { opacity: 0.7; }

/* ===== RECENT WORK GALLERY SLIDER ===== */
.gallery-section { padding: clamp(60px, 8vw, 100px) 0; background: #fff; }
.gallery-slider-outer { position: relative; }
.gallery-viewport { overflow: hidden; }
.gallery-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.gallery-card {
  flex: 0 0 calc(100% / 3);
  padding: 0 10px;
  box-sizing: border-box;
}
.gallery-img-wrap { position: relative; aspect-ratio: 4/3; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.gallery-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-card:hover .gallery-img-wrap img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0; border-radius: var(--radius);
  background: linear-gradient(to top, rgba(14,30,61,0.78) 0%, transparent 55%);
  opacity: 0; transition: opacity 0.3s ease;
  display: flex; align-items: flex-end; padding: 18px;
}
.gallery-card:hover .gallery-overlay { opacity: 1; }
.gallery-label { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.9rem; color: #fff; letter-spacing: 0.04em; }

.gallery-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10; width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); color: #fff; border: none; cursor: pointer;
  font-size: 1.6rem; line-height: 1; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow); transition: background var(--transition), transform 0.2s;
  padding-bottom: 2px;
}
.gallery-arrow:hover { background: var(--red); transform: translateY(-50%) scale(1.08); }
.gallery-arrow-prev { left: -22px; }
.gallery-arrow-next { right: -22px; }

.gallery-dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.g-dot {
  width: 10px; height: 10px; border-radius: 50%; border: none; cursor: pointer;
  background: #d1d5db; transition: background 0.25s, transform 0.25s;
  padding: 0;
}
.g-dot.active { background: var(--red); transform: scale(1.3); }

/* ===== REVIEWS ===== */
.reviews-section { padding: clamp(60px, 8vw, 100px) 0; background: var(--gray-light); }
.reviews-header { display: flex; justify-content: space-between; align-items: flex-end;
  text-align: left; margin-bottom: clamp(32px, 5vw, 50px); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card { background: #fff; border-radius: var(--radius); padding: 24px;
  box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition); }
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.review-top { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.review-avatar { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 3px solid var(--red); }
.review-name { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--navy); font-size: 0.95rem; }
.review-route { font-size: 0.8rem; color: var(--gray); margin-top: 2px; }
.review-stars { color: var(--gold); font-size: 1rem; margin-bottom: 10px; }
.review-text { font-size: 0.88rem; color: var(--gray); line-height: 1.7; }
.review-photo { margin-top: 14px; border-radius: 8px; overflow: hidden; height: 220px; }
.review-photo img { height: 100%; object-fit: cover; }

/* Review Modal */
.review-modal-inner { background: #fff; border-radius: var(--radius); padding: clamp(24px,4vw,40px);
  max-width: 580px; width: 100%; max-height: 90vh; overflow-y: auto; position: relative; }
.review-modal-inner h3 { font-family: 'Montserrat', sans-serif; color: var(--navy); margin-bottom: 24px; font-size: 1.4rem; }
.review-modal-inner .modal-close { position: absolute; top: 16px; right: 20px; color: var(--gray); font-size: 1.4rem; }

.star-picker { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.star-picker span { font-weight: 600; color: var(--navy); font-size: 0.9rem; }
.stars-input { display: flex; gap: 4px; }
.stars-input button { font-size: 1.8rem; color: #d1d5db; line-height: 1; transition: color 0.15s; }
.stars-input button.active, .stars-input button:hover { color: var(--gold); }

.photo-preview { margin-top: 10px; }
.photo-preview img { max-height: 160px; border-radius: 8px; object-fit: cover; }

/* ===== FORMS ===== */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--navy); }
.form-group input, .form-group textarea, .form-group select {
  padding: 12px 14px; border: 1.5px solid #d1d5db; border-radius: 6px;
  font-family: 'Open Sans', sans-serif; font-size: 1rem; color: #222;
  transition: border-color 0.2s, box-shadow 0.2s; background: #fff; width: 100%; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(200,16,46,0.12); }
.form-group select { cursor: pointer; }
.form-group input[type="file"] { padding: 8px; }

/* Field validation states */
.label-hint { font-weight: 400; color: #6b7280; font-size: 0.78rem; }
.field-error-msg { font-size: 0.78rem; color: #dc2626; min-height: 1em; display: block; }

.field-valid input, .field-valid textarea, .field-valid select,
.field-valid .phone-wrap { border-color: #16a34a !important; box-shadow: 0 0 0 3px rgba(22,163,74,0.12) !important; }

.field-error input, .field-error textarea, .field-error select,
.field-error .phone-wrap { border-color: #dc2626 !important; box-shadow: 0 0 0 3px rgba(220,38,38,0.12) !important; }

.field-loading input, .field-loading textarea, .field-loading select,
.field-loading .phone-wrap {
  border-color: #f59e0b !important;
  box-shadow: 0 0 0 3px rgba(245,158,11,0.14) !important;
}

.field-loading .field-error-msg { color: #b45309; }

.quote-form-alert {
  display: none;
  margin: -2px 0 16px;
  padding: 11px 13px;
  border-radius: 8px;
  border: 1px solid #fecaca;
  background: #fef2f2;
  color: #b91c1c;
  font-size: 0.84rem;
  line-height: 1.5;
}

.quote-form-alert.show { display: block; }

/* Phone prefix wrapper */
.phone-wrap { display: flex; align-items: stretch; border: 1.5px solid #d1d5db; border-radius: 6px;
  overflow: hidden; transition: border-color 0.2s, box-shadow 0.2s; }
.phone-wrap:focus-within { border-color: var(--red); box-shadow: 0 0 0 3px rgba(200,16,46,0.12); }
.phone-prefix { background: #f3f4f6; color: #374151; font-size: 0.88rem; font-weight: 700;
  padding: 0 10px; display: flex; align-items: center; border-right: 1.5px solid #d1d5db;
  white-space: nowrap; user-select: none; }
.phone-wrap input { border: none !important; border-radius: 0 !important; box-shadow: none !important;
  flex: 1; min-width: 0; }
.phone-wrap input:focus { outline: none; box-shadow: none !important; }

/* Location input with map button */
.location-input-wrap { display: flex; gap: 8px; align-items: stretch; position: relative; }
.location-input-wrap input { flex: 1; min-width: 0; }

/* Autocomplete dropdown (positioned via JS as fixed to avoid overflow clipping) */
.location-autocomplete {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  list-style: none; margin: 0; padding: 4px 0;
  max-height: 320px; overflow-y: auto;
  min-width: 280px;
}
.location-autocomplete li {
  padding: 10px 16px; cursor: pointer; font-size: 0.88rem; color: #111827;
  display: flex; align-items: center; gap: 12px;
  border-bottom: 1px solid #f3f4f6; transition: background 0.12s;
  min-width: 0;
}
.location-autocomplete li:last-child { border-bottom: none; }
.location-autocomplete li:hover,
.location-autocomplete li.ac-active { background: #f0f4ff; }
.location-autocomplete li .ac-pin { color: #c2c7d0; flex-shrink: 0; }
.location-autocomplete li > span:last-child { flex: 1; min-width: 0; overflow: hidden; }
.location-autocomplete li .ac-main { font-weight: 600; display: block; color: #1a1a2e; font-size: 0.9rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.location-autocomplete li .ac-sub { color: #8a8fa8; font-size: 0.78rem; display: block; margin-top: 1px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.location-ac-powered {
  padding: 5px 14px 7px; text-align: right; border-top: 1px solid #f3f4f6;
  font-size: 0.72rem; color: #9ca3af; background: #fff;
  border-radius: 0 0 8px 8px;
}

.map-pick-btn {
  display: flex; align-items: center; gap: 5px; padding: 0 14px;
  background: var(--navy); color: #fff; border: none; border-radius: 6px;
  font-size: 0.82rem; font-weight: 600; cursor: pointer; white-space: nowrap;
  transition: background 0.2s; flex-shrink: 0;
}
.map-pick-btn:hover { background: var(--red); }
.map-pick-btn svg { flex-shrink: 0; }

/* ===== FLOATING CONTACT WIDGET ===== */
.float-contact-widget {
  position: fixed; bottom: 28px; right: 28px; z-index: 9998;
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
}
.float-contact-toggle {
  width: 58px; height: 58px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--red); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(200,16,46,0.45);
  transition: background 0.2s, transform 0.2s;
}
.float-contact-toggle:hover { background: #a50d24; transform: scale(1.08); }
.float-icon-close { display: none; }
.float-contact-widget.open .float-icon-open  { display: none; }
.float-contact-widget.open .float-icon-close { display: flex; }

.float-contact-menu {
  display: none; flex-direction: column; gap: 8px; align-items: flex-end;
}
.float-contact-widget.open .float-contact-menu { display: flex; }

.float-contact-label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: #6b7280; padding: 0 6px 2px;
}
.float-contact-item {
  display: flex; align-items: center; gap: 12px;
  background: #fff; border-radius: 40px;
  padding: 10px 18px 10px 14px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.13);
  text-decoration: none; color: var(--navy);
  transition: transform 0.15s, box-shadow 0.15s;
  min-width: 210px;
}
.float-contact-item:hover { transform: translateX(-4px); box-shadow: 0 6px 22px rgba(0,0,0,0.18); }
.float-item-icon {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.float-whatsapp .float-item-icon { background: #25d366; color: #fff; }
.float-phone    .float-item-icon { background: var(--navy); color: #fff; }
.float-item-name { font-weight: 700; font-size: 0.9rem; display: block; }
.float-item-num  { font-size: 0.78rem; color: #6b7280; display: block; }

@media (max-width: 480px) {
  .float-contact-widget { bottom: 18px; right: 16px; }
  .float-contact-item { min-width: 180px; }
}

/* Map picker modal */
.map-modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.55); align-items: center; justify-content: center; padding: 16px;
}
.map-modal-overlay.open { display: flex; }
.map-modal-box {
  background: #fff; border-radius: 12px; width: 100%; max-width: 780px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35); display: flex; flex-direction: column;
  overflow: hidden; max-height: 90vh;
}
.map-modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; background: var(--navy); color: #fff;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1rem;
}
.map-modal-close {
  background: none; border: none; color: #fff; font-size: 1.6rem; cursor: pointer;
  line-height: 1; padding: 0 4px; opacity: 0.8; transition: opacity 0.15s;
}
.map-modal-close:hover { opacity: 1; }
.map-modal-search { display: flex; gap: 8px; padding: 12px 16px; border-bottom: 1px solid #e5e7eb; }
.map-modal-search input {
  flex: 1; padding: 9px 13px; border: 1.5px solid #d1d5db; border-radius: 6px;
  font-size: 0.9rem; font-family: 'Open Sans', sans-serif;
}
.map-modal-search input:focus { outline: none; border-color: var(--red); }
.map-modal-search button {
  padding: 9px 18px; background: var(--red); color: #fff; border: none;
  border-radius: 6px; font-weight: 600; font-size: 0.88rem; cursor: pointer;
  transition: background 0.2s;
}
.map-modal-search button:hover { background: var(--red-dark); }
#mapPickerMap { flex: 1; min-height: 380px; }
.map-picker-hint {
  padding: 10px 16px; font-size: 0.78rem; color: #6b7280; text-align: center;
  border-top: 1px solid #e5e7eb; margin: 0;
}
@media (max-width: 500px) {
  #mapPickerMap { min-height: 260px; }
}

/* ===== QUOTE SECTION ===== */
.quote-section { background: var(--navy); padding: clamp(60px, 8vw, 100px) 0; }
.quote-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
.trust-bullets { display: flex; flex-direction: column; gap: 14px; margin-top: 12px; }
.trust-bullets li { display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.88); font-size: 0.92rem; font-weight: 500; }
.trust-bullets li svg { color: var(--gold); flex-shrink: 0; }

.quote-form-wrap { background: #fff; border-radius: var(--radius); padding: clamp(24px,4vw,36px); box-shadow: var(--shadow-lg); }
.quote-form-wrap h3 { font-family: 'Montserrat', sans-serif; color: var(--navy); margin-bottom: 22px; font-size: 1.3rem; border-bottom: 3px solid var(--red); padding-bottom: 14px; }
.quote-success { display: none; text-align: center; padding: 40px 20px; }
.quote-success.active { display: block; }
.quote-success h3 { color: var(--navy); margin: 16px 0 10px; }
.quote-success p { color: var(--gray); }
.quote-success svg { margin: 0 auto; }
.qs-icon-wrap { display: flex; justify-content: center; margin-bottom: 12px; }
.qs-sub { font-size: 0.9rem; color: var(--gray); margin-bottom: 16px; }
.qs-summary { background: var(--gray-light); border-radius: 8px; padding: 16px; margin: 16px 0; text-align: left; }
.qs-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; padding: 7px 0; border-bottom: 1px solid #e5e7eb; font-size: 0.88rem; }
.qs-row:last-child { border-bottom: none; }
.qs-label { color: var(--gray); font-weight: 600; white-space: nowrap; }
.qs-val { color: var(--navy); font-weight: 500; text-align: right; word-break: break-word; }
.qs-ref { font-size: 0.82rem; color: var(--gray); }

/* ===== OTP VERIFICATION STEP ===== */
.otp-step { text-align: center; padding: 32px 8px 16px; }
.otp-step h3 { font-family: 'Montserrat', sans-serif; color: var(--navy); margin: 14px 0 8px; font-size: 1.2rem; border-bottom: 3px solid var(--red); padding-bottom: 12px; }
.otp-icon-wrap { display: flex; justify-content: center; margin-bottom: 4px; }
.otp-sub { color: var(--gray); font-size: 0.93rem; margin-bottom: 24px; line-height: 1.6; }
.otp-sub strong { color: var(--navy); }
#otpSendWrap { margin-bottom: 8px; }
.otp-label { display: block; text-align: left; font-weight: 600; color: var(--navy); margin-bottom: 8px; font-size: 0.9rem; }
.otp-code-input { width: 100%; border: 2px solid #d1d5db; border-radius: 8px; padding: 14px 16px; font-size: 1.5rem; text-align: center; letter-spacing: 10px; font-weight: 700; color: var(--navy); margin-bottom: 4px; outline: none; transition: border-color 0.2s; box-sizing: border-box; }
.otp-code-input:focus { border-color: var(--red); }
.otp-error-msg { color: #dc2626; font-size: 0.85rem; min-height: 22px; margin: 4px 0 10px; text-align: left; }
.otp-resend-btn { background: none; border: none; color: var(--red); cursor: pointer; font-size: 0.88rem; margin-top: 14px; text-decoration: underline; padding: 4px 0; display: block; width: 100%; }
.otp-resend-btn:hover { color: var(--red-dark); }
.otp-back-btn { background: none; border: none; color: var(--gray); cursor: pointer; font-size: 0.85rem; margin-top: 18px; padding: 4px 0; display: block; width: 100%; }
.otp-back-btn:hover { color: var(--navy); }

/* Date input */
input[type="date"] { appearance: none; -webkit-appearance: none; }

/* ===== CTA BANNER ===== */
.cta-banner { background: var(--red); padding: clamp(40px, 6vw, 64px) 0; }
.cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap; }
.cta-text h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.2rem); }
.cta-text p { color: rgba(255,255,255,0.85); margin-top: 6px; font-size: 1rem; }
.cta-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===== MAP SECTION ===== */
.map-section {
  display: grid;
  grid-template-columns: 420px 1fr;
  min-height: 520px;
}
.map-panel-info {
  background: var(--navy);
  display: flex;
  align-items: center;
  padding: clamp(40px, 5vw, 64px) clamp(28px, 4vw, 52px);
}
.map-info-inner { display: flex; flex-direction: column; gap: 28px; width: 100%; }
.map-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: #fff; margin: 0; line-height: 1.2;
}
.map-tagline { color: rgba(255,255,255,0.65); font-size: 0.95rem; line-height: 1.7; margin: 0; }

.map-contact-list { display: flex; flex-direction: column; gap: 20px; }
.map-contact-item { display: flex; gap: 16px; align-items: flex-start; }
.map-contact-icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(200,16,46,0.18); border: 1px solid rgba(200,16,46,0.35);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--red);
}
.map-contact-text {
  display: flex; flex-direction: column; gap: 2px;
  padding-top: 8px;
}
.map-contact-label {
  font-family: 'Montserrat', sans-serif; font-size: 0.7rem;
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 2px;
}
.map-contact-text span, .map-contact-text a {
  font-size: 0.9rem; color: rgba(255,255,255,0.85); line-height: 1.6;
}
.map-contact-text a:hover { color: var(--gold); }

.map-directions-btn { align-self: flex-start; margin-top: 4px; }

.map-panel-map { position: relative; }
.map-panel-map iframe { display: block; width: 100%; height: 100%; min-height: 420px; }

/* ===== FOOTER ===== */
.footer { background: var(--navy-dark); padding: clamp(50px, 7vw, 80px) 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: clamp(32px, 4vw, 56px); }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.875rem; line-height: 1.7; margin-top: 14px; max-width: 280px; }
.footer-logo { font-size: 1.4rem; }
.footer-contact { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.footer-contact div { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.65); font-size: 0.82rem; }
.footer-contact a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-contact a:hover { color: var(--gold); }
.footer-contact svg { color: var(--gold); flex-shrink: 0; }

.footer-col h4 { font-family: 'Montserrat', sans-serif; color: #fff; font-size: 1rem;
  margin-bottom: 18px; padding-bottom: 10px; border-bottom: 2px solid var(--red); display: inline-block; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { color: rgba(255,255,255,0.6); font-size: 0.875rem; transition: color 0.2s, padding-left 0.2s; }
.footer-col ul a:hover { color: var(--gold); padding-left: 4px; }

.social-icons { display: flex; gap: 10px; margin-top: 22px; }
.social-icons a { width: 38px; height: 38px; background: rgba(255,255,255,0.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.8);
  transition: background 0.2s, color 0.2s; }
.social-icons a:hover { background: var(--gold); color: var(--navy); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 22px 0; margin-top: 50px; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px; }
.footer-bottom span { color: rgba(255,255,255,0.45); font-size: 0.82rem; }

/* ===== LANGUAGE SWITCHER ===== */
.lang-switcher {
  display: flex; align-items: center; gap: 4px; margin-left: 8px;
}
.lang-btn {
  background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.2); border-radius: 4px;
  padding: 4px 9px; font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem; font-weight: 700; cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.lang-btn:hover { background: rgba(255,255,255,0.18); color: #fff; }
.lang-btn.active { background: var(--red); color: #fff; border-color: var(--red); }
@media (max-width: 768px) { .lang-switcher { display: none; } }

/* ===== RTL SUPPORT ===== */
body.rtl { font-family: 'Open Sans', 'Segoe UI', Tahoma, Arial, sans-serif; }
body.rtl h1, body.rtl h2, body.rtl h3, body.rtl h4, body.rtl h5 {
  font-family: 'Montserrat', 'Segoe UI', Tahoma, Arial, sans-serif;
}
body.rtl .nav-links { margin-left: 0; margin-right: auto; }
body.rtl .nav-cta { margin-left: 0; margin-right: 12px; }
body.rtl .lang-switcher { margin-left: 0; margin-right: 8px; }
body.rtl .dropdown { left: auto; right: 0; }
body.rtl .slide-content { padding: 0 0 0 60px; }
body.rtl .slide-overlay { background: linear-gradient(270deg, rgba(8,20,40,0.82) 0%, rgba(8,20,40,0.45) 60%, rgba(8,20,40,0.25) 100%); }
body.rtl .top-bar-inner { flex-direction: row-reverse; }
body.rtl .footer-col ul a:hover { padding-left: 0; padding-right: 4px; }
body.rtl .why-list li { flex-direction: row; }
body.rtl .hbs-items { flex-direction: row-reverse; }
body.rtl .quick-tile { flex-direction: row; }
body.rtl .map-contact-item { flex-direction: row; }
body.rtl .float-contact-widget { right: auto; left: 28px; }
body.rtl .float-contact-item:hover { transform: translateX(4px); }
@media (max-width: 480px) {
  body.rtl .float-contact-widget { left: 16px; right: auto; }
}

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ===== RESPONSIVE — TABLET (≤1024px) ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand p { max-width: 100%; }
}

/* ===== RESPONSIVE — LARGE MOBILE / SMALL TABLET (≤900px) ===== */
@media (max-width: 900px) {
  /* Grids that go single column */
  .why-grid,
  .video-grid,
  .quote-grid { grid-template-columns: 1fr; }

  /* Why image */
  .why-image-col { max-width: 480px; margin: 0 auto; width: 100%; padding-bottom: 28px; }
  .why-img { aspect-ratio: 16/10; }
  .years-badge { right: 16px; bottom: 0; }

  /* Quick actions — 2 per row */
  .quick-grid { grid-template-columns: repeat(2, 1fr); }
  .quick-tile { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .quick-tile:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }
  .quick-tile:last-child, .quick-tile:nth-last-child(2):nth-child(odd) { border-bottom: none; }

  /* Stats — 2×2 */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }

  /* Services — 2 columns */
  .services-grid { grid-template-columns: repeat(2, 1fr); }

  /* Gallery — 2 visible on tablet */
  .gallery-arrow-prev { left: -10px; }
  .gallery-arrow-next { right: -10px; }

  /* Map — stack on tablet */
  .map-section { grid-template-columns: 1fr; }
  .map-panel-map iframe { min-height: 360px; }

  /* Reviews — 1 column */
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-header { flex-direction: column; align-items: flex-start; gap: 16px; text-align: left; margin-bottom: 28px; }

  /* Video section: text first, then video */
  .video-grid { gap: 36px; }

  /* Quote left text above form */
  .quote-grid { gap: 36px; }
}

/* ===== RESPONSIVE — MOBILE (≤768px) ===== */
@media (max-width: 768px) {
  /* Top bar: keep only phone */
  .top-bar { padding: 7px 0; }
  .top-bar-left .top-bar-item:last-child { display: none; }
  .top-bar-right { display: none; }

  /* Navbar */
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-inner { gap: 12px; }
  .nav-logo { font-size: 1.25rem; }

  /* Hero — shorter on mobile, content padded */
  .hero-slider { height: clamp(480px, 85vh, 640px); }
  .slide-overlay { background: linear-gradient(160deg, rgba(8,20,40,0.88) 0%, rgba(8,20,40,0.55) 100%); }
  .slide-content { padding: 0; max-width: 100%; }
  .slide-content p { font-size: 0.95rem; margin-bottom: 24px; }
  .slide-btns { flex-direction: column; align-items: flex-start; gap: 12px; }
  .slide-btns .btn { width: 100%; max-width: 280px; justify-content: center; }
  .slide-arrow { width: 40px; height: 40px; font-size: 1.4rem; }
  .slide-prev { left: 10px; }
  .slide-next { right: 10px; }
  .slide-dots { bottom: 18px; }

  /* Quick actions: already 2-col from 900px, fine */

  /* Why section */
  .why-section { padding: 48px 0 56px; }
  .why-list { gap: 18px; }

  /* Services */
  .services-section { padding: 48px 0; }
  .service-img-wrap { height: 180px; }

  /* Stats */
  .stats-banner { padding: 40px 0; }

  /* Video */
  .video-section { padding: 48px 0; }

  /* Gallery */
  .gallery-section { padding: 48px 0; }
  .gallery-arrow { width: 36px; height: 36px; font-size: 1.3rem; }
  .gallery-arrow-prev { left: -8px; }
  .gallery-arrow-next { right: -8px; }

  /* Reviews */
  .reviews-section { padding: 48px 0; }

  /* Quote form */
  .quote-section { padding: 48px 0; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .quote-left { order: 1; }
  .quote-right { order: 2; }

  /* CTA banner */
  .cta-banner { padding: 36px 0; }
  .cta-inner { flex-direction: column; text-align: center; gap: 24px; }
  .cta-btns { flex-direction: column; width: 100%; align-items: center; }
  .cta-btns .btn { width: 100%; max-width: 300px; justify-content: center; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand p { max-width: 100%; }
  .footer-bottom-inner { flex-direction: column; align-items: center; text-align: center; gap: 6px; }
}

/* ===== RESPONSIVE — SMALL MOBILE (≤480px) ===== */
@media (max-width: 480px) {
  /* Top bar: center the phone */
  .top-bar-inner { justify-content: center; }
  .top-bar-left { justify-content: center; }

  /* Hero */
  .hero-slider { height: clamp(420px, 90vh, 580px); }
  .slide-badge { font-size: 0.65rem; }
  .slide-content h1 { font-size: clamp(1.55rem, 8vw, 2rem); }
  .slide-content p { font-size: 0.88rem; }
  .slide-btns .btn { max-width: 100%; }

  /* Quick actions: stack to 1 column */
  .quick-grid { grid-template-columns: 1fr; }
  .quick-tile { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 16px 20px; }
  .quick-tile:last-child { border-bottom: none; }
  .quick-icon { width: 44px; height: 44px; flex-shrink: 0; }

  /* Services: 1 column */
  .services-grid { grid-template-columns: 1fr; }
  .service-img-wrap { height: 200px; }

  /* Stats: 2×2 stays, but tighten */
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .stat-num { font-size: 2rem; }

  /* Why image smaller */
  .why-img { aspect-ratio: 16/9; }
  .years-badge { padding: 14px 16px; right: 8px; bottom: -12px; }
  .years-num { font-size: 1.7rem; }

  /* Reviews */
  .reviews-header { gap: 12px; }
  .reviews-header .btn { width: 100%; text-align: center; justify-content: center; }

  /* Review modal */
  .review-modal-inner { padding: 20px 16px; border-radius: 12px 12px 0 0; }
  .modal-backdrop { align-items: flex-end; padding: 0; }
  .video-modal-inner { margin: 20px; }
  .modal-close { top: -36px; font-size: 1.3rem; }

  /* Quote form */
  .quote-form-wrap { padding: 20px 16px; border-radius: var(--radius); }
  .quote-form-wrap h3 { font-size: 1.1rem; }

  /* Trust bullets */
  .trust-bullets li { font-size: 0.85rem; }

  /* Footer: full single column */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-col h4 { margin-bottom: 12px; }

  /* CTA */
  .cta-text h2 { font-size: 1.4rem; }

  /* Why list icon shrink */
  .why-icon-wrap { width: 38px; height: 38px; flex-shrink: 0; }

  /* Section typography */
  .section-title { font-size: clamp(1.35rem, 6vw, 1.8rem); }
}

/* ===== RESPONSIVE — EXTRA SMALL (≤360px) ===== */
@media (max-width: 360px) {
  .nav-logo { font-size: 1.1rem; }
  .hero-slider { height: 420px; }
  .slide-content h1 { font-size: 1.45rem; }
  .quick-icon { width: 38px; height: 38px; }
  .quick-title { font-size: 0.88rem; }
  .quick-sub { font-size: 0.72rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { padding: 8px 0; }
}

/* ===== CHAT WIDGET ===== */
.w4m-chat { position: fixed; bottom: 24px; left: 24px; z-index: 9990; display: flex; flex-direction: column; align-items: flex-start; }
.w4m-chat-btn { width: 58px; height: 58px; border-radius: 50%; background: #c0392b; color: #fff; border: none; cursor: pointer; box-shadow: 0 4px 16px rgba(0,0,0,0.25); display: flex; align-items: center; justify-content: center; position: relative; transition: transform 0.2s; }
.w4m-chat-btn:hover { transform: scale(1.08); }
.w4m-chat-badge { position: absolute; top: -4px; right: -4px; background: #f39c12; color: #fff; border-radius: 50%; width: 20px; height: 20px; font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.w4m-chat-box { width: 320px; background: #fff; border-radius: 16px; box-shadow: 0 8px 32px rgba(0,0,0,0.18); margin-bottom: 12px; overflow: hidden; display: none; flex-direction: column; max-height: 480px; animation: chatSlideUp 0.3s ease; }
@keyframes chatSlideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.w4m-chat-header { background: #1e3a5f; padding: 14px 16px; display: flex; align-items: center; gap: 10px; }
.w4m-chat-avatar { width: 38px; height: 38px; border-radius: 50%; background: #c0392b; color: #fff; font-weight: 700; font-size: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.w4m-chat-info { flex: 1; }
.w4m-chat-name { color: #fff; font-weight: 600; font-size: 14px; }
.w4m-chat-status { color: #a8d8ea; font-size: 11px; display: flex; align-items: center; gap: 4px; margin-top: 2px; }
.w4m-online-dot { width: 7px; height: 7px; border-radius: 50%; background: #2ecc71; display: inline-block; }
.w4m-chat-close { background: none; border: none; color: #fff; font-size: 18px; cursor: pointer; padding: 0 4px; opacity: 0.7; line-height: 1; }
.w4m-chat-close:hover { opacity: 1; }
.w4m-chat-messages { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 10px; background: #f8f9fa; }
.w4m-msg { max-width: 85%; padding: 10px 14px; border-radius: 14px; font-size: 13px; line-height: 1.5; animation: msgFade 0.3s ease; }
@keyframes msgFade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
.w4m-msg-bot { background: #fff; color: #333; border-radius: 14px 14px 14px 4px; box-shadow: 0 1px 4px rgba(0,0,0,0.08); align-self: flex-start; }
.w4m-msg-user { background: #c0392b; color: #fff; border-radius: 14px 14px 4px 14px; align-self: flex-end; }
.w4m-typing { display: flex; align-items: center; gap: 4px; padding: 10px 14px; background: #fff; border-radius: 14px 14px 14px 4px; width: fit-content; box-shadow: 0 1px 4px rgba(0,0,0,0.08); }
.w4m-typing span { width: 7px; height: 7px; border-radius: 50%; background: #bbb; animation: typingDot 1.2s infinite; }
.w4m-typing span:nth-child(2) { animation-delay: 0.2s; }
.w4m-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingDot { 0%,60%,100% { transform: translateY(0); } 30% { transform: translateY(-6px); } }
.w4m-chat-replies { padding: 10px 12px; background: #fff; border-top: 1px solid #eee; display: flex; flex-wrap: wrap; gap: 6px; }
.w4m-reply-btn { background: #fff; border: 1.5px solid #c0392b; color: #c0392b; border-radius: 20px; padding: 7px 14px; font-size: 12px; font-weight: 600; cursor: pointer; transition: all 0.2s; white-space: nowrap; }
.w4m-reply-btn:hover { background: #c0392b; color: #fff; }
.w4m-contact-row { display: flex; flex-direction: column; gap: 6px; margin-top: 4px; }
.w4m-contact-link { display: flex; align-items: center; gap: 8px; padding: 8px 12px; background: #f0f4f8; border-radius: 8px; text-decoration: none; color: #1e3a5f; font-size: 13px; font-weight: 600; transition: background 0.2s; }
.w4m-contact-link:hover { background: #dce8f5; }
.w4m-social-row { display: flex; gap: 8px; margin-top: 4px; flex-wrap: wrap; }
.w4m-social-link { display: flex; align-items: center; gap: 6px; padding: 7px 12px; border-radius: 8px; text-decoration: none; color: #fff; font-size: 12px; font-weight: 600; }
.w4m-social-fb { background: #1877f2; }
.w4m-social-ig { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.w4m-social-wa { background: #25d366; }
.w4m-social-tk { background: #010101; }
@media (max-width: 480px) { .w4m-chat { bottom: 16px; left: 12px; } .w4m-chat-box { width: 290px; } }
