/* =============================================
   ALMISAM BUILDING MAINTENANCE — STYLE SHEET
   TABLE OF CONTENTS
   1.  CSS Reset & Base
   2.  CSS Variables
   3.  Typography
   4.  Buttons
   5.  Header — Top Bar
   6.  Header — Main Nav
   7.  Header — Service Nav Bar
   8.  Mobile Menu
   9.  Hero Sections
   10. Service Cards
   11. About Section
   12. Why Choose Us
   13. Testimonials
   14. Contact & Form
   15. FAQ Accordion
   16. Footer
   17. WhatsApp Float & Back to Top
   18. Mobile Bottom Action Bar
   19. Book Now Popup & Steps
   20. Animations & Transitions
   21. Responsive Breakpoints
   ============================================= */

/* ===== 2. CSS Variables ===== */
:root {
  --red:        #E63946;
  --blue:       #1D3557;
  --blue-mid:   #457B9D;
  --blue-light: #EAF0F8;
  --blue-dark:  #162840;
  --green:      #25D366;
  --gray-light: #F8F9FA;
  --gray-mid:   #E0E0E0;
  --white:      #FFFFFF;
  --dark:       #1A1A2E;
  --muted:      #6b7280;
  --font-head:  'Poppins', sans-serif;
  --font-body:  'Inter', sans-serif;
  --shadow:     0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.16);
  --radius:     8px;
  --radius-lg:  12px;
  --radius-btn: 4px;
  --transition: all 0.3s ease;
}

/* ===== 1. CSS Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { padding: 0; margin: 0; list-style: none; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }

/* ===== 3. Typography ===== */
h1,h2,h3,h4 { font-family: var(--font-head); margin: 0 0 12px; line-height: 1.2; color: var(--dark); }
.section { padding: 72px 0; }
.section-gray { background: var(--gray-light); }
.section-navy { background: var(--blue); color: var(--white); }
.section-navy h1, .section-navy h2, .section-navy h3, .section-navy h4 { color: var(--white); }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 48px; }
.section-title { font-size: 36px; font-weight: 700; margin-bottom: 12px; }
.section-sub { color: var(--muted); font-size: 17px; margin: 0; }
.section-navy .section-sub { color: rgba(255,255,255,0.85); }
.eyebrow { display: inline-block; color: var(--red); font-weight: 700; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; }

/* ===== 4. Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 22px; font-family: var(--font-body); font-weight: 600; font-size: 15px;
  border-radius: var(--radius-btn); transition: var(--transition); cursor: pointer;
  text-align: center; min-height: 44px; border: 2px solid transparent; line-height: 1.2;
}
.btn-call { background: var(--red); color: var(--white); }
.btn-call:hover { background: #c92d3b; transform: translateY(-1px); }
.btn-learn { background: var(--red); color: var(--white); padding: 10px 18px; min-height: 40px; font-size: 14px; flex: 1; }
.btn-learn:hover { background: #c92d3b; }
.btn-book { background: var(--blue); color: var(--white); }
.btn-book:hover { background: #142944; transform: translateY(-1px); }
.btn-whatsapp { background: var(--green); color: var(--white); }
.btn-whatsapp:hover { background: #1eb858; }
.btn-outline { background: transparent; color: var(--blue); border-color: var(--gray-mid); }
.btn-outline:hover { border-color: var(--blue); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-sm { padding: 10px 18px; font-size: 14px; min-height: 40px; }
.btn-block { display: block; width: 100%; margin-top: 12px; }

/* ===== 5. Header — Top Bar ===== */
.site-header { position: sticky; top: 0; z-index: 1000; background: var(--white); box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.top-bar { background: var(--red); color: var(--white); height: 38px; font-size: 13px; font-weight: 500; }
.top-bar-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; gap: 16px; }
.top-bar-left { letter-spacing: 0.3px; }
.top-bar-right { display: flex; gap: 14px; align-items: center; }
.top-bar-right a { color: var(--white); transition: opacity 0.2s; }
.top-bar-right a:hover { opacity: 0.8; text-decoration: underline; }
.top-bar-right .sep { opacity: 0.45; }

/* ===== 6. Header — Main Nav ===== */
.main-nav {
  background: linear-gradient(180deg, var(--blue) 0%, var(--blue-dark) 100%);
  height: 92px; transition: box-shadow 0.25s ease, height 0.25s ease;
  border-bottom: 3px solid var(--red);
}
.main-nav.scrolled { box-shadow: 0 6px 20px rgba(0,0,0,0.18); }
.main-nav-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; gap: 24px; }
.logo-link { display: inline-flex; align-items: center; background: var(--white); padding: 8px 16px; border-radius: 6px; box-shadow: 0 4px 14px rgba(0,0,0,0.18); flex-shrink: 0; }
.logo-img { height: 56px; width: auto; display: block; }
.logo-fallback { flex-direction: column; align-items: flex-start; line-height: 1; }
.logo-fallback .lf-1 { font-family: var(--font-head); font-weight: 900; color: var(--red); font-size: 22px; letter-spacing: 2px; text-transform: uppercase; }
.logo-fallback .lf-2 { font-family: var(--font-head); font-weight: 600; color: var(--blue); font-size: 11px; letter-spacing: 1.5px; margin-top: 4px; }

/* Reviews / Trust badge in middle */
.header-reviews { display: flex; flex-direction: column; align-items: center; color: var(--white); font-size: 12px; font-weight: 600; line-height: 1.3; gap: 2px; }
.header-reviews .stars { color: #FFC107; font-size: 16px; letter-spacing: 2px; }
.header-reviews .review-text { color: rgba(255,255,255,0.92); font-size: 11px; letter-spacing: 0.5px; text-transform: uppercase; }

/* Emergency badge */
.header-emergency { display: flex; align-items: center; gap: 10px; color: var(--white); }
.header-emergency .pulse-dot { width: 10px; height: 10px; background: var(--red); border-radius: 50%; box-shadow: 0 0 0 0 rgba(230,57,70,0.7); animation: pulse-dot 1.8s infinite; flex-shrink: 0; }
@keyframes pulse-dot { 0% { box-shadow: 0 0 0 0 rgba(230,57,70,0.7); } 70% { box-shadow: 0 0 0 12px rgba(230,57,70,0); } 100% { box-shadow: 0 0 0 0 rgba(230,57,70,0); } }
.header-emergency .em-text { display: flex; flex-direction: column; line-height: 1.2; }
.header-emergency .em-1 { font-size: 13px; font-weight: 700; letter-spacing: 0.5px; }
.header-emergency .em-2 { font-size: 11px; color: rgba(255,255,255,0.8); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.btn-call-pill { background: var(--white); color: var(--blue); padding: 12px 22px; border-radius: 999px; font-weight: 700; font-size: 15px; display: inline-flex; align-items: center; gap: 8px; box-shadow: 0 4px 12px rgba(0,0,0,0.15); transition: var(--transition); border: 2px solid transparent; }
.btn-call-pill:hover { background: var(--blue-light); transform: translateY(-1px); }
.btn-call-pill::before { content: '\260E'; font-size: 16px; color: var(--red); }
.btn-schedule-pill { background: var(--red); color: var(--white); padding: 12px 24px; border-radius: 999px; font-weight: 700; font-size: 15px; display: inline-flex; align-items: center; gap: 8px; box-shadow: 0 4px 14px rgba(230,57,70,0.4); transition: var(--transition); }
.btn-schedule-pill:hover { background: #c92d3b; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(230,57,70,0.55); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 10px; width: 48px; height: 48px; background: var(--red); border-radius: 6px; align-items: center; justify-content: center; box-shadow: 0 2px 8px rgba(0,0,0,0.2); flex-shrink: 0; }
.hamburger span { display: block; width: 26px; height: 3px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.btn-mobile-call { display: none; }

/* ===== 7. Header — Service Nav Bar (Bottom Menu) ===== */
.service-nav { background: var(--blue-dark); height: 52px; }
.service-nav-inner { display: flex; align-items: center; height: 100%; max-width: 1240px; margin: 0 auto; padding: 0 20px; gap: 4px; overflow-x: auto; scrollbar-width: none; }
.service-nav-inner::-webkit-scrollbar { display: none; }
.service-nav-link { color: rgba(255,255,255,0.92); font-size: 14px; font-weight: 600; padding: 0 18px; height: 52px; line-height: 52px; white-space: nowrap; transition: var(--transition); position: relative; letter-spacing: 0.3px; text-transform: uppercase; }
.service-nav-link:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.service-nav-link.active { color: var(--white); background: var(--red); }
.service-nav-link.has-dropdown::after { content: ' \25BE'; font-size: 10px; margin-left: 6px; opacity: 0.7; }

/* Desktop dropdowns on bottom nav */
.service-nav-item { position: relative; }
.service-nav-dropdown {
  position: absolute; top: 100%; left: 0; min-width: 280px;
  background: var(--white); border-top: 3px solid var(--red);
  box-shadow: var(--shadow-lg); padding: 8px 0; opacity: 0; visibility: hidden;
  transform: translateY(8px); transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  border-radius: 0 0 var(--radius) var(--radius); z-index: 1050;
}
.service-nav-item:hover .service-nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.service-nav-dropdown a { display: block; padding: 11px 22px; font-size: 14px; color: var(--blue); font-weight: 500; text-transform: none; letter-spacing: 0; transition: var(--transition); height: auto; line-height: 1.4; }
.service-nav-dropdown a:hover { background: var(--blue-light); color: var(--red); padding-left: 28px; }

/* ===== 8. Mobile Menu ===== */
.mobile-menu-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.55); z-index: 1100; backdrop-filter: blur(2px); }
.mobile-menu-overlay.open { display: block; }
.mobile-menu {
  position: fixed; top: 0; right: -100%; width: 340px; max-width: 88vw; height: 100vh;
  background: var(--white); z-index: 1101; padding: 0; overflow-y: auto;
  transition: right 0.3s ease; box-shadow: -8px 0 30px rgba(0,0,0,0.2);
  display: flex; flex-direction: column;
}
.mobile-menu.open { right: 0; }
.mobile-menu-head { background: var(--blue); padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; border-bottom: 3px solid var(--red); }
.mobile-menu-head .mm-logo { background: var(--white); padding: 6px 12px; border-radius: 4px; }
.mobile-menu-head .mm-logo img { height: 36px; }
.mobile-close { padding: 10px 14px; background: var(--red); border-radius: 6px; font-weight: 700; color: var(--white); font-size: 14px; }
.mobile-menu-body { padding: 8px 0; flex: 1; }
.mobile-link { display: block; padding: 16px 24px; font-size: 15px; font-weight: 600; color: var(--blue); border-bottom: 1px solid var(--gray-mid); width: 100%; text-align: left; text-transform: uppercase; letter-spacing: 0.5px; transition: var(--transition); }
.mobile-link:hover { background: var(--blue-light); color: var(--red); padding-left: 32px; }
.mobile-toggle { display: flex; align-items: center; justify-content: space-between; }
.mobile-toggle::after { content: '+'; font-size: 22px; font-weight: 400; color: var(--red); }
.mobile-toggle.open::after { content: '\2212'; }
.mobile-sub { display: none; background: var(--gray-light); }
.mobile-sub.open { display: block; }
.mobile-sublink { display: block; padding: 12px 24px 12px 40px; font-size: 14px; color: var(--blue); border-bottom: 1px solid var(--gray-mid); transition: var(--transition); }
.mobile-sublink:hover { background: var(--blue-light); color: var(--red); }
.mobile-actions { display: flex; flex-direction: column; gap: 10px; padding: 20px 24px; background: var(--gray-light); border-top: 2px solid var(--gray-mid); }
.mobile-actions .btn { width: 100%; }
.mobile-contact { padding: 16px 24px; background: var(--blue); color: var(--white); font-size: 13px; text-align: center; }
.mobile-contact a { color: var(--white); font-weight: 700; display: block; margin-top: 4px; font-size: 16px; }


/* ===== 9. Hero Sections ===== */
.hero { color: var(--white); background-size: cover; background-position: center; display: flex; align-items: center; }
.hero-lg { min-height: 600px; padding: 80px 0; }
.hero-md { min-height: 400px; padding: 60px 0; }
.hero-inner { text-align: center; max-width: 880px; }
.hero-badge { display: inline-block; background: var(--red); color: var(--white); padding: 8px 18px; border-radius: 4px; font-size: 13px; font-weight: 600; letter-spacing: 0.5px; margin-bottom: 20px; }
.hero-title { font-size: 52px; font-weight: 800; color: var(--white); margin-bottom: 18px; line-height: 1.15; }
.hero-sub { font-size: 18px; color: rgba(255,255,255,0.92); max-width: 720px; margin: 0 auto 32px; }
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 12px; }
.trust-strip { display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; margin-top: 28px; color: rgba(255,255,255,0.9); font-size: 13px; font-weight: 600; letter-spacing: 0.5px; }
.trust-strip span { padding: 6px 14px; border: 1px solid rgba(255,255,255,0.3); border-radius: 4px; }
.breadcrumb { font-size: 14px; color: rgba(255,255,255,0.85); margin-top: 14px; }
.breadcrumb a { color: var(--white); text-decoration: underline; }

/* Service hero variant */
.service-hero { color: var(--white); background-size: cover; background-position: center; min-height: 500px; padding: 60px 0; display: flex; align-items: center; }
.service-hero-inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center; }
.service-hero-content .breadcrumb { color: rgba(255,255,255,0.85); margin-bottom: 16px; margin-top: 0; }
.service-h1 { font-size: 44px; color: var(--white); font-weight: 800; line-height: 1.15; }
.service-sub { color: rgba(255,255,255,0.92); font-size: 17px; margin-bottom: 24px; max-width: 560px; }
.service-hero-card { background: var(--white); color: var(--dark); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-lg); }
.service-hero-card h3 { color: var(--blue); margin-bottom: 14px; }
.plain-list li { padding: 8px 0; border-bottom: 1px dashed var(--gray-mid); font-size: 14px; color: var(--dark); }
.plain-list li:last-child { border-bottom: none; }

/* ===== 10. Service Cards ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: var(--white); border: 1px solid var(--gray-mid); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); display: flex; flex-direction: column; }
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-card-img-link { display: block; overflow: hidden; }
.service-card-img-wrap { height: 200px; overflow: hidden; }
.service-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-card-img-wrap img { transform: scale(1.06); }
.service-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.service-card-title { font-size: 18px; font-weight: 700; color: var(--dark); margin: 0 0 8px; }
.service-card-desc { color: var(--muted); font-size: 14px; margin: 0 0 18px; flex: 1; }
.service-card-actions { display: flex; gap: 8px; }
.service-card-actions .btn { flex: 1; padding: 10px 14px; font-size: 14px; min-height: 40px; }

/* Stats Bar */
.stats-bar { background: var(--blue); color: var(--white); padding: 48px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-num { font-family: var(--font-head); font-size: 48px; font-weight: 800; color: var(--white); }
.stat-label { font-size: 14px; color: rgba(255,255,255,0.85); margin-top: 4px; }

/* Marquee */
.marquee { background: var(--red); color: var(--white); overflow: hidden; padding: 14px 0; }
.marquee-track { display: flex; gap: 50px; white-space: nowrap; animation: marquee 40s linear infinite; font-weight: 600; font-size: 14px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== 11. About / Split Sections ===== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split-img img { width: 100%; height: 440px; object-fit: cover; border-radius: var(--radius); }
.split-text p { color: var(--muted); font-size: 16px; margin-bottom: 16px; }

/* Founders */
.founders-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.founder-card { background: var(--white); border: 1px solid var(--gray-mid); border-radius: var(--radius); padding: 32px; text-align: center; box-shadow: var(--shadow); transition: var(--transition); }
.founder-card:hover { box-shadow: var(--shadow-lg); }
.founder-circle { width: 80px; height: 80px; border-radius: 50%; background: var(--blue); color: var(--white); font-size: 24px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; letter-spacing: 1px; }
.founder-title { color: var(--blue-mid); font-weight: 600; margin: 4px 0 8px; }
.founder-phone { font-size: 18px; font-weight: 700; color: var(--blue); margin-bottom: 18px; }
.founder-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* Credentials */
.creds-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 920px; margin: 0 auto; }
.cred { display: flex; justify-content: space-between; align-items: center; padding: 18px 22px; background: var(--gray-light); border-left: 4px solid var(--red); border-radius: var(--radius); }
.cred-l { color: var(--muted); font-weight: 600; font-size: 14px; }
.cred-v { color: var(--blue); font-weight: 700; font-size: 15px; text-align: right; }

/* Values */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-item { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.15); padding: 28px; border-radius: var(--radius); }
.value-item h3 { color: var(--white); font-size: 22px; }
.value-item p { color: rgba(255,255,255,0.85); margin: 0; }

/* ===== 12. Why Choose Us / Process / Offers ===== */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.why-item { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.15); padding: 28px; border-radius: var(--radius); }
.why-num { font-family: var(--font-head); font-size: 36px; font-weight: 800; color: var(--red); margin-bottom: 8px; }
.why-item h3 { color: var(--white); font-size: 20px; margin-bottom: 8px; }
.why-item p { color: rgba(255,255,255,0.85); margin: 0; }

.offers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.offer-card { background: var(--white); border: 1px solid var(--gray-mid); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.offer-card h3 { color: var(--blue); }
.offer-card p { color: var(--muted); flex: 1; margin-bottom: 16px; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.process-step { text-align: center; padding: 24px; }
.process-num { width: 64px; height: 64px; border-radius: 50%; background: var(--blue); color: var(--white); font-size: 24px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; font-family: var(--font-head); }
.process-step h3 { font-size: 18px; color: var(--dark); }
.process-step p { color: var(--muted); font-size: 14px; }

/* Sub services */
.sub-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.sub-card { background: var(--white); border: 1px solid var(--gray-mid); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); }
.sub-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.sub-card-img { height: 180px; overflow: hidden; }
.sub-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.sub-card:hover .sub-card-img img { transform: scale(1.06); }
.sub-card-body { padding: 20px; }
.sub-card-body h3 { font-size: 16px; color: var(--blue); margin-bottom: 6px; }
.sub-card-body p { color: var(--muted); font-size: 14px; margin: 0; }

/* Service intro */
.service-intro { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; }
.service-intro-text p { color: var(--muted); margin-bottom: 14px; }
.bullet-list { margin-top: 16px; }
.bullet-list li { padding: 8px 0 8px 22px; position: relative; color: var(--dark); font-size: 15px; }
.bullet-list li::before { content: ''; position: absolute; left: 0; top: 16px; width: 8px; height: 8px; background: var(--red); border-radius: 50%; }
.service-intro-img { width: 100%; height: 360px; object-fit: cover; border-radius: var(--radius); }
.contact-box { background: var(--blue); color: var(--white); border-radius: var(--radius); padding: 24px; margin-top: 16px; }
.contact-box h3 { color: var(--white); margin-bottom: 12px; }
.contact-box div { margin-bottom: 8px; font-size: 14px; }
.contact-box a { color: #ffd; text-decoration: underline; }

.trust-section { text-align: center; max-width: 880px; margin: 0 auto; }
.trust-section p { color: rgba(255,255,255,0.9); margin: 16px 0 22px; }
.trust-badges { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.trust-badges span { padding: 10px 22px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.25); border-radius: 4px; font-weight: 600; font-size: 14px; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Other services row */
.other-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.other-card { background: var(--white); border: 1px solid var(--gray-mid); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); padding: 0 0 16px; text-align: center; }
.other-card-img { height: 160px; overflow: hidden; }
.other-card-img img { width: 100%; height: 100%; object-fit: cover; }
.other-card h3 { padding: 14px 14px 8px; font-size: 16px; color: var(--blue); }
.other-card .btn { margin: 0 14px; }

/* ===== 13. Testimonials ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.t-card { background: var(--white); border: 1px solid var(--gray-mid); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.t-stars { color: var(--red); font-weight: 700; margin-bottom: 10px; font-size: 14px; }
.t-card p { color: var(--dark); font-style: italic; margin: 0 0 14px; }
.t-name { color: var(--blue); font-weight: 700; font-size: 14px; }

/* ===== 14. Contact & Form ===== */
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.contact-card { background: var(--white); border: 1px solid var(--gray-mid); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); text-align: center; }
.contact-role { color: var(--blue-mid); font-weight: 600; margin: 4px 0 10px; }
.contact-phone { font-size: 18px; font-weight: 700; color: var(--blue); margin-bottom: 16px; }
.contact-line { color: var(--muted); margin: 6px 0; font-size: 14px; }
.contact-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 14px; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.contact-form { background: var(--white); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.form-title { color: var(--blue); margin-bottom: 18px; }
.form-row { margin-bottom: 14px; }
.form-row label { display: block; font-size: 14px; font-weight: 600; color: var(--blue); margin-bottom: 6px; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%; padding: 12px; font-family: inherit; font-size: 15px;
  border: 1px solid var(--gray-mid); border-radius: 6px; background: var(--white); color: var(--dark);
  transition: var(--transition);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(29,53,87,0.1); }
.form-error { display: block; color: var(--red); font-size: 13px; margin-top: 4px; min-height: 18px; }
.contact-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); height: 100%; min-height: 460px; }
.contact-map iframe { width: 100%; height: 100%; min-height: 460px; border: none; display: block; }

/* ===== 15. FAQ Accordion ===== */
.faq-list { max-width: 900px; margin: 0 auto; }
.faq { border: 1px solid var(--gray-mid); border-radius: var(--radius); margin-bottom: 12px; background: var(--white); overflow: hidden; }
.faq-q { width: 100%; text-align: left; padding: 18px 22px; font-weight: 600; font-size: 16px; color: var(--blue); display: flex; justify-content: space-between; align-items: center; transition: var(--transition); }
.faq-q::after { content: '+'; font-size: 22px; font-weight: 400; color: var(--red); }
.faq.open .faq-q::after { content: '–'; }
.faq-q:hover { background: var(--blue-light); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; padding: 0 22px; }
.faq.open .faq-a { max-height: 500px; padding: 0 22px 18px; }
.faq-a p { color: var(--muted); margin: 0; }

/* ===== CTA Banner ===== */
.cta-banner { background: var(--red); color: var(--white); padding: 56px 0; }
.cta-inner { text-align: center; }
.cta-inner h2 { color: var(--white); font-size: 32px; margin-bottom: 8px; }
.cta-inner p { color: rgba(255,255,255,0.9); margin-bottom: 22px; }
.cta-banner .btn-book { background: var(--blue); color: var(--white); }
.cta-banner .btn-book:hover { background: var(--blue-dark); }

/* ===== 16. Footer ===== */
.site-footer { background: var(--blue); color: var(--white); padding-top: 56px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr 1.4fr; gap: 36px; padding-bottom: 40px; }
.footer-col h4 { color: var(--white); font-size: 16px; font-weight: 700; margin-bottom: 16px; letter-spacing: 0.5px; }
.footer-logo-wrap { display: inline-block; background: var(--white); padding: 8px; border-radius: 8px; margin-bottom: 12px; }
.footer-logo { height: 70px; width: auto; }
.footer-brand { font-weight: 800; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; margin-top: 10px; color: var(--white); }
.footer-desc { color: rgba(255,255,255,0.78); font-size: 14px; margin: 10px 0; }
.footer-meta { color: rgba(255,255,255,0.85); font-weight: 600; font-size: 13px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: rgba(255,255,255,0.82); font-size: 14px; transition: var(--transition); }
.footer-links a:hover { color: var(--red); padding-left: 4px; }
.footer-contact { display: flex; flex-direction: column; gap: 12px; color: rgba(255,255,255,0.85); font-size: 14px; }
.footer-contact a { color: rgba(255,255,255,0.95); }
.footer-contact .btn { width: fit-content; margin-top: 4px; }
.footer-bottom { background: var(--blue-dark); text-align: center; color: rgba(255,255,255,0.8); font-size: 12px; padding: 14px 0; }

/* ===== 17. WhatsApp Float & Back to Top ===== */
.float-whatsapp {
  position: fixed; bottom: 100px; right: 24px; z-index: 9999;
  width: 56px; height: 56px; border-radius: 50%; background: var(--green); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 16px;
  box-shadow: 0 6px 20px rgba(37,211,102,0.45); transition: var(--transition);
}
.float-whatsapp:hover { transform: scale(1.08); }
.float-pulse { position: absolute; inset: 0; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; opacity: 0.6; z-index: -1; }
@keyframes pulse { 0% { transform: scale(1); opacity: 0.6; } 100% { transform: scale(1.6); opacity: 0; } }
.float-text { position: relative; z-index: 1; }
.float-tip { position: absolute; right: 70px; top: 50%; transform: translateY(-50%); background: var(--blue); color: var(--white); padding: 6px 12px; border-radius: 4px; font-size: 12px; font-weight: 600; white-space: nowrap; opacity: 0; pointer-events: none; transition: var(--transition); }
.float-whatsapp:hover .float-tip { opacity: 1; right: 64px; }

.float-top { position: fixed; bottom: 24px; right: 24px; z-index: 9997; width: 44px; height: 44px; border-radius: 50%; background: var(--blue); color: var(--white); font-weight: 700; font-size: 12px; box-shadow: var(--shadow-lg); opacity: 0; pointer-events: none; transition: var(--transition); }
.float-top.show { opacity: 1; pointer-events: auto; }
.float-top:hover { background: var(--blue-dark); transform: translateY(-2px); }

/* ===== 18. Mobile Bottom Action Bar ===== */
.mobile-bottom-bar { display: none; position: fixed; left: 0; right: 0; bottom: 0; height: 56px; z-index: 9998; box-shadow: 0 -4px 16px rgba(0,0,0,0.15); }
.mbb-btn { flex: 1; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 16px; font-weight: 700; height: 56px; border: none; }
.mbb-book { background: var(--blue); }
.mbb-call { background: var(--red); }

/* ===== 19. Book Now Popup ===== */
.popup-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,0.75); z-index: 10000; display: none; align-items: center; justify-content: center; padding: 20px; }
.popup-backdrop.open { display: flex; animation: fadeIn 0.2s; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.popup-card { background: var(--white); max-width: 560px; width: 100%; border-radius: var(--radius-lg); padding: 32px; max-height: 90vh; overflow-y: auto; position: relative; }
.popup-close { position: absolute; top: 14px; right: 16px; font-size: 16px; font-weight: 700; color: var(--blue); padding: 6px 10px; }
.popup-progress { height: 6px; background: var(--gray-mid); border-radius: 3px; overflow: hidden; margin-bottom: 8px; }
.popup-progress-fill { height: 100%; background: var(--blue); width: 25%; transition: width 0.3s ease; }
.popup-step-text { font-size: 13px; color: var(--muted); margin-bottom: 18px; }
.popup-body h3 { color: var(--blue); font-size: 22px; margin-bottom: 4px; }
.popup-body .popup-sub { color: var(--muted); font-size: 14px; margin-bottom: 18px; }

.popup-step { animation: stepFade 0.3s; }
@keyframes stepFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.popup-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.popup-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.popup-option { border: 1px solid var(--gray-mid); border-radius: var(--radius); padding: 14px; cursor: pointer; transition: var(--transition); background: var(--white); text-align: left; }
.popup-option:hover { border-color: var(--blue-mid); }
.popup-option.selected { border-color: var(--blue); background: var(--blue-light); }
.popup-option-title { font-weight: 700; font-size: 15px; color: var(--dark); }
.popup-option-desc { font-size: 13px; color: var(--muted); margin-top: 4px; }

.popup-field { margin-bottom: 14px; }
.popup-field label { display: block; font-size: 14px; font-weight: 600; color: var(--blue); margin-bottom: 6px; }
.popup-field input, .popup-field textarea { width: 100%; padding: 12px; border: 1px solid var(--gray-mid); border-radius: 6px; font-family: inherit; font-size: 15px; transition: var(--transition); }
.popup-field input:focus, .popup-field textarea:focus { outline: none; border-color: var(--blue); }
.popup-error { color: var(--red); font-size: 13px; margin-top: 4px; min-height: 16px; display: block; }

.popup-summary { background: var(--gray-light); border-radius: var(--radius); padding: 18px; margin-bottom: 14px; }
.popup-summary-row { display: flex; padding: 6px 0; border-bottom: 1px dashed var(--gray-mid); font-size: 14px; }
.popup-summary-row:last-child { border-bottom: none; }
.popup-summary-row strong { width: 100px; color: var(--blue); font-weight: 600; }
.popup-summary-row span { flex: 1; color: var(--dark); }
.popup-note { font-size: 13px; color: var(--muted); margin-bottom: 14px; }

.popup-nav { display: flex; justify-content: space-between; gap: 10px; margin-top: 18px; }
.popup-nav .btn { min-width: 110px; }
#popupNext:disabled { opacity: 0.5; cursor: not-allowed; }
.popup-confirm { width: 100%; height: 52px; }

/* ===== 20. Animations ===== */
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.in { opacity: 1; transform: translateY(0); }

/* Notification */
.notification { position: fixed; top: -80px; left: 50%; transform: translateX(-50%); background: var(--blue); color: var(--white); padding: 14px 24px; border-radius: 6px; font-weight: 600; font-size: 14px; box-shadow: var(--shadow-lg); z-index: 10001; transition: top 0.4s ease; max-width: 90vw; text-align: center; }
.notification.show { top: 24px; }

/* ===== 21. Responsive Breakpoints ===== */
@media (max-width: 1023px) {
  .services-grid, .sub-grid, .other-row { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .offers-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .testimonials-grid, .contact-cards { grid-template-columns: 1fr; }
  .creds-grid { grid-template-columns: 1fr; }
  .service-hero-inner { grid-template-columns: 1fr; }
  .service-intro { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 28px; }
  .split-img img { height: 320px; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-nav { display: none; }
  .header-actions { display: none; }
  .header-reviews { display: none; }
  .header-emergency { display: none; }
  .hamburger { display: flex; }
  .btn-mobile-call { display: inline-flex; }
  .main-nav { height: 76px; }
  .logo-img { height: 44px; }
}
@media (max-width: 767px) {
  .top-bar { display: none; }
  .main-nav { height: 68px; }
  .logo-img { height: 38px; }
  .logo-link { padding: 5px 10px; }
  .services-grid, .sub-grid, .other-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-num { font-size: 36px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; padding-bottom: 28px; }
  .process-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .founders-grid { grid-template-columns: 1fr; }
  .hero-lg, .hero-md { min-height: 400px; padding: 48px 0; }
  .hero-title { font-size: 32px; }
  .service-h1 { font-size: 28px; }
  .hero-sub { font-size: 16px; }
  .section { padding: 56px 0; }
  .section-title { font-size: 26px; }
  .mobile-bottom-bar { display: flex; }
  body { padding-bottom: 60px; }
  .float-top { display: none; }
  .float-whatsapp { bottom: 76px; right: 16px; width: 52px; height: 52px; }
  .popup-card { padding: 22px; }
  .popup-grid-3 { grid-template-columns: 1fr 1fr; }
  .popup-grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 479px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 26px; }
  .service-h1 { font-size: 24px; }
  .container { padding: 0 16px; }
  .btn { font-size: 14px; padding: 10px 16px; }
  .hero-buttons .btn { width: 100%; }
}
