/* ==========================================================================
   MD AZARUDDIN COOLING & HOME APPLIANCE REPAIR
   Master Design System & Stylesheet
   ========================================================================== */

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

:root {
  /* Brand Color Palette */
  --primary: #0256c4;
  --primary-dark: #003b8a;
  --primary-deep: #061e47;
  --primary-light: #eaf2fd;
  --primary-gradient: linear-gradient(135deg, #0256c4 0%, #0084ff 100%);
  --secondary: #00b4d8;
  --secondary-light: #e0f7fa;
  --accent: #ff7a00;
  --accent-hover: #e06600;
  --accent-gradient: linear-gradient(135deg, #ff9500 0%, #ff5e00 100%);
  --whatsapp: #25d366;
  --whatsapp-dark: #128c7e;
  --whatsapp-gradient: linear-gradient(135deg, #25d366 0%, #128c7e 100%);

  /* Neutrals & Dark Shades */
  --dark: #0f172a;
  --dark-surface: #1e293b;
  --dark-border: #334155;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --bg-card: #ffffff;
  --border-light: #e2e8f0;
  --border-subtle: #f1f5f9;

  /* Status Colors */
  --success: #10b981;
  --success-light: #d1fae5;
  --warning: #f59e0b;
  --danger: #ef4444;
  --info: #3b82f6;

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-sans: 'Inter', sans-serif;

  /* Shadows & Elevations */
  --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 2px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 6px 16px -2px rgba(2, 86, 196, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 14px 28px -5px rgba(2, 86, 196, 0.12), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 24px 48px -12px rgba(2, 86, 196, 0.18);
  --shadow-glow: 0 0 25px rgba(0, 132, 255, 0.35);
  --shadow-accent-glow: 0 8px 20px rgba(255, 122, 0, 0.35);
  --shadow-whatsapp-glow: 0 8px 20px rgba(37, 211, 102, 0.35);

  /* Transitions & Border Radius */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 9999px;
  --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--bg-light);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

button, input, select, textarea {
  font: inherit;
  outline: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.container-narrow {
  max-width: 900px;
}

.container-wide {
  max-width: 1360px;
}

/* ==========================================================================
   Utility Classes & Badges
   ========================================================================== */
.section-padding {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.section-padding-sm {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

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

.bg-slate {
  background-color: #f1f5f9;
}

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

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.section-header {
  margin-bottom: 3.5rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.85rem;
  border: 1px solid rgba(2, 86, 196, 0.15);
}

.section-tag.white-tag {
  background-color: rgba(255, 255, 255, 0.15);
  color: #38bdf8;
  border-color: rgba(255, 255, 255, 0.2);
}

.section-tag.accent-tag {
  background-color: #fff7ed;
  color: var(--accent);
  border-color: rgba(255, 122, 0, 0.2);
}

.section-title {
  font-size: 2.35rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.9rem;
}

.section-title.light {
  color: #ffffff;
}

.section-title span {
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.section-subtitle.light {
  color: #cbd5e1;
}

/* ==========================================================================
   Buttons & Interactive Elements
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  padding: 0.85rem 1.65rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary-gradient);
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(2, 86, 196, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(2, 86, 196, 0.45);
  color: #ffffff;
}

.btn-accent {
  background: var(--accent-gradient);
  color: #ffffff;
  box-shadow: var(--shadow-accent-glow);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255, 122, 0, 0.5);
  color: #ffffff;
}

.btn-whatsapp {
  background: var(--whatsapp-gradient);
  color: #ffffff;
  box-shadow: var(--shadow-whatsapp-glow);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.5);
  color: #ffffff;
}

.btn-call {
  background: #ffffff;
  color: var(--primary);
  border: 2px solid var(--primary);
}

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

.btn-outline-white {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}

.btn-outline-white:hover {
  background: #ffffff;
  color: var(--dark);
  border-color: #ffffff;
}

.btn-lg {
  padding: 1.05rem 2.2rem;
  font-size: 1.1rem;
  border-radius: var(--radius-md);
}

.btn-sm {
  padding: 0.55rem 1.15rem;
  font-size: 0.88rem;
  border-radius: var(--radius-sm);
}

.btn-pill {
  border-radius: var(--radius-pill);
}

.btn-icon-only {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
}

/* ==========================================================================
   Header & Top Navigation
   ========================================================================== */
.top-header {
  background-color: var(--primary-deep);
  color: #e2e8f0;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.45rem 0;
}

.top-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.top-contact-list {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #cbd5e1;
  font-weight: 500;
}

.top-contact-item svg {
  width: 15px;
  height: 15px;
  color: var(--secondary);
}

.top-contact-item a:hover {
  color: #ffffff;
}

.top-right-meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.emergency-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background-color: rgba(255, 122, 0, 0.2);
  color: #ffaa40;
  border: 1px solid rgba(255, 122, 0, 0.4);
  padding: 0.18rem 0.65rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
}

.emergency-pill .pulse-dot {
  width: 7px;
  height: 7px;
  background-color: #ff7a00;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

/* Main Navigation Bar */
.main-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.main-header.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 30px rgba(2, 86, 196, 0.08);
}

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

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.brand-logo-img {
  height: 48px;
  max-width: 220px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.05);
}

.footer-brand-logo-img {
  height: 50px;
  max-width: 230px;
  width: auto;
  object-fit: contain;
  background: #ffffff;
  padding: 6px 12px;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}

.footer-brand-logo-img:hover {
  transform: scale(1.04);
}

.logo-badge {
  width: 48px;
  height: 48px;
  background: var(--primary-gradient);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 900;
  font-family: var(--font-heading);
  box-shadow: 0 4px 12px rgba(2, 86, 196, 0.3);
}

.logo-badge .logo-letters {
  font-size: 1.35rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.logo-badge .logo-sub {
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  opacity: 0.9;
  text-transform: uppercase;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.brand-name span {
  color: var(--accent);
}

.brand-tagline {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Navigation Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--text-main);
  padding: 0.5rem 0.2rem;
  position: relative;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

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

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  border-radius: var(--radius-pill);
}

/* Dropdown Menu */
.nav-dropdown {
  position: relative;
}

.dropdown-toggle svg {
  width: 14px;
  height: 14px;
  transition: var(--transition);
}

.nav-dropdown:hover .dropdown-toggle svg {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -20px;
  width: 290px;
  background: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
  padding: 0.75rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: var(--transition);
  z-index: 100;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1.15rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-main);
  transition: var(--transition);
}

.dropdown-item svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  transition: var(--transition);
}

.dropdown-item:hover {
  background-color: var(--primary-light);
  color: var(--primary);
  padding-left: 1.4rem;
}

.dropdown-item:hover svg {
  transform: scale(1.15);
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.btn-nav-call {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--primary-light);
  color: var(--primary);
  border: 1.5px solid rgba(2, 86, 196, 0.2);
  padding: 0.55rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 700;
}

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

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--dark);
  border-radius: 3px;
  transition: var(--transition);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  background: linear-gradient(170deg, #f0f7ff 0%, #ffffff 60%, #e6f3ff 100%);
  padding: 4.5rem 0 5rem;
  overflow: hidden;
  border-bottom: 1px solid var(--border-light);
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.shape-1 {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.18) 0%, rgba(2, 86, 196, 0) 70%);
  border-radius: 50%;
  filter: blur(40px);
}

.shape-2 {
  position: absolute;
  bottom: -15%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(2, 86, 196, 0.12) 0%, rgba(255, 122, 0, 0) 70%);
  border-radius: 50%;
  filter: blur(50px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
}

.hero-badge-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #ffffff;
  border: 1px solid rgba(2, 86, 196, 0.2);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
  box-shadow: var(--shadow-xs);
}

.hero-badge svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
}

.hero-badge.star-rating {
  background: #fffbeb;
  border-color: #fde68a;
  color: #b45309;
}

.hero-title {
  font-size: 3.25rem;
  font-weight: 900;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 1.2rem;
  letter-spacing: -0.03em;
}

.hero-title .highlight-blue {
  color: var(--primary);
  background: linear-gradient(135deg, #0256c4, #0099ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title .highlight-accent {
  color: var(--accent);
}

.hero-desc {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.2rem;
}

.hero-features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem 1.5rem;
  border-top: 1px solid var(--border-light);
  padding-top: 1.5rem;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--dark-surface);
}

.hero-feature-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--success-light);
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-feature-icon svg {
  width: 14px;
  height: 14px;
}

/* Hero Media & Floating Elements */
.hero-media-wrapper {
  position: relative;
}

.hero-image-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 6px solid #ffffff;
  background: #ffffff;
  transition: var(--transition-smooth);
}

.hero-image-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(2, 86, 196, 0.2);
}

.hero-image-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

/* Floating Stats Badges */
.floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  z-index: 2;
  animation: float 4s ease-in-out infinite;
}

.badge-top-left {
  top: 6%;
  left: -8%;
  animation-delay: 0s;
}

.badge-bottom-right {
  bottom: 8%;
  right: -6%;
  animation-delay: 2s;
}

.floating-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-blue {
  background: var(--primary-light);
  color: var(--primary);
}

.icon-accent {
  background: #fff7ed;
  color: var(--accent);
}

.floating-text .stat-num {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.1;
}

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

/* ==========================================================================
   Trust Strip / Value Banner
   ========================================================================== */
.trust-strip {
  background: var(--primary-deep);
  color: #ffffff;
  padding: 1.5rem 0;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.2);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.trust-icon-box {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #38bdf8;
  flex-shrink: 0;
}

.trust-icon-box svg {
  width: 22px;
  height: 22px;
}

.trust-content h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.15rem;
}

.trust-content p {
  font-size: 0.78rem;
  color: #cbd5e1;
  line-height: 1.2;
}

/* ==========================================================================
   Services Grid & Cards (Enhanced Padding & Micro-Interactions)
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2.25rem;
}

.service-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(2, 86, 196, 0.08);
  overflow: hidden;
  box-shadow: 0 4px 20px -2px rgba(2, 86, 196, 0.06), 0 2px 6px -1px rgba(0, 0, 0, 0.04);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.008);
  box-shadow: 0 22px 45px -10px rgba(2, 86, 196, 0.16), 0 0 0 1.5px rgba(2, 86, 196, 0.2);
  border-color: rgba(2, 86, 196, 0.25);
}

.service-thumb {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
}

.service-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

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

.service-badge-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}

.service-card:hover .service-badge-tag {
  transform: scale(1.04);
}

.service-price-tag {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: var(--primary-gradient);
  color: #ffffff;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: 0 6px 16px rgba(2, 86, 196, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover .service-price-tag {
  transform: scale(1.06);
  box-shadow: 0 8px 20px rgba(2, 86, 196, 0.5);
}

/* Service Card Writing Content Body with Generous Padding & Hierarchy */
.service-body {
  padding: 1.85rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-header-row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 0.95rem;
}

.service-icon-bubble {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(2, 86, 196, 0.12);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.3s ease;
}

.service-card:hover .service-icon-bubble {
  transform: scale(1.12) rotate(6deg);
  background: var(--primary);
  color: #ffffff;
}

.service-icon-bubble svg {
  width: 22px;
  height: 22px;
}

.service-card-title {
  font-size: 1.32rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.28;
  letter-spacing: -0.015em;
}

.service-card-title a {
  color: inherit;
  transition: color 0.2s ease;
}

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

.service-desc {
  font-size: 0.94rem;
  color: #475569;
  line-height: 1.68;
  margin-bottom: 1.35rem;
  padding-bottom: 0.4rem;
}

.service-features {
  margin-bottom: 1.65rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  background: #f8fafc;
  padding: 0.95rem 1.15rem;
  border-radius: 12px;
  border: 1px solid #f1f5f9;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: #1e293b;
  line-height: 1.4;
}

.service-features li svg {
  width: 16px;
  height: 16px;
  color: #10b981;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.service-card:hover .service-features li svg {
  transform: scale(1.15);
}

.service-footer-actions {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-light);
}

/* ==========================================================================
   How It Works (Process Timeline)
   ========================================================================== */
.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.how-step-card {
  background: #ffffff;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.how-step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(2, 86, 196, 0.25);
}

.step-num-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-gradient);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(255, 122, 0, 0.4);
}

.step-icon-box {
  width: 70px;
  height: 70px;
  margin: 0.75rem auto 1.25rem;
  border-radius: 18px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.how-step-card:hover .step-icon-box {
  background: var(--primary-gradient);
  color: #ffffff;
  transform: scale(1.08);
}

.step-icon-box svg {
  width: 34px;
  height: 34px;
}

.step-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.step-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   Why Choose Us Section
   ========================================================================== */
.why-choose-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.why-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.why-feature-box {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.why-feature-box:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.why-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.why-icon-wrap svg {
  width: 24px;
  height: 24px;
}

.why-feature-box h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--dark);
}

.why-feature-box p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.why-media-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 6px solid #ffffff;
}

.why-media-card img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.why-highlight-pill {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(12px);
  color: #ffffff;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.why-highlight-pill .pill-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--secondary);
  font-family: var(--font-heading);
}

.why-highlight-pill .pill-text {
  font-size: 0.85rem;
  color: #cbd5e1;
}

/* ==========================================================================
   Brands We Service Section
   ========================================================================== */
.brands-section {
  background-color: #ffffff;
  padding: 3.5rem 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.brands-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 2.5rem;
}

.brand-badge-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--dark-surface);
  letter-spacing: 0.02em;
  transition: var(--transition);
}

.brand-badge-item:hover {
  background: var(--primary-light);
  color: var(--primary);
  border-color: rgba(2, 86, 196, 0.3);
  transform: translateY(-2px);
}

/* ==========================================================================
   Rate Card / Transparent Pricing Section
   ========================================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.75rem;
}

.price-box {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.price-box.featured-price {
  border: 2px solid var(--primary);
  position: relative;
  box-shadow: var(--shadow-lg);
}

.price-box.featured-price::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -13px;
  right: 20px;
  background: var(--accent-gradient);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.2rem 0.75rem;
  border-radius: var(--radius-pill);
  letter-spacing: 0.05em;
}

.price-header {
  margin-bottom: 1.25rem;
}

.price-header h3 {
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.price-amount .currency {
  font-size: 1.3rem;
}

.price-amount .unit {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.price-list {
  margin: 1.25rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-grow: 1;
}

.price-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-main);
}

.price-list li svg {
  width: 16px;
  height: 16px;
  color: var(--success);
  flex-shrink: 0;
}

/* ==========================================================================
   Reviews / Testimonials
   ========================================================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.75rem;
}

.review-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(2, 86, 196, 0.2);
}

.review-stars {
  display: flex;
  gap: 0.25rem;
  color: #ffb800;
  margin-bottom: 1rem;
}

.review-stars svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

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

.review-author-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1rem;
}

.author-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
}

.author-info p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--success);
  background: var(--success-light);
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-pill);
}

/* ==========================================================================
   Service Areas & Locality Finder
   ========================================================================== */
.locality-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.locality-search-bar {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.search-input-wrap {
  position: relative;
  flex-grow: 1;
}

.search-input-wrap svg {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--text-muted);
}

.search-input-wrap input {
  width: 100%;
  padding: 0.85rem 1rem 0.85rem 2.8rem;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  background: #ffffff;
  transition: var(--transition);
}

.search-input-wrap input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(2, 86, 196, 0.15);
}

.locality-chips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.locality-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.1rem;
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark-surface);
  transition: var(--transition);
}

.locality-chip:hover {
  background: var(--primary-light);
  color: var(--primary);
  border-color: var(--primary);
}

.locality-chip svg {
  width: 14px;
  height: 14px;
  color: var(--primary);
}

/* ==========================================================================
   Booking Form & Interactive Wizard
   ========================================================================== */
.booking-section-wrapper {
  background: linear-gradient(135deg, #061e47 0%, #003b8a 100%);
  color: #ffffff;
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.booking-form-card {
  background: #ffffff;
  color: var(--text-main);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-xl);
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark);
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.15rem;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--dark);
  background-color: #ffffff;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(2, 86, 196, 0.15);
}

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

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

.faq-item {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
}

.faq-item.active {
  border-color: rgba(2, 86, 196, 0.3);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}

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

.faq-chevron {
  width: 20px;
  height: 20px;
  color: var(--primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.5rem;
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding: 0 1.5rem 1.35rem 1.5rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background-color: var(--primary-deep);
  color: #cbd5e1;
  padding-top: 4.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand h3 {
  color: #ffffff;
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #94a3b8;
  margin-bottom: 1.5rem;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
}

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

.footer-links a {
  color: #94a3b8;
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: #38bdf8;
  transform: translateX(4px);
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: #cbd5e1;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.85rem;
  color: #94a3b8;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ==========================================================================
   Sticky Bottom Mobile Action Bar (Mobile-First CTA)
   ========================================================================== */
.mobile-sticky-action-bar {
  display: none; /* Controlled in responsive.css */
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-light);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
  z-index: 9999;
  padding: 0.65rem 0.85rem;
}

.mobile-action-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1.35fr;
  gap: 0.55rem;
}

.mobile-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.75rem 0.5rem;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}

.mobile-btn-call {
  background: #0256c4;
  color: #ffffff;
}

.mobile-btn-whatsapp {
  background: #25d366;
  color: #ffffff;
}

.mobile-btn-book {
  background: var(--accent-gradient);
  color: #ffffff;
}

/* ==========================================================================
   Detail / Individual Service Page Components
   ========================================================================== */
.page-hero {
  background: linear-gradient(135deg, #061e47 0%, #0256c4 100%);
  color: #ffffff;
  padding: 4.5rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #93c5fd;
  margin-bottom: 1rem;
}

.breadcrumb-nav a {
  color: #cbd5e1;
}

.breadcrumb-nav a:hover {
  color: #ffffff;
}

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

.detail-card-box {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  padding: 2.2rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
}

.detail-card-box h3 {
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.symptoms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}

.symptom-item {
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1rem 1.15rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.symptom-icon {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.symptom-item h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.2rem;
}

.symptom-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.service-rate-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.service-rate-table th {
  background: #f1f5f9;
  text-align: left;
  padding: 0.85rem 1.15rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark);
  border-bottom: 2px solid var(--border-light);
}

.service-rate-table td {
  padding: 0.95rem 1.15rem;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-main);
}

.service-rate-table tr:hover td {
  background-color: var(--primary-light);
}

.rate-badge {
  font-weight: 800;
  color: var(--primary);
  font-family: var(--font-heading);
}

/* Sidebar Sticky Widget */
.sidebar-sticky-widget {
  position: sticky;
  top: 96px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

.sidebar-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

/* Modal Styling */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(6px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

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

.modal-box {
  background: #ffffff;
  border-radius: var(--radius-xl);
  max-width: 580px;
  width: 100%;
  padding: 2.5rem;
  box-shadow: var(--shadow-xl);
  position: relative;
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

.modal-overlay.active .modal-box {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f1f5f9;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  font-size: 1.2rem;
}

.modal-close-btn:hover {
  background: #e2e8f0;
}
