/*
 * Qasim Plumber - Global Stylesheet
 * Palette: Hospital Blue & Green
 */

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

:root {
  /* Color Palette - Medical Blue & Green Premium Scheme */
  --primary: #0052cc;          /* Medical / Trust Blue */
  --primary-hover: #0043a4;
  --secondary: #00b374;        /* Clinical / Mint Green */
  --secondary-hover: #009661;
  --accent: #e0f2fe;           /* Soft Blue Tint */
  --accent-green: #d1fae5;     /* Soft Green Tint */
  
  --dark: #0f172a;             /* Slate 900 */
  --dark-light: #1e293b;       /* Slate 800 */
  --light: #f8fafc;            /* Slate 50 */
  --white: #ffffff;
  
  --text-main: #334155;        /* Slate 700 */
  --text-dark: #0f172a;        /* Slate 900 */
  --text-muted: #64748b;       /* Slate 500 */
  
  /* Font Stacks */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Layout */
  --max-width: 1280px;
  --header-height: 80px;
  --border-radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -2px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 10px 10px -5px rgba(15, 23, 42, 0.04);
}

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

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

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

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

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

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

ul {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

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

.section-title-wrapper {
  text-align: center;
  margin-bottom: 3.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  display: inline-block;
  padding: 0.35rem 1rem;
  background-color: var(--accent-green);
  color: var(--secondary-hover);
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2.25rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  position: relative;
}

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

/* Typography Extensions */
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.font-bold { font-weight: 700; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  font-weight: 600;
  border-radius: var(--border-radius);
  transition: var(--transition);
  cursor: pointer;
  gap: 0.5rem;
}

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

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 82, 204, 0.2);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--white);
}

.btn-secondary:hover {
  background-color: var(--secondary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 179, 116, 0.2);
}

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

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

/* Header & Navigation */
.header-top {
  background-color: var(--dark);
  color: var(--white);
  padding: 0.5rem 0;
  font-size: 0.85rem;
  font-weight: 500;
}

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

.header-top-info {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.header-top-info span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-top-info i {
  color: var(--secondary);
}

.header-top-socials {
  display: flex;
  gap: 1rem;
}

.header-top-socials a:hover {
  color: var(--secondary);
}

.main-header {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  height: var(--header-height);
  display: flex;
  align-items: center;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}

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

.logo-icon {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
  box-shadow: 0 4px 10px rgba(0, 82, 204, 0.15);
}

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

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

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

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

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

.nav-cta {
  display: flex;
  align-items: center;
}

.nav-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
}

/* Hero Section with Slider */
.hero {
  position: relative;
  height: calc(100vh - var(--header-height) - 40px);
  min-height: 600px;
  background-color: var(--dark);
  overflow: hidden;
}

.slider-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
}

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

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

.slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35); /* Darken image to make text readable */
}

.slide-content-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 3;
}

.slide-content {
  color: var(--white);
  max-width: 800px;
}

.slide-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(0, 179, 116, 0.2);
  border: 1px solid var(--secondary);
  color: var(--secondary);
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
  animation: fadeInUp 0.8s ease forwards;
}

.slide-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--white);
  animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.slide-desc {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.slide-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 1.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Slider Controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.slider-arrow:hover {
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: var(--white);
  transform: translateY(-50%) scale(1.1);
}

.slider-arrow-prev {
  left: 2rem;
}

.slider-arrow-next {
  right: 2rem;
}

.slider-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 10;
}

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

.slider-dot.active {
  background-color: var(--secondary);
  width: 32px;
  border-radius: 9999px;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Trust Badges / Stats */
.stats-bar {
  background-color: var(--white);
  padding: 2.5rem 0;
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 20;
  margin-top: -3rem;
  border-radius: 16px;
  max-width: calc(var(--max-width) - 3rem);
  margin-left: auto;
  margin-right: auto;
}

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

.stat-item {
  border-right: 1px solid #e2e8f0;
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.feature-card {
  background-color: var(--white);
  padding: 2.5rem 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--border-radius);
  background-color: var(--accent);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background-color: var(--primary);
  color: var(--white);
}

.feature-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

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

/* Services Grid (General/Home page) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid #f1f5f9;
  transition: var(--transition);
}

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

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

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

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

.service-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--secondary);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 700;
}

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

.service-card-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

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

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
}

.service-card-link:hover {
  color: var(--primary-hover);
}

/* About Intro Block */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.about-intro-content h3 {
  font-size: 1.75rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.about-intro-content p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.about-features {
  margin: 2rem 0;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.about-feature-icon {
  color: var(--secondary);
  font-size: 1.25rem;
  margin-top: 0.15rem;
}

.about-feature-text h5 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.about-feature-text p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

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

.about-intro-image img {
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.experience-tag {
  position: absolute;
  bottom: 2rem;
  left: -2rem;
  background-color: var(--secondary);
  color: var(--white);
  padding: 1.5rem 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.exp-num {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}

.exp-label {
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
}

/* Detailed Services page Layout */
.detailed-services {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.detailed-service-row {
  display: flex;
  align-items: center;
  gap: 5rem;
}

.detailed-service-row:nth-child(even) {
  flex-direction: row-reverse;
}

.detailed-service-img {
  flex: 1;
}

.detailed-service-img img {
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  width: 100%;
}

.detailed-service-text {
  flex: 1;
}

.detailed-service-title {
  font-size: 2.25rem;
  margin-bottom: 1.25rem;
  color: var(--text-dark);
}

.detailed-service-text p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.detailed-service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.detailed-service-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.detailed-service-item i {
  color: var(--secondary);
}

/* Service Locations Map & Coverage (Locations page) */
.locations-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.locations-list-wrapper h3 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

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

.location-item {
  background-color: var(--white);
  padding: 1.25rem;
  border-radius: var(--border-radius);
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: var(--transition);
}

.location-item:hover {
  border-color: var(--secondary);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.location-item i {
  color: var(--secondary);
  font-size: 1.25rem;
}

.location-item span {
  font-weight: 600;
  color: var(--text-dark);
}

/* Contact Info & Forms (Contact page) */
.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
}

.contact-info-card {
  background-color: var(--dark);
  color: var(--white);
  padding: 3rem 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info-header h3 {
  color: var(--white);
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.contact-info-header p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

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

.contact-info-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-info-details h5 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contact-info-details p,
.contact-info-details a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

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

.contact-info-socials {
  margin-top: 3rem;
}

.contact-info-socials h5 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.social-links-grid {
  display: flex;
  gap: 1rem;
}

.social-btn {
  width: 42px;
  height: 42px;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}

.social-btn:hover {
  background-color: var(--secondary);
  color: var(--white);
  transform: translateY(-3px);
}

/* Contact Form */
.contact-form-card {
  background-color: var(--white);
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  border: 1px solid #e2e8f0;
}

.contact-form-title {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.contact-form-subtitle {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group-full {
  grid-column: span 2;
}

.form-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.form-input, .form-select, .form-textarea {
  background-color: var(--light);
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: var(--text-dark);
  transition: var(--transition);
  width: 100%;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--primary);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(0, 82, 204, 0.15);
}

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

/* Maps Block */
.map-section {
  padding: 0;
  height: 450px;
  position: relative;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Testimonials / Reviews (Standard local business element) */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.review-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid #e2e8f0;
}

.review-rating {
  color: #fbbf24; /* Star gold */
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.review-text {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-main);
  margin-bottom: 1.5rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.review-author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--accent);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.review-author-details h5 {
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.review-author-details span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* FAQ Accordion */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: var(--white);
  border-radius: var(--border-radius);
  border: 1px solid #e2e8f0;
  overflow: hidden;
  transition: var(--transition);
}

.faq-header {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background-color: var(--white);
  user-select: none;
}

.faq-question {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.faq-icon {
  font-size: 1.25rem;
  color: var(--primary);
  transition: var(--transition);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  background-color: #fafbfc;
}

.faq-content {
  padding: 1.5rem;
  border-top: 1px solid #f1f5f9;
  font-size: 0.95rem;
  color: var(--text-main);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-item.active .faq-body {
  max-height: 1000px; /* Large enough to fit content */
  transition: max-height 0.5s ease-in;
}

/* Footer */
.footer {
  background-color: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 5rem 0 2rem;
  font-size: 0.95rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-logo {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.footer-logo span {
  color: var(--secondary);
}

.footer-about p {
  margin-bottom: 1.5rem;
}

.footer-title {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--secondary);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.footer-contact-item i {
  color: var(--secondary);
  margin-top: 0.25rem;
}

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

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

.footer-copy {
  font-size: 0.85rem;
}

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

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

/* Floating WhatsApp Button with Ripple */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: #25d366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
  color: var(--white);
}

.whatsapp-float-ripple {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #25d366;
  z-index: -1;
  animation: whatsappRipple 2s infinite;
  opacity: 0.4;
}

@keyframes whatsappRipple {
  0% {
    transform: scale(1);
    opacity: 0.4;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* Sticky CTA Bar for Mobile */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
  z-index: 998;
  grid-template-columns: 1fr 1fr;
}

.mobile-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 0;
  font-weight: 700;
  font-size: 0.95rem;
}

.mobile-cta-call {
  background-color: var(--primary);
  color: var(--white);
}

.mobile-cta-wa {
  background-color: #25d366;
  color: var(--white);
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .container {
    padding: 0 2rem;
  }
  .stats-bar {
    max-width: 100%;
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }
}

@media (max-width: 992px) {
  :root {
    --header-height: 70px;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  .slide-title {
    font-size: 2.75rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .stat-item {
    border-right: none;
  }
  
  .stat-item:nth-child(odd) {
    border-right: 1px solid #e2e8f0;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-intro-image {
    order: -1;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .experience-tag {
    left: 1rem;
    bottom: -1.5rem;
  }
  
  .detailed-service-row {
    flex-direction: column !important;
    gap: 2.5rem;
  }
  
  .locations-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: var(--white);
    flex-direction: column;
    padding: 3rem 2rem;
    align-items: flex-start;
    gap: 1.5rem;
    transition: var(--transition);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
    z-index: 999;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-toggle {
    display: block;
  }
  
  .nav-cta {
    display: none;
  }
}

@media (max-width: 768px) {
  .header-top {
    display: none;
  }
  
  .slide-title {
    font-size: 2.25rem;
  }
  
  .slide-desc {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  
  .slider-arrow {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }
  
  .slider-arrow-prev {
    left: 1rem;
  }
  
  .slider-arrow-next {
    right: 1rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .contact-form-card {
    padding: 2rem 1.5rem;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .form-group-full {
    grid-column: span 1;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .whatsapp-float {
    bottom: 4.5rem;
    right: 1rem;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .mobile-sticky-cta {
    display: grid;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .stats-bar {
    margin-top: 0;
    border-radius: 0;
    box-shadow: none;
    border-bottom: 1px solid #e2e8f0;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .slide-title {
    font-size: 1.85rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .stat-item {
    border-right: none !important;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 1rem;
  }
  
  .stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  
  .locations-grid {
    grid-template-columns: 1fr;
  }
}
