/* 
   Top Class Cleaning
   Modern Premium Stylesheet 
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@500;600;700;800&display=swap');

:root {
  /* Color Palette - HSL Tailored */
  --primary-hue: 215;
  --primary: hsl(var(--primary-hue), 85%, 22%);       /* Deep Navy #0B2545 */
  --primary-light: hsl(var(--primary-hue), 70%, 35%);
  --accent-hue: 195;
  --accent: hsl(var(--accent-hue), 100%, 42%);       /* Bright Cyan #00A8E8 */
  --accent-hover: hsl(var(--accent-hue), 100%, 35%);
  --mint-hue: 155;
  --mint: hsl(var(--mint-hue), 70%, 45%);             /* Fresh Mint Eco #10B981 */
  --mint-light: hsl(var(--mint-hue), 80%, 96%);

  --dark: #0f172a;
  --dark-surface: #1e293b;
  --light-bg: #f8fafc;
  --surface: #ffffff;
  --text-main: #334155;
  --text-muted: #64748b;
  --text-dark: #0f172a;

  --border-color: #e2e8f0;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 4px 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.04);
  --shadow-lg: 0 20px 35px -10px rgba(15, 23, 42, 0.12), 0 10px 15px -5px rgba(15, 23, 42, 0.08);

  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  background-color: var(--light-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--text-dark);
  line-height: 1.2;
}

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

ul {
  list-style: none;
}

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

/* Utility Containers */
.container {
  width: 90%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Top Bar Announcement Header */
.top-bar {
  background-color: var(--primary);
  color: #ffffff;
  font-size: 0.875rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.top-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-info-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 500;
}

.top-info-item svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
}

.top-phones {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.12);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.85rem;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition-fast);
}

.phone-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-1px);
}

/* Navigation */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.logo-badge {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 168, 232, 0.3);
}

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

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-weight: 600;
  color: var(--text-main);
  font-size: 0.95rem;
  position: relative;
  padding: 0.5rem 0;
}

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

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

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #0077b6 100%);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(0, 168, 232, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 168, 232, 0.45);
}

.btn-navy {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(11, 37, 69, 0.25);
}

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

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #ffffff;
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-toggle svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(11, 37, 69, 0.88) 0%, rgba(15, 23, 42, 0.85) 100%), url('../images/hero_bg.jpg') center/cover no-repeat;
  color: #ffffff;
  padding: 5rem 0;
  overflow: hidden;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 168, 232, 0.2);
  border: 1px solid rgba(0, 168, 232, 0.5);
  backdrop-filter: blur(10px);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: #38bdf8;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 1.25rem;
  letter-spacing: -1px;
}

.hero-title span {
  background: linear-gradient(135deg, #38bdf8 0%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.15rem;
  color: #cbd5e1;
  margin-bottom: 2rem;
  max-width: 650px;
}

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

.hero-trust-pills {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  flex-wrap: wrap;
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #e2e8f0;
}

.trust-pill svg {
  width: 20px;
  height: 20px;
  color: #34d399;
}

/* Section Header styling */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem auto;
}

.section-subtitle {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Section Padding */
.section-padding {
  padding: 5rem 0;
}

/* Quote Calculator Section */
.calculator-section {
  background-color: #ffffff;
  position: relative;
}

.calc-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
}

@media (max-width: 992px) {
  .calc-card {
    grid-template-columns: 1fr;
  }
}

.calc-form-group {
  margin-bottom: 1.75rem;
}

.calc-label {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.service-type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 0.75rem;
}

.service-type-btn {
  background: var(--light-bg);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1rem 0.5rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.service-type-btn.active {
  background: rgba(0, 168, 232, 0.08);
  border-color: var(--accent);
  color: var(--accent);
}

.service-type-btn svg {
  width: 28px;
  height: 28px;
  margin: 0 auto 0.4rem auto;
  color: var(--text-muted);
}

.service-type-btn.active svg {
  color: var(--accent);
}

.service-type-btn span {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
}

.slider-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.range-slider {
  flex: 1;
  accent-color: var(--accent);
  height: 8px;
}

.slider-val-badge {
  background: var(--primary);
  color: #fff;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  min-width: 80px;
  text-align: center;
}

/* Calculator Result Panel */
.calc-result-panel {
  background: linear-gradient(135deg, var(--primary) 0%, #0d1b2a 100%);
  border-radius: var(--radius-md);
  padding: 2rem;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-md);
}

.result-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.result-header h4 {
  color: #ffffff;
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.price-display {
  margin: 1.5rem 0;
}

.price-label {
  font-size: 0.85rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price-value {
  font-family: 'Outfit', sans-serif;
  font-size: 2.75rem;
  font-weight: 800;
  color: #38bdf8;
  line-height: 1;
  margin: 0.4rem 0;
}

.price-note {
  font-size: 0.8rem;
  color: #cbd5e1;
}

.summary-list {
  margin: 1.5rem 0;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  padding: 0.4rem 0;
  border-bottom: 1px stroke rgba(255, 255, 255, 0.08);
  color: #cbd5e1;
}

.summary-item strong {
  color: #fff;
}

/* Services Grid - Strict 2 Per Row Layout */
.services-section {
  background: var(--light-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

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

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

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

.service-img-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.service-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
}

.service-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.service-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  flex: 1;
}

.service-features {
  margin-bottom: 1.5rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-main);
  margin-bottom: 0.45rem;
}

.service-features svg {
  width: 16px;
  height: 16px;
  color: var(--mint);
  flex-shrink: 0;
}

/* Before / After Slider Showcase */
.showcase-section {
  background-color: #ffffff;
}

.ba-container {
  max-width: 850px;
  margin: 0 auto;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16/9;
  user-select: none;
}

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

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

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

.ba-after {
  z-index: 3;
  width: 50%;
  overflow: hidden;
  border-right: 3px solid var(--accent);
}

.ba-after .ba-image {
  height: 100%;
  object-fit: cover;
  max-width: none;
}

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

.ba-handle-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* SOLID SHARP OVERLAY BADGE LABELS */
.ba-label {
  position: absolute;
  top: 1rem;
  padding: 0.35rem 0.75rem;
  background: rgba(15, 23, 42, 0.88);
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  border-radius: 6px;
  z-index: 5;
  white-space: nowrap !important;
  width: max-content !important;
  max-width: none !important;
  pointer-events: none;
  opacity: 1 !important;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.ba-label-before {
  right: 1rem;
}

/* Why Choose Us Pillars */
.pillars-section {
  background: var(--light-bg);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.pillar-card {
  background: var(--surface);
  padding: 2.25rem 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  text-align: center;
}

.pillar-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.pillar-icon {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, rgba(0, 168, 232, 0.12) 0%, rgba(16, 185, 129, 0.15) 100%);
  color: var(--accent);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem auto;
  box-shadow: 0 4px 12px rgba(0, 168, 232, 0.15);
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.pillar-card:hover .pillar-icon {
  transform: scale(1.1) rotate(3deg);
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 168, 232, 0.35);
}

.pillar-icon svg {
  width: 32px;
  height: 32px;
}

.pillar-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.pillar-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Contact & Inquiry Section */
.contact-section {
  background: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-info-card {
  background: linear-gradient(135deg, var(--primary) 0%, #0f172a 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  box-sizing: border-box;
  overflow: hidden;
  max-width: 100%;
}

.contact-info-card h3 {
  color: #ffffff;
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  text-align: center;
}

.contact-info-card p {
  color: #cbd5e1;
  margin-bottom: 2rem;
  text-align: left;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: rgba(0, 168, 232, 0.2);
  color: #38bdf8;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 20px;
  height: 20px;
}

.contact-detail-text h5 {
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.contact-detail-text a, .contact-detail-text p {
  color: #cbd5e1;
  font-size: 0.9rem;
  margin-bottom: 0;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.contact-detail-text a:hover {
  color: var(--accent);
}

.contact-form {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  box-sizing: border-box;
  overflow: hidden;
  max-width: 100%;
}

.contact-form h3 {
  text-align: center;
}

.contact-form p {
  text-align: left;
}

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

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--text-dark);
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  font-size: 0.95rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  background: var(--light-bg);
  transition: var(--transition-fast);
  font-family: inherit;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(0, 168, 232, 0.15);
}

/* Red Field Error Text Messages */
.field-error-msg {
  color: #dc2626;
  background-color: #fef2f2;
  border: 1px solid #fca5a5;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 0.4rem;
  display: none;
  animation: fadeIn 0.2s ease-in;
}

.field-error-msg.visible {
  display: block;
}

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

/* Footer */
.footer {
  background: var(--dark-surface);
  color: #94a3b8;
  padding: 4rem 0 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand .brand-logo {
  color: #ffffff;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  white-space: nowrap;
}

.footer-brand .brand-logo .logo-text {
  white-space: nowrap;
}

.footer-about {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-title {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.footer-links li {
  margin-bottom: 0.65rem;
  display: flex;
  align-items: center;
}

.footer-links a {
  font-size: 0.88rem;
  color: #94a3b8;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
}

/* Floating Mobile Quick Call Button */
.floating-call-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--mint);
  color: #ffffff;
  padding: 0.9rem 1.4rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
  transition: var(--transition-fast);
  text-decoration: none;
}

.floating-call-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.5);
}

.floating-call-btn svg {
  width: 22px;
  height: 22px;
}

/* Comprehensive Mobile & Tablet Responsiveness Overhaul */
@media (max-width: 992px) {
  .nav-menu {
    position: fixed;
    top: 64px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 64px);
    background: #ffffff;
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-lg);
    z-index: 1001;
  }

  .nav-menu.active {
    left: 0;
  }

  .mobile-toggle {
    display: block;
  }

  .calc-card {
    grid-template-columns: 1fr;
    padding: 1.75rem;
    gap: 1.75rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 3rem 0;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .top-bar {
    padding: 0.35rem 0;
    font-size: 0.78rem;
  }

  .top-bar .container {
    justify-content: center;
    text-align: center;
    gap: 0.3rem;
  }

  .top-info {
    display: none; /* Hide secondary text on mobile to keep top bar non-overlapping */
  }

  .top-phones {
    width: 100%;
    justify-content: center;
    gap: 0.4rem;
  }

  .phone-link {
    font-size: 0.75rem;
    padding: 0.2rem 0.55rem;
  }

  .navbar .container {
    height: 64px;
    padding: 0 0.75rem;
  }

  .brand-logo {
    font-size: 1rem;
    gap: 0.35rem;
    white-space: nowrap;
  }

  .logo-badge {
    width: 32px;
    height: 32px;
    border-radius: 8px;
  }

  .logo-badge svg {
    width: 16px;
    height: 16px;
  }

  /* Hide header quote button on mobile so logo and hamburger menu fit perfectly without overlapping */
  .nav-actions .btn-primary {
    display: none;
  }

  .hero-section {
    padding: 3rem 0;
    min-height: auto;
  }

  .hero-badge {
    font-size: 0.78rem;
    padding: 0.35rem 0.75rem;
    white-space: normal;
    text-align: center;
    margin-bottom: 1rem;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .hero-description {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-trust-pills {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
    margin-top: 1.75rem;
    padding-top: 1.25rem;
  }

  /* Calculator Mobile Adjustments */
  .calc-card {
    padding: 1.25rem 1rem;
    border-radius: var(--radius-md);
  }

  .service-type-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.5rem !important;
  }

  .service-type-btn {
    padding: 0.75rem 0.3rem;
  }

  .service-type-btn span {
    font-size: 0.75rem;
  }

  .calc-result-panel {
    padding: 1.25rem 1rem;
    border-radius: var(--radius-md);
  }

  .price-value {
    font-size: 2.1rem;
  }

  /* Services Grid Mobile */
  .services-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .service-card {
    border-radius: var(--radius-md);
  }

  .service-img-wrapper {
    height: 190px;
  }

  .service-content {
    padding: 1.25rem 1rem;
  }

  .service-title {
    font-size: 1.25rem;
  }

  /* Before & After Showcase Mobile */
  .ba-container {
    aspect-ratio: 16/9;
    border-radius: var(--radius-md);
  }

  .ba-label {
    font-size: 0.58rem;
    padding: 0.18rem 0.45rem;
    top: 0.45rem;
    border-radius: 4px;
  }

  .ba-label-before {
    right: 0.45rem;
  }

  .ba-handle-circle {
    width: 36px;
    height: 36px;
  }

  /* Pillars Grid Mobile */
  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .pillar-card {
    padding: 1.5rem 1rem;
    border-radius: var(--radius-md);
  }

  /* Contact & Inquiry Section Mobile */
  .contact-info-card, .contact-form {
    padding: 1.5rem 1.25rem;
    border-radius: var(--radius-md);
  }

  .contact-info-card h3, .contact-form h3 {
    font-size: 1.4rem;
  }

  /* Footer Mobile */
  .footer {
    padding: 3rem 0 1.5rem 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    margin-bottom: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

.mobile-br {
  display: none;
}

@media (max-width: 768px) {
  .mobile-br {
    display: block;
  }

  .top-phones-label {
    display: none !important;
  }

  .top-phones {
    width: 100%;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: nowrap;
  }

  .phone-link {
    font-size: 0.78rem;
    padding: 0.25rem 0.65rem;
  }

  .contact-info-card h3 {
    font-size: 1.45rem;
    line-height: 1.25;
    margin-bottom: 0.6rem;
  }

  .contact-email-link {
    font-size: 0.8rem;
    word-break: break-all;
  }
}
