/* CSS Design System & Stylesheet for Fix Experts Oman */
/* Fonts loaded via <link> in HTML for performance - no duplicate @import */

:root {
  --primary: #0B1628;
  --primary-light: #162a45;
  --accent-gold: #D9A404;
  --accent-gold-hover: #b88a03;
  --accent-orange: #E67E22;
  --bg-warm-white: #FAFAFA;
  --bg-soft-gray: #F5F5F5;
  --text-dark: #1E293B;
  --text-muted: #64748B;
  --whatsapp-green: #25D366;
  --whatsapp-green-hover: #1ebd54;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius: 12px;
  --box-shadow: 0 10px 30px rgba(11, 22, 40, 0.06);
  --box-shadow-hover: 0 20px 40px rgba(11, 22, 40, 0.12);
  --font-headings: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Typography Utilities */
.text-gold { color: var(--accent-gold); }
.text-orange { color: var(--accent-orange); }
.text-white { color: #FFFFFF; }
.bg-dark { background-color: var(--primary); color: #FFFFFF; }
.bg-gray { background-color: var(--bg-soft-gray); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
  gap: 8px;
}

.btn-primary {
  background-color: var(--accent-gold);
  color: var(--primary);
}

.btn-primary:hover {
  background-color: var(--accent-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(217, 164, 4, 0.3);
}

.btn-secondary {
  background-color: transparent;
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.btn-secondary:hover {
  background-color: var(--accent-gold);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-dark {
  background-color: var(--primary);
  color: #FFFFFF;
}

.btn-dark:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: var(--whatsapp-green);
  color: #FFFFFF;
}

.btn-whatsapp:hover {
  background-color: var(--whatsapp-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(11, 22, 40, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-smooth);
}

header.scrolled {
  padding: 0.5rem 0;
  box-shadow: var(--box-shadow);
}

.header-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-text {
  font-family: var(--font-headings);
  font-size: 1.5rem;
  font-weight: 800;
  color: #FFFFFF;
}

.logo-text span {
  color: var(--accent-gold);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--accent-gold);
}

.header-ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Hamburger removed – replaced by mobile bottom nav */

/* Sections General */
section {
  padding: 5rem 2rem;
}

.section-title-wrapper {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title-wrapper span {
  font-family: var(--font-headings);
  color: var(--accent-gold);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  display: block;
}

.section-title-wrapper h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-title-wrapper p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--primary);
  color: #FFFFFF;
  overflow: hidden;
  padding-top: 100px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(11, 22, 40, 0.85) 0%, rgba(11, 22, 40, 0.6) 50%, rgba(11, 22, 40, 0.45) 100%);
  z-index: 1;
}

.hero-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  z-index: 0;
  filter: saturate(0.85);
}

/* Hero decorative elements */
.hero-decor-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217,164,4,0.12) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}
.hero-decor-circle:nth-child(1) {
  width: 500px; height: 500px;
  top: -120px; right: -80px;
  animation: heroFloat 8s ease-in-out infinite;
}
.hero-decor-circle:nth-child(2) {
  width: 300px; height: 300px;
  bottom: -60px; left: -40px;
  animation: heroFloat 10s ease-in-out infinite reverse;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroFadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes heroPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(217,164,4,0.4); }
  50% { transform: scale(1.02); box-shadow: 0 0 30px 10px rgba(217,164,4,0.15); }
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(12px); opacity: 0.5; }
}

@keyframes accentLineGrow {
  from { width: 0; }
  to { width: 60px; }
}

.hero-container {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  animation: heroFadeIn 0.9s cubic-bezier(0.22,1,0.36,1) both;
}

.hero-accent-line {
  width: 60px;
  height: 4px;
  background: var(--accent-gold);
  border-radius: 2px;
  margin-bottom: 1.2rem;
  animation: accentLineGrow 0.8s 0.3s cubic-bezier(0.22,1,0.36,1) both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(217,164,4,0.12);
  border: 1px solid rgba(217,164,4,0.25);
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  font-family: var(--font-headings);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-gold);
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
  animation: heroFadeIn 0.9s 0.15s cubic-bezier(0.22,1,0.36,1) both;
}

.hero-badge svg {
  width: 16px; height: 16px; fill: var(--accent-gold);
}

.hero-content h1 {
  font-size: 3.5rem;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  line-height: 1.15;
  animation: heroFadeIn 0.9s 0.2s cubic-bezier(0.22,1,0.36,1) both;
}

.hero-content h1 span {
  color: var(--accent-gold);
  position: relative;
}

.hero-content p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  max-width: 650px;
  line-height: 1.7;
  animation: heroFadeIn 0.9s 0.35s cubic-bezier(0.22,1,0.36,1) both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: heroFadeIn 0.9s 0.5s cubic-bezier(0.22,1,0.36,1) both;
}

/* Hero trust bar below buttons */
.hero-trust-bar {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  animation: heroFadeIn 0.9s 0.65s cubic-bezier(0.22,1,0.36,1) both;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  font-weight: 500;
}
.hero-trust-item svg {
  width: 18px; height: 18px; fill: var(--accent-gold);
}
.hero-trust-stars {
  color: var(--accent-gold);
  letter-spacing: 2px;
  font-size: 0.9rem;
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
  cursor: pointer;
}
.hero-scroll-indicator svg {
  width: 24px; height: 24px; fill: rgba(255,255,255,0.5);
}

.hero-form-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 25px 60px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.05) inset;
  animation: heroFadeInRight 0.9s 0.4s cubic-bezier(0.22,1,0.36,1) both;
  position: relative;
  overflow: hidden;
}

.hero-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-orange), var(--accent-gold));
  border-radius: 16px 16px 0 0;
}

.hero-form-card h3 {
  color: #FFFFFF;
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
  text-align: center;
}
.hero-form-subtitle {
  text-align: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  margin-bottom: 1.5rem;
}

/* Skip to content (accessibility + SEO) */
.skip-to-content {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-gold);
  color: var(--primary);
  padding: 0.8rem 1.5rem;
  border-radius: 0 0 8px 8px;
  font-weight: 700;
  z-index: 9999;
  transition: top 0.3s;
}
.skip-to-content:focus {
  top: 0;
}

/* Honeypot field - hidden from real users */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* Forms */
.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: rgba(255, 255, 255, 0.8);
}

.light-form .form-group label {
  color: var(--primary);
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.light-form .form-control {
  border: 1px solid #CBD5E1;
  background: #FFFFFF;
  color: var(--primary);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.light-form .form-control::placeholder {
  color: #94A3B8;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(219, 164, 4, 0.2);
}

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

select.form-control optgroup {
  background: #162a45;
  color: #fff;
  font-weight: 600;
}

select.form-control option {
  background: #162a45;
  color: #fff;
  padding: 6px;
}

/* Trust Badges */
.trust-badges {
  background: var(--bg-soft-gray);
  padding: 2rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.badges-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary);
}

.badge-item svg {
  width: 24px;
  height: 24px;
  fill: var(--accent-gold);
}

/* About Preview Section */
.about-preview {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image-main {
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  width: 100%;
}

.about-experience-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background-color: var(--accent-gold);
  color: var(--primary);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: 0 15px 30px rgba(217,164,4,0.3);
}

.about-experience-badge h4 {
  font-size: 2.5rem;
  line-height: 1;
}

.about-experience-badge p {
  font-weight: 600;
  font-size: 0.9rem;
}

/* Grid & Service Cards */
.services-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: #FFFFFF;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition-smooth);
  border: 1px solid rgba(0,0,0,0.03);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--box-shadow-hover);
}

.service-image-container {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.service-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.service-card:hover .service-image-container img {
  transform: scale(1.05);
}

.service-icon-floating {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background-color: var(--accent-gold);
  padding: 10px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-icon-floating svg {
  width: 20px;
  height: 20px;
  fill: var(--primary);
}

.service-card-body {
  padding: 2rem;
}

.service-card-body h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.service-card-body p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
}

.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary);
}

.link-arrow:hover {
  color: var(--accent-gold);
}

/* Why Choose Us */
.reasons-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
}

.reason-card {
  text-align: center;
  padding: 2rem;
  background-color: #FFFFFF;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition-smooth);
}

.reason-card:hover {
  transform: translateY(-5px);
}

.reason-icon {
  width: 70px;
  height: 70px;
  background: rgba(219, 164, 4, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.reason-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--accent-gold);
}

.reason-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
}

.reason-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* Animated Counters */
.counters-section {
  background-color: var(--primary);
  color: #FFFFFF;
  padding: 4rem 2rem;
}

.counters-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 3rem;
  text-align: center;
}

.counter-item h3 {
  font-size: 3rem;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
}

.counter-item p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* How We Work */
.process-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  position: relative;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 2;
}

.process-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--accent-gold);
  font-family: var(--font-headings);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 0 0 6px rgba(219, 164, 4, 0.15);
}

.process-step h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.process-step p {
  color: var(--text-muted);
  font-size: 0.92rem;
  max-width: 250px;
  margin: 0 auto;
}

/* Gallery Portfolio Carousel & Filters */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  background-color: var(--bg-soft-gray);
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 30px;
  font-family: var(--font-headings);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.filter-btn.active, .filter-btn:hover {
  background-color: var(--accent-gold);
  color: var(--primary);
}

.gallery-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 22, 40, 0.85);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: var(--transition-smooth);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h4 {
  color: #FFFFFF;
  font-size: 1.25rem;
  margin-bottom: 0.3rem;
}

.gallery-overlay span {
  color: var(--accent-gold);
  font-size: 0.85rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(11, 22, 40, 0.97);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox-content {
  position: relative;
  max-width: 900px;
  width: 100%;
  text-align: center;
}

.lightbox-content img {
  max-height: 80vh;
  margin: 0 auto;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 2rem;
  cursor: pointer;
}

.lightbox-caption {
  color: #FFFFFF;
  margin-top: 1rem;
  font-size: 1.1rem;
}

/* Before / After Slider */
.ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.ba-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ba-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-before {
  z-index: 2;
  width: 50%;
  overflow: hidden;
}

.ba-after {
  z-index: 1;
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: var(--accent-gold);
  z-index: 3;
  cursor: ew-resize;
  transform: translateX(-50%);
}

.ba-handle-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background-color: var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-weight: bold;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

/* Testimonial Cards */
.testimonials-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background-color: #FFFFFF;
  border-radius: var(--border-radius);
  padding: 2.5rem;
  box-shadow: var(--box-shadow);
  border: 1px solid rgba(0,0,0,0.02);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 1.5rem;
}

.testimonial-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-info h4 {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.testimonial-info p {
  color: var(--text-muted);
  font-size: 0.82rem;
}

.star-rating {
  color: var(--accent-gold);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.testimonial-body {
  font-style: italic;
  color: var(--text-dark);
  font-size: 0.95rem;
}

/* Google Reviews Summary */
.google-reviews-banner {
  max-width: 500px;
  margin: 2rem auto 0;
  background: #FFFFFF;
  border-radius: 50px;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  box-shadow: var(--box-shadow);
  border: 1px solid rgba(0,0,0,0.04);
}

.google-reviews-banner img {
  width: 24px;
}

.google-reviews-text {
  font-weight: 600;
  color: var(--primary);
  font-size: 0.95rem;
}

/* Local SEO Sections */
.location-pill-container {
  max-width: 900px;
  margin: 2rem auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.location-pill {
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.05);
  padding: 0.5rem 1.25rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary);
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

/* Call-to-action Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #FFFFFF;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-banner h2 {
  color: #FFFFFF;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.cta-banner-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Floating Elements & Sticky Bar */
.floating-widgets {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.floating-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  transition: var(--transition-smooth);
}

.floating-btn:hover {
  transform: scale(1.1) rotate(5deg);
}

.floating-whatsapp {
  background-color: var(--whatsapp-green);
}

.floating-whatsapp svg {
  width: 28px;
  height: 28px;
  fill: #FFFFFF;
}

.floating-call {
  background-color: var(--accent-gold);
}

.floating-call svg {
  width: 24px;
  height: 24px;
  fill: var(--primary);
}

/* Contact Page Layout */
.contact-section {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
}

.contact-info-card {
  background-color: #FFFFFF;
  border-radius: var(--border-radius);
  padding: 3rem;
  box-shadow: var(--box-shadow);
}

.contact-details {
  list-style: none;
  margin-top: 2rem;
}

.contact-details li {
  display: flex;
  gap: 15px;
  margin-bottom: 2rem;
}

.contact-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(219, 164, 4, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon-box svg {
  width: 22px;
  height: 22px;
  fill: var(--accent-gold);
}

.contact-details h4 {
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}

.contact-details p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.map-wrapper {
  margin-top: 2rem;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.map-wrapper iframe {
  width: 100%;
  height: 280px;
  border: 0;
}

/* Footer Section */
footer {
  background-color: var(--primary);
  color: #FFFFFF;
  padding: 5rem 2rem 2rem;
  border-top: 5px solid var(--accent-gold);
}

.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-column h3 {
  color: #FFFFFF;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 30px;
  height: 2px;
  background-color: var(--accent-gold);
}

.footer-column p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  line-height: 1.7;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

.footer-links a:hover {
  color: var(--accent-gold);
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 1.5rem;
}

.social-icon {
  width: 38px;
  height: 38px;
  background-color: rgba(255,255,255,0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.social-icon:hover {
  background-color: var(--accent-gold);
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: #FFFFFF;
}

.footer-bottom {
  max-width: 1300px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

/* About Page Specific styling */
.about-hero {
  background-color: var(--primary);
  color: #FFFFFF;
  padding: 7rem 2rem 5rem;
  text-align: center;
}

.about-hero h1 {
  color: #FFFFFF;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.values-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

/* Service Detail Page layout */
.service-details-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
}

.sidebar-card {
  background-color: #FFFFFF;
  border-radius: var(--border-radius);
  padding: 2.5rem;
  box-shadow: var(--box-shadow);
  margin-bottom: 2rem;
}

.service-nav-list {
  list-style: none;
}

.service-nav-list li {
  margin-bottom: 0.8rem;
}

.service-nav-list a {
  display: block;
  padding: 0.8rem 1.2rem;
  border-radius: 8px;
  background-color: var(--bg-soft-gray);
  font-weight: 600;
  font-size: 0.95rem;
}

.service-nav-list a.active, .service-nav-list a:hover {
  background-color: var(--primary);
  color: #FFFFFF;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-preview {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .contact-section {
    grid-template-columns: 1fr;
  }
  .service-details-container {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   MOBILE BOTTOM NAVIGATION BAR
   =============================================
   Persistent, animated bottom bar for mobile.
   Replaces the hamburger menu entirely.
   ============================================= */

@keyframes slideUpNav {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes navItemPop {
  0% { transform: scale(0.7) translateY(10px); opacity: 0; }
  70% { transform: scale(1.08) translateY(-2px); }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

@keyframes activeIndicatorGrow {
  from { width: 0; opacity: 0; }
  to { width: 24px; opacity: 1; }
}

.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(8, 16, 30, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1.5px solid rgba(217, 164, 4, 0.4);
  display: none; /* shown by media query below */
  grid-template-columns: repeat(5, 1fr);
  z-index: 1001;
  padding: 0.4rem 0 calc(0.4rem + env(safe-area-inset-bottom));
  animation: slideUpNav 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.mobile-bottom-nav .nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 0.5rem 0.2rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.65rem;
  font-family: var(--font-headings);
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: color 0.25s ease, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.mobile-bottom-nav .nav-item:nth-child(1) { animation: navItemPop 0.5s 0.05s both; }
.mobile-bottom-nav .nav-item:nth-child(2) { animation: navItemPop 0.5s 0.12s both; }
.mobile-bottom-nav .nav-item:nth-child(3) { animation: navItemPop 0.5s 0.19s both; }
.mobile-bottom-nav .nav-item:nth-child(4) { animation: navItemPop 0.5s 0.26s both; }
.mobile-bottom-nav .nav-item:nth-child(5) { animation: navItemPop 0.5s 0.33s both; }

.mobile-bottom-nav .nav-item .nav-icon {
  width: 22px;
  height: 22px;
  fill: rgba(255, 255, 255, 0.5);
  transition: fill 0.25s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: block;
}

/* Active indicator dot below icon */
.mobile-bottom-nav .nav-item::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--accent-gold);
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mobile-bottom-nav .nav-item.active::after {
  width: 20px;
}

.mobile-bottom-nav .nav-item.active,
.mobile-bottom-nav .nav-item:active {
  color: var(--accent-gold);
  transform: translateY(-4px);
}

.mobile-bottom-nav .nav-item.active .nav-icon,
.mobile-bottom-nav .nav-item:active .nav-icon {
  fill: var(--accent-gold);
  transform: scale(1.2);
}

/* Special center Quote button */
.mobile-bottom-nav .nav-item-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 0.5rem 0.2rem;
  font-size: 0.62rem;
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--primary);
  position: relative;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: navItemPop 0.5s 0.19s both;
}

.mobile-bottom-nav .nav-item-cta .cta-bubble {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--accent-gold), #f5c518);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(217, 164, 4, 0.55);
  margin-bottom: 1px;
  margin-top: -14px; /* Pop above the bar */
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.mobile-bottom-nav .nav-item-cta .cta-bubble svg {
  width: 20px;
  height: 20px;
  fill: var(--primary);
}

.mobile-bottom-nav .nav-item-cta:active .cta-bubble,
.mobile-bottom-nav .nav-item-cta:hover .cta-bubble {
  transform: scale(1.12);
  box-shadow: 0 6px 20px rgba(217, 164, 4, 0.7);
}

.mobile-bottom-nav .nav-item-cta:active {
  transform: scale(0.94);
}

/* Adjust floating widgets so they sit above the bottom nav */
@media (max-width: 768px) {
  section {
    padding: 3rem 1rem;
    padding-bottom: calc(3rem + 70px); /* clearance for bottom nav */
  }
  .section-title-wrapper h2 {
    font-size: 1.75rem;
  }
  .section-title-wrapper p {
    font-size: 0.9rem;
  }
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .hero {
    padding-bottom: calc(60px + 70px); /* hero extra bottom pad */
  }
  .hero-trust-bar {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .hero-trust-item {
    font-size: 0.8rem;
  }
  .hero-scroll-indicator {
    display: none;
  }
  .hero-badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.9rem;
  }

  /* Services grid: 2 cards per row on mobile */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .service-image-container {
    height: 140px;
  }
  .service-card-body {
    padding: 1rem;
  }
  .service-card-body h3 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
  }
  .service-card-body p {
    font-size: 0.82rem;
    margin-bottom: 0.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .service-icon-floating {
    width: 32px;
    height: 32px;
    padding: 6px;
    bottom: 10px;
    right: 10px;
  }
  .service-icon-floating svg {
    width: 18px;
    height: 18px;
  }
  .link-arrow {
    font-size: 0.8rem;
  }

  /* Process steps: 2 per row on mobile */
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 1rem;
  }
  .process-number {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
    margin: 0 auto 0.8rem;
  }
  .process-step h3 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
  }
  .process-step p {
    font-size: 0.82rem;
  }

  /* Reasons/Why choose us: 2 per row */
  .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .reason-card {
    padding: 1.25rem;
  }
  .reason-card h3 {
    font-size: 1rem;
  }
  .reason-card p {
    font-size: 0.82rem;
  }

  /* Gallery filters compact */
  .gallery-filters {
    gap: 0.5rem;
  }
  .filter-btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.78rem;
  }

  .nav-links {
    display: none;
  }
  .header-ctas {
    display: none;
  }
  .floating-widgets {
    bottom: 88px;
    right: 16px;
  }
  .floating-widgets .floating-btn {
    width: 48px;
    height: 48px;
  }
  .mobile-bottom-nav {
    display: grid;
  }
  footer {
    padding-bottom: calc(2rem + 70px);
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
  }
  .hero-buttons .btn {
    width: 100%;
  }
  /* Keep 2 columns even on very small screens */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .service-image-container {
    height: 120px;
  }
  .service-card-body {
    padding: 0.75rem;
  }
  .service-card-body h3 {
    font-size: 0.9rem;
  }
  .service-card-body p {
    font-size: 0.78rem;
    -webkit-line-clamp: 2;
  }
  .service-card-footer {
    display: block;
  }
  .link-arrow {
    font-size: 0.75rem;
  }
  .service-icon-floating {
    width: 28px;
    height: 28px;
    padding: 5px;
    bottom: 8px;
    right: 8px;
  }
  .service-icon-floating svg {
    width: 16px;
    height: 16px;
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem 0.75rem;
  }
  .reasons-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
  .reason-card {
    padding: 1rem;
  }
  .filter-btn {
    padding: 0.35rem 0.6rem;
    font-size: 0.72rem;
  }
}

/* =============================================
   GALLERY CAROUSEL
============================================= */
.carousel-container {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 60px;
}

.carousel-track-wrapper {
  overflow: hidden;
  border-radius: var(--border-radius);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 calc(33.333% - 1.33rem);
  margin-right: 2rem;
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  background: var(--card-bg);
  aspect-ratio: 4/3;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.carousel-slide:hover img {
  transform: scale(1.06);
}

.carousel-slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem 1.25rem 1.25rem;
  background: linear-gradient(transparent, rgba(11, 22, 40, 0.92));
  transform: translateY(100%);
  transition: transform 0.35s ease;
}

.carousel-slide:hover .carousel-slide-caption {
  transform: translateY(0);
}

.carousel-slide-caption h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.carousel-slide-caption span {
  color: var(--accent-gold);
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.15);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.3s, transform 0.3s;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.carousel-btn:hover {
  background: var(--accent-gold);
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.carousel-btn-prev {
  left: 0;
}

.carousel-btn-next {
  right: 0;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 2rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.carousel-dot.active {
  background: var(--accent-gold);
  transform: scale(1.3);
}

.carousel-dot:hover {
  background: var(--accent-gold);
}

/* Carousel Responsive */
@media (max-width: 1024px) {
  .carousel-slide {
    flex: 0 0 calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  .carousel-container {
    padding: 0 50px;
  }
  .carousel-slide {
    flex: 0 0 calc(50% - 0.75rem);
    margin-right: 1.5rem;
  }
  .carousel-btn {
    width: 40px;
    height: 40px;
  }
  .carousel-btn svg {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 540px) {
  .carousel-container {
    padding: 0 42px;
  }
  .carousel-slide {
    flex: 0 0 100%;
    margin-right: 0;
  }
  .carousel-btn {
    width: 34px;
    height: 34px;
  }
  .carousel-btn svg {
    width: 18px;
    height: 18px;
  }
  .carousel-slide-caption {
    transform: translateY(0);
  }
}

