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

:root {
  /* Corporate Royal Blue & Gold Palette */
  --primary: #1e40af;         /* Royal Blue - Trust & Authority */
  --primary-light: #eff6ff;   /* Light Blue 50 */
  --primary-hover: #1d4ed8;   /* Medium Blue */
  
  --secondary: #0f172a;       /* Slate 900 */
  --secondary-hover: #1e293b;
  
  --accent: #f59e0b;          /* Gold / Amber - Action color */
  --accent-hover: #d97706;
  
  --dark: #0f172a;            /* Slate 900 */
  --dark-light: #334155;      /* Slate 700 */
  --light: #f8fafc;           /* Slate 50 */
  --white: #ffffff;
  
  --gray: #64748b;            /* Slate 500 */
  --gray-light: #f1f5f9;      /* Slate 100 */
  --gray-border: #cbd5e1;     /* Slate 300 - Clear boundaries */
  
  --success: #15803d;         /* Forest Green */
  --whatsapp: #25d366;        /* WhatsApp official green */
  --phone: #1e40af;
  
  --font-main: 'Outfit', sans-serif;
  --max-width: 1140px;
  --header-height: 80px;
  
  /* Solid flat shadows, no glowing/blurry effects */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.08), 0 2px 4px -1px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  
  --transition: all 0.2s ease-in-out;
}

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

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

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

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

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

ul {
  list-style: none;
}

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

/* Scrollbar Style */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--light);
}
::-webkit-scrollbar-thumb {
  background: #94a3b8;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Utility Classes */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 90px 0;
}

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

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.section-title p {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 550px;
  margin: 0 auto;
}

/* Buttons (Sharp corporate corners, no glow) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 4px; /* Sharp & Clean */
  cursor: pointer;
  transition: var(--transition);
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

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

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

.btn-accent {
  background-color: var(--accent);
  color: var(--secondary);
  border: 1px solid var(--accent);
}

.btn-accent:hover {
  background-color: var(--accent-hover);
  border-color: var(--accent-hover);
}

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

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

/* Header (Solid corporate white, no transparency, no blur) */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background-color: var(--white);
  border-bottom: 3px solid var(--primary); /* Strong blue bottom boundary */
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

header.scrolled {
  height: 70px;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--secondary);
  letter-spacing: -0.02em;
  white-space: nowrap;
  flex-shrink: 0;
}

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

.nav-menu {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--secondary);
  padding: 8px 0;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

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

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

@media (min-width: 993px) and (max-width: 1200px) {
  .nav-menu {
    gap: 15px;
  }
  .nav-link {
    font-size: 0.82rem;
  }
}

/* Header Actions */
.header-actions {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-trigger-btn {
  background: var(--light);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  color: var(--secondary);
  border: 1px solid var(--gray-border);
}

.search-trigger-btn:hover {
  background: var(--primary-light);
  color: var(--primary);
  border-color: var(--primary);
}

.btn-call {
  background-color: var(--primary);
  color: var(--white);
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 4px;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--primary);
}

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

.menu-toggle {
  display: none;
  font-size: 1.4rem;
  cursor: pointer;
}

/* Search Overlay */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.6);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.search-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.search-container {
  width: 90%;
  max-width: 500px;
  background-color: var(--white);
  border-radius: 4px;
  padding: 24px;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--primary);
}

.search-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.search-header h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--secondary);
  text-transform: uppercase;
}

.close-search {
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--gray);
}

.close-search:hover {
  color: var(--dark);
}

.search-box {
  display: flex;
  align-items: center;
  border: 1px solid var(--gray-border);
  border-radius: 4px;
  padding: 4px 4px 4px 12px;
  background-color: var(--light);
}

.search-box input {
  flex: 1;
  font-size: 0.95rem;
  padding: 8px 0;
  color: var(--dark);
}

.search-box button {
  background: var(--primary);
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.search-results {
  margin-top: 15px;
  max-height: 200px;
  overflow-y: auto;
}

.search-result-item {
  padding: 10px;
  border-bottom: 1px solid var(--gray-light);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.search-result-item:hover {
  background-color: var(--primary-light);
}

.search-result-item .title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--secondary);
}

.search-result-item .price {
  color: var(--primary);
  font-weight: 700;
}

/* Hero Section Styles Cleaned (Moved to end) */

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
}

.service-card {
  position: relative;
  height: 380px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.05), 0 8px 10px -6px rgba(15, 23, 42, 0.05);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-color: var(--secondary);
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, 
    rgba(15, 23, 42, 0.95) 0%, 
    rgba(15, 23, 42, 0.5) 50%, 
    rgba(15, 23, 42, 0.1) 100%);
  z-index: 2;
  transition: opacity 0.5s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(30, 64, 175, 0.22);
  border-color: rgba(30, 64, 175, 0.2);
}

.service-img-wrapper {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}

.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.service-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--white);
  padding: 6px 14px;
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 30px;
  z-index: 10;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.service-content {
  position: relative;
  z-index: 3;
  padding: 24px;
  color: var(--white);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex: none;
}

.service-content h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--white);
  transition: color 0.3s ease;
}

.service-card:hover .service-content h3 {
  color: var(--accent);
}

.service-content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  font-size: 0.92rem;
  line-height: 1.5;
  flex: none;
}

.service-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 15px;
  margin-top: 0;
}

.service-btn {
  font-weight: 700;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  transition: var(--transition);
}

.service-btn i {
  transition: transform 0.3s ease;
}

.service-card:hover .service-btn {
  color: var(--white);
}

.service-card:hover .service-btn i {
  transform: translateX(6px);
}

/* Detailed Subpage Style Additions */
.subpage-hero {
  padding: 130px 0 50px;
  background-color: var(--secondary);
  color: var(--white);
  border-bottom: 4px solid var(--primary);
}

.subpage-hero h1 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--gray);
  font-weight: 700;
  text-transform: uppercase;
}

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

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

.breadcrumbs span {
  color: var(--primary);
}

.detail-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  margin-bottom: 50px;
}

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

.detail-content h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--secondary);
}

.detail-content p {
  color: var(--dark-light);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.detail-features-list {
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.detail-features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--secondary);
}

.detail-features-list i {
  color: var(--primary);
  font-size: 1.1rem;
}

.detail-image-wrapper {
  border: 1px solid var(--gray-border);
  border-radius: 4px;
  overflow: hidden;
  height: 360px;
  box-shadow: var(--shadow-sm);
}

.detail-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Timeline Stepper for Cleaning Stages */
.stages-section {
  background-color: var(--light);
  border-top: 1px solid var(--gray-border);
  border-bottom: 1px solid var(--gray-border);
}

.stages-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.stage-step {
  background-color: var(--white);
  padding: 24px 16px;
  border-radius: 4px;
  border: 1px solid var(--gray-border);
  text-align: center;
  position: relative;
}

.stage-step:hover {
  border-color: var(--primary);
}

.stage-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary);
  color: var(--white);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
}

.stage-step h4 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-top: 10px;
  margin-bottom: 8px;
  color: var(--secondary);
}

.stage-step p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.4;
}

/* Features Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.feature-card {
  padding: 30px;
  background-color: var(--white);
  border-radius: 4px;
  border: 1px solid var(--gray-border);
  text-align: center;
}

.feature-card:hover {
  border-color: var(--primary);
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 4px;
  background-color: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 20px;
  border: 1px solid rgba(30, 64, 175, 0.15);
}

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--secondary);
}

.feature-card p {
  color: var(--gray);
  font-size: 0.9rem;
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  height: 240px;
  border: 1px solid var(--gray-border);
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.8);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  transition: var(--transition);
}

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

.gallery-overlay h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
}

.gallery-overlay p {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
}


/* Service Areas Section Styles moved to the end of the file */

/* Testimonials Section */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background-color: var(--light);
  padding: 30px;
  border-radius: 4px;
  border: 1px solid var(--gray-border);
  position: relative;
}

.testimonial-quote {
  font-size: 2.5rem;
  color: #cbd5e1;
  position: absolute;
  top: 10px;
  right: 20px;
  font-family: serif;
}

.testimonial-stars {
  color: var(--accent);
  margin-bottom: 12px;
  font-size: 0.85rem;
}

.testimonial-card p {
  color: var(--dark-light);
  font-style: italic;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

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

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-info h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--secondary);
}

.testimonial-info span {
  font-size: 0.75rem;
  color: var(--gray);
}

/* Contact Section */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  background-color: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--gray-border);
}

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

.contact-info-panel {
  background-color: var(--secondary);
  color: var(--white);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info-header h3 {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.contact-info-header p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin: 35px 0;
}

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

.contact-item i {
  font-size: 1.25rem;
  color: var(--accent);
  margin-top: 4px;
}

.contact-item h5 {
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 2px;
  text-transform: uppercase;
  color: var(--accent);
}

.contact-item p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
}

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

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 2px;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.95rem;
}

.social-link:hover {
  background-color: var(--accent);
  color: var(--secondary);
}

.contact-form-panel {
  padding: 40px;
  background-color: var(--white);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

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

.form-input-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-input-group label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
}

.form-input-group input, .form-input-group textarea {
  padding: 11px 14px;
  border-radius: 4px;
  border: 1px solid var(--gray-border);
  background-color: var(--light);
  font-size: 0.9rem;
  color: var(--secondary);
}

.form-input-group input:focus, .form-input-group textarea:focus {
  border-color: var(--primary);
  background-color: var(--white);
}

.contact-form button[type="submit"] {
  background-color: var(--primary);
  color: var(--white);
  border: 1px solid var(--primary);
}
.contact-form button[type="submit"]:hover {
  background-color: var(--primary-hover);
}

/* Corporate Footer */
footer {
  background-color: var(--secondary);
  color: rgba(255, 255, 255, 0.6);
  padding: 80px 0 25px;
  border-top: 4px solid var(--primary);
}

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

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

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

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.footer-about p {
  margin: 15px 0;
  font-size: 0.85rem;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.85rem;
}

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

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-info li {
  display: flex;
  gap: 10px;
  font-size: 0.85rem;
}

.footer-contact-info i {
  color: var(--accent);
  margin-top: 3px;
}

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

/* Floating Actions */
.floating-actions {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}

.floating-btn {
  width: 50px;
  height: 50px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.35rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  cursor: pointer;
  transition: var(--transition);
}

.floating-btn:hover {
  transform: translateY(-2px);
}

.floating-whatsapp {
  background-color: var(--whatsapp);
}

.floating-phone {
  background-color: var(--phone);
}

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

/* Mobile Responsive */
@media (max-width: 992px) {
  header {
    height: 70px;
  }
  
  .menu-toggle {
    display: block;
    order: 3;
  }
  
  .header-actions {
    order: 2;
  }
  
  .btn-call {
    padding: 8px 12px;
    font-size: 0.75rem;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    z-index: 999;
    border-top: 1px solid var(--gray-border);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-link {
    font-size: 1.1rem;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .section {
    padding: 70px 0;
  }
}

/* ==========================================================================
   New Premium Additions: Hero Slider & Redesigned Service Areas
   ========================================================================== */

/* Hero Slider Styles Cleaned (Moved to end) */

/* Service Areas Section Redesign */
.service-areas {
  background-color: var(--white);
  padding: 90px 0;
  border-top: 1px solid var(--gray-light);
}

.service-areas-dashboard {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.04), 0 1px 3px rgba(15, 23, 42, 0.02);
  border: 1px solid rgba(15, 23, 42, 0.06);
  padding: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Areas Top Bar */
.areas-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  border-bottom: 2px solid var(--primary-light);
  padding-bottom: 25px;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .areas-top-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
}

.live-status {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--secondary);
  background-color: var(--primary-light);
  padding: 10px 18px;
  border-radius: 30px;
  border: 1px solid rgba(30, 64, 175, 0.08);
}

.status-pulse {
  width: 10px;
  height: 10px;
  background-color: #22c55e;
  border-radius: 50%;
  position: relative;
  display: inline-block;
}

.status-pulse::after {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #22c55e;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  animation: pulse-ring 1.5s infinite ease-in-out;
  transform-origin: center;
}

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(2.5); opacity: 0; }
}

.areas-search-box {
  display: flex;
  align-items: center;
  border: 2px solid var(--gray-border);
  border-radius: 30px; /* Fully rounded premium look */
  padding: 4px 6px 4px 20px;
  background-color: var(--light);
  min-width: 380px;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .areas-search-box {
    min-width: 100%;
  }
}

.areas-search-box:focus-within {
  border-color: var(--accent); /* Highlight gold */
  background-color: var(--white);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.15);
}

.areas-search-box input {
  flex: 1;
  font-size: 0.95rem;
  padding: 10px 0;
  color: var(--secondary);
  font-weight: 500;
}

.areas-search-box i {
  color: var(--gray);
  margin-right: 12px;
  font-size: 1.1rem;
}

.search-message-box {
  margin-top: -15px;
  margin-bottom: 25px;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0 10px;
  min-height: 20px;
}

/* Main Grid Layout */
.areas-main-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
}

@media (max-width: 992px) {
  .areas-main-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Guarantees Sidebar */
.areas-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.guarantee-card {
  background: linear-gradient(135deg, var(--secondary) 0%, #1e293b 100%);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid rgba(245, 158, 11, 0.15); /* Elegant gold touch */
  display: flex;
  gap: 18px;
  align-items: center;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.05);
}

.guarantee-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 12px 25px rgba(245, 158, 11, 0.1);
}

.g-icon {
  background: rgba(255, 255, 255, 0.05);
  width: 52px;
  height: 52px;
  border-radius: 50%; /* Rounded circle icon */
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent); /* Gold icon */
  font-size: 1.4rem;
  border: 1.5px solid rgba(245, 158, 11, 0.3);
  flex-shrink: 0;
  transition: all 0.35s ease;
}

.guarantee-card:hover .g-icon {
  background: var(--accent);
  color: var(--secondary);
  border-color: var(--accent);
  transform: rotate(360deg); /* Beautiful rotation animation on hover */
}

.g-text h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}

.g-text p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

/* Tabs and Badges Container */
.areas-content {
  display: flex;
  flex-direction: column;
}

.areas-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 25px;
  border-bottom: 1px solid var(--gray-border);
  padding-bottom: 15px;
}

.tab-btn {
  background: var(--light);
  color: var(--dark-light);
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(15, 23, 42, 0.05);
}

.tab-btn i {
  font-size: 1.1rem;
  color: var(--gray);
}

.tab-btn:hover {
  background-color: var(--gray-light);
  color: var(--secondary);
}

.tab-btn.active {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 4px 15px rgba(30, 64, 175, 0.2);
}

.tab-btn.active i {
  color: var(--accent); /* Accent color on active icon */
}

/* Tab content visibility */
.tab-content {
  display: none;
  animation: fadeIn 0.4s ease;
}

.tab-content.active {
  display: block;
}

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

.areas-badge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 12px;
}

.areas-badge-grid .area-badge {
  background-color: var(--light);
  color: var(--dark-light);
  border: 1px solid rgba(15, 23, 42, 0.05);
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-shadow: 0 2px 4px rgba(15, 23, 42, 0.01);
}

.areas-badge-grid .area-badge i {
  font-size: 0.8rem;
  color: var(--gray);
  transition: color 0.3s ease;
}

.areas-badge-grid .area-badge:hover {
  background-color: var(--primary-light);
  color: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(30, 64, 175, 0.08);
}

.areas-badge-grid .area-badge.active {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.2);
}

.areas-badge-grid .area-badge:hover i {
  color: var(--primary);
}

.areas-badge-grid .area-badge.active i {
  color: var(--accent); /* Gold icon on active */
}

/* Pulsing effect for matches */
.areas-badge-grid .area-badge.active {
  animation: pulse-active 1.5s infinite alternate;
}

@keyframes pulse-active {
  0% { box-shadow: 0 4px 10px rgba(30, 64, 175, 0.2); }
  100% { box-shadow: 0 4px 16px rgba(245, 158, 11, 0.4); border-color: var(--accent); }
}




/* ==========================================================================
   Upgraded Premium Hero: Stacked Text & Full-Width Slider Layout
   ========================================================================== */

.hero {
  padding: 130px 0 60px;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  width: 100%;
}

.hero-content {
  max-width: 800px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeInUp 0.6s ease-out;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--primary-light);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 20px;
  border: 1px solid rgba(30, 64, 175, 0.1);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero-badge i {
  color: var(--accent);
}

.hero-content h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  color: var(--secondary);
}

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

.hero-content p {
  font-size: 1.15rem;
  margin-bottom: 30px;
  color: var(--dark-light);
  line-height: 1.6;
  max-width: 750px;
}

.hero-btns {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-btns .btn-accent {
  background-color: var(--accent);
  color: var(--secondary);
}

.hero-btns .btn-accent:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
}

.hero-btns .btn-outline {
  border-color: var(--primary);
  color: var(--primary);
}

.hero-btns .btn-outline:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.15);
}

/* Slider Full Width Wrapper below text */
.hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  display: block !important;
  position: relative;
  margin-top: 10px;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 480px; /* Taller, larger slider */
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
  background-color: var(--secondary);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  z-index: 1;
}

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

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* NO dark overlay mask over the images */
.hero-slider::after {
  display: none;
}

/* Slide Caption at the bottom of slider */
.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.7) 0%, rgba(15, 23, 42, 0) 100%);
  color: var(--white);
  padding: 30px 20px 15px;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  z-index: 3;
  letter-spacing: 0.02em;
  display: block;
}

/* Slider Controls */
.slider-prev, .slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--secondary);
  border: 1px solid rgba(15, 23, 42, 0.1);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  opacity: 0.8;
}

.slider-prev:hover, .slider-next:hover {
  background: var(--primary);
  color: var(--white);
  opacity: 1;
  transform: translateY(-50%) scale(1.05);
}

.slider-prev { left: 20px; }
.slider-next { right: 20px; }

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

.slider-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dots .dot.active {
  background: var(--accent);
  width: 20px;
  border-radius: 10px;
}

/* Responsive adjust for mobile */
@media (max-width: 768px) {
  .hero {
    padding: 110px 0 50px;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
    margin-bottom: 25px;
  }
  
  .hero-slider {
    height: 280px;
  }
  
  .slider-prev, .slider-next {
    display: none;
  }
}

/* ==========================================================================
   Specialized Carpet Grid Styles
   ========================================================================== */

.specialized-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.special-carpet-card {
  background-color: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.03);
  border: 1px solid rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.special-carpet-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-light);
  box-shadow: 0 12px 25px rgba(30, 64, 175, 0.1);
}

.carpet-img-wrapper {
  height: 180px;
  overflow: hidden;
  position: relative;
  border-bottom: 2px solid var(--primary-light);
}

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

.special-carpet-card:hover .carpet-img-wrapper img {
  transform: scale(1.06);
}

.carpet-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.carpet-info h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 10px;
  border-bottom: 2px solid var(--primary-light);
  padding-bottom: 6px;
}

.carpet-info p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.5;
}
