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

:root {
  /* Colors - Reference Competitor Theme (Teal & Amber) */
  --primary: #0e8f8f;
  --primary-dark: #076666;
  --primary-light: #e6f4f4;
  --accent: #fca311;
  --accent-hover: #e0910f;
  --accent-light: #fff6e6;
  
  /* Neutral Palette */
  --text-dark: #1f2937;
  --text-medium: #4b5563;
  --text-light: #6b7280;
  --white: #ffffff;
  --off-white: #f3f4f6;
  --bg-light: #f9fafb;
  --border: #e5e7eb;
  
  /* Alert/Status Colors */
  --success: #10b981;
  --success-light: #ecfdf5;
  
  /* Typography */
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;
  
  /* Shadows & Radius */
  --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);
  --radius-sm: 0.375rem;
  --radius: 0.5rem;
  --radius-lg: 1rem;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   BASE & RESET STYLES
   ========================================================================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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

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

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

ul {
  list-style: none;
}

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

/* ==========================================================================
   REUSABLE UTILITIES & LAYOUTS
   ========================================================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 5rem 0;
}

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

.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-center { text-align: center; }
.text-muted { color: var(--text-light); }
.bg-light { background-color: var(--bg-light); }
.bg-primary-light { background-color: var(--primary-light); }

.section-title {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3.5rem auto;
}

.section-title span {
  font-family: var(--font-heading);
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  display: inline-block;
  margin-bottom: 0.75rem;
}

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

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 1.75rem;
  }
}

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

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

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

.btn-accent {
  background-color: var(--accent);
  color: var(--text-dark);
}

.btn-accent:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

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

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

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

/* ==========================================================================
   NAVIGATION & HEADER
   ========================================================================== */
/* Top Bar */
.top-bar {
  background-color: #1e3a8a; /* Trustworthy Navy */
  color: var(--white);
  padding: 0.6rem 0;
  font-size: 0.85rem;
  position: relative;
  z-index: 1002;
}

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

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

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.top-bar-item i {
  color: var(--accent);
}

.top-bar-item a:hover {
  color: var(--accent);
}

.top-bar-social a {
  font-size: 1rem;
}

.top-bar-social a:hover {
  color: var(--accent);
}

@media (max-width: 600px) {
  .top-bar .container {
    justify-content: center;
    flex-direction: column;
    gap: 0.25rem;
  }
}

/* Header */
header {
  background-color: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.logo a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  background: var(--primary-light);
  color: var(--primary);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  border: 2px solid var(--primary);
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--primary-dark);
}

.logo-text span {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: -3px;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-link {
  font-weight: 600;
  color: var(--text-dark);
  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-color: var(--primary);
  transition: var(--transition);
}

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

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

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

@media (max-width: 991px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--white);
    flex-direction: column;
    padding: 3rem 1.5rem;
    gap: 2rem;
    box-shadow: var(--shadow-lg);
    transition: left 0.4s ease-in-out;
    z-index: 999;
  }

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

  .nav-menu .btn {
    width: 100%;
    max-width: 300px;
  }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  background: linear-gradient(135deg, rgba(7, 102, 102, 0.95) 0%, rgba(14, 143, 143, 0.8) 100%), 
              url('../images/hero_cleaning.png') no-repeat center center / cover;
  color: var(--white);
  padding: 8rem 0;
  overflow: hidden;
}

.hero-content {
  max-width: 850px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero h1 span {
  color: var(--accent);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero {
    padding: 5rem 0;
  }
  .hero h1 {
    font-size: 2.25rem;
  }
  .hero p {
    font-size: 1.05rem;
  }
}

/* ==========================================================================
   STATISTICS SECTION
   ========================================================================== */
.stats-section {
  background-color: var(--white);
  box-shadow: var(--shadow-md);
  margin-top: -3rem;
  position: relative;
  z-index: 10;
  border-radius: var(--radius-lg);
  padding: 2.5rem 0;
}

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

.stat-item {
  text-align: center;
  border-right: 1px solid var(--border);
}

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

.stat-item h3 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 0.25rem;
  font-family: var(--font-heading);
}

.stat-item p {
  color: var(--text-medium);
  font-weight: 600;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .stats-section {
    margin-top: 0;
    border-radius: 0;
  }
  .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 var(--border);
  }
}

/* ==========================================================================
   ABOUT / INTRODUCTION SECTION
   ========================================================================== */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

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

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

.about-intro-img::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  border-top: 5px solid var(--accent);
  border-left: 5px solid var(--accent);
  z-index: -1;
  border-radius: var(--radius-sm);
}

.about-intro-img::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  border-bottom: 5px solid var(--primary);
  border-right: 5px solid var(--primary);
  z-index: -1;
  border-radius: var(--radius-sm);
}

.about-intro-content h3 {
  font-size: 1.8rem;
  margin-bottom: 1.25rem;
}

.about-intro-content p {
  margin-bottom: 1.25rem;
  color: var(--text-medium);
}

.about-checklist {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.about-checklist li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.about-checklist li i {
  color: var(--primary);
}

@media (max-width: 991px) {
  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ==========================================================================
   SERVICES GRID
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background-color: var(--primary);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-light);
}

.service-card:hover::after {
  width: 100%;
}

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

.service-card:hover .service-icon {
  background-color: var(--primary);
  color: var(--white);
  transform: rotate(5deg);
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-medium);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

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

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

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

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

/* ==========================================================================
   PROCESS TIMELINE
   ========================================================================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.process-item {
  text-align: center;
  position: relative;
}

.process-number {
  width: 70px;
  height: 70px;
  background-color: var(--primary);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 2;
  transition: var(--transition);
}

.process-item:hover .process-number {
  background-color: var(--accent);
  color: var(--text-dark);
  transform: scale(1.1);
}

.process-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.process-item p {
  color: var(--text-medium);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Connecting Line */
.process-grid::before {
  content: '';
  position: absolute;
  top: 35px;
  left: 10%;
  width: 80%;
  height: 2px;
  background-color: var(--border);
  z-index: 1;
}

@media (max-width: 991px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  .process-grid::before {
    display: none;
  }
}

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

/* ==========================================================================
   FEATURES / WHY CHOOSE US
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.feature-card {
  text-align: center;
  background-color: var(--white);
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}

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

.feature-icon-circle {
  width: 70px;
  height: 70px;
  background-color: var(--accent-light);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem auto;
  transition: var(--transition);
}

.feature-card:hover .feature-icon-circle {
  background-color: var(--accent);
  color: var(--text-dark);
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--text-medium);
  font-size: 0.9rem;
  line-height: 1.6;
}

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

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

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonial-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 5rem;
  line-height: 1;
  color: var(--primary-light);
  font-family: var(--font-heading);
}

.testimonial-stars {
  color: var(--accent);
  margin-bottom: 1.25rem;
  display: flex;
  gap: 0.25rem;
}

.testimonial-card p {
  color: var(--text-medium);
  font-style: italic;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.testimonial-client {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-heading);
}

.testimonial-info h4 {
  font-size: 1rem;
  margin-bottom: 0.15rem;
}

.testimonial-info span {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ==========================================================================
   FAQS ACCORDION
   ========================================================================== */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

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

.faq-item:hover {
  border-color: var(--primary);
}

.faq-header {
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--text-dark);
  transition: var(--transition);
}

.faq-header:hover {
  color: var(--primary);
}

.faq-icon {
  font-size: 0.9rem;
  transition: var(--transition);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.7;
  transition: all 0.3s ease-out;
}

/* Active FAQ State */
.faq-item.active {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.faq-item.active .faq-header {
  color: var(--primary);
  border-bottom: 1px solid var(--border);
}

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

.faq-item.active .faq-body {
  padding: 1.25rem 1.5rem;
  max-height: 500px;
}

/* ==========================================================================
   CONTACT SECTION (FORM & MAP)
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-card-box {
  background-color: var(--white);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.contact-card-box h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.contact-card-box p {
  color: var(--text-medium);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 576px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

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

.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(14, 143, 143, 0.15);
}

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

.form-success-msg {
  display: none;
  background-color: var(--success-light);
  color: var(--success);
  border: 1px solid var(--success);
  padding: 1rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.info-item {
  display: flex;
  gap: 1.25rem;
}

.info-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.info-details h4 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.info-details p, .info-details a {
  color: var(--text-medium);
  font-size: 0.95rem;
}

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

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  height: 350px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
}

@media (max-width: 576px) {
  .contact-card-box {
    padding: 2rem 1.5rem;
  }
}

/* ==========================================================================
   SERVICE INNER / DETAIL CONTENT PAGE
   ========================================================================== */
.service-header {
  background: linear-gradient(135deg, rgba(7, 102, 102, 0.95) 0%, rgba(14, 143, 143, 0.8) 100%), 
              url('../images/bathroom_cleaning.png') no-repeat center center / cover;
  color: var(--white);
  padding: 6rem 0 5rem;
  text-align: center;
}

.service-header h1 {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.breadcrumbs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
}

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

.breadcrumbs span {
  opacity: 0.7;
}

.service-content-grid {
  display: grid;
  grid-template-columns: 2.3fr 1fr;
  gap: 3rem;
}

.service-main h2 {
  font-size: 1.85rem;
  margin: 2rem 0 1rem 0;
  color: var(--primary-dark);
}

.service-main h2:first-of-type {
  margin-top: 0;
}

.service-main h3 {
  font-size: 1.4rem;
  margin: 1.5rem 0 1rem 0;
}

.service-main p {
  color: var(--text-medium);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.service-main ul {
  margin-bottom: 2rem;
  padding-left: 1.5rem;
  list-style-type: disc;
}

.service-main li {
  margin-bottom: 0.75rem;
  color: var(--text-medium);
}

.service-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-widget {
  background-color: var(--white);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.sidebar-widget h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--primary-light);
}

.sidebar-widget h3::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary);
}

.widget-services-list li {
  margin-bottom: 0.75rem;
}

.widget-services-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1.25rem;
  background-color: var(--bg-light);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid var(--border);
}

.widget-services-list a:hover, .widget-services-list a.active {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.widget-cta-box {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
  text-align: center;
  border: none;
}

.widget-cta-box h3 {
  color: var(--white);
  border: none;
  padding: 0;
}

.widget-cta-box h3::after { display: none; }

.widget-cta-box p {
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
  opacity: 0.9;
}

.widget-cta-box .phone-cta {
  display: block;
  font-size: 1.5rem;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--accent);
  margin-top: 1.5rem;
}

.widget-cta-box .phone-cta:hover {
  color: var(--white);
}

@media (max-width: 991px) {
  .service-content-grid {
    grid-template-columns: 1fr;
  }
  .service-sidebar {
    order: 2;
  }
}

/* Custom Checklist Table */
.checklist-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0 2rem 0;
}

.checklist-table th, .checklist-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.checklist-table th {
  background-color: var(--bg-light);
  color: var(--text-dark);
  font-weight: 700;
}

.checklist-table td i {
  color: var(--success);
  margin-right: 0.5rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
  background-color: #0f172a; /* Slate 900 */
  color: #94a3b8; /* Slate 400 */
  padding: 5rem 0 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-logo a {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-logo .logo-icon {
  background-color: rgba(14, 143, 143, 0.15);
  border-color: var(--primary);
  color: var(--primary);
}

.footer-logo .logo-text {
  color: var(--white);
}

.footer-col h4 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 1.75rem;
  position: relative;
}

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

.footer-about p {
  font-size: 0.95rem;
  line-height: 1.6;
}

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

.footer-links a {
  display: inline-block;
  font-size: 0.95rem;
  position: relative;
}

.footer-links a::before {
  content: '\f105';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  margin-right: 0.5rem;
  color: var(--primary);
  transition: var(--transition);
}

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

.footer-contact li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.footer-contact i {
  color: var(--primary);
  font-size: 1.1rem;
  margin-top: 0.25rem;
}

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

.footer-copyright {
  border-top: 1px solid #1e293b;
  padding: 2rem 0;
  text-align: center;
  font-size: 0.9rem;
}

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

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ==========================================================================
   FLOATING ACTION BUTTONS (CALL & WHATSAPP)
   ========================================================================== */
.floating-actions {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1001;
}

.float-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.float-btn:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.float-phone {
  background-color: #2563eb; /* Blue for call */
}

.float-whatsapp {
  background-color: #25d366; /* WhatsApp Green */
  animation-delay: 0.5s;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.float-phone {
  animation: pulse-phone 2s infinite;
}

@keyframes pulse-phone {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 99, 235, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
  }
}

/* ==========================================================================
   FORM SUCCESS AND ERROR
   ========================================================================== */
.form-feedback {
  display: none;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

.form-feedback.success {
  display: block;
  color: var(--success);
}

.form-feedback.error {
  display: block;
  color: #ef4444;
}

.invalid-field {
  border-color: #ef4444 !important;
}
