/* ============================================================
   UAE Building Services — Main Stylesheet
   Brand: Navy #0B2545 | Gold #F59E0B | White #FFFFFF
   Font: Inter (Google Fonts)
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --navy:       #0B2545;
  --navy-dark:  #081d38;
  --navy-light: #1a3a6b;
  --gold:       #F59E0B;
  --gold-dark:  #D97706;
  --gold-light: #FCD34D;
  --white:      #FFFFFF;
  --gray-50:    #F8FAFC;
  --gray-100:   #F1F5F9;
  --gray-200:   #E2E8F0;
  --gray-400:   #94A3B8;
  --gray-600:   #475569;
  --gray-800:   #1E293B;
  --text:       #1E293B;
  --text-muted: #64748B;
  --border:     #E2E8F0;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
  --shadow:     0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.15);
  --radius:     8px;
  --radius-lg:  16px;
  --transition: .25s ease;
  --font:       'Inter', system-ui, -apple-system, sans-serif;
  --max-w:      1280px;
}

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

/* ---------- Skip Link (accessibility) ---------- */
.skip-link {
  position: absolute; top: -100px; left: 1rem; z-index: 9999;
  background: var(--navy); color: var(--white); padding: .5rem 1rem;
  border-radius: var(--radius); transition: top .2s;
}
.skip-link:focus { top: 1rem; }

/* ---------- Container ---------- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.25rem; }

/* ---------- Top Bar ---------- */
.topbar {
  background: var(--navy-dark);
  color: rgba(255,255,255,.85);
  font-size: .78rem;
  padding: .45rem 0;
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.topbar-right { display: flex; align-items: center; gap: 1.25rem; }
.topbar-link { color: rgba(255,255,255,.85); transition: color var(--transition); }
.topbar-link:hover { color: var(--gold); }
.topbar-wa { display: flex; align-items: center; gap: .35rem; }
@media (max-width: 768px) { .topbar { display: none; } }

/* ---------- Navbar ---------- */
.navbar {
  background: var(--white);
  position: sticky; top: 0; z-index: 999;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.14); }
.nav-container {
  display: flex; align-items: center; gap: 2rem;
  padding-top: .75rem; padding-bottom: .75rem;
}
.nav-logo img { height: 48px; width: auto; }
.nav-links {
  display: flex; align-items: center; gap: .25rem;
  margin-left: auto;
}
.nav-link {
  color: var(--gray-800); font-weight: 500; font-size: .9rem;
  padding: .5rem .75rem; border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  display: flex; align-items: center; gap: .3rem;
}
.nav-link:hover, .nav-link.active { color: var(--navy); background: var(--gray-50); }
.dropdown-arrow { font-size: .7rem; transition: transform var(--transition); }

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + .5rem); left: 50%; transform: translateX(-50%);
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
  padding: .5rem; min-width: 220px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  transform: translateX(-50%) translateY(-8px);
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown:hover .dropdown-arrow { transform: rotate(180deg); }
.dropdown-menu li a {
  display: block; padding: .55rem 1rem; font-size: .87rem; color: var(--gray-800);
  border-radius: var(--radius); transition: background var(--transition), color var(--transition);
}
.dropdown-menu li a:hover { background: var(--gray-50); color: var(--navy); }

/* Nav CTA */
.nav-cta { display: flex; align-items: center; gap: .75rem; margin-left: 1rem; }
.btn-call {
  display: flex; align-items: center; gap: .4rem;
  color: var(--navy); font-weight: 600; font-size: .85rem;
  border: 1.5px solid var(--navy); border-radius: 50px; padding: .45rem .9rem;
  transition: all var(--transition);
}
.btn-call:hover { background: var(--navy); color: var(--white); }
.btn-quote {
  background: var(--gold); color: var(--navy); font-weight: 700; font-size: .85rem;
  border-radius: 50px; padding: .5rem 1.2rem;
  transition: background var(--transition), transform var(--transition);
  box-shadow: 0 4px 12px rgba(245,158,11,.35);
}
.btn-quote:hover { background: var(--gold-dark); transform: translateY(-1px); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: .4rem; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed; inset: 0; background: rgba(11,37,69,.95);
  backdrop-filter: blur(8px); z-index: 9998;
  transform: translateX(100%); transition: transform .35s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-inner { padding: 5rem 1.5rem 2rem; overflow-y: auto; height: 100%; }
.mobile-close {
  position: absolute; top: 1rem; right: 1.25rem;
  color: var(--white); font-size: 2rem; line-height: 1; background: none; border: none;
}
.mobile-nav-links { display: flex; flex-direction: column; gap: .25rem; }
.mobile-nav-links > li > a {
  display: block; color: var(--white); font-size: 1.1rem; font-weight: 600;
  padding: .85rem 0; border-bottom: 1px solid rgba(255,255,255,.1);
}
.mobile-acc-btn {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  color: var(--white); font-size: 1.1rem; font-weight: 600;
  padding: .85rem 0; border-bottom: 1px solid rgba(255,255,255,.1);
}
.mobile-acc-list { display: none; padding: .5rem 0 .5rem 1rem; }
.mobile-acc-list.open { display: block; }
.mobile-acc-list li a {
  display: block; color: rgba(255,255,255,.8); font-size: .95rem; padding: .55rem 0;
}
.mobile-cta { display: flex; flex-direction: column; gap: .75rem; margin-top: 2rem; }
.btn-call-full, .btn-quote-full {
  display: block; text-align: center; font-weight: 700; font-size: 1rem;
  padding: 1rem; border-radius: 50px;
}
.btn-call-full { background: var(--white); color: var(--navy); }
.btn-quote-full { background: var(--gold); color: var(--navy); }

@media (max-width: 1024px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; margin-left: auto; }
}

/* ---------- Buttons (global) ---------- */
.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--gold); color: var(--navy); font-weight: 700; font-size: 1rem;
  padding: .85rem 2rem; border-radius: 50px;
  box-shadow: 0 4px 16px rgba(245,158,11,.4);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,158,11,.4); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent; color: var(--white); font-weight: 600; font-size: 1rem;
  padding: .85rem 2rem; border-radius: 50px; border: 2px solid rgba(255,255,255,.6);
  transition: all var(--transition);
}
.btn-secondary:hover { background: rgba(255,255,255,.15); border-color: var(--white); }

/* ---------- Section Utilities ---------- */
.section { padding: 5rem 0; }
.section-alt { background: var(--gray-50); }
.section-dark { background: var(--navy); color: var(--white); }
.section-tag {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(245,158,11,.12); color: var(--gold-dark);
  font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  padding: .35rem .9rem; border-radius: 50px; margin-bottom: 1rem;
}
.section-dark .section-tag { background: rgba(245,158,11,.2); color: var(--gold); }
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; line-height: 1.2;
  color: var(--navy); margin-bottom: .75rem;
}
.section-dark .section-title { color: var(--white); }
.section-subtitle { font-size: 1.05rem; color: var(--text-muted); max-width: 600px; line-height: 1.7; }
.section-dark .section-subtitle { color: rgba(255,255,255,.75); }
.section-header { margin-bottom: 3rem; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin: 0 auto; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 92vh;
  display: flex; align-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, #0d3060 100%);
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('/assets/images/hero-bg.jpg') center/cover no-repeat;
  opacity: .18;
}
.hero-particles {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.hero-content { position: relative; z-index: 2; padding: 6rem 0 4rem; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(245,158,11,.15); border: 1px solid rgba(245,158,11,.3);
  color: var(--gold); font-size: .8rem; font-weight: 600; letter-spacing: .06em;
  padding: .4rem 1rem; border-radius: 50px; margin-bottom: 1.5rem;
}
.hero-title {
  font-size: clamp(2.2rem, 6vw, 4rem); font-weight: 900; color: var(--white);
  line-height: 1.1; margin-bottom: 1.25rem;
}
.hero-title .highlight { color: var(--gold); }
.hero-desc {
  font-size: 1.15rem; color: rgba(255,255,255,.82); max-width: 600px; line-height: 1.75;
  margin-bottom: 2rem;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 1.5rem;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.15);
}
.trust-item { display: flex; align-items: center; gap: .6rem; }
.trust-icon { color: var(--gold); font-size: 1.1rem; }
.trust-text { color: rgba(255,255,255,.85); font-size: .88rem; font-weight: 500; }

/* Hero scroll indicator */
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .4rem; z-index: 2;
}
.hero-scroll span { color: rgba(255,255,255,.5); font-size: .75rem; }
.scroll-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: scrollBounce 1.5s infinite; }
@keyframes scrollBounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }

/* ---------- Stats Bar ---------- */
.stats-bar { background: var(--navy); padding: 2.5rem 0; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; text-align: center;
}
.stat-item { color: var(--white); }
.stat-number { font-size: 2.4rem; font-weight: 900; color: var(--gold); line-height: 1; }
.stat-label { font-size: .85rem; color: rgba(255,255,255,.7); margin-top: .3rem; }
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Services Grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem 1.75rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.service-icon {
  width: 56px; height: 56px; background: rgba(245,158,11,.1);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; font-size: 1.6rem;
  transition: background var(--transition);
}
.service-card:hover .service-icon { background: rgba(245,158,11,.2); }
.service-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .5rem; color: var(--navy); }
.service-card p { font-size: .9rem; color: var(--text-muted); line-height: 1.6; }
.service-link {
  display: inline-flex; align-items: center; gap: .3rem;
  color: var(--gold-dark); font-weight: 600; font-size: .88rem; margin-top: 1rem;
  transition: gap var(--transition);
}
.service-card:hover .service-link { gap: .6rem; }

/* ---------- Why Us ---------- */
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.why-image { position: relative; }
.why-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.why-badge {
  position: absolute; bottom: -1rem; right: -1rem;
  background: var(--gold); color: var(--navy);
  border-radius: var(--radius-lg); padding: 1.25rem 1.5rem; text-align: center;
  box-shadow: var(--shadow);
}
.why-badge strong { display: block; font-size: 2rem; font-weight: 900; line-height: 1; }
.why-badge span { font-size: .8rem; font-weight: 600; }
.why-list { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }
.why-item { display: flex; gap: 1rem; align-items: flex-start; }
.why-check {
  width: 28px; height: 28px; min-width: 28px;
  background: rgba(245,158,11,.15); color: var(--gold-dark);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 700; margin-top: .1rem;
}
.why-item h4 { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: .2rem; }
.why-item p { font-size: .88rem; color: var(--text-muted); }
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr; } .why-image { display: none; } }

/* ---------- Testimonials ---------- */
.testimonials-track { overflow: hidden; position: relative; }
.testimonials-inner {
  display: flex; gap: 1.5rem;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.testimonial-card {
  min-width: calc(33.333% - 1rem); background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 2rem; box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}
.testimonial-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: .75rem; }
.testimonial-text { color: var(--gray-600); font-size: .93rem; line-height: 1.7; margin-bottom: 1rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .95rem;
}
.author-name { font-weight: 700; font-size: .9rem; color: var(--navy); }
.author-title { font-size: .8rem; color: var(--text-muted); }
.testimonial-controls { display: flex; justify-content: center; gap: .5rem; margin-top: 2rem; }
.testimonial-dot {
  width: 10px; height: 10px; border-radius: 50%; background: var(--gray-200);
  transition: background var(--transition), transform var(--transition); cursor: pointer;
}
.testimonial-dot.active { background: var(--gold); transform: scale(1.3); }
@media (max-width: 900px) { .testimonial-card { min-width: calc(50% - .75rem); } }
@media (max-width: 600px) { .testimonial-card { min-width: 100%; } }

/* ---------- Locations ---------- */
.locations-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1rem;
}
.location-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg); padding: 1.5rem 1rem; text-align: center;
  transition: all var(--transition); cursor: pointer;
}
.location-card:hover {
  background: rgba(245,158,11,.15); border-color: var(--gold); transform: translateY(-4px);
}
.location-icon { font-size: 2rem; margin-bottom: .75rem; }
.location-name { color: var(--white); font-weight: 700; font-size: .95rem; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius);
  margin-bottom: .75rem; overflow: hidden;
}
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 1.5rem; font-weight: 600; font-size: .97rem; color: var(--navy);
  background: var(--white); transition: background var(--transition);
}
.faq-question:hover { background: var(--gray-50); }
.faq-icon { font-size: 1.4rem; line-height: 1; color: var(--gold); transition: transform var(--transition); min-width: 20px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; }
.faq-answer-inner { padding: 0 1.5rem 1.25rem; color: var(--text-muted); font-size: .93rem; line-height: 1.75; }
.faq-item.open .faq-answer { max-height: 300px; }

/* ---------- CTA Section ---------- */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 5rem 0; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: url('/assets/images/cta-pattern.svg') repeat;
  opacity: .04;
}
.cta-content { position: relative; z-index: 1; }
.cta-title { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; color: var(--white); margin-bottom: 1rem; }
.cta-desc { color: rgba(255,255,255,.8); font-size: 1.05rem; max-width: 560px; margin: 0 auto 2.5rem; }
.cta-buttons { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; }

/* ---------- Contact Strip ---------- */
.contact-strip {
  background: var(--gold); padding: 1.25rem 0;
}
.contact-strip-inner {
  display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 2rem;
}
.contact-strip-item { display: flex; align-items: center; gap: .6rem; font-weight: 600; color: var(--navy); }

/* ---------- Footer ---------- */
.footer { background: var(--navy-dark); color: var(--white); padding-top: 4rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; padding-bottom: 3rem; }
.footer-logo img { height: 48px; width: auto; margin-bottom: 1rem; }
.footer-tagline { color: rgba(255,255,255,.7); font-size: .9rem; line-height: 1.65; margin-bottom: 1.25rem; }
.footer-contact { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.5rem; }
.footer-contact-link, .footer-address { color: rgba(255,255,255,.75); font-size: .88rem; transition: color var(--transition); }
.footer-contact-link:hover { color: var(--gold); }
.footer-social { display: flex; gap: .75rem; }
.social-icon {
  width: 38px; height: 38px; background: rgba(255,255,255,.08); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.75);
  transition: background var(--transition), color var(--transition);
}
.social-icon:hover { background: var(--gold); color: var(--navy); }
.footer-heading { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--gold); margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a { color: rgba(255,255,255,.7); font-size: .88rem; transition: color var(--transition), padding-left var(--transition); }
.footer-links a:hover { color: var(--gold); padding-left: .35rem; }
.footer-map { margin-bottom: 1rem; }
.footer-hours { font-size: .87rem; color: rgba(255,255,255,.7); }
.footer-hours h4 { color: var(--white); font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: .5rem; }
.footer-hours p { margin-bottom: .25rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding: 1.5rem 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { color: rgba(255,255,255,.55); font-size: .83rem; }
.footer-bottom-right { display: flex; gap: 1.5rem; }
.footer-bottom-right a { color: rgba(255,255,255,.55); font-size: .83rem; transition: color var(--transition); }
.footer-bottom-right a:hover { color: var(--gold); }
@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; text-align: center; } }

/* ---------- WhatsApp Float ---------- */
.whatsapp-float {
  position: fixed; bottom: 5.5rem; right: 1.5rem; z-index: 997;
  width: 58px; height: 58px; background: #25D366;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--white); box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,.55); }
.wa-tooltip {
  position: absolute; right: 70px; background: var(--gray-800); color: var(--white);
  font-size: .8rem; font-weight: 600; padding: .35rem .75rem; border-radius: var(--radius);
  white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity var(--transition);
}
.wa-tooltip::after {
  content: ''; position: absolute; right: -6px; top: 50%; transform: translateY(-50%);
  border: 6px solid transparent; border-left-color: var(--gray-800); border-right: none;
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* ---------- Mobile Sticky Bar ---------- */
.mobile-sticky-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 996;
  background: var(--white); border-top: 1px solid var(--border);
  box-shadow: 0 -4px 16px rgba(0,0,0,.12);
}
.mobile-sticky-bar a {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: .3rem; padding: .75rem .5rem;
  font-size: .73rem; font-weight: 700;
}
.sticky-call { color: var(--navy); border-right: 1px solid var(--border); }
.sticky-whatsapp { color: #25D366; border-right: 1px solid var(--border); }
.sticky-quote { background: var(--gold); color: var(--navy); }
@media (max-width: 768px) {
  .mobile-sticky-bar { display: flex; }
  .whatsapp-float { bottom: 5rem; }
}

/* ---------- Blog Cards ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.blog-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); transition: transform var(--transition), box-shadow var(--transition); }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-card-img { height: 200px; background: var(--gray-100); overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 1.5rem; }
.blog-tag { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--gold-dark); margin-bottom: .5rem; display: block; }
.blog-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: .5rem; line-height: 1.4; }
.blog-card p { font-size: .88rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1rem; }
.blog-meta { font-size: .8rem; color: var(--gray-400); display: flex; gap: 1rem; }

/* ---------- Form Styles ---------- */
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-weight: 600; font-size: .88rem; color: var(--navy); margin-bottom: .4rem; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: .8rem 1rem; border: 1.5px solid var(--border);
  border-radius: var(--radius); font-size: .95rem; color: var(--text);
  background: var(--white); transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(11,37,69,.1);
}
.form-textarea { resize: vertical; min-height: 120px; }
.honeypot { display: none !important; }

/* ---------- Breadcrumb ---------- */
.breadcrumb { padding: 1rem 0; font-size: .85rem; }
.breadcrumb-list { display: flex; flex-wrap: wrap; gap: .4rem; align-items: center; }
.breadcrumb-list li { color: var(--text-muted); }
.breadcrumb-list li a { color: var(--navy); transition: color var(--transition); }
.breadcrumb-list li a:hover { color: var(--gold-dark); }
.breadcrumb-list li + li::before { content: '/'; margin-right: .4rem; color: var(--gray-400); }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 4rem 0; color: var(--white);
}
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: .75rem; }
.page-hero p { color: rgba(255,255,255,.8); font-size: 1.05rem; max-width: 600px; }

/* ---------- Animations ---------- */
[data-aos] { will-change: transform, opacity; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-muted { color: var(--text-muted); }
.font-bold { font-weight: 700; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.d-none { display: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .section { padding: 3rem 0; }
  .hero { min-height: 80vh; }
  .hero-content { padding: 4rem 0 3rem; }
  .hero-title { font-size: 2rem; }
  .hero-desc { font-size: 1rem; }
  .hero-trust { gap: 1rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .why-grid { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .testimonials-inner { gap: 1rem; }
}
