/* ==========================================================================
   AARURAN ENTERPRISES - SITE STYLES
   ========================================================================== */

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

/* --- Design System & CSS Variables --- */
:root {
  --primary: #0F2042;         /* Deep Navy Blue */
  --secondary: #1E3A8A;       /* Steel Blue */
  --accent: #FF9F1C;          /* Warm Gold/Orange Accent */
  --accent-rgb: 255, 159, 28;
  --accent-hover: #E88E0D;
  --text-main: #2D3748;       /* Charcoal Body Text */
  --text-light: #718096;      /* Slate Gray */
  --bg-light: #F7FAFC;        /* Cool White/Gray */
  --bg-dark: #0A1428;         /* Very Dark Navy */
  --white: #FFFFFF;
  --success: #38A169;
  
  --font-headings: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --transition-normal: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-slow: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 40px rgba(15, 32, 66, 0.12);
  --border-radius: 12px;
  --border-radius-lg: 20px;
}

/* --- Base Styles --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

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

/* --- Accessibility utilities --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* --- Shared Layout Classes --- */
.section-padding {
  padding: 80px 0;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ==========================================================================
   TOP BAR SECTION - .top-bar-*
   ========================================================================== */
.top-bar-wrapper {
  background-color: var(--primary);
  color: var(--white);
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 500;
}

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

.top-bar-info {
  display: flex;
  gap: 20px;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

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

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

.top-bar-hours {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #CBD5E0;
}

.top-bar-hours span {
  color: var(--accent);
}

@media (max-width: 768px) {
  .top-bar-container {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
  .top-bar-info {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }
}

/* ==========================================================================
   HEADER & NAVIGATION SECTION - .site-header-*
   ========================================================================== */
.site-header-wrapper {
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: var(--transition-normal);
}

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

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

.site-header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-family: var(--font-headings);
  font-weight: 800;
  color: var(--primary);
}

.site-header-logo-icon {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(15, 32, 66, 0.2);
}

.site-header-logo-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

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

/* Desktop Menu */
.site-header-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-header-nav-link {
  font-weight: 600;
  color: var(--primary);
  font-size: 16px;
  position: relative;
  padding: 6px 0;
}

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

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

.site-header-nav-link.active {
  color: var(--accent);
}

/* Service Dropdown */
.services-dropdown {
  position: relative;
}

.services-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
}

.services-dropdown-trigger svg {
  width: 12px;
  height: 12px;
  transition: var(--transition-normal);
}

.services-dropdown:hover .services-dropdown-trigger svg {
  transform: rotate(180deg);
}

.services-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 260px;
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.services-dropdown:hover .services-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.services-dropdown-item {
  display: block;
  padding: 10px 14px;
  font-weight: 500;
  color: var(--primary);
  border-radius: 6px;
  font-size: 14px;
}

.services-dropdown-item:hover {
  background-color: var(--bg-light);
  color: var(--accent);
  padding-left: 18px;
}

/* CTA Header button */
.site-header-cta {
  background-color: var(--accent);
  color: var(--white);
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 12px rgba(255, 159, 28, 0.3);
  transition: var(--transition-normal);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.site-header-cta:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 159, 28, 0.4);
}

/* Mobile Toggle Hamburger */
.site-header-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
}

.site-header-hamburger span {
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  border-radius: 2px;
  transition: var(--transition-normal);
}

@media (max-width: 992px) {
  .site-header-nav {
    display: none;
  }
  
  .site-header-hamburger {
    display: flex;
  }
}

/* ==========================================================================
   MOBILE MENU DRAWER - .mobile-drawer-*
   ========================================================================== */
.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 20, 40, 0.6);
  backdrop-filter: blur(4px);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

.mobile-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer-content {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  height: 100%;
  background-color: var(--white);
  z-index: 201;
  padding: 40px 30px;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  transition: cubic-bezier(0.16, 1, 0.3, 1) 0.5s;
}

.mobile-drawer-overlay.active + .mobile-drawer-content,
.mobile-drawer-content.active {
  right: 0;
}

.mobile-drawer-close {
  align-self: flex-end;
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 40px;
}

.mobile-drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.mobile-drawer-link {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  border-bottom: 1px solid var(--bg-light);
  padding-bottom: 8px;
}

.mobile-drawer-link:hover,
.mobile-drawer-link.active {
  color: var(--accent);
  padding-left: 8px;
}

.mobile-drawer-submenu {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 15px;
  margin-top: 10px;
}

.mobile-drawer-sublink {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-light);
}

.mobile-drawer-sublink:hover {
  color: var(--accent);
}

.mobile-drawer-cta {
  background-color: var(--accent);
  color: var(--white);
  text-align: center;
  padding: 14px;
  border-radius: var(--border-radius);
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(255, 159, 28, 0.3);
}

/* ==========================================================================
   HERO SLIDER SECTION - .hero-slider-*
   ========================================================================== */
.hero-slider-wrapper {
  position: relative;
  height: calc(100vh - 120px);
  min-height: 550px;
  overflow: hidden;
  background-color: var(--bg-dark);
}

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

.hero-slide-item {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}

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

/* Zoom effect on images (Ken Burns) */
.hero-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.4);
}

.hero-slide-item.active .hero-slide-bg {
  animation: kenBurnsZoom 8s ease-out forwards;
}

@keyframes kenBurnsZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}

.hero-slide-content-overlay {
  position: relative;
  height: 100%;
  z-index: 3;
  display: flex;
  align-items: center;
}

.hero-slide-content-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  color: var(--white);
}

.hero-slide-badge {
  background: linear-gradient(90deg, var(--accent), var(--accent-hover));
  color: var(--white);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(255, 159, 28, 0.4);
  transform: translateY(20px);
  opacity: 0;
}

.hero-slide-title {
  font-size: 56px;
  font-weight: 800;
  color: var(--white);
  max-width: 800px;
  margin-bottom: 20px;
  transform: translateY(30px);
  opacity: 0;
}

.hero-slide-subtitle {
  font-size: 20px;
  color: #E2E8F0;
  max-width: 600px;
  margin-bottom: 35px;
  transform: translateY(40px);
  opacity: 0;
}

.hero-slide-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  transform: translateY(50px);
  opacity: 0;
}

.hero-slide-item.active .hero-slide-badge {
  animation: fadeInUp 0.6s 0.2s ease-out forwards;
}

.hero-slide-item.active .hero-slide-title {
  animation: fadeInUp 0.6s 0.4s ease-out forwards;
}

.hero-slide-item.active .hero-slide-subtitle {
  animation: fadeInUp 0.6s 0.6s ease-out forwards;
}

.hero-slide-item.active .hero-slide-buttons {
  animation: fadeInUp 0.6s 0.8s ease-out forwards;
}

@keyframes fadeInUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.hero-btn-primary {
  background-color: var(--accent);
  color: var(--white);
  font-weight: 700;
  padding: 16px 32px;
  border-radius: var(--border-radius);
  font-size: 16px;
  box-shadow: 0 4px 15px rgba(255, 159, 28, 0.4);
}

.hero-btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 159, 28, 0.5);
}

.hero-btn-secondary {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  font-weight: 700;
  padding: 16px 32px;
  border-radius: var(--border-radius);
  font-size: 16px;
}

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

/* Slider Controls */
.hero-slider-nav {
  position: absolute;
  bottom: 30px;
  right: 50%;
  transform: translateX(50%);
  z-index: 5;
  display: flex;
  gap: 12px;
}

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

.hero-slider-nav-dot.active {
  background-color: var(--accent);
  transform: scale(1.3);
}

@media (max-width: 768px) {
  .hero-slide-title {
    font-size: 36px;
  }
  .hero-slide-subtitle {
    font-size: 16px;
  }
  .hero-slider-wrapper {
    height: 500px;
  }
}

/* ==========================================================================
   INDEPENDENT DISCLAIMER SECTION - .disclaimer-*
   ========================================================================== */
.disclaimer-wrapper {
  background-color: var(--bg-light);
  padding: 30px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.disclaimer-container {
  display: flex;
  background-color: var(--white);
  border-radius: var(--border-radius);
  border-left: 5px solid var(--accent);
  padding: 20px 30px;
  box-shadow: var(--shadow-sm);
  align-items: center;
  gap: 20px;
}

.disclaimer-icon {
  background-color: rgba(255, 159, 28, 0.1);
  color: var(--accent);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.disclaimer-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.disclaimer-text-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.disclaimer-text-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .disclaimer-container {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
}

/* ==========================================================================
   ABOUT SECTION - .about-section-*
   ========================================================================== */
.about-section-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.about-section-image-wrapper {
  position: relative;
}

.about-section-img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
  object-fit: cover;
  width: 100%;
  height: 480px;
}

.about-section-img-decorator {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 4px solid var(--accent);
  border-radius: var(--border-radius-lg);
  top: 20px;
  left: -20px;
  z-index: 1;
}

.about-section-badge {
  background-color: rgba(255, 159, 28, 0.1);
  color: var(--accent);
  padding: 6px 14px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 15px;
}

.about-section-title {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 20px;
}

.about-section-para {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 20px;
}

.about-section-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.about-section-feature-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.about-section-feature-icon {
  background-color: var(--primary);
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-section-feature-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--accent);
}

.about-section-feature-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2px;
}

.about-section-feature-desc {
  font-size: 13px;
  color: var(--text-light);
}

@media (max-width: 992px) {
  .about-section-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-section-img {
    height: 350px;
  }
}

/* ==========================================================================
   SERVICES SECTION - .services-section-*
   ========================================================================== */
.services-section-wrapper {
  background-color: var(--bg-light);
}

.services-section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px auto;
}

.services-section-subtitle {
  color: var(--accent);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.services-section-title {
  font-size: 36px;
  margin-bottom: 15px;
}

.services-section-desc {
  color: var(--text-light);
  font-size: 16px;
}

.services-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.services-section-card {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.services-section-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 159, 28, 0.2);
}

.services-section-card-accent-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.services-section-card-icon {
  width: 70px;
  height: 70px;
  background-color: var(--bg-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: var(--transition-normal);
}

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

.services-section-card-icon svg {
  width: 36px;
  height: 36px;
  fill: var(--primary);
  transition: var(--transition-normal);
}

.services-section-card:hover .services-section-card-icon svg {
  fill: var(--accent);
}

.services-section-card-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.services-section-card-text {
  color: var(--text-light);
  margin-bottom: 25px;
  flex-grow: 1;
}

.services-section-card-issues-list {
  list-style: none;
  margin-bottom: 30px;
}

.services-section-card-issues-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}

.services-section-card-issues-item svg {
  width: 14px;
  height: 14px;
  fill: var(--accent);
  flex-shrink: 0;
}

.services-section-card-cta {
  background-color: var(--primary);
  color: var(--white);
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: 0 4px 10px rgba(15, 32, 66, 0.15);
  display: inline-block;
  align-self: flex-start;
  transition: var(--transition-normal);
}

.services-section-card-cta:hover {
  background-color: var(--accent);
  box-shadow: 0 6px 15px rgba(255, 159, 28, 0.3);
  transform: translateY(-2px);
}

.services-section-card-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: auto;
  flex-wrap: wrap;
}

.services-section-card-link {
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
  transition: var(--transition-normal);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.services-section-card-link:hover {
  color: var(--accent);
}

.services-section-card-link svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  transition: var(--transition-normal);
}

.services-section-card-link:hover svg {
  transform: translateX(3px);
}

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

/* ==========================================================================
   HOW IT WORKS TIMELINE - .timeline-section-*
   ========================================================================== */
.timeline-section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px auto;
}

.timeline-section-title {
  font-size: 36px;
  margin-bottom: 15px;
}

.timeline-section-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

/* Connecting Line */
.timeline-section-grid::after {
  content: '';
  position: absolute;
  top: 45px;
  left: 10%;
  width: 80%;
  height: 2px;
  background-color: var(--bg-light);
  z-index: 1;
}

.timeline-card {
  text-align: center;
  position: relative;
  z-index: 2;
  background-color: var(--white);
  padding: 20px;
}

.timeline-card-index-circle {
  width: 60px;
  height: 60px;
  background-color: var(--white);
  border: 3px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  font-weight: 800;
  font-size: 18px;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.timeline-card:hover .timeline-card-index-circle {
  background-color: var(--accent);
  color: var(--white);
  transform: scale(1.1);
}

.timeline-card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.timeline-card-desc {
  font-size: 14px;
  color: var(--text-light);
}

@media (max-width: 992px) {
  .timeline-section-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .timeline-section-grid::after {
    display: none;
  }
}

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

/* ==========================================================================
   REVIEWS & TESTIMONIALS SECTION - .reviews-section-*
   ========================================================================== */
.reviews-section-wrapper {
  background-color: var(--bg-light);
}

.reviews-section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px auto;
}

.reviews-section-title {
  font-size: 36px;
  margin-bottom: 15px;
}

.reviews-section-summary-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  font-weight: 700;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.reviews-section-summary-badge svg {
  width: 16px;
  height: 16px;
  fill: var(--accent);
}

.reviews-section-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.reviews-section-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  border: 1px solid rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
}

.reviews-section-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.reviews-section-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 15px;
  color: var(--accent);
}

.reviews-section-stars svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.reviews-section-quote {
  font-size: 15px;
  color: var(--text-main);
  margin-bottom: 20px;
  font-style: italic;
  flex-grow: 1;
  line-height: 1.5;
}

.reviews-section-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--bg-light);
  padding-top: 15px;
}

.reviews-section-author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}

.reviews-section-author-info {
  display: flex;
  flex-direction: column;
}

.reviews-section-author-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
}

.reviews-section-author-loc {
  font-size: 12px;
  color: var(--text-light);
}

.reviews-section-center-action {
  text-align: center;
  margin-top: 30px;
}

.reviews-section-btn {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

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

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

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

/* ==========================================================================
   CONTACT SECTION - .contact-section-*
   ========================================================================== */
.contact-section-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
}

.contact-section-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

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

.contact-section-lead-desc {
  color: var(--text-light);
  font-size: 15px;
}

.contact-section-card-info {
  display: flex;
  gap: 15px;
  background-color: var(--bg-light);
  padding: 24px;
  border-radius: var(--border-radius);
}

.contact-section-card-info-icon {
  background-color: var(--white);
  color: var(--accent);
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.contact-section-card-info-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.contact-section-card-info-content h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.contact-section-card-info-content p {
  font-size: 14px;
  color: var(--text-light);
  word-break: break-all;
}

/* Form Styling */
.contact-section-form-wrapper {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-section-form-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-section-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-section-form-group {
  margin-bottom: 20px;
}

.contact-section-form-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.contact-section-form-input,
.contact-section-form-select,
.contact-section-form-textarea {
  width: 100%;
  background-color: var(--bg-light);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-main);
  outline: none;
  transition: var(--transition-normal);
}

.contact-section-form-input:focus,
.contact-section-form-select:focus,
.contact-section-form-textarea:focus {
  border-color: var(--accent);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(255, 159, 28, 0.15);
}

.contact-section-form-textarea {
  height: 120px;
  resize: none;
}

.contact-section-form-submit {
  background-color: var(--accent);
  color: var(--white);
  font-weight: 700;
  width: 100%;
  padding: 16px;
  border-radius: var(--border-radius);
  font-size: 15px;
  box-shadow: 0 4px 12px rgba(255, 159, 28, 0.3);
  transition: var(--transition-normal);
}

.contact-section-form-submit:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 159, 28, 0.4);
}

@media (max-width: 768px) {
  .contact-section-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-section-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .contact-section-form-wrapper {
    padding: 30px 20px;
  }
}

/* ==========================================================================
   BOOKING MODAL - .booking-modal-*
   ========================================================================== */
.booking-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 20, 40, 0.75);
  backdrop-filter: blur(5px);
  z-index: 500;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.booking-modal-container {
  width: 90%;
  max-width: 600px;
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: scale(0.9);
  transition: var(--transition-normal);
  z-index: 501;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}

.booking-modal-overlay.active .booking-modal-container {
  transform: scale(1);
}

.booking-modal-header {
  background-color: var(--primary);
  color: var(--white);
  padding: 24px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}

.booking-modal-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}

.booking-modal-close {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-normal);
}

.booking-modal-close:hover {
  color: var(--white);
}

.booking-modal-body {
  padding: 30px;
  overflow-y: auto;
}

.booking-modal-success-screen {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.booking-modal-success-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(56, 161, 105, 0.1);
  color: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
}

.booking-modal-success-icon svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.booking-modal-success-title {
  font-size: 22px;
  margin-bottom: 10px;
}

.booking-modal-success-text {
  color: var(--text-light);
  margin-bottom: 25px;
}

/* ==========================================================================
   SITE FOOTER - .site-footer-*
   ========================================================================== */
.site-footer-wrapper {
  background-color: var(--bg-dark);
  color: var(--white);
  padding-top: 80px;
  border-top: 5px solid var(--accent);
}

.site-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.site-footer-logo-zone {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.site-footer-logo-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
}

.site-footer-logo-title span {
  color: var(--accent);
}

.site-footer-logo-desc {
  font-size: 14px;
  color: #A0AEC0;
  line-height: 1.6;
}

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

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

.site-footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer-link-item {
  font-size: 14px;
  color: #A0AEC0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-footer-link-item a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.site-footer-address-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 14px;
  color: #A0AEC0;
}

.site-footer-address-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.site-footer-address-item svg {
  width: 18px;
  height: 18px;
  fill: var(--accent);
  flex-shrink: 0;
}

.site-footer-address-item a:hover {
  color: var(--accent);
}

/* Bottom Disclaimer and Copyright */
.site-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 30px 0;
  font-size: 13px;
  color: #A0AEC0;
}

.site-footer-bottom-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 30px;
  align-items: center;
}

.site-footer-bottom-disclaimer {
  line-height: 1.5;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding-right: 30px;
}

.site-footer-bottom-copyright {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer-bottom-copyright-links {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}

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

@media (max-width: 992px) {
  .site-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .site-footer-bottom-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .site-footer-bottom-disclaimer {
    border-right: none;
    padding-right: 0;
  }
  .site-footer-bottom-copyright {
    text-align: center;
  }
  .site-footer-bottom-copyright-links {
    justify-content: center;
  }
}

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

/* ==========================================================================
   FLOATING ACTION WIDGETS - .floating-*
   ========================================================================== */
.floating-widgets-container {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 150;
  pointer-events: none;
}

.floating-widget-btn {
  pointer-events: auto;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  transition: var(--transition-normal);
  color: var(--white);
  position: relative;
}

.floating-widget-btn:hover {
  transform: translateY(-4px) scale(1.05);
}

.floating-widget-call {
  background-color: var(--accent);
  box-shadow: 0 4px 15px rgba(255, 159, 28, 0.4);
}

.floating-widget-call svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.floating-widget-whatsapp {
  background-color: #25D366;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.floating-widget-whatsapp svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.floating-scroll-up {
  position: fixed;
  bottom: 90px;
  right: 24px;
  background-color: var(--primary);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
  z-index: 140;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-scroll-up.active {
  opacity: 1;
  visibility: visible;
}

.floating-scroll-up svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS - .reveal-*
   ========================================================================== */
.reveal-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), 
              transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.reveal-fade-left {
  opacity: 0;
  transform: translateX(-35px);
  transition: opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), 
              transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.reveal-fade-right {
  opacity: 0;
  transform: translateX(35px);
  transition: opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), 
              transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.reveal-active {
  opacity: 1;
  transform: translate(0);
}

/* Delay modifiers */
.reveal-delay-100 { transition-delay: 100ms; }
.reveal-delay-200 { transition-delay: 200ms; }
.reveal-delay-300 { transition-delay: 300ms; }
.reveal-delay-400 { transition-delay: 400ms; }
.reveal-delay-500 { transition-delay: 500ms; }

/* Micro-interactions & animations */
.pulse-animation {
  animation: pulseButton 2s infinite;
}

@keyframes pulseButton {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 159, 28, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 159, 28, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 159, 28, 0);
  }
}

/* ==========================================================================
   PAGE BANNER SECTION - .page-banner-*
   ========================================================================== */
.page-banner-wrapper {
  background: linear-gradient(135deg, rgba(15, 32, 66, 0.9), rgba(19, 64, 116, 0.85)), url('../images/page-banner.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 70px 0;
  color: var(--white);
  text-align: center;
  border-bottom: 3px solid var(--accent);
}

.page-banner-title {
  font-size: 40px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}

.page-banner-breadcrumb {
  font-size: 14px;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 1px;
}

.page-banner-breadcrumb a {
  color: var(--white);
}

.page-banner-breadcrumb a:hover {
  color: var(--accent);
}

/* ==========================================================================
   APPLIANCE BANNER SECTION - .appliance-banner-*
   ========================================================================== */
.appliance-banner-wrapper {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0 80px 0;
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

/* Specific background images with fallback overlay */
.appliance-banner-wrapper.washing-machine-banner {
  background-image: url('../images/slider1.jpg');
}

.appliance-banner-wrapper.microwave-banner {
  background-image: url('../images/slider2.jpg');
}

.appliance-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(10, 20, 40, 0.82) 0%, rgba(10, 20, 40, 0.9) 100%);
  z-index: 1;
}

.appliance-banner-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.appliance-banner-content {
  width: 100%;
  max-width: 900px;
}

.appliance-banner-title {
  font-size: 52px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 15px;
  opacity: 0;
  animation: bannerFadeInDown 0.8s ease-out forwards;
}

.appliance-banner-title span {
  color: var(--accent);
}

.appliance-banner-subtitle {
  font-size: 20px;
  color: #E2E8F0;
  margin-bottom: 40px;
  font-weight: 500;
  opacity: 0;
  animation: bannerFadeInUp 0.8s 0.2s ease-out forwards;
}

/* Glassmorphic Grid */
.appliance-banner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
  margin-bottom: 40px;
}

.banner-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--border-radius);
  padding: 24px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
  opacity: 0;
  animation: bannerFadeInUp 0.8s ease-out forwards;
}

/* Hover effects */
.banner-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 159, 28, 0.15);
  border-color: rgba(255, 159, 28, 0.4);
}

.banner-card-icon {
  width: 32px;
  height: 32px;
  color: var(--accent);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-card-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.banner-card-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}

/* Sequential Animations for Cards */
.banner-card:nth-child(1) { animation-delay: 0.4s; }
.banner-card:nth-child(2) { animation-delay: 0.5s; }
.banner-card:nth-child(3) { animation-delay: 0.6s; }
.banner-card:nth-child(4) { animation-delay: 0.7s; }

/* Call CTA Button */
.appliance-banner-actions {
  opacity: 0;
  animation: bannerFadeInUp 0.8s 0.9s ease-out forwards;
}

.banner-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--accent);
  color: #0A1428;
  font-size: 18px;
  font-weight: 700;
  padding: 15px 36px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(255, 159, 28, 0.4);
  transition: var(--transition-normal);
  animation: pulseGlow 2s infinite;
}

.banner-call-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.banner-call-btn:hover {
  background-color: var(--accent-hover);
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 159, 28, 0.6);
  color: #000;
}

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

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

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 159, 28, 0.5);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 159, 28, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 159, 28, 0);
  }
}

/* Responsive Styles */
@media (max-width: 992px) {
  .appliance-banner-title {
    font-size: 40px;
  }
  .appliance-banner-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
  }
  .appliance-banner-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 0 20px;
  }
  .appliance-banner-wrapper {
    padding: 80px 0 60px 0;
  }
}

@media (max-width: 576px) {
  .appliance-banner-title {
    font-size: 30px;
  }
  .appliance-banner-subtitle {
    font-size: 15px;
    margin-bottom: 25px;
  }
  .appliance-banner-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0;
  }
  .banner-card {
    padding: 16px 10px;
    border-radius: 8px;
  }
  .banner-card-icon {
    width: 26px;
    height: 26px;
    margin-bottom: 8px;
  }
  .banner-card-text {
    font-size: 12px;
  }
  .banner-call-btn {
    font-size: 16px;
    padding: 12px 30px;
  }
  .appliance-banner-wrapper {
    padding: 60px 0 50px 0;
  }
}
