/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: hsl(40, 16%, 96%);
  --bg-secondary: hsl(40, 14%, 92%);
  --card: hsl(40, 8%, 99%);
  --fg: hsl(0, 0%, 8%);
  --muted: hsl(0, 0%, 42%);
  --border: hsl(40, 12%, 88%);
  --gold: hsl(42, 54%, 55%);
  --white: #fff;
  --gold-light: hsl(42, 54%, 70%);
  --gold-dark: hsl(42, 54%, 40%);
  --gold-gradient: linear-gradient(135deg, hsl(42, 54%, 55%), hsl(42, 54%, 40%));
  --radius: 0.5rem;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Roboto', sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
}

.dark {
  --bg: hsl(0, 0%, 6%);
  --bg-secondary: hsl(0, 0%, 10%);
  --card: hsl(0, 0%, 9%);
  --fg: hsl(0, 0%, 95%);
  --muted: hsl(0, 0%, 60%);
  --border: hsl(0, 0%, 18%);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ===== UTILITIES ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.section { padding: 5rem 0; }
@media (min-width: 1024px) { .section { padding: 7rem 0; } }
.section-secondary { background: var(--bg-secondary); }

.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.grid-2 { display: grid; gap: 3rem; }
@media (min-width: 1024px) { .grid-2 { grid-template-columns: 1fr 1fr !important; align-items: center; } }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.5rem;
  border-radius: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-primary { background: var(--gold-gradient); color: #fff; }
.btn-primary:hover { opacity: 0.9; }
.btn-outline { border: 2px solid rgba(0,0,0,0.15); color: var(--fg); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline-light { border: 2px solid rgba(255,255,255,0.3); color: #fff; }
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold); }
.btn-link { color: var(--gold); font-family: var(--font-heading); font-weight: 500; font-size: 0.875rem; }
.btn-link:hover { text-decoration: underline; }

/* ===== SCROLL PROGRESS ===== */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--gold-gradient);
  z-index: 100;
  transition: width 0.05s ease;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--fg);
  color: var(--bg);
  font-size: 0.8125rem;
  padding: 0.5rem 0;
  display: none;
}
@media (min-width: 768px) { .top-bar { display: block; } }
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; }
.top-bar-phone { display: flex; align-items: center; gap: 0.5rem; transition: color 0.2s; }
.top-bar-phone:hover { color: var(--gold); }

.pb-0{
  padding-bottom: 0px;
}
.pt-0{
  padding-top: 0px !important;
}
/* ===== NAVBAR ===== */
#navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  transition: box-shadow 0.3s, background 0.3s;
}
#navbar.scrolled {
  background: color-mix(in srgb, var(--bg) 95%, transparent);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 120px; }
.nav-logo img { height: 110px; width: auto; }

.nav-links { display: none; align-items: center; gap: 0.25rem; }
@media (min-width: 1024px) { .nav-links { display: flex; } }

.nav-link {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--fg);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--gold); }
.dropdown-chevron { transition: transform 0.2s; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 20rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
}
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-dropdown:hover .dropdown-chevron { transform: rotate(180deg); }

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-family: var(--font-heading);
  font-weight: 500;
  transition: background 0.2s;
}
.dropdown-item:hover { background: color-mix(in srgb, var(--gold) 10%, transparent); }
.dropdown-item:hover .dropdown-icon { transform: scale(1.2); }
.dropdown-icon { font-size: 1rem; transition: transform 0.2s; }

.nav-actions { display: flex; align-items: center; gap: 0.75rem; }
.theme-toggle {
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  color: var(--fg);
}
.theme-toggle:hover { background: var(--bg-secondary); }
.dark .icon-moon { display: none; }
.icon-sun { display: none; }
.dark .icon-sun { display: block; }

.nav-call-btn { display: none; }
@media (min-width: 640px) { .nav-call-btn { display: inline-flex; } }

.mobile-menu-btn { display: block; padding: 0.5rem; border-radius: 0.5rem; color: var(--fg); }
.mobile-menu-btn:hover { background: var(--bg-secondary); }
@media (min-width: 1024px) { .mobile-menu-btn { display: none; } }

/* Mobile menu */
.mobile-menu {
  display: none;
  border-top: 1px solid var(--border);
  padding: 1rem;
}
.mobile-menu.open { display: block; }
@media (min-width: 1024px) { .mobile-menu { display: none !important; } }
.mobile-link {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--fg);
  width: 100%;
  text-align: left;
}
.mobile-link:hover { background: var(--bg-secondary); }
.mobile-services-list { overflow: hidden; max-height: 0; transition: max-height 0.3s; }
.mobile-services-list.open { max-height: 400px; }
.mobile-sublink { display: block; padding: 0.625rem 1rem 0.625rem 2.5rem; font-size: 0.8125rem; color: var(--muted); }
.mobile-sublink:hover { color: var(--gold); }
.mobile-call-btn { margin-top: 0.75rem; width: 100%; justify-content: center; }

/* ===== HERO ===== */
.hero { position: relative; overflow: hidden; }
.hero-accent-line { position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--gold-gradient); }
.gradient-orbs { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.orb { position: absolute; width: 24rem; height: 24rem; border-radius: 50%; filter: blur(60px); opacity: 0.05; }
.orb-1 { top: -10rem; right: -10rem; background: var(--gold); animation: floatSlow 8s ease-in-out infinite; }
.orb-2 { bottom: -10rem; left: -10rem; background: var(--gold); animation: floatSlow 8s ease-in-out infinite 2s; }

.hero-inner { display: grid; gap: 3rem; align-items: center; padding: 4rem 0; position: relative; }
@media (min-width: 1024px) { .hero-inner { grid-template-columns: 1fr 1fr; gap: 4rem; padding: 5rem 0; } }

.hero-badges { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2rem; }
.badge-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  background: color-mix(in srgb, var(--gold) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--gold) 20%, transparent);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.75rem;
  color: var(--gold);
}
.hero-title { font-size: 2.25rem; font-weight: 700; line-height: 1.15; margin-bottom: 1.5rem; }
@media (min-width: 640px) { .hero-title { font-size: 3rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 3.75rem; } }
.hero-subtitle { font-size: 1.125rem; color: var(--muted); line-height: 1.7; margin-bottom: 2rem; max-width: 32rem; }
.hero-buttons { display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 640px) { .hero-buttons { flex-direction: row; } }

.hero-image-wrap { position: relative; }
.hero-image-container { position: relative; border-radius: 1rem; overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-image { width: 100%; height: auto; object-fit: cover; transform: scale(1.1); }
.image-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.2), transparent); }
.floating-stat {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--card);
  border: 1px solid color-mix(in srgb, var(--gold) 20%, transparent);
  border-radius: 0.75rem;
  padding: 1.25rem;
  box-shadow: var(--shadow-lg);
}
.stat-big { font-size: 1.875rem; font-weight: 700; font-family: var(--font-heading); }
.stat-label { font-size: 0.875rem; color: var(--muted); }




/* ===== IMAGE BADGES ===== */
.image-badge {
  position: absolute;
  z-index: 10;
  background: color-mix(in srgb, var(--card) 95%, transparent);
  backdrop-filter: blur(12px);
  border: 1px solid color-mix(in srgb, var(--gold) 20%, transparent);
  border-radius: 0.75rem;
  padding: 0.5rem 0.75rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
@media (min-width: 640px) { .image-badge { padding: 0.75rem 1rem; } }
.badge-top-left { top: 1rem; left: 1rem; }
.badge-bottom-right { bottom: 1rem; right: 1rem; }
.badge-icon-wrap {
  width: 2.25rem; height: 2.25rem;
  border-radius: 0.5rem;
  background: var(--gold-gradient);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #fff;
}
@media (min-width: 640px) { .badge-icon-wrap { width: 2.5rem; height: 2.5rem; } }
.badge-title { font-size: 0.625rem; color: var(--muted); line-height: 1.2; }
.badge-value { font-family: var(--font-heading); font-weight: 700; font-size: 0.875rem; line-height: 1.2; }
@media (min-width: 640px) { .badge-title { font-size: 0.75rem; } .badge-value { font-size: 1rem; } }

/* ===== KINETIC MARQUEE ===== */
.kinetic-marquee { padding: 0.75rem 0; overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.kinetic-marquee.dark { background: var(--bg); }
.kinetic-marquee.light { background: var(--bg-secondary); }
.kinetic-canvas { width: 100%; height: 3.5rem; display: block; }
@media (min-width: 640px) { .kinetic-canvas { height: 4rem; } }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; max-width: 42rem; margin: 0 auto 3.5rem; }
 .section-eyebrow {
  display: block;
  color: var(--gold);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.section-title { font-size: 1.875rem; font-weight: 700; line-height: 1.2; margin-bottom: 1rem; }
@media (min-width: 640px) { .section-title { font-size: 2.25rem; } }
.section-text { color: var(--muted); line-height: 1.7; }

/* ===== PARALLAX IMAGE ===== */
.parallax-image-container { position: relative; border-radius: 1rem; overflow: hidden; box-shadow: var(--shadow-lg); }
.parallax-img { width: 100%; height: auto; object-fit: cover; transform: scale(1.12); will-change: transform; }

/* ===== ABOUT ===== */
.about-grid { align-items: center; }
.about-image-wrap { position: relative; }
.about-image-border { position: absolute; bottom: -1rem; right: -1rem; width: 8rem; height: 8rem; border: 4px solid var(--gold); border-radius: 1rem; z-index: -1; }
.checklist { margin-bottom: 2rem; }
.checklist-item { padding: 0.5rem 0; font-size: 0.875rem; font-weight: 500; }

/* ===== SERVICES ===== */
.services-grid { display: grid; gap: 1.5rem; margin-bottom: 1.5rem; }
.services-grid-4 { grid-template-columns: 1fr; }
.services-grid-3 { grid-template-columns: 1fr; max-width: 64rem; margin-left: auto; margin-right: auto; }
@media (min-width: 640px) { .services-grid-4, .services-grid-3 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .services-grid-4 { grid-template-columns: repeat(4, 1fr); } .services-grid-3 { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  display: block;
  height: 100%;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
}
.service-card:hover { border-color: color-mix(in srgb, var(--gold) 50%, transparent); box-shadow: 0 20px 40px -10px color-mix(in srgb, var(--gold) 10%, transparent); transform: translateY(-4px); }
.service-icon {
  width: 3.5rem; height: 3.5rem;
  border-radius: 0.75rem;
  background: var(--gold-gradient);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  transition: transform 0.3s;
  color:#fff;
}
.service-icon svg { display: block; }
.service-card:hover .service-icon { transform: scale(1.1) rotate(3deg); }
.service-title { font-size: 1rem; font-weight: 600; margin-bottom: 0.75rem; transition: color 0.2s; }
.service-card:hover .service-title { color: var(--gold); }
.service-desc { font-size: 0.875rem; color: var(--muted); line-height: 1.6; margin-bottom: 1rem; }
.service-link { font-size: 0.875rem; font-family: var(--font-heading); font-weight: 500; color: var(--gold); opacity: 0; transition: opacity 0.2s; }
.service-card:hover .service-link { opacity: 1; }

.services-grid-bottom .service-card, .services-grid-top .service-card{
  padding:0px;
}



 .services-grid-bottom .service-card,  .services-grid-top .service-card .image-wrapper {
    overflow: hidden;
    height: 250px;
  }

 .services-grid-bottom .service-card,  .services-grid-top .service-card .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.95);
    transition: transform 0.5s ease;
  }

  
  .services-grid-bottom .service-card:hover, .services-grid-top .service-card:hover .image-wrapper img {
    transform: scale(1.08);
  }

/* Spinning gear */
.spinning-gear { position: absolute; pointer-events: none; opacity: 0.5; }
.gear-top-right { top: 2.5rem; right: 1.25rem; }
@media (max-width: 1023px) { .spinning-gear { display: none; } }

/* ===== WHY CHOOSE ===== */
.why-grid { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .why-grid { grid-template-columns: 1fr 1fr; } }
.why-item { display: flex; gap: 1rem; }
.why-icon {
  width: 2.75rem; height: 2.75rem;
  border-radius: 0.5rem;
  background: color-mix(in srgb, var(--gold) 10%, transparent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.why-icon svg { display: block; stroke: var(--gold); }
.why-item h4 { font-size: 0.875rem; font-weight: 600; margin-bottom: 0.25rem; }
.why-item p { font-size: 0.75rem; color: var(--muted); line-height: 1.5; }

/* ===== STATS ===== */
.stats-section { background: var(--fg); position: relative; overflow: hidden; }
.stats-decor { position: absolute; inset: 0; opacity: 0.05; }
.stats-circle { position: absolute; border-radius: 50%; border: 1px solid var(--gold); }
.stats-circle-1 { top: 2.5rem; left: 2.5rem; width: 16rem; height: 16rem; }
.stats-circle-2 { bottom: 2.5rem; right: 2.5rem; width: 12rem; height: 12rem; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; position: relative; }
@media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-item { text-align: center; }
.stat-number { font-size: 2.25rem; font-weight: 700; font-family: var(--font-heading); }
@media (min-width: 640px) { .stat-number { font-size: 3rem; } }
.stat-desc { color: #fff; font-size: 0.875rem; margin-top: 0.5rem; }

/* ===== PROCESS ===== */
.process-steps { display: flex; flex-direction: column; gap: 1.5rem; }
.process-step { display: flex; gap: 1.25rem; align-items: flex-start; }
.process-step-icon {
  width: 3.5rem; height: 3.5rem;
  border-radius: 0.75rem;
  background: var(--gold-gradient);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.process-step:hover .process-step-icon { transform: scale(1.1) rotate(6deg); }
.process-step-label { font-size: 0.75rem; font-weight: 700; color: var(--gold); font-family: var(--font-heading); }
.process-step h4 { font-size: 1.125rem; font-weight: 600; margin: 0.25rem 0; }
.process-step p { font-size: 0.875rem; color: var(--muted); }

/* ===== AREAS ===== */
.areas-grid { display: grid; gap: 2rem; }
@media (min-width: 1024px) { .areas-grid { grid-template-columns: 2fr 3fr; } }
.areas-list { display: flex; flex-direction: column; gap: 0.5rem; }
.area-item {
  width: 100%;
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: var(--card);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.875rem;
  text-align: left;
  color: var(--fg);
  transition: all 0.3s;
}
.area-item:hover, .area-item.active { border-color: var(--gold); background: color-mix(in srgb, var(--gold) 10%, transparent); box-shadow: var(--shadow-sm); }
.area-item.active { color: var(--gold); }
.areas-map {
  height: stretch !important;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  min-height: 25rem;
}
.leaflet-container { z-index: 1; }

/* Custom map pin */
.custom-pin {
  width: 28px; height: 28px;
  background: var(--gold-gradient);
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.custom-pin.active {
  width: 36px; height: 36px;
  border-width: 4px;
  box-shadow: 0 0 0 6px hsla(42,54%,55%,0.3), 0 2px 12px rgba(0,0,0,0.3);
}

/* ===== MAINTENANCE ===== */
.maintenance-grid { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .maintenance-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .maintenance-grid { grid-template-columns: repeat(4, 1fr); } }
.maintenance-card {
  text-align: center;
  padding: 2rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  transition: all 0.3s;
}
.maintenance-card:hover { border-color: color-mix(in srgb, var(--gold) 40%, transparent); box-shadow: var(--shadow-md); }
.maintenance-icon {
  width: 4rem; height: 4rem;
  border-radius: 1rem;
  background: var(--gold-gradient);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 1.25rem;
  transition: transform 0.3s;
}
.maintenance-card:hover .maintenance-icon { transform: scale(1.1); }
.maintenance-card h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
.maintenance-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }

/* ===== TESTIMONIALS ===== */
.testimonial-wrap { max-width: 48rem; margin: 0 auto; }
.testimonial-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-md);
}
@media (min-width: 640px) { .testimonial-card { padding: 3rem; } }
.testimonial-quote { position: absolute; top: 1.5rem; left: 1.5rem; font-size: 3rem; color:  var(--gold); line-height: 1; }
.testimonial-content { position: relative; z-index: 1; }
.testimonial-stars { text-align: center; color: var(--gold); font-size: 1.25rem; margin-bottom: 1.5rem; letter-spacing: 0.25rem; }
.testimonial-text { text-align: center; font-size: 1.125rem; line-height: 1.7; color: color-mix(in srgb, var(--fg) 80%, transparent); font-style: italic; margin-bottom: 2rem; }
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 1rem; }
.testimonial-avatar { width: 3.5rem; height: 3.5rem; border-radius: 50%; border: 2px solid var(--gold); object-fit: cover; }
.testimonial-name { font-family: var(--font-heading); font-weight: 600; font-size: 1rem; }
.testimonial-location { font-size: 0.875rem; color: var(--muted); }

.testimonial-nav { display: flex; justify-content: center; align-items: center; gap: 1rem; margin-top: 2rem; }
.testimonial-btn {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  color: var(--fg);
  transition: all 0.2s;
}
.testimonial-btn:hover { border-color: var(--gold); color: var(--gold); }
.testimonial-dots { display: flex; align-items: center; gap: 0.5rem; }
.testimonial-dot { width: 0.625rem; height: 0.625rem; border-radius: 50%; background: var(--border); transition: all 0.2s; cursor: pointer; }
.testimonial-dot.active { background: var(--gold); width: 1.75rem; }

/* ===== EMERGENCY ===== */
.emergency-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: color-mix(in srgb, #ef4444 10%, transparent);
  border: 1px solid color-mix(in srgb, #ef4444 30%, transparent);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.875rem;
  color: #ef4444;
  margin-bottom: 1.5rem;
}
.dark .emergency-badge { background: color-mix(in srgb, #ef4444 15%, transparent); border-color: color-mix(in srgb, #ef4444 40%, transparent); }
.pulse-dot { position: relative; width: 0.75rem; height: 0.75rem; border-radius: 50%; background: #ef4444; }
.pulse-dot::after { content: ''; position: absolute; inset: 0; border-radius: 50%; background: #ef4444; animation: pulseRing 2s ease-out infinite; }

.emergency-info { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
@media (min-width: 640px) { .emergency-info { flex-direction: row; } }
.emergency-info-card { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 1.25rem; background: var(--bg-secondary); border-radius: 0.75rem; }
.emergency-info-icon { font-size: 1.25rem; }
.emergency-info-title { font-family: var(--font-heading); font-weight: 600; font-size: 0.875rem; }
.emergency-info-value { font-size: 0.75rem; color: var(--muted); }

/* ===== BRANDS SLIDER ===== */
.brands-section { padding: 4rem 0; background: var(--bg-secondary); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.brands-header { text-align: center; margin-bottom: 2.5rem; }
.brands-slider-wrap { position: relative; overflow: hidden; }
.brands-fade-left, .brands-fade-right { position: absolute; top: 0; bottom: 0; width: 5rem; z-index: 10; pointer-events: none; }
.brands-fade-left { left: 0; background: linear-gradient(to right, var(--bg-secondary), transparent); }
.brands-fade-right { right: 0; background: linear-gradient(to left, var(--bg-secondary), transparent); }
.brands-slider { display: flex; width: max-content; animation: marquee 30s linear infinite; }
.brands-slider-wrap:hover .brands-slider { animation-play-state: paused; }
.brand-logo {
  flex-shrink: 0;
  width: 12rem; height: 7rem;
  margin: 0 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.brand-logo::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--gold-gradient); opacity: 0; transition: opacity 0.3s; }
.brand-logo:hover { border-color: color-mix(in srgb, var(--gold) 50%, transparent); box-shadow: var(--shadow-md); }
.brand-logo:hover::before { opacity: 1; }
.brand-name { font-family: var(--font-heading); font-weight: 700; font-size: 1.25rem; transition: color 0.3s; }
.brand-logo:hover .brand-name { color: var(--gold); }
.brand-tagline { font-size: 0.625rem; letter-spacing: 0.2em; color: var(--muted); margin-top: 0.25rem; }
.brand-dots { display: flex; gap: 0.25rem; margin-top: 0.75rem; }
.brand-dots span { width: 9px; height: 9px; border-radius: 50%; background: color-mix(in srgb, var(--gold) 30%, transparent); transition: background 0.3s; }
.brand-logo:hover .brand-dots span { background: var(--gold); }

/* ===== BLOG ===== */
.blog-header { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 3.5rem; }
@media (min-width: 640px) { .blog-header { flex-direction: row; justify-content: space-between; align-items: center; } }
.blog-view-all { font-size: 0.875rem; font-family: var(--font-heading); font-weight: 500; color: var(--gold); }
.blog-view-all:hover { text-decoration: underline; }
.blog-grid { display: grid; gap: 2rem; }
@media (min-width: 768px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }
.blog-card { background: var(--card); border: 1px solid var(--border); border-radius: 0.75rem; overflow: hidden; transition: all 0.3s; }
.blog-card:hover { box-shadow: var(--shadow-lg); border-color: color-mix(in srgb, var(--gold) 30%, transparent); }
.blog-card-accent { height: 8px; background: var(--gold-gradient); }
.blog-card-body { padding: 1.5rem; }
.blog-meta { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.blog-category { font-size: 0.75rem; font-family: var(--font-heading); font-weight: 600; color: var(--gold); background: color-mix(in srgb, var(--gold) 10%, transparent); padding: 0.25rem 0.75rem; border-radius: 9999px; }
.blog-date { font-size: 0.75rem; color: var(--muted); }
.blog-title { font-size: 1.125rem; font-weight: 600; margin-bottom: 0.75rem; line-height: 1.4; transition: color 0.2s; }
.blog-card:hover .blog-title { color: var(--gold); }
.blog-excerpt { font-size: 0.875rem; color: var(--muted); line-height: 1.6; margin-bottom: 1rem; }
.blog-read-more { font-size: 0.875rem; font-family: var(--font-heading); font-weight: 500; color: var(--gold); }
.blog-read-more:hover { text-decoration: underline; }


  /* ===== FAQ SECTION ===== */
    .faq-container { max-width: 48rem; margin: 0 auto; }
    .faq-item {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 0.75rem;
      margin-bottom: 1rem;
      overflow: hidden;
      transition: border-color 0.2s;
    }
    .faq-item:hover { border-color: var(--gold); }

    .faq-question {
      width: 100%;
      padding: 1.25rem 1.5rem;
      text-align: left;
      font-family: var(--font-heading);
      font-weight: 700;
      font-size: 1.05rem;
      color: var(--fg);
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
    }
    .faq-icon { transition: transform 0.3s; color: var(--gold); flex-shrink: 0; }
    .faq-item.active .faq-icon { transform: rotate(180deg); }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
      padding: 0 1.5rem;
      color: var(--muted);
      font-size: 0.9375rem;
      line-height: 1.6;
    }
    .faq-item.active .faq-answer {
      max-height: 200px;
      padding: 0 1.5rem 1.25rem 1.5rem;
    }

/* ===== CONTACT ===== */
#contact .dots-pattern {
  position: absolute; inset: 0;
  pointer-events: none; opacity: 0.04;
  background-image: radial-gradient(circle, var(--gold) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
}
#contact .contact-grid { display: grid; gap: 2rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 2fr 3fr; } }
#contact .contact-info { display: flex; flex-direction: column; gap: 1rem; }
#contact .contact-info-card {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.25rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  transition: all 0.3s;
  flex-direction: row;
}
#contact .contact-info-card:hover { border-color: color-mix(in srgb, var(--gold) 40%, transparent); box-shadow: var(--shadow-sm); }
#contact .contact-info-icon {
  width: 3rem; height: 3rem;
  border-radius: 0.75rem;
  background: var(--gold-gradient);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: transform 0.3s;
}
#contact .contact-info-card:hover .contact-info-icon { transform: scale(1.1); }
#contact .contact-info-label { font-size: 0.75rem; color: var(--muted); }
#contact .contact-info-value { font-family: var(--font-heading); font-weight: 600; font-size: 0.875rem; transition: color 0.2s; }
#contact .contact-info-card:hover .contact-info-value { color: var(--gold); }

#contact .contact-form-wrap { position: relative; }
#contact .contact-form, .contact-success {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
}
@media (min-width: 640px) { .contact-form, .contact-success { padding: 2rem; } }
.form-row { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.875rem; font-family: var(--font-heading); font-weight: 500; margin-bottom: 0.5rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--fg);
  font-size: 0.875rem;
  transition: all 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--gold) 20%, transparent);
}
.form-group textarea { resize: none; }

.contact-success { display: none; text-align: center; padding: 3rem 1.5rem; min-height: 400px; flex-direction: column; align-items: center; justify-content: center; }
.contact-success.show { display: flex; }
.contact-success-icon { font-size: 2.5rem; margin-bottom: 1.5rem; }
.contact-success h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.75rem; }
.contact-success p { color: var(--muted); margin-bottom: 1.5rem; max-width: 24rem; }

/* ===== CTA ===== */
.cta-section { background: var(--fg); position: relative; overflow: hidden; }
.cta-orbs { position: absolute; inset: 0; pointer-events: none; }
.cta-inner { text-align: center; position: relative; max-width: 48rem; }
.cta-title { font-size: 1.875rem; font-weight: 700; color: var(--bg); margin-bottom: 1.5rem; line-height: 1.2; }
@media (min-width: 640px) { .cta-title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .cta-title { font-size: 3rem; } }
.cta-text { color: color-mix(in srgb, var(--bg) 70%, transparent); font-size: 1.125rem; line-height: 1.7; margin-bottom: 2.5rem; }
.cta-buttons { display: flex; flex-direction: column; gap: 1rem; justify-content: center; }
@media (min-width: 640px) { .cta-buttons { flex-direction: row; } }

/* ===== FOOTER ===== */
.footer { background: var(--fg); color: var(--bg); }
.footer-grid { display: grid; gap: 2.5rem; padding: 4rem 0; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-logo { height: 4rem; width: auto;  margin-bottom: 1.25rem; }
.footer-text { color: color-mix(in srgb, var(--bg) 70%, transparent); font-size: 0.875rem; line-height: 1.7; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social-link {
  width: 2.5rem; height: 2.5rem;
  border-radius: 0.5rem;
  /* background: color-mix(in srgb, var(--bg) 10%, transparent); */
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  font-size: 1rem;
}
.footer-social-link:hover { background: var(--gold); }
.footer-col h4 { font-size: 1.125rem; font-weight: 600; margin-bottom: 1.25rem; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a { font-size: 0.875rem; color: color-mix(in srgb, var(--bg) 70%, transparent); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-contact a, .footer-contact p { display: block; font-size: 0.875rem; color: color-mix(in srgb, var(--bg) 70%, transparent); margin-bottom: 0.75rem; transition: color 0.2s; }
.footer-contact a:hover { color: var(--gold); }

.footer-bottom { border-top: 1px solid color-mix(in srgb, var(--bg) 10%, transparent); }
.footer-bottom-inner { display: flex; flex-direction: column; gap: 0.75rem; padding: 1.25rem 0; align-items: center; }
@media (min-width: 640px) { .footer-bottom-inner { flex-direction: row; justify-content: space-between; } }
.footer-bottom p { font-size: 0.875rem; color: color-mix(in srgb, var(--bg) 50%, transparent); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 0.875rem; color: color-mix(in srgb, var(--bg) 50%, transparent); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--gold); }

/* ===== REVEAL ANIMATIONS ===== */
/* .reveal {  transition: opacity 0.7s ease, clip-path 0.7s cubic-bezier(0.22, 1, 0.36, 1); } */
/* .reveal[data-reveal="left"] { clip-path: inset(0 100% 0 0); }
.reveal[data-reveal="right"] { clip-path: inset(0 0 0 100%); } */
/* .reveal[data-reveal="center"] { clip-path: inset(50% 50% 50% 50%); }
.reveal.visible { opacity: 1; clip-path: inset(0 0 0 0); } */

.reveal-stagger { opacity: 0; transform: translateY(30px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal-stagger.visible { opacity: 1; transform: translateY(0); }

/* ===== KEYFRAMES ===== */
@keyframes floatSlow {
  0%, 100% { transform: translateY(0) translateX(0); }
  33% { transform: translateY(-20px) translateX(10px); }
  66% { transform: translateY(10px) translateX(-15px); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes pulseRing {
  0% { transform: scale(0.8); opacity: 0.8; }
  100% { transform: scale(2.5); opacity: 0; }
}
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* Spinning gear SVG */
.spinning-gear::before {
  content: '⚙️';
  font-size: 6rem;
  display: block;
  animation: spin 12s linear infinite;
  opacity: 0.12;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }

/* SVG icon display fixes */
.process-step-icon svg,
.maintenance-icon svg,
.emergency-info-icon svg,
.contact-info-icon svg,
.dropdown-icon svg { display: block; }

.process-step-icon svg,
.maintenance-icon svg { stroke: var(--white); }

.emergency-info-icon svg { stroke: var(--gold); }

.contact-info-icon svg { stroke: var(--white); }

.dropdown-icon svg { stroke: currentColor; }



/**********
******* About us page ******
**********/

    .story-text-block p { margin-bottom: 1.25rem; color: var(--muted); font-size: 1.05rem; }
    
    /* ===== CORE VALUES ===== */
    .values-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
    @media (min-width: 640px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (min-width: 1024px) { .values-grid { grid-template-columns: repeat(4, 1fr); } }

    .value-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 1rem;
      padding: 2rem 1.5rem;
      text-align: center;
      transition: all 0.3s ease;
      box-shadow: var(--shadow-sm);
    }
    .value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--gold); }
    .value-icon {
      width: 3.5rem; height: 3.5rem;
      border-radius: 50%;
      background: var(--gold-gradient);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 1.25rem;
      color: #fff;
    }
    .value-card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
    .value-card p { font-size: 0.9rem; color: var(--muted); }

    /* ===== STATS SECTION ===== */
    .stats-section {
      background: var(--fg);
      color: var(--bg);
      position: relative;
      overflow: hidden;
    }
    .stats-grid { display: grid; gap: 2rem; grid-template-columns: repeat(2, 1fr); }
    @media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
    .stat-item { text-align: center; padding: 1rem; }
    .stat-number { font-size: 2.75rem; font-weight: 800; font-family: var(--font-heading); line-height: 1; margin-bottom: 0.5rem; }
    @media (min-width: 640px) { .stat-number { font-size: 3.5rem; } }
    .stat-desc { font-size: 0.9rem; opacity: 0.8; font-family: var(--font-heading); font-weight: 500; }

    /* ===== TEAM SECTION ===== */
    .team-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
    @media (min-width: 640px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }

    .team-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 1rem;
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: all 0.3s ease;
    }
    .team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
    .team-img-wrap { height: 16rem; overflow: hidden; position: relative; }
    .team-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
    .team-card:hover .team-img-wrap img { transform: scale(1.05); }
    .team-info { padding: 1.5rem; text-align: center; }
    .team-name { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.25rem; }
    .team-role { font-size: 0.85rem; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.75rem; }
    .team-bio { font-size: 0.875rem; color: var(--muted); }

    /**********
    ********* Services page ********
    **********/


    /* ===== SERVICE PROCESS ===== */
    .process-sec .process-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
    @media (min-width: 640px) { .process-sec .process-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (min-width: 1024px) { .process-sec .process-grid { grid-template-columns: repeat(4, 1fr); } }

    .process-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 1rem;
      padding: 2rem 1.5rem;
      position: relative;
      transition: all 0.3s ease;
    }
    .process-card:hover { transform: translateY(-5px); border-color: var(--gold); box-shadow: var(--shadow-md); }
    .process-num {
      font-family: var(--font-heading);
      font-size: 2.5rem;
      font-weight: 900;
      color: color-mix(in srgb, var(--gold) 25%, transparent);
      position: absolute;
      top: 1rem;
      right: 1.25rem;
      line-height: 1;
    }
    .process-title { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.75rem; }
    .process-desc { font-size: 0.875rem; color: var(--muted); }


     .services-wrapper {
    font-family: system-ui, -apple-system, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 0px 0px;
  }
  #emergency
  .section-title {
    text-align: left;
  }
  .section-title {
    /* text-align: center; */
    margin-bottom: 30px;
  }

  .section-subtitle {
    text-align: center;
    color: #64748b;
    margin-bottom: 30px;
  }

  /* Grid Layouts */
  .services-grid-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
  }

  .services-grid-bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 82%;
    margin: 0 auto 50px auto;
  }

  /* Responsive Grid for Smaller Screens */
  @media (max-width: 992px) {
    .services-grid-top, .services-grid-bottom {
      grid-template-columns: repeat(2, 1fr);
      max-width: 100%;
    }
  }

  @media (max-width: 576px) {
    .services-grid-top, .services-grid-bottom {
      grid-template-columns: 1fr;
    }
  }

  /* Service Card Styling & Hover Effects */
  .service-card {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  }
  .card-content {
    padding: 16px;
    text-align: center;
  }

  .card-content h3 {
    font-size: 1rem;
    margin: 0 0 14px 0;
    color: #1e293b;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .divider {
    border: 0;
    height: 1px;
    background: #e2e8f0;
    margin: 40px 0;
  }


    
  /* How We Work Section */
  .how-we-work h2 {
    text-align: center;
    color: #0f172a;
    margin-bottom: 8px;
  }

  .work-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 50px;
  }

  @media (max-width: 768px) {
    .work-steps {
      grid-template-columns: 1fr;
    }
  }

  .step-card {
    display: flex;
    gap: 16px;
    background: #f8fafc;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #2563eb;
  }

  .step-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: #2563eb;
  }

  .step-card h4 {
    margin: 0 0 6px 0;
    color: #1e293b;
  }

  .step-card p {
    margin: 0;
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
  }


  /************   Areas We serve ************/

  /* ===== TRUST SECTION WITH BACKGROUND ===== */
    .trust-section {
      position: relative;
      padding: 6rem 0;
      background: linear-gradient(rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.82)), url('https://palmagroupfl.com/wp-content/uploads/2025/12/New-Garage-Door-Installation3.jpg') center/cover no-repeat fixed;
      color: #fff;
    }
    .trust-grid {
      display: grid;
      gap: 2.5rem;
      grid-template-columns: 1fr;
    }
    @media (min-width: 640px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (min-width: 1024px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }

    .trust-card {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 1rem;
      padding: 2rem 1.5rem;
      text-align: center;
      transition: transform 0.3s ease;
    }
    .trust-card:hover { transform: translateY(-5px); border-color: var(--gold); }

    .trust-icon {
      width: 3.5rem;
      height: 3.5rem;
      border-radius: 50%;
      background: var(--gold-gradient);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.25rem;
      font-size: 1.5rem;
      color: #fff;
    }
    .trust-num {
      font-size: 2rem;
      font-weight: 800;
      font-family: var(--font-heading);
      color: var(--gold-light);
      margin-bottom: 0.25rem;
    }
    .trust-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
    .trust-text { font-size: 0.875rem; color: rgba(255, 255, 255, 0.7); line-height: 1.5; }
 /* ===== LOCATION GRID & CARDS ===== */
    .locations-grid {
      display: grid;
      gap: 2rem;
      grid-template-columns: 1fr;
    }
    @media (min-width: 640px) { .locations-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (min-width: 1024px) { .locations-grid { grid-template-columns: repeat(3, 1fr); } }

    .location-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 1.25rem;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
      position: relative;
    }
    .location-card:hover {
      transform: translateY(-8px);
      border-color: var(--gold);
      box-shadow: var(--shadow-lg);
    }

    .location-img-wrap {
      position: relative;
      height: 220px;
      overflow: hidden;
    }
    .location-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }
    .location-card:hover .location-img { transform: scale(1.08); }

    .location-tag {
      position: absolute;
      top: 1rem;
      left: 1rem;
      background: color-mix(in srgb, var(--card) 90%, transparent);
      backdrop-filter: blur(8px);
      border: 1px solid var(--border);
      padding: 0.25rem 0.75rem;
      border-radius: 0.375rem;
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--gold);
      font-family: var(--font-heading);
      text-transform: uppercase;
    }

    .location-content {
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }

    .location-name {
      font-size: 1.35rem;
      font-weight: 800;
      margin-bottom: 0.75rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .location-desc {
      font-size: 0.9375rem;
      color: var(--muted);
      margin-bottom: 1.5rem;
      line-height: 1.6;
      flex-grow: 1;
    }

    .location-btn {
      width: 100%;
      padding: 0.75rem 1rem;
      border-radius: 0.5rem;
      font-family: var(--font-heading);
      font-weight: 600;
      font-size: 0.875rem;
      text-align: center;
      background: color-mix(in srgb, var(--gold) 10%, transparent);
      color: var(--fg);
      border: 1px solid color-mix(in srgb, var(--gold) 30%, transparent);
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
    }
    .location-card:hover .location-btn {
      background: var(--gold-gradient);
      color: #fff;
      border-color: transparent;
    }


    /* ===== FULL-SCREEN HERO SECTION ===== */
    .hero-fullscreen {
      position: relative;
      min-height: 85vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      background: linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.80)), url('https://images.unsplash.com/photo-1512915922686-57c11dde9b6b?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat fixed;
      color: #fff;
      padding: 4rem 1rem;
    }

    .hero-fullscreen-content {
      max-width: 52rem;
      z-index: 2;
    }

    .hero-location-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.375rem 1rem;
      border-radius: 9999px;
      font-size: 0.875rem;
      font-family: var(--font-heading);
      font-weight: 600;
      background: rgba(212, 160, 23, 0.2);
      border: 1px solid var(--gold);
      color: var(--gold-light);
      margin-bottom: 1.5rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .hero-fullscreen-title {
      font-size: 2.5rem;
      font-weight: 800;
      line-height: 1.15;
      margin-bottom: 1.5rem;
    }
    @media (min-width: 640px) { .hero-fullscreen-title { font-size: 3.5rem; } }
    @media (min-width: 1024px) { .hero-fullscreen-title { font-size: 4rem; } }

    .hero-fullscreen-subtext {
      font-size: 1.05rem;
      color: rgba(255, 255, 255, 0.9);
      line-height: 1.7;
      margin-bottom: 2.5rem;
      font-weight: 300;
    }
    @media (min-width: 640px) { .hero-fullscreen-subtext { font-size: 1.15rem; } }

    .hero-fullscreen-buttons {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      justify-content: center;
      align-items: center;
    }
    @media (min-width: 480px) { .hero-fullscreen-buttons { flex-direction: row; } }


    
    /* ===== REVEAL ANIMATIONS ===== */
    .reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ===== HEADING & SUBTEXT SECTION ===== */
    .intro-header-section {
      text-align: center;
      max-width: 48rem;
      margin: 0 auto 3.5rem auto;
    }
    .intro-badge {
      color: var(--gold);
      font-family: var(--font-heading);
      font-weight: 600;
      font-size: 0.875rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      display: block;
      margin-bottom: 0.5rem;
    }
    .intro-title {
      font-size: 2.25rem;
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 1rem;
    }
    @media (min-width: 640px) { .intro-title { font-size: 2.75rem; } }
    .intro-subtext {
      font-size: 1.05rem;
      color: var(--muted);
      line-height: 1.7;
    }

    /* ===== MAIN CONTACT GRID ===== */
    .contact-grid {
      display: grid;
      gap: 2.5rem;
      align-items: start;
    }
    @media (min-width: 1024px) {
      .contact-grid { grid-template-columns: 1fr 1.25fr; }
    }

    /* Contact Details Card */
   .contact-grid .contact-info-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 1.25rem;
      padding: 2.5rem;
      box-shadow: var(--shadow-md);
      display: flex;
      flex-direction: column;
      gap: 2rem;
      align-items: self-start;
    }

    .contact-grid .contact-info-card .info-item {
      display: flex;
      align-items: flex-start;
      gap: 1.25rem;
    }

    .contact-grid .contact-info .contact-info-card .info-item .info-icon {
      width: 3.25rem;
      height: 3.25rem;
      border-radius: 0.75rem;
      background: color-mix(in srgb, var(--gold) 15%, transparent) !important;
      color: var(--gold) !important;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
     .contact-grid .contact-info .contact-info-card .contact-info-icon {
      width: 3.25rem;
      height: 3.25rem;
      border-radius: 0.75rem;
      background: var(--gold) !important;
      color: #fff !important;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    #contact-form .contact-grid .contact-info .contact-info-card {
      flex-direction: row;
      padding: 20px !important;
    }
    #contact-form .contact-grid .contact-info{
      display: flex;
      gap: 20px;
      flex-direction: column;
    }


    .contact-grid .contact-info-card .info-item .info-content h3 {
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 0.25rem;
    }

    .contact-grid .contact-info-card .info-item .info-content p, .info-content a {
      font-size: 1rem;
      color: var(--muted);
      transition: color 0.2s;
    }

   .contact-grid .contact-info-card .info-item  .info-content a:hover {
      color: var(--gold);
    }

    /* Rating Badge Box */
    .contact-grid .contact-info-card .rating-badge-box {
      background: var(--bg-secondary);
      border: 1px solid var(--border);
      border-radius: 0.875rem;
      padding: 1.25rem;
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-top: 0.5rem;
    }
      .contact-grid .contact-info-card .rating-badge-box  .rating-stars {
      color: #f59e0b;
      font-size: 1.25rem;
      letter-spacing: 2px;
    }
    .contact-grid .contact-info-card .rating-badge-box .rating-text h4 {
      font-size: 1rem;
      font-weight: 700;
    }
    .contact-grid .contact-info-card .rating-badge-box .rating-text p {
      font-size: 0.85rem;
      color: var(--muted);
    }

    /* Form Card */
    .contact-form-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 1.25rem;
      padding: 2.5rem;
      box-shadow: var(--shadow-lg);
    }

    .contact-form-card h3 {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
    }

    .contact-form-card p {
      color: var(--muted);
      font-size: 0.925rem;
      margin-bottom: 1.75rem;
    }

    .form-group {
      margin-bottom: 1.25rem;
    }

    .form-group label {
      display: block;
      font-family: var(--font-heading);
      font-weight: 600;
      font-size: 0.875rem;
      margin-bottom: 0.5rem;
      color: var(--fg);
    }

    .form-control {
      width: 100%;
      padding: 0.875rem 1rem;
      border-radius: 0.5rem;
      border: 1px solid var(--border);
      background: var(--bg);
      color: var(--fg);
      font-family: var(--font-body);
      font-size: 0.95rem;
      transition: border-color 0.2s, box-shadow 0.2s;
    }

    .form-control:focus {
      outline: none;
      border-color: var(--gold);
      box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.15);
    }

    textarea.form-control {
      resize: vertical;
      min-height: 120px;
    }

    .form-submit-btn {
      width: 100%;
      padding: 1rem;
      font-size: 1rem;
      margin-top: 0.5rem;
    }

    /* ===== MAP SECTION ===== */
    .map-section {
      padding-bottom: 5rem;
    }
    .map-wrapper {
      border-radius: 1.25rem;
      overflow: hidden;
      border: 1px solid var(--border);
      box-shadow: var(--shadow-md);
      height: 450px;
      width: 100%;
    }
    .map-wrapper iframe {
      width: 100%;
      height: 100%;
      border: 0;
    }
/****************************************
****************************************
=======Blog===========
************************************** 
************************************  */



    /* ===== FEATURED POST ===== */
    .featured-post-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 1.25rem;
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      margin-bottom: 4rem;
      display: grid;
      gap: 0;
    }
    @media (min-width: 1024px) {
      .featured-post-card { grid-template-columns: 1.2fr 1fr; }
    }

    .featured-img-wrap {
      position: relative;
      min-height: 280px;
      overflow: hidden;
    }
    .featured-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .featured-post-card:hover .featured-img-wrap img {
      transform: scale(1.05);
    }

    .featured-content {
      padding: 2.5rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .post-tag {
      align-self: flex-start;
      background: color-mix(in srgb, var(--gold) 15%, transparent);
      color: var(--gold);
      font-family: var(--font-heading);
      font-weight: 700;
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      padding: 0.35rem 0.85rem;
      border-radius: 9999px;
      margin-bottom: 1rem;
    }

    .post-meta {
      font-size: 0.85rem;
      color: var(--muted);
      margin-bottom: 0.75rem;
      display: flex;
      gap: 1rem;
      align-items: center;
    }

    .featured-title {
      font-size: 1.75rem;
      font-weight: 800;
      line-height: 1.3;
      margin-bottom: 1rem;
      transition: color 0.2s;
    }
    .featured-title:hover { color: var(--gold); }

    .featured-desc {
      color: var(--muted);
      font-size: 0.975rem;
      margin-bottom: 1.5rem;
      line-height: 1.6;
    }

    /* ===== BLOG LAYOUT (MAIN & SIDEBAR) ===== */
    .blog-layout {
      display: grid;
      gap: 3rem;
    }
    @media (min-width: 1024px) {
      .blog-layout { grid-template-columns: 2.2fr 1fr; }
    }

    /* Article Grid */
    .articles-grid {
      display: grid;
      gap: 2rem;
    }
    @media (min-width: 640px) {
      .articles-grid { grid-template-columns: repeat(2, 1fr); }
    }

    /* Blog Card */
    .blog-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 1rem;
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      display: flex;
      flex-direction: column;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .blog-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-md);
    }

    .blog-card-img {
      position: relative;
      height: 200px;
      overflow: hidden;
    }
    .blog-card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .blog-card:hover .blog-card-img img {
      transform: scale(1.08);
    }

    .blog-card-body {
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }

    .blog-card-title {
      font-size: 1.2rem;
      font-weight: 700;
      line-height: 1.4;
      margin: 0.5rem 0 0.75rem 0;
      transition: color 0.2s;
    }
    .blog-card-title:hover { color: var(--gold); }

    .blog-card-excerpt {
      color: var(--muted);
      font-size: 0.9rem;
      line-height: 1.6;
      margin-bottom: 1.5rem;
      flex-grow: 1;
    }

    .read-more-link {
      font-family: var(--font-heading);
      font-weight: 600;
      font-size: 0.875rem;
      color: var(--gold);
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      transition: gap 0.2s ease;
    }
    .read-more-link:hover { gap: 0.6rem; }

    /* ===== SIDEBAR WIDGETS ===== */
    .sidebar {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .sidebar-widget {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 1rem;
      padding: 1.75rem;
      box-shadow: var(--shadow-sm);
    }

    .widget-title {
      font-size: 1.15rem;
      font-weight: 700;
      margin-bottom: 1.25rem;
      position: relative;
      padding-bottom: 0.5rem;
    }
    .widget-title::after {
      content: '';
      position: absolute;
      left: 0; bottom: 0;
      width: 40px; height: 3px;
      background: var(--gold-gradient);
      border-radius: 2px;
    }

    .search-form {
      display: flex;
      gap: 0.5rem;
    }
    .search-input {
      width: 100%;
      padding: 0.75rem 1rem;
      border-radius: 0.5rem;
      border: 1px solid var(--border);
      background: var(--bg);
      color: var(--fg);
    }

    .category-list li {
      margin-bottom: 0.75rem;
    }
    .category-list a {
      display: flex;
      justify-content: space-between;
      color: var(--fg);
      font-size: 0.925rem;
      transition: color 0.2s;
    }
    .category-list a:hover { color: var(--gold); }
    .category-count {
      color: var(--muted);
      background: var(--bg-secondary);
      padding: 0.1rem 0.5rem;
      border-radius: 9999px;
      font-size: 0.8rem;
    }

    /* Newsletter CTA Widget */
    .newsletter-widget {
      background: var(--bg-secondary);
      border-color: var(--gold);
      text-align: center;
    }
    .newsletter-widget h4 { font-size: 1.25rem; margin-bottom: 0.5rem; }
    .newsletter-widget p { font-size: 0.875rem; color: var(--muted); margin-bottom: 1.25rem; }

    /* ===== PAGINATION ===== */
    .pagination {
      display: flex;
      justify-content: center;
      gap: 0.5rem;
      margin-top: 3.5rem;
    }
    .page-num {
      width: 2.5rem; height: 2.5rem;
      border-radius: 0.5rem;
      display: flex; align-items: center; justify-content: center;
      border: 1px solid var(--border);
      background: var(--card);
      font-family: var(--font-heading);
      font-weight: 600;
      transition: all 0.2s;
    }
    .page-num.active, .page-num:hover {
      background: var(--gold-gradient);
      color: #fff;
      border-color: transparent;
    }
/* blog detail page */


    /* ===== MAIN ARTICLE & SIDEBAR LAYOUT ===== */
    .post-layout {
      display: grid;
      gap: 3.5rem;
    }
    @media (min-width: 1024px) {
      .post-layout { grid-template-columns: 2.3fr 1fr; }
    }

    /* Article Content Formatting */
    .article-wrapper {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 1.25rem;
      padding: 2rem;
      box-shadow: var(--shadow-sm);
    }
    @media (min-width: 640px) { .article-wrapper { padding: 3rem; } }

    .featured-image-container {
      border-radius: 1rem;
      overflow: hidden;
      margin-bottom: 2.5rem;
    }
    .featured-image-container img {
      width: 100%;
      height: auto;
      max-height: 480px;
      object-fit: cover;
    }

    .article-body h2 {
      font-size: 1.65rem;
      font-weight: 700;
      margin: 2.25rem 0 1rem 0;
      color: var(--fg);
    }
    .article-body h3 {
      font-size: 1.3rem;
      font-weight: 600;
      margin: 1.75rem 0 0.75rem 0;
      color: var(--fg);
    }

    .article-body p {
      font-size: 1.05rem;
      color: var(--fg);
      opacity: 0.9;
      margin-bottom: 1.5rem;
    }

    .article-body ul, .article-body ol {
      margin: 0 0 1.5rem 1.5rem;
    }
    .article-body ul { list-style: disc; }
    .article-body ol { list-style: decimal; }
    .article-body li {
      margin-bottom: 0.5rem;
      font-size: 1.025rem;
    }

    /* Key Takeaways Box */
    .takeaway-box {
      background: var(--bg-secondary);
      border-left: 4px solid var(--gold);
      border-radius: 0.5rem;
      padding: 1.5rem;
      margin: 2rem 0;
    }
    .takeaway-box h4 {
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
      color: var(--gold);
    }

    /* Blockquote */
    .article-body blockquote {
      font-style: italic;
      font-size: 1.15rem;
      color: var(--fg);
      border-left: 3px solid var(--gold);
      padding-left: 1.25rem;
      margin: 2rem 0;
      opacity: 0.95;
    }

    /* Article Footer (Tags & Share) */
    .article-footer {
      margin-top: 3rem;
      padding-top: 2rem;
      border-top: 1px solid var(--border);
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
    }

    .tags-list { display: flex; gap: 0.5rem; flex-wrap: wrap; }
    .tag-item {
      font-size: 0.825rem;
      background: var(--bg-secondary);
      padding: 0.35rem 0.85rem;
      border-radius: 9999px;
      color: var(--muted);
      font-weight: 500;
    }

    /* Author Card */
    .author-card {
      background: var(--bg-secondary);
      border-radius: 1rem;
      padding: 1.75rem;
      display: flex;
      gap: 1.25rem;
      align-items: center;
      margin-top: 2.5rem;
    }
    .author-avatar {
      width: 4rem;
      height: 4rem;
      border-radius: 50%;
      background: var(--gold-gradient);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      color: #fff;
      font-size: 1.25rem;
      flex-shrink: 0;
    }
    .author-info h4 { font-size: 1.1rem; font-weight: 700; }
    .author-info p { font-size: 0.875rem; color: var(--muted); margin-top: 0.25rem; }

    /* ===== SIDEBAR WIDGETS ===== */
    .sidebar {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .sidebar-widget {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 1rem;
      padding: 1.75rem;
      box-shadow: var(--shadow-sm);
    }

    .widget-title {
      font-size: 1.15rem;
      font-weight: 700;
      margin-bottom: 1.25rem;
      position: relative;
      padding-bottom: 0.5rem;
    }
    .widget-title::after {
      content: '';
      position: absolute;
      left: 0; bottom: 0;
      width: 40px; height: 3px;
      background: var(--gold-gradient);
      border-radius: 2px;
    }

    .search-form { display: flex; gap: 0.5rem; }
    .search-input {
      width: 100%;
      padding: 0.75rem 1rem;
      border-radius: 0.5rem;
      border: 1px solid var(--border);
      background: var(--bg);
      color: var(--fg);
    }

    .recent-posts-list li {
      margin-bottom: 1rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid var(--border);
    }
    .recent-posts-list li:last-child { margin-bottom: 0; padding-bottom: 0; border: none; }
    .recent-post-link {
      font-weight: 600;
      font-size: 0.925rem;
      line-height: 1.4;
      display: block;
      transition: color 0.2s;
    }
    .recent-post-link:hover { color: var(--gold); }
    .recent-post-date { font-size: 0.775rem; color: var(--muted); margin-top: 0.35rem; display: block; }

    .call-cta-widget {
      background: var(--gold-gradient);
      color: #fff;
      text-align: center;
      border: none;
    }
    .call-cta-widget h4 { font-size: 1.35rem; margin-bottom: 0.5rem; }
    .call-cta-widget p { font-size: 0.9rem; opacity: 0.95; margin-bottom: 1.25rem; }

    /* ===== RELATED POSTS ===== */
    .related-posts-section {
      margin-top: 5rem;
      border-top: 1px solid var(--border);
      padding-top: 4rem;
    }
    .related-grid {
      display: grid;
      gap: 2rem;
      margin-top: 2rem;
    }
    @media (min-width: 640px) { .related-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (min-width: 1024px) { .related-grid { grid-template-columns: repeat(3, 1fr); } }

    .blog-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 1rem;
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      display: flex;
      flex-direction: column;
      transition: transform 0.3s ease;
    }
    .blog-card:hover { transform: translateY(-5px); }
    .blog-card-img { height: 180px; overflow: hidden; }
    .blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
    .blog-card-body { padding: 1.25rem; display: flex; flex-direction: column; flex-grow: 1; }
    .blog-card-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }



     /* ===== ALTERNATING SERVICES LAYOUT ===== */
    .service-row {
      display: grid;
      gap: 3rem;
      align-items: center;
      margin-bottom: 5rem;
    }
    @media (min-width: 1024px) {
      .service-row { grid-template-columns: 1fr 1fr; }
      .service-row.reverse .service-img-wrap { order: 2; }
      .service-row.reverse .service-text-wrap { order: 1; }
    }
    .service-row:last-child { margin-bottom: 0; }

    .service-img-wrap {
      position: relative;
      border-radius: 1.25rem;
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      border: 1px solid var(--border);
    }
    .service-img {
      width: 100%;
      height: 480px;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .service-img-wrap:hover .service-img { transform: scale(1.05); }

    .service-text-wrap h2 {
      font-size: 1.75rem;
      font-weight: 800;
      line-height: 1.25;
      margin-bottom: 1.25rem;
      color: var(--fg);
    }
    @media (min-width: 640px) { .service-text-wrap h2 { font-size: 2.1rem; } }

    .service-p {
      color: var(--muted);
      font-size: 0.95rem;
      line-height: 1.6;
      margin-bottom: 1rem;
    }
    .service-p:last-of-type { margin-bottom: 1.75rem; }

  /* ===== CTA SECTION ===== */
    .cta-banner {
      background: var(--fg);
      color: var(--bg);
      border-radius: 1.5rem;
      padding: 3.5rem 2rem;
      text-align: center;
      margin: 4rem 0;
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow-lg);
    }
    .cta-banner-title { font-size: 2rem; font-weight: 800; margin-bottom: 1rem; }
    .cta-banner-desc { font-size: 1.05rem; opacity: 0.85; max-width: 36rem; margin: 0 auto 2rem; }


/* Floating Badge */
    
    .floating-badge {
      position: absolute;
      bottom: 1.25rem;
      left: 1.25rem;
      background: rgba(0, 0, 0, 0.8);
      backdrop-filter: blur(10px);
      border: 1px solid var(--gold);
      color: #fff;
      padding: 0.6rem 1.2rem;
      border-radius: 0.75rem;
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-family: var(--font-heading);
      font-size: 0.875rem;
      font-weight: 600;
      box-shadow: var(--shadow-md);
    }
    


    /* ===== Feature List SECTION ===== */
    .feature-list-modern {
      margin-bottom: 1.75rem;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }
    .feature-list-item {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      font-weight: 500;
      font-size: 0.95rem;
    }
    .feature-icon-svg {
      width: 20px;
      height: 20px;
      color: var(--gold);
      flex-shrink: 0;
      margin-top: 2px;
    }

    

    /* ===== BRANDS SECTION ===== */
    .brand-logo-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
      align-items: center;
      margin-top: 2rem;
    }
    @media (min-width: 640px) { .brand-logo-grid { grid-template-columns: repeat(4, 1fr); } }
    .brand-pill {
      background: var(--card);
      border: 1px solid var(--border);
      padding: 1.5rem;
      border-radius: 1rem;
      text-align: center;
      font-family: var(--font-heading);
      font-weight: 700;
      font-size: 1.1rem;
      color: var(--fg);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      transition: border-color 0.3s, transform 0.3s;
    }
    .brand-pill:hover { border-color: var(--gold); transform: translateY(-3px); }

     /* ===== OTHER SERVICES MODERN FLEX ROW ===== */
    .other-services-grid {
      display: grid;
      gap: 1.5rem;
      grid-template-columns: repeat(1, 1fr);
      margin-top: 2.5rem;
    }
    @media (min-width: 640px) { .other-services-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (min-width: 1024px) { .other-services-grid { grid-template-columns: repeat(3, 1fr); } }

    .other-service-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1.25rem;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 0.75rem;
      transition: all 0.3s ease;
    }
    .other-service-item:hover { border-color: var(--gold); transform: translateY(-2px); }

    
    /* ===== STATS SECTION ===== */
    .trust-counter-section {
      position: relative;
      padding: 5.5rem 0;
      background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.88)), url('https://images.unsplash.com/photo-1512915922686-57c11dde9b6b?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat fixed;
      color: #fff;
      text-align: center;
    }
    .stats-grid {
      display: grid;
      gap: 2rem;
      grid-template-columns: repeat(2, 1fr);
    }
    @media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }

    .stat-item {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.12);
      backdrop-filter: blur(10px);
      border-radius: 1rem;
      padding: 2rem 1rem;
    }
    .stat-number { font-size: 2.75rem; font-weight: 900; color: var(--gold-light); margin-bottom: 0.25rem; font-family: var(--font-heading); }
    .stat-label { font-size: 0.95rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.8); }


    
    /* ===== COMPARISON TABLE STYLING ===== */
    .comparison-table-wrap {
      overflow-x: auto;
      margin-top: 2rem;
      border-radius: 0.75rem;
      border: 1px solid var(--border);
    }
    .comparison-table {
      width: 100%;
      border-collapse: collapse;
      text-align: left;
      font-size: 0.95rem;
      background: var(--card);
    }
    .comparison-table th {
      background: var(--bg-secondary);
      color: var(--fg);
      font-family: var(--font-heading);
      font-weight: 700;
      padding: 1rem;
      border-bottom: 1px solid var(--border);
    }
    .comparison-table td {
      padding: 1rem;
      border-bottom: 1px solid var(--border);
      color: var(--muted);
    }
    .comparison-table tr:last-child td { border-bottom: none; }

    .comparison-table td {
      padding: 1.25rem 1.25rem;
      border-bottom: 1px solid var(--border);
      color: var(--fg);
      vertical-align: middle;
      transition: background 0.2s;
    }
    .comparison-table tr:hover td {
      background: color-mix(in srgb, var(--gold) 6%, transparent);
    }
    .comparison-table tr:last-child td { border-bottom: none; }

    .table-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      padding: 0.25rem 0.75rem;
      border-radius: 9999px;
      font-size: 0.75rem;
      font-family: var(--font-heading);
      font-weight: 700;
      text-transform: uppercase;
    }
    .badge-gold { background: rgba(212, 160, 23, 0.15); color: var(--gold-dark); border: 1px solid var(--gold); }
    .dark .badge-gold { color: var(--gold-light); }
    .badge-blue { background: rgba(37, 99, 235, 0.1); color: #2563eb; border: 1px solid rgba(37, 99, 235, 0.3); }
    .dark .badge-blue { color: #60a5fa; }
    .badge-dark { background: rgba(0,0,0,0.06); color: var(--fg); border: 1px solid var(--border); }

  /* ===== PROCESS STEPS ===== */
    .process-grid {
      display: grid;
      gap: 1.5rem;
      grid-template-columns: repeat(1, 1fr);
      margin-top: 2.5rem;
    }
    @media (min-width: 640px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }

    .process-card {
      background: var(--card);
      border: 1px solid var(--border);
      padding: 2rem 1.5rem;
      border-radius: 1rem;
      text-align: center;
      position: relative;
      transition: border-color 0.3s, transform 0.3s;
    }
    .process-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.process-number {
  width: 3rem;
  height: 3rem;
  background: var(--gold-gradient);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

    
/* ===== GALLERY ===== */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.gallery-filter {
  padding: 10px 24px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  cursor: pointer;
  transition: all 0.3s;
}
[data-theme="dark"] .gallery-filter {
  background: var(--dark-card);
  border-color: var(--dark-border);
  color: var(--white);
}
.gallery-filter:hover { border-color: var(--gold); color: var(--gold); }
.gallery-filter.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: var(--white);
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-cat {
  display: inline-block;
  padding: 4px 12px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.gallery-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
}
.gallery-zoom {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-zoom { opacity: 1; }

/* Gallery Modal */
.gallery-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,.95);
    z-index: 10000;
    padding: 40px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
}

.gallery-modal.active{
    display:flex;
    opacity:1;
    visibility:visible;
}

.gallery-modal-content{
    position:relative;
    max-width:90vw;
    max-height:90vh;
    text-align:center;
}

.gallery-modal-content img{
    display:block;
    max-width:100%;
    max-height:75vh;
    border-radius:12px;
    object-fit:contain;
}

.gallery-modal-info{
    margin-top:20px;
}

.gallery-modal-cat{
    display:inline-block;
    padding:4px 12px;
    background:var(--gold);
    color:#fff;
    border-radius:30px;
    font-size:.75rem;
    font-weight:600;
    margin-bottom:10px;
}

.gallery-modal-title{
    color:#fff;
    font-size:1.4rem;
    font-weight:700;
}

.gallery-modal-close,
.gallery-modal-prev,
.gallery-modal-next{
    position:absolute;
    width:52px;
    height:52px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    color:#fff;
    cursor:pointer;
    font-size:28px;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
}

.gallery-modal-close:hover,
.gallery-modal-prev:hover,
.gallery-modal-next:hover{
    background:var(--gold);
}

.gallery-modal-close{
    top:30px;
    right:30px;
}

.gallery-modal-prev{
    left:30px;
    top:50%;
    transform:translateY(-50%);
}

.gallery-modal-next{
    right:30px;
    top:50%;
    transform:translateY(-50%);
}

@media(max-width:768px){

.gallery-modal{
    padding:20px;
}

.gallery-modal-prev{
    left:10px;
}

.gallery-modal-next{
    right:10px;
}

.gallery-modal-close{
    top:15px;
    right:15px;
}

.gallery-modal-prev,
.gallery-modal-next,
.gallery-modal-close{
    width:44px;
    height:44px;
    font-size:22px;
}

.gallery-modal-title{
    font-size:1.1rem;
}

}