/* ==========================================================================
   SERVORA / HOME APPLIANCE REPAIR PLATFORM — CORE STYLESHEET
   ========================================================================== */

@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');

:root {
  /* Brand Color Palette */
  --primary: #1E3A8A;
  /* Deep Service Blue */
  --primary-hover: #1D4ED8;
  --primary-light: #EFF6FF;
  --accent: #06B6D4;
  /* Electric Cyan */
  --accent-amber: #F59E0B;
  /* Trust Amber */
  --accent-green: #10B981;
  /* Success Green */

  /* Neutral Palette */
  --bg-body: #F8FAFC;
  --bg-surface: #FFFFFF;
  --bg-subtle: #F1F5F9;
  --border-color: #E2E8F0;
  --border-hover: #CBD5E1;

  /* Typography Colors */
  --text-main: #0F172A;
  --text-muted: #475569;
  --text-light: #64748B;
  --text-inverse: #FFFFFF;

  /* Fonts */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Elevative Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

  /* Layout & Spacing */
  --site-header-height: 104px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --container-max: 1280px;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

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

ul,
ol {
  list-style: none;
}

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

/* Page Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* HOME 1 — NEW TRUST, SMART CARE & EXPERTISE SECTIONS */
.fx-trust-section {
  background: var(--bg-surface);
}

.fx-trust-layout {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

.fx-trust-media {
  position: relative;
  padding: 0 0 2rem 2rem;
}

.fx-trust-media::before {
  content: "";
  position: absolute;
  inset: 2rem 2rem 0 0;
  border: 2px solid var(--accent);
  z-index: 0;
}

.fx-trust-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
}

.fx-trust-note {
  position: absolute;
  z-index: 2;
  right: -1rem;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: 1rem 1.15rem;
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-lg);
  font-weight: 700;
}

.fx-trust-note i {
  color: var(--accent);
  font-size: 1.25rem;
}

.fx-trust-copy h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin: .5rem 0 1rem;
  max-width: 560px;
}

.fx-trust-copy>p {
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 1.8rem;
}

.fx-trust-highlights {
  display: grid;
  gap: 1rem;
}

.fx-trust-highlights>div {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border-color);
}

.fx-trust-highlights i {
  color: var(--accent-green);
  width: 1.4rem;
  padding-top: .25rem;
}

.fx-trust-highlights span {
  color: var(--text-muted);
  font-size: .92rem;
}

.fx-trust-highlights strong {
  display: block;
  color: var(--text-main);
  margin-bottom: .15rem;
}

.fx-smart-section {
  background: var(--bg-subtle);
}

.fx-smart-layout {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 2rem;
  align-items: stretch;
}

.fx-smart-tabs {
  display: grid;
  gap: .75rem;
}

.fx-smart-tab {
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  text-align: left;
  gap: .1rem .8rem;
  padding: 1.2rem;
  border: 1px solid var(--border-color);
  background: var(--bg-surface);
  cursor: pointer;
  transition: transform var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast);
}

.fx-smart-tab:hover,
.fx-smart-tab.is-active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateX(6px);
}

.fx-smart-tab i {
  grid-row: span 2;
  color: var(--accent);
  font-size: 1.2rem;
  padding-top: .2rem;
}

.fx-smart-tab span {
  font-family: var(--font-heading);
  font-weight: 700;
}

.fx-smart-tab small {
  color: var(--text-muted);
}

.fx-smart-tab:hover small,
.fx-smart-tab.is-active small {
  color: #dbeafe;
}

.fx-smart-preview {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  min-height: 360px;
  background: var(--bg-surface);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.fx-smart-preview img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  transition: opacity var(--transition-fast);
}

.fx-smart-preview>div {
  padding: clamp(1.5rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fx-smart-kicker {
  color: var(--accent);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.fx-smart-preview h3 {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  margin: .6rem 0 .8rem;
}

.fx-smart-preview p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.fx-smart-preview .btn {
  align-self: flex-start;
}

.fx-expertise-section {
  min-height: 520px;
  background: url('../images/telecallling.jpg') center/cover;
}

.fx-expertise-overlay {
  min-height: 520px;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, rgba(8, 20, 43, .95), rgba(8, 20, 43, .35));
  color: #fff;
}

.fx-expertise-content {
  max-width: 760px;
  margin-left: max(1.5rem, calc((100vw - 1280px) / 2));
}

.fx-expertise-content h2 {
  color: #fff;
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin: .5rem 0 1rem;
}

.fx-expertise-content p {
  color: #dbeafe;
  max-width: 600px;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

@media (max-width: 900px) {

  .fx-trust-layout,
  .fx-smart-layout {
    grid-template-columns: 1fr;
  }

  .fx-trust-media {
    max-width: 680px;
    width: 100%;
    margin: 0 auto;
  }

  .fx-smart-tabs {
    grid-template-columns: repeat(3, 1fr);
  }

  .fx-smart-tab {
    padding: 1rem;
  }

  .fx-smart-tab:hover,
  .fx-smart-tab.is-active {
    transform: translateY(-4px);
  }
}

@media (max-width: 600px) {
  .fx-trust-media {
    padding-left: 1rem;
  }

  .fx-trust-media img {
    height: 330px;
  }

  .fx-trust-note {
    right: 0;
    font-size: .82rem;
  }

  .fx-smart-tabs {
    grid-template-columns: 1fr;
  }

  .fx-smart-preview {
    grid-template-columns: 1fr;
  }

  .fx-smart-preview img {
    min-height: 210px;
    height: 210px;
  }

  .fx-smart-preview>div {
    min-height: 280px;
  }

  .fx-expertise-section,
  .fx-expertise-overlay {
    min-height: 480px;
  }

  .fx-expertise-content {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }
}

/* --------------------------------------------------------------------------
   PAGE LOADER
   -------------------------------------------------------------------------- */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--bg-surface);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid var(--primary-light);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-top: 1rem;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

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

.header-topbar {
  width: 100%;
  background-color: var(--primary);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.35rem 0;
  z-index: 10000;
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
  box-sizing: border-box;
}

.topbar-info {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.topbar-info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.9;
}

.topbar-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-main {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  z-index: 9999;
  padding: 0;
  transition: all var(--transition-fast);
}

.site-header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
}

body:not(.dashboard-page):not(.auth-page) {
  padding-top: var(--site-header-height, 104px);
}

body.dashboard-page,
body.auth-page {
  padding-top: 0 !important;
}

/* Ensure first hero section starts directly below fixed header with zero top gap or margin */
main>section:first-child,
main>div:first-child,
.hero-section,
.page-hero,
.h2-hero {
  margin-top: 0 !important;
}

.site-header-wrapper .header-main {
  position: relative;
  top: auto;
}

/* Dashboard header: compact portal chrome inspired by the reference layout. */
.dashboard-page .header-topbar {
  display: none;
}

.dashboard-page .dashboard-header {
  min-height: 64px;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 3px 14px rgba(15, 23, 42, .06);
}

.dashboard-page .dashboard-header .header-container {
  height: 64px;
  max-width: none;
  padding: 0 1.5rem;
  gap: .85rem;
}

.dashboard-menu-toggle {
  display: flex;
  flex-shrink: 0;
  width: 26px;
  height: 22px;
}

.dashboard-menu-toggle .hamburger-bar {
  height: 2px;
}

.dashboard-header .brand-logo {
  font-size: 1.18rem;
}

.dashboard-header-badge {
  padding: .35rem .75rem;
  border: 1px solid rgba(6, 182, 212, .35);
  border-radius: var(--radius-full);
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: .7rem;
  font-weight: 700;
  white-space: nowrap;
}

.dashboard-header-nav {
  display: none;
}

.dashboard-header-actions {
  margin-left: auto;
  gap: .55rem;
}

.dashboard-header-actions .icon-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
}

.dashboard-notification {
  position: relative;
}

.dashboard-notification span {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: var(--radius-full);
  background: var(--accent-amber);
  color: #fff;
  font-size: .62rem;
  line-height: 16px;
}

.dashboard-profile {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  min-height: 38px;
  padding: .25rem .7rem .25rem .3rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  color: var(--text-main);
  font-family: var(--font-heading);
  font-size: .8rem;
  font-weight: 600;
}

.dashboard-profile:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.dashboard-profile-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: .68rem;
}

.dashboard-profile>i {
  color: var(--text-muted);
  font-size: .62rem;
}

html.dark-mode .dashboard-page .dashboard-header {
  background: var(--bg-surface);
  box-shadow: 0 3px 14px rgba(0, 0, 0, .18);
}

.header-main.scrolled {
  box-shadow: var(--shadow-md);
  background-color: rgba(255, 255, 255, 0.98);
}

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

  margin: 0 auto;

  width: 100%;
  box-sizing: border-box;
  gap: 1rem;
}

/* Logo System */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.01em;
  flex-shrink: 0;
}

.brand-logo-icon {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  color: #FFFFFF;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 3px 8px rgba(30, 58, 138, 0.2);
  flex-shrink: 0;
}

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

/* Desktop Nav */
.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex: 1;
  margin: 0 1rem;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-dropdown-toggle i {
  font-size: .7rem;
  margin-left: .25rem;
  transition: transform var(--transition-fast);
}

.nav-dropdown.open .nav-dropdown-toggle i {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + .75rem);
  left: 50%;
  min-width: 145px;
  padding: .4rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -.5rem);
  transition: all var(--transition-fast);
  z-index: 20;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-dropdown-item {
  display: block;
  padding: .5rem .75rem;
  color: var(--text-main);
  font-family: var(--font-heading);
  font-size: .825rem;
  font-weight: 500;
  white-space: nowrap;
  border-radius: var(--radius-sm);
}

.nav-dropdown-item:hover,
.nav-dropdown-item.active {
  color: var(--primary);
  background: var(--bg-subtle);
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--text-main);
  padding: 0.35rem 0;
  position: relative;
  letter-spacing: 0.01em;
}

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

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

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

/* Actions & Buttons */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.header-actions .btn {
  padding: 0.45rem 0.95rem;
  font-size: 0.825rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--transition-fast);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.25);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(30, 58, 138, 0.35);
}

.btn-secondary {
  background-color: var(--bg-surface);
  color: var(--text-main);
  border-color: var(--border-color);
}

.btn-secondary:hover {
  background-color: var(--bg-subtle);
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.btn-accent {
  background-color: var(--accent);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
}

.btn-accent:hover {
  background-color: #0891B2;
  transform: translateY(-2px);
}

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

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

.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: var(--bg-surface);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

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

/* Mobile Hamburger & Overlay Menu */
.hamburger-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 10001;
}

.hamburger-bar {
  width: 100%;
  height: 3px;
  background-color: var(--text-main);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--bg-surface);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-drawer.open {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 2rem;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
}

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

.mobile-nav-dropdown-toggle {
  width: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.mobile-nav-dropdown-toggle i {
  transition: transform var(--transition-fast);
}

.mobile-nav-dropdown.open .mobile-nav-dropdown-toggle i {
  transform: rotate(180deg);
}

.mobile-nav-submenu {
  display: none;
  padding: .25rem 0 .25rem 1.25rem;
  border-left: 2px solid var(--primary-light);
}

.mobile-nav-dropdown.open .mobile-nav-submenu {
  display: block;
}

.mobile-nav-submenu .mobile-nav-link {
  font-size: 1rem;
  padding: .45rem 0;
}

.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: auto;
}

/* --------------------------------------------------------------------------
   HERO SECTIONS
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  padding: 3rem 0 4.5rem;
  background: linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: rgba(30, 58, 138, 0.08);
  color: var(--primary);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-title highlight {
  color: var(--primary);
  background: linear-gradient(120deg, rgba(30, 58, 138, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
  padding: 0 0.2em;
  border-radius: 4px;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

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

.trust-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.trust-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-main);
}

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

.hero-image-wrapper {
  position: relative;
}

.hero-main-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.hero-float-card {
  position: absolute;
  background: var(--bg-surface);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 10;
  border: 1px solid var(--border-color);
}

.hero-float-card.card-1 {
  top: 10%;
  left: -20px;
}

.hero-float-card.card-2 {
  bottom: 10%;
  right: -20px;
}

.float-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background-color: #ECFDF5;
  color: var(--accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

/* Premium Hero Banner (Inner pages) */
.page-hero {
  position: relative;
  padding: 3.25rem 0 4rem;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #FFFFFF;
  overflow: hidden;
  box-sizing: border-box;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.92) 0%, rgba(30, 58, 138, 0.88) 55%, rgba(6, 182, 212, 0.75) 100%);
  z-index: 1;
}

.page-hero::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.25) 0%, transparent 60%);
  pointer-events: none;
  z-index: 2;
}

.page-hero>.container {
  position: relative;
  z-index: 3;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.825rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.breadcrumb a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.breadcrumb a:hover {
  color: #FFFFFF;
}

.page-hero h1 {
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.page-hero p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 640px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Page-specific hero background image modifiers */
.page-hero-services {
  background-image: url('../images/kitchen_repair.jpg');
}

.page-hero-service-details {
  background-image: url('../images/ac_tech.jpg');
}

.page-hero-how-it-works {
  background-image: url('../images/laundry_repair.jpg');
}

.page-hero-pricing {
  background-image: url('../images/banner_pricing.jpg');
}

.page-hero-testimonials {
  background-image: url('../images/tech_portrait.jpg');
}

.page-hero-about {
  background-image: url('../images/banner_about.jpg');
}

.page-hero-contact {
  background-image: url('../images/banner_contact.jpg');
}

.page-hero-repair-request {
  background-image: url('../images/washer_tech.jpg');
}

.page-hero-repair-details {
  background-image: url('../images/kitchen_repair.jpg');
}

.page-hero-tracking {
  background-image: url('../images/hero_tech.jpg');
}

.page-hero-coming-soon {
  background-image: url('../images/banner_about.jpg');
}

.page-hero-404 {
  background-image: url('../images/banner_contact.jpg');
}

.services-cta-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: var(--primary);
  background-image: linear-gradient(135deg, rgba(15, 23, 42, 0.86), rgba(30, 58, 138, 0.78)), url('../images/kitchen_repair.jpg');
  background-position: center;
  background-size: cover;
  color: #FFFFFF;
  text-align: center;
}

.services-cta-section>.container {
  position: relative;
  z-index: 1;
}

/* --------------------------------------------------------------------------
   TESTIMONIALS SECTIONS (3 UNIQUE DESIGNS)
   -------------------------------------------------------------------------- */

/* SECTION 1 — FEATURED REVIEW SLIDER */
.featured-slider-section {
  position: relative;
  background-image: url('../images/laundry_repair.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #FFFFFF;
}

.featured-slider-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.94) 0%, rgba(30, 58, 138, 0.90) 60%, rgba(6, 182, 212, 0.82) 100%);
  z-index: 1;
}

.featured-slider-section>.container {
  position: relative;
  z-index: 2;
}

.featured-slider-section .section-title,
.featured-slider-section .section-subtitle {
  color: #FFFFFF;
}

.featured-testimonial-slider-wrapper {
  max-width: 960px;
  margin: 2.5rem auto 0;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  padding: 2.5rem 3rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.featured-testimonial-slider {
  position: relative;
  min-height: 240px;
}

.testimonial-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.testimonial-slide.active {
  display: block;
  opacity: 1;
}

.testimonial-slide-content {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.slide-reviewer-img-box {
  position: relative;
  flex-shrink: 0;
}

.slide-reviewer-img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--accent);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.slide-reviewer-img-box .verified-badge {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-green);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.slide-reviewer-body {
  flex: 1;
}

.stars-rating {
  color: var(--accent-amber);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.stars-rating .rating-text {
  font-size: 0.875rem;
  color: #E2E8F0;
  font-weight: 700;
  margin-left: 0.75rem;
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  line-height: 1.6;
  font-style: italic;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.reviewer-info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.reviewer-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
}

.reviewer-location {
  font-size: 0.85rem;
  color: var(--accent);
  margin: 0.2rem 0 0;
}

.appliance-tag {
  background: rgba(6, 182, 212, 0.2);
  border: 1px solid rgba(6, 182, 212, 0.4);
  color: var(--accent);
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  font-size: 0.825rem;
  font-weight: 600;
}

/* Slider Controls */
.slider-controls-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.slider-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.slider-arrow:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #FFFFFF;
  transform: scale(1.08);
}

.slider-dots {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

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

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

/* SECTION 2 — MODERN TESTIMONIAL CARDS (What Our Customers Say) */
.cards-testimonial-section {
  background-color: var(--bg-surface);
}

.testimonial-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.modern-testimonial-card {
  background: var(--bg-body);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.modern-testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.card-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.card-reviewer-profile {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.card-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}

.card-reviewer-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  margin: 0;
}

.card-reviewer-location {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0.15rem 0 0;
}

.card-appliance-badge {
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--primary-light);
  color: var(--primary);
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}

.card-stars {
  color: var(--accent-amber);
  font-size: 1rem;
  margin-bottom: 1rem;
  display: flex;
  gap: 0.2rem;
}

.card-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-main);
  margin-bottom: 1.5rem;
  flex: 1;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
  font-size: 0.8rem;
}

.card-footer .verified-status {
  color: var(--accent-green);
  font-weight: 600;
}

.card-footer .review-date {
  color: var(--text-muted);
}

/* SECTION 3 — TRUSTED HOME REPAIR SERVICE */
.trusted-service-section {
  background-color: var(--bg-body);
}

.trust-highlights-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.trust-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

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

.trust-highlight-item h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}

.trust-highlight-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.trusted-testimonial-card-featured {
  background: linear-gradient(135deg, #1E3A8A 0%, #0F172A 100%);
  color: #FFFFFF;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.review-promise-section {
  background-color: var(--bg-surface);
}

.review-promise-image {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.review-promise-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.review-promise-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.review-promise-item>i {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--primary-light);
  color: var(--primary);
}

.review-promise-item h4 {
  margin-bottom: 0.2rem;
}

.review-promise-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.testimonials-cta-section {
  background-color: var(--primary);
  background-image: linear-gradient(135deg, rgba(30, 58, 138, 0.88), rgba(15, 23, 42, 0.9)), url('../images/hero_tech.jpg');
  background-position: center;
  background-size: cover;
  color: #FFFFFF;
}

.about-value-image {
  display: block;
  width: calc(100% + 2.5rem);
  height: 125px;
  margin: -1.75rem -1.25rem 1.25rem;
  object-fit: cover;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.about-difference-section {
  background: var(--bg-body);
}

.about-difference-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.about-difference-card {
  position: relative;
  padding: 2rem 1.75rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.about-difference-number {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  color: var(--text-light);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
}

.about-difference-card>i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1.25rem;
  border-radius: var(--radius-sm);
  background: var(--primary-light);
  color: var(--primary);
  font-size: 1.25rem;
}

.about-difference-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
}

.about-difference-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.about-cta-section {
  background-color: var(--primary);
  background-image: linear-gradient(135deg, rgba(30, 58, 138, 0.88), rgba(15, 23, 42, 0.9)), url('../images/hero_tech.jpg');
  background-position: center;
  background-size: cover;
  color: #FFFFFF;
  text-align: center;
}

.about-cta-section h2,
.about-cta-section p {
  color: #FFFFFF;
}

.featured-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.featured-user-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.featured-user-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent);
}

.featured-stars {
  color: var(--accent-amber);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}

.featured-quote-text {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  line-height: 1.6;
  font-style: italic;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
}

.featured-card-footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
}

.featured-metric strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent);
}

.featured-metric span {
  font-size: 0.75rem;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --------------------------------------------------------------------------
   SECTION STYLES & LAYOUT VARIATIONS
   -------------------------------------------------------------------------- */
.section-padding {
  padding: 5rem 0;
}

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

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

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

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

/* Horizontal Trust Strip (No Cards!) */
.trust-strip-section {
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 2.5rem 0;
}

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

.strip-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 0 1rem;
  border-right: 1px solid var(--border-color);
}

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

.strip-icon {
  font-size: 2rem;
  color: var(--primary);
  flex-shrink: 0;
}

.strip-text h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.strip-text p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Appliance Category Grid */
.appliances-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.services-appliances-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.appliance-tile {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  overflow: hidden;
}

.appliance-tile:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.appliance-image {
  display: block;
  width: calc(100% + 3rem);
  height: 150px;
  margin: -2rem -1.5rem 1.5rem;
  object-fit: cover;
  object-position: center center;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  transition: transform var(--transition-normal), filter var(--transition-normal);
  pointer-events: none;
}

.appliance-tile:hover .appliance-image {
  transform: scale(1.04);
  filter: saturate(1.08);
}

.tile-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
  transition: all var(--transition-fast);
}

.appliance-tile:hover .tile-icon {
  background-color: var(--primary);
  color: #FFFFFF;
}

.tile-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.tile-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.tile-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
}

/* Split Image + Vertical Feature Section */
.split-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split-feature-img {
  width: 100%;
  height: 683px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

/* Services Introduction Image Composition */
.services-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 4rem;
  align-items: center;
}

.services-intro-gallery {
  position: relative;
  min-height: 430px;
  padding: 0 5rem 4rem 0;
}

.services-intro-image {
  display: block;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.services-intro-image-main {
  width: 86%;
  height: 390px;
}

.services-intro-image-detail {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48%;
  height: 220px;
  border: 8px solid var(--bg-surface);
}

.services-intro-badge {
  position: absolute;
  left: 1.25rem;
  bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 1rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.35;
}

.services-intro-badge i {
  color: var(--accent-amber);
  font-size: 1.25rem;
}

.services-intro-badge strong {
  display: block;
  color: var(--text-main);
  font-size: 0.9rem;
}

.services-intro-proof {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-top: 1.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.services-intro-proof i {
  flex: 0 0 auto;
  margin-top: 0.2rem;
  color: var(--accent-green);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-top: 2rem;
}

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

.feature-item-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background-color: #EFF6FF;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--primary);
  color: #FFFFFF;
  border-radius: var(--radius-md);
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  opacity: 0.9;
}

/* Timeline Process Section */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  position: relative;
  margin-top: 3rem;
}

.process-step {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2rem 1.25rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.process-step:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.process-step-image {
  width: calc(100% + 2.5rem);
  height: 190px;
  margin: -2rem -1.25rem 1.5rem;
  object-fit: cover;
  object-position: center;
  transition: transform var(--transition-normal), filter var(--transition-normal);
}

.process-step:hover .process-step-image {
  transform: scale(1.05);
  filter: saturate(1.08);
}

.visit-detail-image {
  display: block;
  width: calc(100% + 3rem);
  height: 150px;
  margin: -1.5rem -1.5rem 1.25rem;
  object-fit: cover;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  transition: transform var(--transition-normal), filter var(--transition-normal);
}

[style*="background: var(--bg-body)"]:hover .visit-detail-image {
  transform: scale(1.04);
  filter: saturate(1.08);
}

.step-num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  background-color: var(--primary-light);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

/* Full-Width Visual Service Promise Overlay */
.service-promise-banner {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.9)), url('../images/kitchen_repair.jpg') center/cover no-repeat;
  color: #FFFFFF;
  text-align: center;
}

.promise-content {
  max-width: 800px;
  margin: 0 auto;
}

.promise-content h2 {
  color: #FFFFFF;
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.promise-highlights {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin: 2.5rem 0;
  flex-wrap: wrap;
}

.promise-tag {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.1rem;
}

/* Testimonial Section */
.testimonial-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.stars-rating {
  color: var(--accent-amber);
  margin-bottom: 1rem;
  display: flex;
  gap: 0.25rem;
}

.reviewer-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

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

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

.pricing-model-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.pricing-model-grid>div {
  overflow: hidden;
}

.pricing-model-image {
  display: block;
  width: calc(100% + 3.5rem);
  height: 150px;
  margin: -1.75rem -1.75rem 1.5rem;
  object-fit: cover;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.pricing-estimate-cta {
  position: relative;
  overflow: hidden;
  background-color: var(--primary);
  background-image: linear-gradient(rgba(15, 23, 42, 0.72), rgba(30, 58, 138, 0.78)), url('../images/banner_pricing.jpg');
  background-position: center;
  background-size: cover;
  color: #FFFFFF;
  text-align: center;
}

.pricing-estimate-cta h2,
.pricing-estimate-cta p {
  color: #FFFFFF;
}

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

@media (max-width: 600px) {
  .pricing-model-grid {
    grid-template-columns: 1fr;
  }
}

.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

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

.faq-header {
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
}

.faq-content {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
  display: none;
}

.faq-item.active .faq-content {
  display: block;
}

.faq-icon {
  transition: transform var(--transition-fast);
}

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

/* --------------------------------------------------------------------------
   FORM CONTROLS & REPAIR REQUEST WIZARD
   -------------------------------------------------------------------------- */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

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

.form-control {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background-color: var(--bg-surface);
  color: var(--text-main);
  transition: all var(--transition-fast);
}

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

/* Authentication portal layout */
.auth-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg-body);
}

.auth-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: .9rem max(1.25rem, calc((100vw - 1180px) / 2));
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-color);
}

.auth-header-actions,
.auth-social-grid {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.auth-header-link,
.auth-inline-link {
  color: var(--primary);
  font-size: .82rem;
  font-weight: 700;
}

.auth-main {
  display: grid;
  place-items: center;
  flex: 1;
  padding: 3rem 1rem;
  background: linear-gradient(135deg, var(--bg-body), var(--primary-light));
}

.auth-container {
  width: min(100%, 520px);
}

.auth-container--wide {
  width: min(100%, 680px);
}

.auth-card {
  padding: clamp(2rem, 5vw, 3rem);
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
}

.auth-card .brand-logo {
  margin-bottom: 1.75rem;
}

.auth-kicker {
  display: block;
  margin-bottom: .6rem;
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.auth-card h1,
.auth-card h2 {
  margin-bottom: .5rem;
  font-size: clamp(1.8rem, 4vw, 2.35rem);
}

.auth-subtitle {
  color: var(--text-muted);
  font-size: .92rem;
  margin-bottom: 1.75rem;
}

.auth-social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 1.5rem;
}

.auth-social-button {
  min-height: 44px;
  padding: .65rem .5rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background: var(--bg-surface);
  color: var(--text-main);
  font-family: var(--font-heading);
  font-size: .8rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
}

.auth-social-button:hover {
  background: var(--bg-subtle);
  border-color: var(--primary);
  color: var(--primary);
}

.auth-social-button i {
  margin-right: .35rem;
  font-size: .95rem;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin: 1.5rem 0 1.75rem;
  color: var(--text-muted);
  font-size: .76rem;
  white-space: nowrap;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--border-color);
}

.auth-card .form-control {
  min-height: 48px;
  background: var(--bg-body);
}

.auth-card-bottom {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: .87rem;
  text-align: center;
}

@media (max-width: 600px) {
  .auth-header {
    min-height: 64px;
  }

  .auth-header-link {
    display: none;
  }

  .auth-main {
    padding: 2rem .75rem;
  }

  .auth-card {
    padding: 1.75rem 1.2rem;
  }

  .auth-social-grid {
    gap: .45rem;
  }

  .auth-social-button {
    font-size: .74rem;
  }
}

.form-error-msg {
  color: #DC2626;
  font-size: 0.85rem;
  font-weight: 500;
  display: none;
  margin-top: 0.25rem;
}

.form-group.has-error .form-control {
  border-color: #DC2626;
  background-color: #FEF2F2;
}

.form-group.has-error .form-error-msg {
  display: block;
}

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

.appliance-option-tile {
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  background: var(--bg-surface);
}

.appliance-option-tile:hover,
.appliance-option-tile.selected {
  border-color: var(--primary);
  background-color: var(--primary-light);
}

.appliance-option-tile i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
  display: block;
}

/* --------------------------------------------------------------------------
   CUSTOMER DASHBOARD STYLES
   -------------------------------------------------------------------------- */
.dashboard-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: calc(100vh - 80px);
  background-color: var(--bg-body);
}

/* Keep dashboard navigation in view while only dashboard details scroll. */
.dashboard-page {
  height: 100vh;
  overflow: hidden;
}

.dashboard-page .dashboard-layout {
  height: calc(100vh - var(--site-header-height, 0px));
  margin-top: var(--site-header-height, 0px);
  min-height: 0;
}

.dashboard-sidebar {
  background-color: var(--bg-surface);
  border-right: 1px solid var(--border-color);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  height: 100%;
  overflow-y: auto;
}

.sidebar-user {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 1.5rem;
}

.sidebar-user-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.sidebar-link:hover,
.sidebar-link.active {
  background-color: var(--primary-light);
  color: var(--primary);
}

.dashboard-main {
  padding: 2.5rem;
  min-width: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.dash-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.stat-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.stat-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background-color: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.admin-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.admin-panel {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.admin-panel h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.admin-request-details {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-color);
}

.admin-request-details-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.admin-request-details-heading h4 {
  margin-top: 0.25rem;
  font-size: 1rem;
}

.admin-request-details-heading .admin-muted,
.admin-request-details-grid .admin-muted {
  display: block;
  font-size: 0.78rem;
}

.admin-request-details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}

.admin-request-details-grid>div {
  padding: 0.85rem;
  background: var(--bg-body);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
}

.admin-request-details-grid strong {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.86rem;
}

.admin-grid-two {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 1.5rem;
}

.admin-list {
  display: grid;
  gap: .75rem;
}

.admin-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: .8rem 0;
  border-bottom: 1px solid var(--border-color);
}

.admin-list-item:last-child {
  border-bottom: 0;
}

.admin-muted {
  color: var(--text-muted);
  font-size: .85rem;
}

.admin-status-select,
.admin-tech-select {
  min-width: 145px;
  padding: .45rem .6rem !important;
  font-size: .82rem !important;
}

.admin-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

@media (max-width: 900px) {
  .admin-grid-two {
    grid-template-columns: 1fr;
  }

  .admin-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* 7-Phase Status Progress Bar */
.status-tracker-bar {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin: 3rem 0 2rem;
}

.status-tracker-bar::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--border-color);
  z-index: 1;
}

.status-step {
  position: relative;
  z-index: 2;
  text-align: center;
  flex: 1;
}

.status-step-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--bg-surface);
  border: 3px solid var(--border-color);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  font-size: 1.1rem;
  transition: all var(--transition-fast);
}

.status-step.completed .status-step-icon {
  background-color: var(--accent-green);
  border-color: var(--accent-green);
  color: #FFFFFF;
}

.status-step.active .status-step-icon {
  background-color: var(--primary);
  border-color: var(--primary-light);
  color: #FFFFFF;
  box-shadow: 0 0 0 6px rgba(30, 58, 138, 0.2);
}

.status-step-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.status-step.active .status-step-label,
.status-step.completed .status-step-label {
  color: var(--text-main);
}

/* Data Tables */
.table-responsive {
  width: 100%;
  overflow-x: auto;
}

.custom-table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--bg-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

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

.custom-table th {
  background-color: var(--bg-subtle);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
}

.status-badge.in-progress {
  background-color: #EFF6FF;
  color: var(--primary);
}

.status-badge.completed {
  background-color: #ECFDF5;
  color: var(--accent-green);
}

.status-badge.pending {
  background-color: #FEF3C7;
  color: #B45309;
}

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
.footer-main {
  background-color: #0F172A;
  color: #CBD5E1;
  padding-top: 5rem;
  padding-bottom: 2rem;
  border-top: 1px solid #1E293B;
}

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

.footer-brand p {
  margin: 1.25rem 0;
  font-size: 0.95rem;
  max-width: 320px;
  color: #CBD5E1;
}

.footer-heading {
  color: #FFFFFF;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

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

.footer-links a {
  color: #CBD5E1;
}

.footer-links a:hover {
  color: #38BDF8;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid #1E293B;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
}

/* --------------------------------------------------------------------------
   RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */

/* Large Devices & Small Desktops (1025px to 1280px) */
@media (min-width: 1025px) and (max-width: 1280px) {
  .container {
    max-width: 100%;
    padding: 0 2rem;
  }

  .header-container {
    padding: 0 1.25rem;
    gap: 0.75rem;
  }

  .brand-logo {
    font-size: 1.15rem;
  }

  .brand-logo-icon {
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }

  .nav-menu {
    display: flex !important;
    gap: 0.4rem;
  }

  .nav-link {
    padding: 0.4rem 0.5rem;
    font-size: 0.85rem;
    white-space: nowrap;
  }

  .header-actions {
    gap: 0.4rem;
  }

  .header-actions .btn {
    padding: 0.45rem 0.75rem;
    font-size: 0.8rem;
    white-space: nowrap;
  }

  .hamburger-toggle:not(.dashboard-menu-toggle) {
    display: none !important;
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .hero-title {
    font-size: 3rem;
  }

  .appliances-grid,
  .trust-strip-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }

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

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

/* Tablet Devices (768px to 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  .container {
    padding: 0 1.5rem;
  }

  .nav-menu,
  .topbar-info-item:nth-child(2),
  .topbar-info-item:nth-child(3) {
    display: none !important;
  }

  .hamburger-toggle {
    display: flex !important;
  }

  .hero-grid,
  .split-feature-grid,
  .services-intro-grid,
  .h2-story-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-title {
    font-size: clamp(2.5rem, 5vw, 3rem);
  }

  .appliances-grid,
  .trust-strip-grid,
  .services-appliances-grid,
  .pricing-grid,
  .testimonials-grid,
  .dash-stats-grid,
  .process-timeline,
  .testimonial-cards-grid,
  .about-difference-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .dashboard-layout {
    grid-template-columns: 1fr;
  }

  .dashboard-sidebar {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    position: static;
    height: auto;
    overflow: visible;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

/* Mobile Devices (320px to 767px) */
@media (max-width: 767px) {
  .container {
    padding: 0 1rem;
    max-width: 100%;
  }

  .header-container {
    padding: 0 1rem;
    height: 60px;
  }

  .header-main:not(.dashboard-header) .header-actions .btn {
    display: none !important;
  }

  .brand-logo-text {
    font-size: 1.1rem;
  }

  .topbar-info {
    display: none !important;
  }

  .topbar-content {
    justify-content: flex-end;
  }

  .nav-menu {
    display: none !important;
  }

  .hamburger-toggle {
    display: flex !important;
  }

  /* Hero Section Mobile Layout (Text First, Image Below) */
  .hero-section,
  .page-hero,
  .h2-hero {
    padding-top: 2rem !important;
    margin-top: 0 !important;
    overflow: hidden;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-content {
    order: 1;
    width: 100%;
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.85rem;
    max-width: 100%;
    white-space: normal;
    line-height: 1.35;
    margin-bottom: 1.25rem;
    display: inline-flex;
    align-items: center;
  }

  .hero-title {
    font-size: clamp(1.85rem, 7vw, 2.5rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
    word-wrap: break-word;
  }

  .hero-description {
    font-size: 0.975rem;
    line-height: 1.55;
    margin-bottom: 1.5rem;
    max-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    width: 100%;
    margin-bottom: 2rem;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }

  .hero-trust-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding-top: 1.5rem;
    width: 100%;
  }

  .trust-item {
    width: 100%;
  }

  .hero-image-wrapper {
    order: 2;
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.5rem;
  }

  .hero-main-img {
    width: 100%;
    height: auto;
    max-height: 380px;
    object-fit: cover;
    object-position: center 20%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: block;
  }

  .hero-float-card {
    position: static !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    margin: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .appliances-grid,
  .trust-strip-grid,
  .services-appliances-grid,
  .pricing-grid,
  .testimonials-grid,
  .dash-stats-grid,
  .appliance-selector-grid,
  .footer-grid,
  .admin-request-details-grid,
  .process-timeline,
  .testimonial-cards-grid,
  .about-difference-grid,
  .h2-story-grid,
  .services-intro-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .admin-request-details-heading {
    flex-direction: column;
  }

  .dashboard-header-badge,
  .dashboard-profile>span:not(.dashboard-profile-avatar) {
    display: none;
  }

  .dashboard-profile {
    padding-right: 0.3rem;
  }

  .dashboard-layout {
    grid-template-columns: 1fr;
  }

  .dashboard-sidebar {
    position: static;
    height: auto;
    overflow: visible;
    border-right: 0;
    border-bottom: 1px solid var(--border-color);
  }

  .custom-table-container,
  .table-responsive,
  .custom-table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    display: block;
    margin-bottom: 1rem;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .status-tracker-bar {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
  }

  .status-tracker-bar::before {
    display: none;
  }

  .status-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
  }

  .status-step-icon {
    margin: 0;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* Extra Small Mobile Devices (320px to 480px) */
@media (max-width: 480px) {
  .hero-badge {
    font-size: 0.775rem;
    padding: 0.35rem 0.75rem;
  }

  .stat-card {
    padding: 1rem;
  }

  .stat-card h3 {
    font-size: 1.4rem !important;
  }

  .header-actions .btn-secondary {
    display: none;
  }
}