/* ==========================================================================
   One Clean Solution - Premium Property Maintenance CSS stylesheet
   ========================================================================== */

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

/* --- Custom Variables & Tokens --- */
:root {
  --primary-color: #0F172A;       /* Deep Navy Blue */
  --secondary-color: #1E293B;     /* Slate Navy */
  --accent-blue: #2563EB;         /* Vibrant Accent Blue */
  --accent-teal: #0D8B7D;         /* Corporate Teal (matching logo) */
  --accent-green: #16A34A;        /* Trust Green (matching logo) */
  --text-dark: #0F172A;
  --text-body: #334155;
  --text-muted: #64748B;
  --bg-primary: #FFFFFF;
  --bg-secondary: #F8FAFC;        /* Off-White Section BG */
  --bg-dark: #090D16;             /* Footer BG */
  --white: #FFFFFF;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --border-radius: 12px;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* Offset for sticky nav */
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-body);
  background-color: var(--bg-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

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

ul {
  list-style: none;
}

button, input, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* --- Common UI Components --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-bg {
  background-color: var(--bg-secondary);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.section-tag {
  display: inline-block;
  color: var(--accent-blue);
  background-color: #EFF6FF;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
}

.section-description {
  color: var(--text-muted);
  font-size: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition-normal);
  border: none;
  font-size: 16px;
}

.btn-primary {
  background-color: var(--accent-blue);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
  background-color: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

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

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

.btn-accent {
  background-color: var(--accent-teal);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(13, 139, 125, 0.3);
}

.btn-accent:hover {
  background-color: #0b7367;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 139, 125, 0.4);
}

.btn-call {
  background-color: var(--accent-green);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.3);
}

.btn-call:hover {
  background-color: #15803d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(22, 163, 74, 0.4);
}

.badge-247 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #FEF2F2;
  color: #DC2626;
  border: 1px solid #FEE2E2;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 14px;
  text-transform: uppercase;
}

.badge-247 .dot {
  width: 8px;
  height: 8px;
  background-color: #DC2626;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.4; }
  100% { transform: scale(0.9); opacity: 1; }
}

/* --- Header / Navigation --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: var(--transition-normal);
  backdrop-filter: blur(8px);
}

header.scrolled {
  padding: 10px 0;
  box-shadow: var(--shadow-md);
}

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

header.scrolled .nav-wrapper {
  height: 70px;
}

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

.logo img {
  height: 52px;
  width: auto;
  transition: var(--transition-normal);
}

header.scrolled .logo img {
  height: 44px;
}

nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

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

.nav-links a {
  font-weight: 500;
  font-size: 15px;
  color: var(--secondary-color);
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-blue);
  transition: var(--transition-fast);
}

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

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

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

.phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--primary-color);
  font-size: 16px;
  transition: var(--transition-fast);
}

.phone-link svg {
  stroke: var(--accent-teal);
}

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

/* Mobile Menu Button */
.menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  width: 30px;
  height: 24px;
  z-index: 1001;
}

.menu-btn span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 3px;
  position: absolute;
  transition: all 0.3s ease-in-out;
}

.menu-btn span:nth-child(1) { top: 0; }
.menu-btn span:nth-child(2) { top: 10px; }
.menu-btn span:nth-child(3) { top: 20px; }

.menu-btn.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 10px;
}

.menu-btn.open span:nth-child(2) {
  opacity: 0;
}

.menu-btn.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 10px;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  background: radial-gradient(circle at 100% 0%, rgba(37, 99, 235, 0.05) 0%, rgba(255, 255, 255, 0) 60%),
              radial-gradient(circle at 0% 100%, rgba(13, 139, 125, 0.05) 0%, rgba(255, 255, 255, 0) 60%);
  padding: 180px 0 100px 0;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

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

.hero-badge-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-title span {
  color: var(--accent-blue);
  position: relative;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--text-muted);
  margin-bottom: 40px;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  border-top: 1px solid #E2E8F0;
  padding-top: 32px;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--secondary-color);
  font-size: 15px;
}

.hero-feature svg {
  color: var(--accent-green);
}

.hero-graphic {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-logo-box {
  background-color: var(--white);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-xl);
  border: 1px solid #F1F5F9;
  position: relative;
  z-index: 2;
  transition: var(--transition-normal);
  animation: float 6s ease-in-out infinite;
}

.hero-logo-box:hover {
  transform: translateY(-8px);
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

.hero-logo-box img {
  max-width: 320px;
  width: 100%;
  height: auto;
}

.hero-logo-box::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 10%;
  width: 80%;
  height: 20px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
  z-index: 1;
  pointer-events: none;
}

/* --- Trust Stats Bar --- */
.stats-bar {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 40px 0;
  border-bottom: 4px solid var(--accent-teal);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item {
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 15%;
  right: 0;
  height: 70%;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.15);
}

.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: #94A3B8;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --- Services Grid --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background-color: var(--white);
  border: 1px solid #E2E8F0;
  border-radius: var(--border-radius);
  padding: 32px 24px;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: #DBEAFE;
}

.service-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  background-color: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition-fast);
}

.service-card:hover .service-icon-box {
  background-color: var(--accent-light);
}

.service-icon-box svg {
  width: 32px;
  height: 32px;
  stroke: var(--accent-teal);
  stroke-width: 2;
  fill: none;
  transition: var(--transition-fast);
}

.service-card:hover .service-icon-box svg {
  stroke: var(--accent-blue);
  transform: scale(1.1);
}

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

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

.service-bullets {
  margin-bottom: 24px;
}

.service-bullets li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-body);
  margin-bottom: 8px;
  font-weight: 500;
}

.service-bullets li svg {
  color: var(--accent-green);
  flex-shrink: 0;
}

.service-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}

.service-link svg {
  transition: var(--transition-fast);
}

.service-card:hover .service-link svg {
  transform: translateX(4px);
}

/* --- Why Choose Us --- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-left h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 24px;
}

.why-left p {
  color: var(--text-muted);
  font-size: 18px;
  margin-bottom: 32px;
}

.why-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.why-point-card {
  background-color: var(--white);
  border: 1px solid #E2E8F0;
  border-radius: var(--border-radius);
  padding: 24px;
  transition: var(--transition-normal);
}

.why-point-card:hover {
  border-color: #E2E8F0;
  box-shadow: var(--shadow-md);
}

.why-point-icon {
  width: 48px;
  height: 48px;
  background-color: var(--accent-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.why-point-icon svg {
  color: var(--accent-blue);
}

.why-point-card h4 {
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 700;
}

.why-point-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.5;
}

.why-right-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.why-stats-overlay {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 32px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-xl);
  border-bottom: 4px solid var(--accent-green);
  max-width: 420px;
  width: 100%;
}

.why-stats-overlay h3 {
  color: var(--white);
  font-size: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 16px;
}

.why-stat-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.why-stat-line:last-child {
  margin-bottom: 0;
}

.why-stat-line span:first-child {
  font-size: 15px;
  color: #94A3B8;
}

.why-stat-line span:last-child {
  font-weight: 700;
  color: var(--white);
  font-size: 16px;
}

/* --- Coverage Section --- */
.coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.coverage-left h2 {
  font-size: 38px;
  margin-bottom: 20px;
}

.coverage-left p {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 30px;
}

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

.coverage-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
}

.coverage-list-item svg {
  color: var(--accent-teal);
}

.coverage-map-box {
  background-color: var(--white);
  border: 1px solid #E2E8F0;
  border-radius: var(--border-radius);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.map-placeholder {
  width: 100%;
  height: 250px;
  background: radial-gradient(circle, #EFF6FF 0%, #E0F2FE 100%);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder svg {
  width: 80px;
  height: 80px;
  color: var(--accent-blue);
  opacity: 0.35;
  animation: mapPulse 3s infinite ease-in-out;
}

@keyframes mapPulse {
  0% { transform: scale(1); opacity: 0.35; }
  50% { transform: scale(1.1); opacity: 0.5; }
  100% { transform: scale(1); opacity: 0.35; }
}

.map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.map-pin svg {
  color: #EF4444;
  opacity: 1;
  animation: bounce 2s infinite;
}

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

.map-pulse-ring {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(239, 68, 68, 0.4);
  border-radius: 50%;
  position: absolute;
  top: -8px;
  animation: ripple 2s infinite ease-out;
}

@keyframes ripple {
  0% { transform: scale(0.5); opacity: 1; }
  100% { transform: scale(2.5); opacity: 0; }
}

.coverage-tag-large {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.coverage-sub {
  color: var(--text-muted);
  font-size: 14px;
}

/* --- Reviews Section --- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.review-card {
  background-color: var(--white);
  border: 1px solid #E2E8F0;
  border-radius: var(--border-radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition-normal);
}

.review-card:hover {
  box-shadow: var(--shadow-md);
  border-color: #DBEAFE;
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.stars svg {
  fill: #F59E0B;
  color: #F59E0B;
}

.review-content {
  font-size: 15px;
  color: var(--text-body);
  font-style: italic;
  margin-bottom: 24px;
  flex-grow: 1;
  line-height: 1.6;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #F1F5F9;
  padding-top: 16px;
}

.user-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary-color);
  font-size: 15px;
}

.user-info h4 {
  font-size: 15px;
  margin-bottom: 2px;
  font-weight: 700;
}

.user-info span {
  font-size: 12px;
  color: var(--text-muted);
}

/* --- Contact & Booking --- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
}

.contact-info-card {
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: var(--border-radius);
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-bottom: 4px solid var(--accent-teal);
}

.contact-info-top h2 {
  color: var(--white);
  font-size: 32px;
  margin-bottom: 16px;
}

.contact-info-top p {
  color: #94A3B8;
  font-size: 16px;
  margin-bottom: 40px;
}

.info-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.info-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon svg {
  color: var(--accent-teal);
}

.info-details h4 {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 4px;
}

.info-details p, .info-details a {
  color: #CBD5E1;
  font-size: 15px;
}

.info-details a:hover {
  color: var(--white);
}

.contact-form-box {
  background-color: var(--white);
  border: 1px solid #E2E8F0;
  border-radius: var(--border-radius);
  padding: 48px;
  box-shadow: var(--shadow-lg);
}

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

.form-group {
  margin-bottom: 24px;
  position: relative;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #CBD5E1;
  border-radius: 6px;
  outline: none;
  font-size: 15px;
  color: var(--text-dark);
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

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

.error-message {
  color: #DC2626;
  font-size: 12px;
  font-weight: 500;
  margin-top: 4px;
  display: none;
}

.form-control.invalid {
  border-color: #DC2626;
  background-color: #FFF5F5;
}

.form-control.invalid:focus {
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15);
}

.submit-btn-container {
  margin-top: 32px;
}

.submit-btn-container .btn {
  width: 100%;
}

/* --- Footer --- */
footer {
  background-color: var(--bg-dark);
  color: #94A3B8;
  padding: 80px 0 30px 0;
  border-top: 1px solid #1E293B;
}

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

.footer-col h3 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 24px;
  font-weight: 700;
  position: relative;
  padding-bottom: 8px;
}

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

.footer-logo img {
  height: 58px;
  margin-bottom: 20px;
}

.footer-about p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 14px;
  transition: var(--transition-fast);
}

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

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 14px;
}

.footer-contact li svg {
  color: var(--accent-teal);
  flex-shrink: 0;
}

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

.footer-bottom {
  border-top: 1px solid #1E293B;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

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

/* --- Modals / Popups --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(9, 13, 22, 0.8);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.success-modal {
  background-color: var(--white);
  border-radius: var(--border-radius);
  max-width: 450px;
  width: 100%;
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow-xl);
  transform: scale(0.9);
  transition: transform var(--transition-normal);
}

.modal-overlay.open .success-modal {
  transform: scale(1);
}

.success-icon-box {
  width: 72px;
  height: 72px;
  background-color: #ECFDF5;
  color: var(--accent-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px auto;
  border: 2px solid #D1FAE5;
}

.success-modal h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.success-modal p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 28px;
  line-height: 1.6;
}

.success-modal .btn {
  width: 100%;
}

/* --- Responsive Media Queries --- */

@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 991px) {
  .section {
    padding: 70px 0;
  }
  .hero {
    padding: 140px 0 70px 0;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-content {
    max-width: 100%;
    margin: 0 auto;
  }
  .hero-badge-container {
    justify-content: center;
  }
  .hero-title {
    font-size: 40px;
  }
  .hero-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
  }
  .hero-ctas {
    justify-content: center;
  }
  .hero-features {
    justify-content: center;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .stat-item:nth-child(2)::after {
    display: none;
  }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .why-right-visual {
    order: -1;
  }
  .why-stats-overlay {
    margin: 0 auto;
  }
  .coverage-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .coverage-map-box {
    max-width: 500px;
    margin: 0 auto;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  header {
    padding: 10px 0;
  }
  .menu-btn {
    display: block;
  }
  nav {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 40px 24px;
    gap: 24px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease-in-out;
    overflow-y: auto;
  }
  header.scrolled nav {
    top: 70px;
    height: calc(100vh - 70px);
  }
  nav.open {
    left: 0;
  }
  .nav-links {
    flex-direction: column;
    gap: 16px;
  }
  .nav-links a {
    font-size: 18px;
    display: block;
    border-bottom: 1px solid #E2E8F0;
    padding-bottom: 12px;
  }
  .nav-links a::after {
    display: none;
  }
  .header-cta {
    flex-direction: column;
    align-items: stretch;
    margin-top: 16px;
    gap: 16px;
  }
  .phone-link {
    justify-content: center;
    padding: 12px 0;
    border: 1px solid #E2E8F0;
    border-radius: 6px;
  }
  .hero-title {
    font-size: 34px;
  }
  .hero-ctas {
    flex-direction: column;
    gap: 12px;
  }
  .hero-ctas .btn {
    width: 100%;
  }
  .section-title {
    font-size: 28px;
  }
  .contact-form-box {
    padding: 30px 20px;
  }
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .stat-item::after {
    display: none;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .why-points {
    grid-template-columns: 1fr;
  }
  .coverage-list {
    grid-template-columns: 1fr;
  }
}

/* --- Rates / Pricing Section Styling --- */
.rates-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.rate-card {
  background-color: var(--white);
  border: 1px solid #E2E8F0;
  border-radius: var(--border-radius);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.rate-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: #DBEAFE;
}

.rate-card.featured {
  border: 2px solid var(--accent-blue);
  box-shadow: var(--shadow-md);
}

.rate-card.featured .badge-featured {
  position: absolute;
  top: 16px;
  right: -30px;
  background-color: var(--accent-blue);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 30px;
  transform: rotate(45deg);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.rate-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition-fast);
}

.rate-card:hover .rate-icon-box {
  background-color: var(--accent-light);
}

.rate-icon-box svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent-teal);
  stroke-width: 2;
  fill: none;
  transition: var(--transition-fast);
}

.rate-card:hover .rate-icon-box svg {
  stroke: var(--accent-blue);
}

.rate-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.price-box {
  margin-bottom: 16px;
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.price-amount {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.price-unit {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
  margin-left: 4px;
}

.rate-details {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.5;
  flex-grow: 1;
}

.rates-info-bar {
  background-color: var(--white);
  border: 1px solid #E2E8F0;
  border-radius: var(--border-radius);
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  box-shadow: var(--shadow-sm);
}

.rates-info-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.rates-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #FEF2F2;
  color: #DC2626;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rates-info-text h4 {
  font-size: 16px;
  margin-bottom: 4px;
  font-weight: 700;
}

.rates-info-text p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 0;
}

@media (max-width: 1100px) {
  .rates-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .rates-info-bar {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }
  .rates-info-left {
    flex-direction: column;
  }
}

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