/* Custom CSS for Royal Infinity Cleaning Services LLC */

/* ----------------------------------------------------
   DESIGN SYSTEM & VARIABLES
---------------------------------------------------- */
:root {
  --primary: #006B54;         /* Rich Forest Green from Logo */
  --primary-rgb: 0, 107, 84;
  --primary-light: #0d9488;   /* Electric Teal secondary */
  --accent-blue: #0284c7;     /* Sky/Cyan Blue */
  --accent-gold: #f59e0b;     /* Premium Gold for highlights */
  --accent-gold-dark: #d97706;
  --neutral-dark: #0f172a;    /* Slate 900 for high contrast headings */
  --neutral-light: #f8fafc;   /* Slate 50 for sections */
  --neutral-border: #e2e8f0;  /* Slate 200 for lines */
  --text-main: #475569;       /* Slate 600 for body reading */
  --text-light: #94a3b8;      /* Slate 400 for subtext */
  --white: #ffffff;
  
  --font-heading: 'Outfit', 'Inter', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 40px -15px rgba(15, 23, 42, 0.15);
  --shadow-glass: 0 8px 32px 0 rgba(0, 107, 84, 0.08);
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;
}

/* ----------------------------------------------------
   BASE STYLE & RESET
---------------------------------------------------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px; /* Offset for sticky header */
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.text-center { text-align: center; }
.text-gold { color: var(--accent-gold); }
.text-teal { color: var(--primary-light); }
.text-teal-bright { color: #14b8a6; }
.text-white { color: var(--white) !important; }
.text-gray-light { color: #cbd5e1 !important; }
.btn-whatsapp-color { background-color: #25d366 !important; }

/* ----------------------------------------------------
   BUTTONS & ACTIONS
---------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 15px;
  transition: var(--transition);
  gap: 8px;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
}
.btn-primary:hover {
  background-color: #005643;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 107, 84, 0.2);
}

.btn-secondary {
  background-color: var(--neutral-dark);
  color: var(--white);
}
.btn-secondary:hover {
  background-color: #1e293b;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.15);
}

.btn-whatsapp {
  background-color: #25d366;
  color: var(--white);
}
.btn-whatsapp:hover {
  background-color: #1fc15a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.2);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.3);
  background-color: transparent;
  color: var(--white);
}
.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
  border-radius: var(--radius-sm);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
}

.btn-block {
  display: flex;
  width: 100%;
}

/* ----------------------------------------------------
   TOP INFO BAR
---------------------------------------------------- */
.top-bar {
  background-color: var(--neutral-dark);
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-info {
  display: flex;
  gap: 16px;
}

.top-contact {
  display: flex;
  gap: 12px;
}

.top-contact a:hover {
  color: var(--white);
}

.separator {
  color: rgba(255, 255, 255, 0.2);
}

/* ----------------------------------------------------
   STICKY HEADER & NAVIGATION
---------------------------------------------------- */
.main-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
  height: 80px;
  display: flex;
  align-items: center;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.logo-wrapper {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 107, 84, 0.2);
  background-color: var(--white);
}

.logo-svg {
  width: 100%;
  height: 100%;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.5px;
  line-height: 1.1;
}

.brand-subtitle {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-menu ul {
  display: flex;
  gap: 28px;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--neutral-dark);
  padding: 8px 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--primary);
  transition: var(--transition-fast);
  border-radius: 2px;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-nav-toggle {
  background: none;
  border: none;
  font-size: 24px;
  color: var(--neutral-dark);
  cursor: pointer;
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.mobile-nav-toggle:hover {
  background-color: var(--neutral-light);
}

/* ----------------------------------------------------
   MOBILE NAVIGATION MENU
---------------------------------------------------- */
.mobile-nav {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  background-color: var(--white);
  border-bottom: 2px solid var(--primary);
  box-shadow: var(--shadow-lg);
  z-index: 99;
  display: none;
  transform: translateY(-10px);
  opacity: 0;
  transition: var(--transition);
  padding: 16px 24px;
}

.mobile-nav.active {
  display: block;
  transform: translateY(0);
  opacity: 1;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  color: var(--neutral-dark);
  display: block;
  padding: 8px 0;
}

.mobile-link:hover {
  color: var(--primary);
  padding-left: 4px;
}

.mobile-menu-cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
  border-top: 1px solid var(--neutral-border);
  padding-top: 16px;
}

/* ----------------------------------------------------
   HERO / CAROUSEL SECTION
---------------------------------------------------- */
.hero-section {
  position: relative;
  height: calc(90vh - 80px);
  min-height: 580px;
  overflow: hidden;
  color: var(--white);
  display: flex;
  align-items: center;
}

.carousel-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  z-index: 1;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide.active {
  opacity: 1;
  z-index: 2;
}

.carousel-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition-fast);
}

.dot.active, .dot:hover {
  background-color: var(--white);
  transform: scale(1.2);
}

.hero-content-wrapper {
  position: relative;
  z-index: 5;
  width: 100%;
}

.hero-content {
  max-width: 720px;
}

.badge-approved {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(0, 107, 84, 0.95);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-sm);
}

.hero-section h1 {
  color: var(--white);
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.badge-icon {
  width: 32px;
  height: 32px;
  background-color: rgba(0, 107, 84, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #14b8a6;
  font-size: 14px;
}

.badge-text {
  font-size: 14px;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.wave-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
  z-index: 4;
}

.wave-bottom svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 50px;
}

.wave-bottom .shape-fill {
  fill: var(--white);
}

/* ----------------------------------------------------
   BENEFITS STRIP
---------------------------------------------------- */
.benefits-strip {
  background-color: var(--white);
  padding: 50px 0;
  border-bottom: 1px solid var(--neutral-border);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.benefit-item {
  border-left: 3px solid var(--primary);
  padding-left: 20px;
}

.benefit-number {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.benefit-number span {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-light);
}

.benefit-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--neutral-dark);
  margin-bottom: 6px;
}

.benefit-text {
  font-size: 13px;
  color: var(--text-main);
  line-height: 1.4;
}

/* ----------------------------------------------------
   ABOUT US SECTION
---------------------------------------------------- */
.about-section {
  padding: 100px 0;
  background-color: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.about-main-image {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--white);
  outline: 1px solid var(--neutral-border);
}

.about-badge-floating {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background-color: var(--primary);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 280px;
}

.about-badge-floating i {
  font-size: 32px;
  color: var(--accent-gold);
}

.about-badge-floating strong {
  display: block;
  font-size: 15px;
  line-height: 1.2;
}

.about-badge-floating span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
}

.section-subtitle {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  color: var(--primary-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: inline-block;
}

.section-title {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
}

.lead-text {
  font-size: 18px;
  font-weight: 500;
  color: var(--neutral-dark);
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 16px;
  font-size: 15px;
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
  border-top: 1.5px dashed var(--neutral-border);
  padding-top: 24px;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .about-pillars {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.certifications-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0;
}

.cert-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.cert-item i {
  font-size: 20px;
  margin-top: 4px;
}

.cert-item strong {
  display: block;
  font-family: var(--font-heading);
  color: var(--neutral-dark);
  font-size: 15px;
}

.cert-item span {
  font-size: 13px;
  color: var(--text-main);
}

.about-cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
}

.phone-link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--primary);
}

.phone-link i {
  color: var(--accent-gold-dark);
}

/* ----------------------------------------------------
   SERVICES SECTION
---------------------------------------------------- */
.services-section {
  padding: 100px 0;
  background-color: var(--neutral-light);
  border-top: 1px solid var(--neutral-border);
  border-bottom: 1px solid var(--neutral-border);
}

.section-description {
  max-width: 600px;
  margin: 0 auto 50px auto;
  font-size: 16px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.service-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--neutral-border);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 107, 84, 0.2);
}

.service-card-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.service-price {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: var(--neutral-dark);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
}

.service-card-body {
  padding: 30px 24px 24px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-icon-wrapper {
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  position: absolute;
  top: -25px;
  left: 24px;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-sm);
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  margin-top: 6px;
}

.service-card p {
  font-size: 14px;
  color: var(--text-main);
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-features {
  border-top: 1px solid var(--neutral-border);
  padding: 16px 0;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-features li {
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-features i {
  color: var(--primary-light);
}

.btn-card-booking {
  border: 1px solid var(--neutral-border);
  color: var(--neutral-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  padding: 12px;
  text-align: center;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition-fast);
}

.btn-card-booking:hover {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.specialized-services {
  margin-top: 50px;
}

.specialized-card {
  background-color: var(--white);
  border-left: 4px solid var(--accent-gold);
  padding: 24px 30px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--neutral-border);
  border-left: none;
}

.specialized-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.specialized-header i {
  font-size: 20px;
}

.specialized-header h4 {
  font-size: 18px;
}

.specialized-card p {
  font-size: 14.5px;
  line-height: 1.5;
}

/* ----------------------------------------------------
   SERVICE PROCESS TIMELINE
---------------------------------------------------- */
.process-section {
  padding: 100px 0;
  background-color: var(--white);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 50px;
  position: relative;
}

/* Line connecting steps in desktop */
.process-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background-color: var(--neutral-border);
  z-index: 1;
}

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

.step-number {
  width: 80px;
  height: 80px;
  background-color: var(--white);
  border: 3px solid var(--primary);
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.timeline-step:hover .step-number {
  background-color: var(--primary);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 107, 84, 0.15);
}

.step-content h4 {
  font-size: 16px;
  margin-bottom: 10px;
}

.step-content p {
  font-size: 13px;
  color: var(--text-main);
  line-height: 1.5;
}

/* ----------------------------------------------------
   PHOTO GALLERY SECTION
---------------------------------------------------- */
.gallery-section {
  padding: 100px 0;
  background-color: var(--neutral-light);
  border-top: 1px solid var(--neutral-border);
  border-bottom: 1px solid var(--neutral-border);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.filter-btn {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  background-color: var(--white);
  border: 1px solid var(--neutral-border);
  color: var(--text-main);
  cursor: pointer;
  transition: var(--transition-fast);
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-item {
  background-color: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--neutral-border);
  aspect-ratio: 4 / 3;
  cursor: pointer;
  transition: var(--transition);
}

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

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to top, rgba(0, 107, 84, 0.9), rgba(0, 107, 84, 0.4));
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--white);
  z-index: 5;
  transition: var(--transition);
  padding: 20px;
  text-align: center;
}

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

.gallery-overlay i {
  font-size: 28px;
  color: var(--accent-gold);
}

.gallery-overlay span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
}

/* ----------------------------------------------------
   TRADE LICENSE & COMPLIANCE
---------------------------------------------------- */
.license-section {
  padding: 100px 0;
  background-color: var(--white);
}

.license-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.license-quick-facts {
  background-color: var(--neutral-light);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--neutral-border);
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fact-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  padding-bottom: 10px;
}

.fact-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.fact-label {
  font-weight: 700;
  color: var(--neutral-dark);
  font-size: 14px;
}

.fact-val {
  text-align: right;
  font-size: 14px;
  font-weight: 500;
}

.fact-val.text-teal-bright i {
  margin-bottom: 4px;
}

.warning-alert-box {
  display: flex;
  gap: 16px;
  background-color: #fffbeb;
  border-left: 4px solid var(--accent-gold);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
}

.warning-alert-box i {
  font-size: 20px;
  color: var(--accent-gold-dark);
  margin-top: 2px;
}

.warning-alert-box span {
  font-size: 13.5px;
  color: #78350f;
  line-height: 1.5;
}

.license-image-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
  outline: 1px solid var(--neutral-border);
  cursor: pointer;
}

.license-doc-img {
  width: 100%;
  transition: var(--transition);
}

.license-image-card:hover .license-doc-img {
  transform: scale(1.03);
}

.license-zoom-indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(15, 23, 42, 0.85);
  color: var(--white);
  text-align: center;
  padding: 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ----------------------------------------------------
   TESTIMONIALS SECTION
---------------------------------------------------- */
.testimonials-section {
  padding: 100px 0;
  background-color: var(--neutral-light);
  border-top: 1px solid var(--neutral-border);
  border-bottom: 1px solid var(--neutral-border);
}

.testimonials-wrapper {
  max-width: 800px;
  margin: 40px auto 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonials-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-card {
  min-width: 100%;
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 48px;
  border: 1px solid var(--neutral-border);
  box-shadow: var(--shadow-sm);
  text-align: center;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  display: none;
}

.testimonial-card.active {
  display: block;
  opacity: 1;
}

.stars {
  color: var(--accent-gold);
  font-size: 18px;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 17px;
  font-style: italic;
  line-height: 1.6;
  color: var(--neutral-dark);
  margin-bottom: 28px;
}

.client-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.client-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(0, 107, 84, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.client-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  color: var(--neutral-dark);
}

.client-location {
  font-size: 12px;
  color: var(--text-light);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.t-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(15, 23, 42, 0.15);
  cursor: pointer;
  transition: var(--transition-fast);
}

.t-dot.active {
  background-color: var(--primary);
  transform: scale(1.2);
}

/* ----------------------------------------------------
   CONTACT & BOOKING SECTION
---------------------------------------------------- */
.contact-section {
  padding: 100px 0;
  background-color: var(--primary);
  background-image: linear-gradient(135deg, var(--primary) 0%, #004b3a 100%);
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
}

.contact-lead-text {
  font-size: 16px;
  margin-bottom: 40px;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 40px;
}

.contact-detail-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.icon-circle {
  width: 48px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--accent-gold);
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-detail-item span {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2px;
}

.contact-detail-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 18px;
}

.contact-detail-item strong a {
  display: inline-block;
  margin-right: 12px;
}

.contact-detail-item strong a:hover {
  text-decoration: underline;
  color: var(--accent-gold);
}

.mini-faqs {
  background-color: rgba(15, 23, 42, 0.2);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mini-faqs h4 {
  margin-bottom: 16px;
  font-size: 16px;
}

.mini-faqs .faq-item {
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 14px;
}

.mini-faqs .faq-item:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.faq-q {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--accent-gold);
  margin-bottom: 4px;
}

.faq-a {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}

.booking-form-card {
  background-color: var(--white);
  color: var(--text-main);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.booking-form-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.booking-form-card p {
  font-size: 14px;
  color: var(--text-main);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.booking-form-card label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--neutral-dark);
}

.booking-form-card input, 
.booking-form-card select, 
.booking-form-card textarea {
  font-family: var(--font-body);
  font-size: 14px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--neutral-border);
  background-color: var(--neutral-light);
  color: var(--neutral-dark);
  transition: var(--transition-fast);
  width: 100%;
}

.booking-form-card input:focus, 
.booking-form-card select:focus, 
.booking-form-card textarea:focus {
  outline: none;
  border-color: var(--primary);
  background-color: var(--white);
  box-shadow: 0 0 0 4px rgba(0, 107, 84, 0.15);
}

.estimated-price-box {
  background-color: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  animation: slideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.estimated-price-box i {
  font-size: 24px;
  color: var(--primary-light);
}

.estimated-price-box span {
  display: block;
  font-size: 12px;
  color: var(--text-main);
  text-transform: uppercase;
  font-weight: 600;
}

.estimated-price-box strong {
  font-size: 22px;
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 800;
}

.estimated-price-box small {
  font-size: 11px;
  color: var(--text-light);
  display: block;
}

/* Form success message box style */
.booking-success-message {
  display: none;
  text-align: center;
  padding: 20px 0;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.success-icon {
  width: 72px;
  height: 72px;
  background-color: #f0fdf4;
  color: #22c55e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 24px auto;
}

.booking-success-message h3 {
  font-size: 24px;
  color: var(--neutral-dark);
  margin-bottom: 12px;
}

.booking-success-message p {
  font-size: 14.5px;
  line-height: 1.5;
  margin-bottom: 24px;
}

.success-summary {
  background-color: var(--neutral-light);
  border-radius: var(--radius-sm);
  padding: 16px;
  border: 1px solid var(--neutral-border);
  text-align: left;
  max-width: 320px;
  margin: 0 auto 24px auto;
}

.success-summary p {
  margin-bottom: 8px;
  font-size: 13.5px;
}
.success-summary p:last-child {
  margin-bottom: 0;
}

/* ----------------------------------------------------
   MAPS SECTION
---------------------------------------------------- */
.maps-section {
  padding: 80px 0 0 0;
  background-color: var(--neutral-light);
}

.map-container {
  height: 400px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--neutral-border);
}

.map-overlay-info {
  position: absolute;
  top: 40px;
  left: 40px;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  max-width: 360px;
  z-index: 10;
  border: 1px solid var(--neutral-border);
}

.map-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: rgba(220, 38, 38, 0.1);
  color: #dc2626;
  font-weight: 700;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.map-overlay-info h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.map-overlay-info p {
  font-size: 13px;
  margin-bottom: 8px;
}

.map-overlay-info p i {
  color: var(--primary);
  margin-right: 6px;
}

.map-overlay-info .btn {
  margin-top: 12px;
}

.mock-map {
  width: 100%;
  height: 100%;
  position: relative;
  background-color: #f1f5f9;
}

.mock-map iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* ----------------------------------------------------
   FOOTER SECTION
---------------------------------------------------- */
.main-footer {
  background-color: #0b1329;
  color: #94a3b8;
  padding: 80px 0 0 0;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.footer-logo .brand-title {
  font-size: 24px;
}

.footer-about-text {
  line-height: 1.5;
  margin-bottom: 24px;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-icons a:hover {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-3px);
}

.footer-grid h4 {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 8px;
}

.footer-grid h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--primary-light);
}

.footer-grid ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-grid ul a {
  color: #94a3b8;
}

.footer-grid ul a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-col-contact p {
  margin-bottom: 12px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.footer-col-contact p i {
  margin-top: 4px;
}

.footer-col-contact p strong a {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px 0;
  font-size: 12px;
  color: #64748b;
}

.footer-bottom a {
  color: var(--accent-gold);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ----------------------------------------------------
   LIGHTBOX MODAL
---------------------------------------------------- */
.lightbox {
  display: none;
  position: fixed;
  z-index: 200;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
}

.lightbox-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  border: 4px solid var(--white);
  box-shadow: var(--shadow-lg);
  animation: zoom 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes zoom {
  from {transform: scale(0.9); opacity: 0;}
  to {transform: scale(1); opacity: 1;}
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 36px;
  color: #f1f5f9;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  color: var(--accent-gold);
}

.lightbox-caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #cbd5e1;
  padding: 16px 0;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
}

/* ----------------------------------------------------
   FLOATING INTERACTION ACTIONS
---------------------------------------------------- */
.floating-ctas {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 90;
}

.float-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  position: relative;
  transition: var(--transition);
}

.float-call {
  background-color: var(--accent-blue);
  background-image: linear-gradient(135deg, var(--accent-blue) 0%, #0369a1 100%);
}

.float-wa {
  background-color: #25d366;
  background-image: linear-gradient(135deg, #25d366 0%, #15803d 100%);
}

.float-top {
  background-color: var(--neutral-dark);
  border: none;
  font-size: 18px;
  display: none; /* Controlled by scroll JS */
}

.float-btn:hover {
  transform: scale(1.1) translateY(-3px);
}

.float-btn span {
  position: absolute;
  right: 70px;
  background-color: var(--neutral-dark);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 50px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.float-btn:hover span {
  opacity: 1;
  transform: translateX(-5px);
}

/* Animation Micro-effects */
.animate-bounce {
  animation: microBounce 2s infinite;
}

@keyframes microBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* ----------------------------------------------------
   RESPONSIVE MEDIA QUERIES
---------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-section {
    height: auto;
    padding: 80px 0 100px 0;
  }
  
  .hero-section h1 {
    font-size: 38px;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-image-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .license-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .license-image-card {
    max-width: 480px;
    margin: 0 auto;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-timeline {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .process-timeline::before {
    display: none; /* Hide horizontal line */
  }
  
  .timeline-step {
    display: flex;
    text-align: left;
    align-items: flex-start;
    gap: 20px;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .step-number {
    margin: 0;
    flex-shrink: 0;
  }
}

@media (max-width: 768px) {
  .top-bar-content {
    justify-content: center;
  }
  
  .desktop-only {
    display: none;
  }
  
  .nav-menu, .btn-phone-header {
    display: none;
  }
  
  .mobile-nav-toggle {
    display: flex;
  }
  
  .hero-section h1 {
    font-size: 32px;
  }
  
  .hero-desc {
    font-size: 15px;
  }
  
  .trust-grid {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .booking-form-card {
    padding: 24px;
  }
  
  .map-overlay-info {
    position: static;
    max-width: 100%;
    border-radius: 0;
    box-shadow: none;
    border: none;
    border-bottom: 1px solid var(--neutral-border);
  }
  
  .map-container {
    height: auto;
    display: flex;
    flex-direction: column;
  }
  
  .mock-map {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .about-badge-floating {
    position: static;
    margin: 20px auto 0 auto;
    max-width: 100%;
  }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .hero-actions .btn {
    width: 100%;
  }
  
  .testimonial-card {
    padding: 24px;
  }
  
  .t-dot {
    width: 8px;
    height: 8px;
  }
}

@media (max-width: 768px) {
  .booking-cta-card {
    padding: 24px;
  }
  .modal-overlay {
    padding: 12px;
  }
  .modal-container {
    max-width: 100%;
  }
}

/* ====================================================
   QUOTE FORM MODAL POPUP & NEW STYLING
==================================================== */
.modal-overlay {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background-color: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeInOverlay 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-container {
  position: relative;
  width: 100%;
  max-width: 650px;
  margin: auto;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
  animation: modalSlideIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: visible;
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 28px;
  font-weight: 700;
  color: var(--neutral-dark);
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--neutral-light);
  border: 1px solid var(--neutral-border);
  transition: all 0.2s ease;
  z-index: 10;
}

.modal-close-btn:hover {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: rotate(90deg);
}

@keyframes fadeInOverlay {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

/* ====================================================
   BOOKING CTA CARD (CONTACT SECTION)
==================================================== */
.booking-cta-card {
  background: linear-gradient(135deg, var(--white), #f8fafc);
  color: var(--text-main);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(226, 232, 240, 0.8);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.booking-cta-card h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--neutral-dark);
}

.booking-cta-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 24px;
}

.cta-header-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(0, 107, 84, 0.08);
  color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 24px;
  border: 1px solid rgba(0, 107, 84, 0.15);
}

.cta-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--neutral-dark);
}

.cta-features-list li i {
  font-size: 16px;
}

/* ====================================================
   WHATSAPP MESSAGE PREVIEW
==================================================== */
.wa-message-preview {
  background-color: #efeae2;
  border-radius: var(--radius-sm);
  padding: 16px;
  border-left: 4px solid #075e54;
  font-family: monospace, Courier, monospace;
  font-size: 13px;
  white-space: pre-wrap;
  word-break: break-word;
  color: #303030;
  max-height: 200px;
  overflow-y: auto;
  line-height: 1.5;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}

