/* 
  Servixa Home - Design System & Global Stylesheet
  Theme: Premium, Minimalist, Technology-driven Home Appliance Repair Service
*/

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

:root {
  /* Color Tokens */
  --primary: #2563EB;
  --primary-light: #0EA5E9;
  --primary-dark: #1D4ED8;
  --primary-rgb: 37, 99, 235;
  
  --accent: #0EA5E9;
  --accent-light: #38BDF8;
  --accent-dark: #0284C7;
  --accent-rgb: 14, 165, 233;

  --success: #10B981;
  --success-light: #34D399;
  --warning: #F59E0B;
  --danger: #EF4444;

  --bg-primary: #FFFFFF;
  --bg-secondary: #F8FAFC;
  --bg-card: #FFFFFF;
  
  --border-color: rgba(37, 99, 235, 0.12);
  --border-light: rgba(37, 99, 235, 0.06);
  --border-glow: rgba(14, 165, 233, 0.15);
  
  --text-main: #1E293B;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2.5rem;
  --spacing-xl: 4rem;
  --spacing-xxl: 6rem;

  /* Typography */
  --font-headings: 'Poppins', 'Outfit', sans-serif;
  --font-body: 'Inter', 'Manrope', sans-serif;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(15, 82, 186, 0.04);
  --shadow-md: 0 10px 30px rgba(15, 82, 186, 0.06);
  --shadow-lg: 0 20px 40px rgba(15, 82, 186, 0.08);
  --shadow-glow: 0 10px 30px rgba(6, 182, 212, 0.15);
  --shadow-button: 0 8px 20px rgba(15, 82, 186, 0.2);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

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

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

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.section {
  padding: var(--spacing-xxl) 0;
  position: relative;
}

.section-tint {
  background-color: var(--bg-secondary);
}

.section-cyan-tint {
  background: linear-gradient(180deg, rgba(6, 182, 212, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--spacing-xl) auto;
}

.badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(15, 82, 186, 0.08);
  color: var(--primary);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: var(--spacing-sm);
  border: 1px solid rgba(15, 82, 186, 0.12);
}

.section-title {
  font-size: 2.5rem;
  color: var(--text-main);
  margin-bottom: var(--spacing-sm);
}

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

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(to right, var(--primary), var(--accent));
  z-index: 9999;
  width: 0%;
  transition: width 0.1s ease;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: var(--transition-normal);
  border: none;
  font-size: 0.95rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #FFFFFF;
  box-shadow: var(--shadow-button);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(15, 82, 186, 0.35);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #FFFFFF;
  box-shadow: var(--shadow-glow);
}

.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(6, 182, 212, 0.35);
}

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

.btn-outline:hover {
  background: rgba(15, 82, 186, 0.05);
  transform: translateY(-3px);
}

.btn-whatsapp-booking,
.btn-whatsapp {
  background: #25D366;
  color: #FFFFFF !important;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.2);
  transition: all 0.3s ease;
}

.btn-whatsapp-booking:hover,
.btn-whatsapp:hover {
  background: #128C7E;
  color: #FFFFFF !important;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
}

.btn-white {
  background: #FFFFFF;
  color: var(--primary);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
}

.btn-whatsapp {
  background-color: #25D366;
  color: #FFFFFF;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
  background-color: #128C7E;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.35);
}

/* Premium Top Info Bar */
.top-info-bar {
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.825rem;
  font-weight: 500;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--font-body);
  max-height: 40px;
  opacity: 1;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease, opacity 0.3s ease;
  z-index: 1001;
  position: relative;
}

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

.top-info-left {
  display: flex;
  gap: 2.25rem;
}

.top-info-left span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.top-info-left i {
  color: var(--accent-light);
  width: 14px;
  height: 14px;
}

.top-info-right a {
  color: #FFFFFF;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: opacity 0.3s ease;
}

.top-info-right a:hover {
  opacity: 0.85;
}

.top-info-right i {
  color: var(--accent-light);
  width: 14px;
  height: 14px;
}

header.scrolled .top-info-bar {
  max-height: 0;
  padding: 0;
  overflow: hidden;
  border: none;
  opacity: 0;
}

@media (max-width: 991px) {
  .top-info-bar {
    display: none;
  }
}

/* Header & Navigation */
header {
  position: fixed;
  top: 30px;
  left: 0;
  width: 100%;
  background: transparent;
  z-index: 1000;
  transition: padding 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  padding: 1.5rem 0;
}

header.scrolled {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(25px) saturate(180%);
  -webkit-backdrop-filter: blur(25px) saturate(180%);
  border-bottom: 1px solid rgba(15, 82, 186, 0.08);
  padding: 0.85rem 0;
  box-shadow: 0 10px 30px rgba(15, 82, 186, 0.06), 0 1px 0 rgba(15, 82, 186, 0.04);
}

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

.logo-wrapper img {
  height: 48px;
  object-fit: contain;
  transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

header.scrolled .logo-wrapper img {
  height: 38px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-main);
  position: relative;
  padding: 0.5rem 0;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-full);
  transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1), left 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  transform: translateX(-50%);
}

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

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

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  background: #FFFFFF;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  padding: 1rem;
  width: 280px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
  display: grid;
  gap: 0.5rem;
  z-index: 1000;
}

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

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.dropdown-item i {
  color: var(--primary);
  font-size: 1.1rem;
}

.dropdown-item:hover {
  background-color: var(--bg-secondary);
  color: var(--primary);
  transform: translateX(3px);
}

.dropdown-item.coming-soon {
  color: var(--text-light);
  pointer-events: none;
}

.dropdown-item.coming-soon::after {
  content: 'Soon';
  font-size: 0.65rem;
  background: var(--bg-secondary);
  color: var(--text-muted);
  padding: 0.15rem 0.4rem;
  border-radius: var(--radius-full);
  margin-left: auto;
  font-weight: 700;
  border: 1px solid var(--border-light);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Mega Menu - Large Services selection */
.mega-menu-trigger:hover .mega-menu-container {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(5px);
}

.mega-menu-container {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  background: #FFFFFF;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  padding: 2rem;
  width: 760px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  z-index: 1000;
}

.mega-menu-column h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 0.5rem;
}

.mega-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.mega-coming-soon-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.4rem;
  max-height: 250px;
  overflow-y: auto;
  padding-right: 0.5rem;
}

/* Custom Scrollbar for coming soon */
.mega-coming-soon-grid::-webkit-scrollbar {
  width: 4px;
}
.mega-coming-soon-grid::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: var(--radius-full);
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.mobile-nav-toggle i {
  font-size: 1.75rem;
  color: var(--text-main);
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: #FFFFFF;
  z-index: 1090;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-normal);
  padding: var(--spacing-xl) var(--spacing-md) var(--spacing-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mobile-menu-overlay.active {
  right: 0;
}

.mobile-nav-links {
  list-style: none;
  display: grid;
  gap: 1.5rem;
}

.mobile-nav-link {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-main);
  display: block;
}

.mobile-nav-sublinks {
  list-style: none;
  padding-left: 1.25rem;
  margin-top: 0.5rem;
  display: grid;
  gap: 0.75rem;
  border-left: 2px solid var(--border-light);
}

.mobile-nav-sublink {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
}

.mobile-nav-sublink.coming-soon {
  color: var(--text-light);
}

/* Background Blobs & Shapes */
.glow-blob {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.blob-1 {
  width: 400px;
  height: 400px;
  background: rgba(15, 82, 186, 0.05);
  top: 10%;
  left: -10%;
}

.blob-2 {
  width: 350px;
  height: 350px;
  background: rgba(6, 182, 212, 0.05);
  bottom: 20%;
  right: -10%;
}

/* Breadcrumbs */
.breadcrumb-container {
  background-color: var(--bg-secondary);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-light);
  margin-top: 80px;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}

.breadcrumb-item a {
  color: var(--text-muted);
}

.breadcrumb-item a:hover {
  color: var(--primary);
}

.breadcrumb-item.active {
  color: var(--primary);
  font-weight: 600;
}

.breadcrumb-separator {
  color: var(--text-light);
}

/* Hero Section with Slider */
.hero-slider-section {
  position: relative;
  height: 95vh;
  min-height: 680px;
  width: 100%;
  overflow: hidden;
  background-color: var(--bg-secondary);
}

.slider-wrapper {
  height: 100%;
  width: 100%;
  display: flex;
  transition: transform var(--transition-slow);
}

.slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  opacity: 0.2;
  transition: opacity var(--transition-slow);
}

.slide.active {
  opacity: 1;
}

.slide-content-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 3rem;
  width: 100%;
  height: 100%;
  padding-top: 150px;
}

.slide-text {
  position: relative;
  z-index: 10;
}

.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #FFFFFF;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--spacing-md);
  border: 1px solid var(--border-light);
}

.hero-rating i {
  color: #F59E0B;
}

.hero-rating span {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-main);
}

.hero-title {
  font-size: 4rem;
  line-height: 1.1;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: var(--spacing-sm);
}

.hero-title span {
  color: var(--primary);
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: var(--spacing-lg);
  max-width: 580px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.slide-image-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-image-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 8px solid #FFFFFF;
  transform: rotate(2deg);
  transition: transform var(--transition-slow);
}

.slide.active .slide-image-container {
  transform: rotate(0deg) scale(1.03);
}

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

/* Floating Card inside Hero Slider */
.floating-hero-card {
  position: absolute;
  bottom: 40px;
  left: -30px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  padding: 1.25rem 1.75rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 20;
}

.floating-hero-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(6, 182, 212, 0.1);
  color: var(--accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.floating-hero-card h5 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.floating-hero-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Slider Controls */
.slider-arrows {
  position: absolute;
  bottom: var(--spacing-xl);
  right: var(--spacing-md);
  display: flex;
  gap: 1rem;
  z-index: 100;
}

.slider-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.slider-arrow:hover {
  background: var(--primary);
  color: #FFFFFF;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.slider-dots {
  position: absolute;
  bottom: var(--spacing-xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 100;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--text-light);
  cursor: pointer;
  transition: var(--transition-normal);
}

.slider-dot.active {
  background: var(--primary);
  width: 28px;
  border-radius: var(--radius-full);
}

/* Trust Badges Bar */
.trust-badges-bar {
  background: #FFFFFF;
  box-shadow: var(--shadow-sm);
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-light);
  position: relative;
  z-index: 10;
}

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

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

.trust-badge-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(15, 82, 186, 0.05);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.trust-badge-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}

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

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

.service-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-normal);
}

.service-card-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: rgba(15, 82, 186, 0.05);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: var(--spacing-md);
  transition: var(--transition-normal);
}

.service-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.service-card-description {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.service-card-price {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.service-card-price strong {
  font-size: 1.15rem;
  color: var(--primary);
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-secondary);
  color: var(--text-main);
  transition: var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(15, 82, 186, 0.15);
}

.service-card:hover::before {
  transform: scaleX(1);
}

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

.service-card:hover .service-card-link {
  background: var(--primary);
  color: #FFFFFF;
  transform: rotate(-45deg);
}

/* Coming Soon Cards Section */
.coming-soon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

.coming-soon-card {
  background: rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-md);
  border: 1px dashed var(--border-color);
  padding: 1.5rem;
  transition: var(--transition-normal);
  position: relative;
  opacity: 0.85;
}

.coming-soon-card:hover {
  background: #FFFFFF;
  border-style: solid;
  border-color: var(--accent);
  opacity: 1;
  transform: translateY(-4px);
}

.coming-soon-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(100, 116, 139, 0.06);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: var(--spacing-sm);
}

.coming-soon-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 0.65rem;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.05em;
  background: rgba(6, 182, 212, 0.08);
  color: var(--accent-dark);
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
}

.coming-soon-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.coming-soon-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

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

.why-choose-visual {
  position: relative;
}

.why-choose-img-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid #FFFFFF;
}

.why-choose-badge-card {
  position: absolute;
  top: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #FFFFFF;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-glow);
  text-align: center;
  min-width: 160px;
  z-index: 10;
}

.why-choose-badge-card h3 {
  font-size: 2.25rem;
  font-weight: 800;
}

.why-choose-badge-card p {
  font-size: 0.85rem;
  font-weight: 600;
}

.why-choose-points {
  display: grid;
  gap: 1.75rem;
}

.why-choose-point {
  display: flex;
  gap: 1.25rem;
}

.why-choose-point-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(15, 82, 186, 0.06);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.why-choose-point h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.why-choose-point p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Repair Process Section (Timeline) */
.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: var(--border-color);
}

.timeline-item {
  position: relative;
  margin-bottom: var(--spacing-xl);
  width: 50%;
  padding: 0 var(--spacing-lg);
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.timeline-dot {
  position: absolute;
  top: 15px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 4px solid var(--primary);
  z-index: 10;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.timeline-item:nth-child(odd) .timeline-dot {
  right: -12px;
}

.timeline-item:nth-child(even) .timeline-dot {
  left: -12px;
}

.timeline-item:hover .timeline-dot {
  background: var(--accent);
  border-color: var(--accent-dark);
  transform: scale(1.2);
}

.timeline-number {
  font-family: var(--font-headings);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(15, 82, 186, 0.1);
  line-height: 1;
  margin-bottom: 0.5rem;
  transition: var(--transition-normal);
}

.timeline-item:hover .timeline-number {
  color: rgba(6, 182, 212, 0.25);
}

.timeline-content {
  background: var(--bg-card);
  padding: 1.75rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.timeline-content:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(15, 82, 186, 0.1);
}

.timeline-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Statistics Counter Section */
.statistics-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: #FFFFFF;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.stat-item {
  position: relative;
}

.stat-number {
  font-family: var(--font-headings);
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
  background: linear-gradient(135deg, #FFFFFF 0%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-title {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.85;
}

/* Brand Slider Section */
.brand-slider-container {
  overflow: hidden;
  position: relative;
  padding: 1.5rem 0;
  width: 100%;
}

.brand-slider-container::before,
.brand-slider-container::after {
  content: '';
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.brand-slider-container::before {
  left: 0;
  background: linear-gradient(to right, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
}

.brand-slider-container::after {
  right: 0;
  background: linear-gradient(to left, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
}

.brand-track {
  display: flex;
  gap: 4rem;
  width: max-content;
  animation: scrollBrands 30s linear infinite;
}

.brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headings);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-light);
  transition: var(--transition-normal);
  cursor: default;
  user-select: none;
}

.brand-logo:hover {
  color: var(--primary);
  transform: scale(1.1);
}

@keyframes scrollBrands {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Review / Testimonial Slider */
.reviews-section {
  position: relative;
}

.reviews-carousel-container {
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.reviews-track {
  display: flex;
  transition: transform var(--transition-slow);
}

.review-slide {
  flex: 0 0 100%;
  width: 100%;
  padding: 1rem;
}

.review-card {
  background: var(--bg-card);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  text-align: center;
  position: relative;
}

.review-card::before {
  content: '“';
  position: absolute;
  top: 15px;
  left: 30px;
  font-family: var(--font-headings);
  font-size: 6rem;
  color: rgba(15, 82, 186, 0.05);
  line-height: 1;
}

.review-stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: var(--spacing-sm);
  color: #F59E0B;
}

.review-text {
  font-size: 1.15rem;
  color: var(--text-main);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 2rem;
}

.review-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.review-author-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--border-color);
}

.review-author-info {
  text-align: left;
}

.review-author-name {
  font-weight: 700;
  font-size: 1rem;
}

.review-author-location {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.review-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.review-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-normal);
}

.review-arrow:hover {
  background: var(--primary);
  color: #FFFFFF;
  border-color: var(--primary);
}

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

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.faq-header {
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  font-weight: 700;
  font-size: 1.1rem;
}

.faq-icon-box {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(15, 82, 186, 0.05);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
  font-size: 0.95rem;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal) ease-out;
}

.faq-content-inner {
  padding: 0 2rem 1.5rem 2rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  border-top: 1px solid transparent;
}

.faq-item.active {
  border-color: rgba(15, 82, 186, 0.15);
  box-shadow: var(--shadow-md);
}

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

.faq-item.active .faq-content {
  max-height: 500px; /* arbitrary height to slide down */
}

.faq-item.active .faq-content-inner {
  border-top-color: var(--border-light);
}

/* Service Locations Buttons Grid */
.locations-badge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
}

.location-badge-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  padding: 0.75rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  text-align: center;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
  display: block;
}

.location-badge-btn:hover {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #FFFFFF;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Final CTA Section */
.final-cta-section {
  position: relative;
  background: linear-gradient(135deg, #091E3A 0%, var(--primary-dark) 50%, var(--primary) 100%);
  color: #FFFFFF;
  overflow: hidden;
  padding: var(--spacing-xl) 0;
}

.final-cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.final-cta-content h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: var(--spacing-sm);
}

.final-cta-content p {
  font-size: 1.2rem;
  opacity: 0.85;
  margin-bottom: var(--spacing-lg);
}

.final-cta-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Form Styles */
.form-card {
  background: var(--bg-card);
  padding: 3rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
}

.form-title {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.form-subtitle {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

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

.form-group-full {
  grid-column: span 2;
}

.form-group {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--text-main);
  letter-spacing: 0.05em;
}

.form-input, .form-select, .form-textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.85rem 1.25rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background-color: var(--bg-secondary);
  transition: var(--transition-normal);
  color: var(--text-main);
  width: 100%;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--primary);
  background-color: #FFFFFF;
  outline: none;
  box-shadow: 0 0 0 4px rgba(15, 82, 186, 0.1);
}

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

/* Floating Action CTA Buttons */
.floating-ctas-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 999;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.floating-ctas-container.hide {
  transform: translateY(150px);
  opacity: 0;
  pointer-events: none;
}

.floating-cta {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1.5rem;
  box-shadow: 0 10px 30px rgba(15, 82, 186, 0.12);
  cursor: pointer;
  position: relative;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
2
.floating-cta-phone {
  background: rgba(15, 82, 186, 0.65);
}
.floating-cta-phone:hover {
  background: rgba(15, 82, 186, 0.9);
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 10px 30px rgba(15, 82, 186, 0.35);
}

.floating-cta-whatsapp {
  background: rgba(37, 211, 102, 0.65);
}
.floating-cta-whatsapp:hover {
  background: rgba(37, 211, 102, 0.9);
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
}

.floating-cta-book {
  background: rgba(6, 182, 212, 0.65);
}
.floating-cta-book:hover {
  background: rgba(6, 182, 212, 0.9);
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 10px 30px rgba(6, 182, 212, 0.35);
}

.floating-cta-top {
  background: rgba(15, 23, 42, 0.65);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.85);
}

.floating-cta-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.floating-cta-top:hover {
  background: rgba(15, 23, 42, 0.9);
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.35);
}

.floating-cta:hover {
  transform: scale(1.1) translateY(-3px);
}

.floating-cta-tooltip {
  position: absolute;
  right: 70px;
  background: var(--text-main);
  color: #FFFFFF;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-md);
}

.floating-cta:hover .floating-cta-tooltip {
  opacity: 1;
  visibility: visible;
  right: 66px;
}

/* Cinematic Luxury Loader Screen & Page Reveals */
.loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle at center, #FFFFFF 0%, #F8FAFC 75%, #E2E8F0 100%);
  z-index: 100000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.6s;
}

.loader-mesh {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(at 0% 0%, rgba(37, 99, 235, 0.04) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(14, 165, 233, 0.04) 0px, transparent 50%);
  opacity: 0.8;
  animation: meshPan 25s infinite alternate ease-in-out;
  pointer-events: none;
  z-index: 1;
}

@keyframes meshPan {
  0% { transform: scale(1) translate(0, 0); }
  50% { transform: scale(1.12) translate(3%, 2%); }
  100% { transform: scale(1) translate(-2%, -3%); }
}

.loader-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, rgba(37, 99, 235, 0) 70%);
  pointer-events: none;
  z-index: 2;
  animation: softPulse 5s infinite ease-in-out;
}

@keyframes softPulse {
  0%, 100% { transform: scale(0.92); opacity: 0.65; }
  50% { transform: scale(1.08); opacity: 0.95; }
}

.loader-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.logo-container {
  position: relative;
  margin-bottom: 1.5rem;
}

.loader-logo {
  height: 80px;
  width: auto;
  border-radius: 16px;
  animation: logoReveal 1.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  z-index: 5;
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.08);
}

.logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, rgba(37, 99, 235, 0) 70%);1
  z-index: 4;
  opacity: 0;
  animation: logoGlowBreathing 4s infinite ease-in-out 1.5s;
}

@keyframes logoReveal {
  0% {transform: scale(0.85); opacity: 0; }
  100% {transform: scale(1); opacity: 1; }
}

@keyframes logoGlowBreathing {
  0%, 100% { transform: translate(-50%, -50%) scale(0.85); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) scale(1.15); opacity: 0.95; }
}

.loader-line-grow {
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  margin-bottom: 1.5rem;
  animation: lineGrow 1.5s cubic-bezier(0.25, 1, 0.5, 1) forwards 0.3s;
}

@keyframes lineGrow {
  0% { width: 0; }
  100% { width: 140px; }
}

.loader-title {
  font-family: var(--font-headings);
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  color: var(--text-main);
  text-shadow: 0 0 10px rgba(37, 99, 235, 0.05);
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: fadeIn 1.2s ease forwards 0.5s;
}

.loader-subtitle {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeIn 1.2s ease forwards 0.7s;
}

.loader-loading-text {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-main);
  margin-bottom: 1.5rem;
  opacity: 0;
  min-height: 1.2rem;
  animation: fadeIn 1.2s ease forwards 0.9s;
}

.loader-startup-line {
  position: relative;
  width: 220px;
  height: 2px;
  background: rgba(37, 99, 235, 0.08);
  border-radius: 1px;
  overflow: hidden;
  opacity: 0;
  animation: fadeIn 1.2s ease forwards 1s;
}

.loader-startup-light {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--accent-light), var(--primary), transparent);
  animation: travelLight 2s infinite cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 8px var(--primary);
}

@keyframes travelLight {
  0% { left: -100%; }
  100% { left: 150%; }
}

@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(5px); }
  100% { opacity: 1; transform: translateY(0); }
}

.loader-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
}

.loader-particles span {
  position: absolute;
  display: block;
  width: 4px;
  height: 4px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.3), 0 0 20px rgba(14, 165, 233, 0.2);
  animation: floatParticle 8s infinite linear;
}

.loader-particles span:nth-child(1) { top: 20%; left: 10%; width: 2px; height: 2px; animation-delay: 0s; }
.loader-particles span:nth-child(2) { top: 50%; left: 80%; width: 3px; height: 3px; animation-delay: 2s; animation-duration: 10s; }
.loader-particles span:nth-child(3) { top: 80%; left: 30%; width: 4px; height: 4px; animation-delay: 4s; }
.loader-particles span:nth-child(4) { top: 15%; left: 70%; width: 2px; height: 2px; animation-delay: 1s; animation-duration: 6s; }
.loader-particles span:nth-child(5) { top: 75%; left: 85%; width: 3px; height: 3px; animation-delay: 3s; }
.loader-particles span:nth-child(6) { top: 35%; left: 90%; width: 2px; height: 2px; animation-delay: 5s; }
.loader-particles span:nth-child(7) { top: 60%; left: 15%; width: 4px; height: 4px; animation-delay: 0.5s; animation-duration: 9s; }
.loader-particles span:nth-child(8) { top: 40%; left: 25%; width: 2px; height: 2px; animation-delay: 2.5s; }
.loader-particles span:nth-child(9) { top: 90%; left: 65%; width: 3px; height: 3px; animation-delay: 1.5s; }
.loader-particles span:nth-child(10) { top: 30%; left: 50%; width: 2px; height: 2px; animation-delay: 3.5s; }

@keyframes floatParticle {
  0% { transform: translateY(0) scale(0); opacity: 0; }
  30% { opacity: 0.6; }
  70% { opacity: 0.6; }
  100% { transform: translateY(-80px) scale(1.2); opacity: 0; }
}

/* Page entrance smooth reveal styles */
body {
  opacity: 0;
  
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
              filter 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

body.page-ready {
  opacity: 1;
  filter: blur(0px) saturate(100%);
  transform: scale(1);
}

/* Footer styling */
footer {
  background: #0B0F19;
  color: #FFFFFF;
  padding: var(--spacing-xl) 0 var(--spacing-md) 0;
  font-size: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: var(--spacing-xl);
}

.footer-column h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #FFFFFF;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent);
}

.footer-logo {
  height: 44px;
  margin-bottom: 1.25rem;
}

.footer-desc {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.footer-social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition-normal);
}

.footer-social-icon:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-links {
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.footer-link a {
  color: var(--text-light);
}

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

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.footer-contact-item i {
  color: var(--accent);
  font-size: 1.1rem;
  margin-top: 0.15rem;
}

.footer-contact-item strong {
  color: #FFFFFF;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--text-light);
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

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

/* Responsive Grid / Media Queries */
@media (max-width: 1024px) {
  .slide-content-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 120px;
    gap: 2rem;
  }
  .hero-rating {
    justify-content: center;
  }
  .hero-title {
    font-size: 3rem;
  }
  .hero-subtitle {
    margin: 0 auto var(--spacing-lg) auto;
  }
  .hero-ctas {
    justify-content: center;
  }
  .slide-image-wrapper {
    height: auto;
    margin-bottom: var(--spacing-lg);
  }
  .slide-image-container {
    max-width: 380px;
  }
  .floating-hero-card {
    left: 50%;
    transform: translateX(-50%);
    bottom: -15px;
  }
  .slide.active .slide-image-container {
    transform: scale(1);
  }
  .trust-badges-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .why-choose-visual {
    order: -1;
    max-width: 600px;
    margin: 0 auto;
  }
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .nav-menu, .nav-cta {
    display: none;
  }
  .mobile-nav-toggle {
    display: block;
  }
  .section-title {
    font-size: 2rem;
  }
  .timeline::before {
    left: 20px;
  }
  .timeline-item {
    width: 100%;
    padding-left: 50px;
    padding-right: 0;
    text-align: left !important;
  }
  .timeline-item:nth-child(even) {
    left: 0;
  }
  .timeline-dot {
    left: 8px !important;
    right: auto !important;
  }
  .statistics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-card {
  order: -1;
  }
  .form-group-full {
    grid-column: span 1;
  }
  .review-card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .trust-badges-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .statistics-grid {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 2.25rem;
  }
  .btn {
    width: 100%;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-bottom-links {
    justify-content: center;
  }
  .floating-ctas-container {
    bottom: 20px;
    right: 20px;
  }
}

/* =========================================================
   SERVIXA HOME - FINAL MOBILE & TABLET RESPONSIVE FIX
   Add this code at the VERY END of style.css
   ========================================================= */

/* ---------- Global Responsive Safety ---------- */

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

/* Prevent long text from breaking layout */
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span {
  overflow-wrap: break-word;
}

/* Make all media responsive */
img,
video,
iframe,
svg {
  max-width: 100%;
}

/* ---------- Tablet: 1024px and below ---------- */

@media (max-width: 1024px) {

  .container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  /* Header */
  header {
    padding: 1rem 0;
  }

  header.scrolled {
    padding: 0.7rem 0;
  }

  .logo-wrapper img {
    max-width: 180px;
    height: auto;
    max-height: 48px;
  }

  /* Hero */
  .hero-slider-section {
    height: auto;
    min-height: 760px;
  }

  .slide {
    min-height: 760px;
    height: auto;
  }

  .slide-content-container {
    width: 100%;
    min-height: 760px;
    height: auto;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-top: 120px;
    padding-bottom: 100px;
  }

  .slide-text {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
  }

  .hero-title {
    font-size: clamp(2.8rem, 6vw, 4rem);
  }

  .hero-subtitle {
    max-width: 700px;
  }

  .slide-image-wrapper {
    width: 100%;
    min-height: 400px;
  }

  .slide-image-container {
    width: min(80vw, 420px);
    max-width: 420px;
  }

  /* Floating hero card */
  .floating-hero-card {
    left: 50%;
    transform: translateX(-50%);
    bottom: -20px;
    white-space: nowrap;
  }

  /* Services */
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* Why choose */
  .why-choose-grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* Navigation */
  .nav-menu,
  .nav-cta {
    display: none;
  }

  .mobile-nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
  }
}


/* ---------- Tablet: 769px - 900px ---------- */

@media (min-width: 769px) and (max-width: 900px) {

  .container {
    padding-left: 28px;
    padding-right: 28px;
  }

  .hero-slider-section,
  .slide,
  .slide-content-container {
    min-height: 820px;
  }

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

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

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

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

  .form-card {
    padding: 2.5rem;
  }
}


/* ---------- Mobile: 768px and below ---------- */

@media (max-width: 768px) {

  /* Global */
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  /* Header */
  header {
    padding: 0.8rem 0;
  }

  header.scrolled {
    padding: 0.65rem 0;
  }

  .navbar-container {
    min-height: 52px;
  }

  .logo-wrapper {
    min-width: 0;
    max-width: calc(100% - 60px);
  }

  .logo-wrapper img,
  header.scrolled .logo-wrapper img {
    width: auto;
    max-width: 170px;
    height: auto;
    max-height: 42px;
    object-fit: contain;
  }

  .mobile-nav-toggle {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
  }

  /* Mobile Menu */
  .mobile-menu-overlay {
    width: 100%;
    max-width: 100%;
    padding: 90px 24px 24px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-nav-links {
    gap: 1.25rem;
  }

  .mobile-nav-link {
    font-size: 1.1rem;
  }

  /* Hero */
  .hero-slider-section {
    height: auto;
    min-height: auto;
  }

  .slide {
    height: auto;
    min-height: 0;
    padding: 0;
  }

  .slide-content-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    min-height: 0;
    gap: 2rem;
    padding-top: 115px;
    padding-bottom: 130px;
  }

  .slide-text {
    width: 100%;
    text-align: center;
  }

  .hero-rating {
    max-width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 0.8rem;
  }

  .hero-title {
    font-size: clamp(2rem, 9vw, 2.8rem);
    line-height: 1.15;
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .hero-ctas {
    width: 100%;
    flex-direction: column;
    gap: 0.8rem;
  }

  .hero-ctas .btn {
    width: 100%;
    max-width: 360px;
  }

  /* Hero Image */
  .slide-image-wrapper {
    width: 100%;
    min-height: 0;
    height: auto;
    padding: 0 10px;
    margin-bottom: 0;
  }

  .slide-image-container {
    width: 100%;
    max-width: 380px;
    aspect-ratio: 1 / 1;
    border-width: 5px;
    border-radius: 24px;
  }

  .slide.active .slide-image-container {
    transform: scale(1);
  }

  /* Floating Hero Card */
  .floating-hero-card {
    width: calc(100% - 30px);
    max-width: 340px;
    left: 50%;
    bottom: -35px;
    transform: translateX(-50%);
    padding: 0.85rem 1rem;
    gap: 0.7rem;
    white-space: normal;
  }

  .floating-hero-card-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    font-size: 1rem;
  }

  .floating-hero-card h5 {
    font-size: 0.8rem;
  }

  .floating-hero-card p {
    font-size: 0.7rem;
  }

  /* Slider Controls */
  .slider-arrows {
    bottom: 25px;
    right: 18px;
    gap: 0.5rem;
  }

  .slider-arrow {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }

  .slider-dots {
    bottom: 40px;
    left: 50%;
  }

  /* Section Header */
  .section-header {
    width: 100%;
    margin-bottom: 2.5rem;
  }

  .section-title {
    font-size: clamp(1.7rem, 7vw, 2.2rem);
    line-height: 1.25;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  /* Trust Badges */
  .trust-badges-bar {
    padding: 1.25rem 0;
  }

  .trust-badges-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .trust-badge-item {
    gap: 0.65rem;
  }

  .trust-badge-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    font-size: 1.15rem;
  }

  .trust-badge-info h4 {
    font-size: 0.8rem;
  }

  .trust-badge-info p {
    font-size: 0.7rem;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .service-card-title {
    font-size: 1.2rem;
  }

  /* Coming Soon */
  .coming-soon-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .coming-soon-card {
    padding: 1.25rem;
  }

  /* Why Choose */
  .why-choose-grid {
    gap: 2.5rem;
  }

  .why-choose-badge-card {
    top: -15px;
    right: -5px;
    min-width: 130px;
    padding: 1rem;
  }

  .why-choose-badge-card h3 {
    font-size: 1.75rem;
  }

  .why-choose-point {
    gap: 0.85rem;
  }

  .why-choose-point-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    font-size: 1.1rem;
  }

  /* Timeline */
  .timeline {
    padding: 1rem 0;
  }

  .timeline::before {
    left: 16px;
  }

  .timeline-item {
    width: 100%;
    left: 0 !important;
    padding-left: 45px;
    padding-right: 0;
    text-align: left !important;
    margin-bottom: 2rem;
  }

  .timeline-dot {
    left: 4px !important;
    right: auto !important;
    width: 24px;
    height: 24px;
  }

  .timeline-number {
    font-size: 2.2rem;
  }

  .timeline-content {
    padding: 1.25rem;
  }

  /* Statistics */
  .statistics-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 2.4rem;
  }

  .stat-title {
    font-size: 0.75rem;
  }

  /* Brand Slider */
  .brand-slider-container::before,
  .brand-slider-container::after {
    width: 50px;
  }

  .brand-track {
    gap: 2rem;
  }

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

  /* Reviews */
  .reviews-carousel-container {
    width: 100%;
  }

  .review-slide {
    padding: 0.5rem;
  }

  .review-card {
    padding: 2rem 1.25rem;
  }

  .review-text {
    font-size: 1rem;
  }

  /* FAQ */
  .faq-header {
    padding: 1.2rem 1rem;
    gap: 1rem;
    font-size: 0.95rem;
  }

  .faq-content-inner {
    padding: 0 1rem 1.2rem;
    font-size: 0.9rem;
  }

  /* Locations */
  .locations-badge-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .location-badge-btn {
    padding: 0.7rem 0.5rem;
    font-size: 0.75rem;
  }

  /* Final CTA */
  .final-cta-section {
    padding: 4rem 0;
  }

  .final-cta-content h2 {
    font-size: 2rem;
  }

  .final-cta-content p {
    font-size: 1rem;
  }

  .final-cta-ctas {
    flex-direction: column;
    gap: 0.75rem;
  }

  .final-cta-ctas .btn {
    width: 100%;
    max-width: 360px;
  }

  /* Forms */
  .form-card {
    padding: 1.5rem;
    border-radius: 18px;
  }

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

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

  .form-input,
  .form-select,
  .form-textarea {
    font-size: 16px;
  }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .footer-bottom-links {
    justify-content: center;
    flex-wrap: wrap;
  }

  /* ---------- FLOATING BUTTONS ---------- */
  /* Book + WhatsApp + Call + Back to Top */
  
  .floating-ctas-container {
    position: fixed;
    right: 14px;
    bottom: 18px;
    gap: 0.6rem;
    z-index: 9999;
  }

  .floating-cta {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    font-size: 1.25rem;
  }

  .floating-cta-tooltip {
    display: none;
  }

  .floating-cta:hover {
    transform: none;
  }

  .floating-cta:active {
    transform: scale(0.92);
  }
}


/* ---------- Small Mobile: 480px and below ---------- */

@media (max-width: 480px) {

  .container {
    padding-left: 14px;
    padding-right: 14px;
  }

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

  /* Header */
  .logo-wrapper img,
  header.scrolled .logo-wrapper img {
    max-width: 145px;
    max-height: 38px;
  }

  /* Hero */
  .slide-content-container {
    padding-top: 150px;
    padding-bottom: 120px;
  }

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

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .hero-rating {
    font-size: 0.75rem;
    padding: 0.4rem 0.75rem;
  }

  .slide-image-container {
    max-width: 300px;
  }

  .floating-hero-card {
    max-width: 300px;
    bottom: -30px;
  }

  /* Trust */
  .trust-badges-grid {
    grid-template-columns: 1fr;
  }

  /* Coming Soon */
  .coming-soon-grid {
    grid-template-columns: 1fr;
  }

  /* Statistics */
  .statistics-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  @media (max-width: 480px) {
 .form-grid {
 grid-template-columns: 1fr !important;
 }
  }

  .stat-number {
    font-size: 2rem;
  }

  /* Locations */
  .locations-badge-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Buttons */
  .btn {
    width: 100%;
    min-height: 48px;
  }

  /* Floating Buttons */
  .floating-ctas-container {
    right: 10px;
    bottom: 12px;
    gap: 0.5rem;
  }

  .floating-cta {
    width: 46px;
    height: 46px;
    min-width: 46px;
    min-height: 46px;
    font-size: 1.1rem;
  }

  /* Loader */
  .loader-logo {
    max-width: 75vw;
    height: auto;
  }

  .loader-title {
    font-size: 1.3rem;
    letter-spacing: 0.15em;
  }

  .loader-subtitle {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
  }

  .loader-startup-line {
    width: 180px;
  }
}


/* ---------- Very Small Devices: 360px and below ---------- */

@media (max-width: 360px) {

  .container {
    padding-left: 12px;
    padding-right: 12px;
  }

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

  .hero-subtitle {
    font-size: 0.85rem;
  }

  .slide-image-container {
    max-width: 270px;
  }

  .floating-cta {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
  }

  .floating-ctas-container {
    right: 8px;
    bottom: 10px;
  }
}


/* ---------- Touch Device Improvements ---------- */

@media (hover: none) and (pointer: coarse) {

  .service-card:hover,
  .coming-soon-card:hover,
  .timeline-content:hover,
  .btn:hover,
  .floating-cta:hover {
    transform: none;
  }

  .nav-link:hover::after {
    width: 0;
  }

  .btn,
  .floating-cta,
  .slider-arrow,
  .review-arrow,
  .location-badge-btn {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }
}


/* ---------- Prevent iOS Input Zoom ---------- */

@media (max-width: 768px) {

  input,
  select,
  textarea,
  button {
    font-size: 16px;
  }

  body {
    -webkit-text-size-adjust: 100%;
  }
}


/* ---------- Safe Area for Modern Phones ---------- */

@supports (padding: env(safe-area-inset-bottom)) {

  .floating-ctas-container {
    bottom: calc(12px + env(safe-area-inset-bottom));
  }
}


/* ---------- Prevent Horizontal Overflow ---------- */

@media (max-width: 768px) {

  .mega-menu-container,
  .nav-dropdown-menu {
    max-width: calc(100vw - 30px);
  }

  .section,
  section,
  main,
  footer,
  header {
    max-width: 100%;
    overflow-x: clip;
  }
}

/* ==================================================[span_40](start_span)[span_40](end_span)========================
   Servixa Home - Thank You Page & Post-Booking Module
   ========================================================================== */

body.thankyou-page {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-light, #f8fafc);
    color: var(--text-main, #334155);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    margin: 0;
}

.site-header {
    width: 100%;
    max-width: 800px;
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-header .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary, #0f172a);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-header .logo span {
    color: var(--primary, #2563eb);
}

.thankyou-card {
    background: var(--card-bg, #ffffff);
    width: 100%;
    max-width: 650px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 40px 30px;
    text-align: center;
    margin: auto 0;
    border: 1px solid var(--border, #e2e8f0);
}

.icon-container {
    width: 80px;
    height: 80px;
    background-color: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    color: var(--accent, #10b981);
    animation: scaleIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes scaleIn {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.icon-container svg {
    width: 45px;
    height: 45px;
}

.summary-card {
    background-color: #eff6ff;
    border: 1px dashed #93c5fd;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 24px;
    text-align: left;
}

.summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #dbeafe;
    padding-bottom: 8px;
    margin-bottom: 10px;
    font-size: 0.85rem;
    color: var(--text-muted, #64748b);
}

.summary-header strong {
    color: var(--primary, #2563eb);
    font-size: 0.95rem;
}

.info-box {
    background-color: #f1f5f9;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: left;
}

.info-box h3 {
    font-size: 1rem;
    color: var(--secondary, #0f172a);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-list {
    list-style: none;
    padding: 0;
}

.info-list li {
    font-size: 0.95rem;
    color: var(--text-main, #334155);
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.btn-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (min-width: 480px) {
    .btn-group {
        flex-direction: row;
        justify-content: center;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-primary {
    background-color: var(--primary, #2563eb);
    color: #ffffff;
}

.btn-primary:hover {
    background-color: var(--primary-dark, #1d4ed8);
}

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

.btn-whatsapp:hover {
    background-color: #1eb956;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid var(--border, #e2e8f0);
}

.feature-item {
    font-size: 0.85rem;
    color: var(--text-muted, #64748b);
    font-weight: 500;
}

.feature-item strong {
    display: block;
    color: var(--secondary, #0f172a);
    font-size: 0.95rem;
    margin-bottom: 3px;
}

.site-footer {
    margin-top: 30px;
    font-size: 0.85rem;
    color: var(--text-muted, #64748b);
    text-align: center;
}

.site-footer a {
    color: var(--primary, #2563eb);
    text-decoration: none;
}

/* ==================================================[span_40](start_span)[span_40](end_span)========================
   Servixa Home - Thank You Page & Post-Booking Module
   ========================================================================== */

body.thankyou-page {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-light, #f8fafc);
    color: var(--text-main, #334155);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    margin: 0;
}

.site-header {
    width: 100%;
    max-width: 800px;
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-header .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary, #0f172a);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-header .logo span {
    color: var(--primary, #2563eb);
}

.thankyou-card {
    background: var(--card-bg, #ffffff);
    width: 100%;
    max-width: 650px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 40px 30px;
    text-align: center;
    margin: auto 0;
    border: 1px solid var(--border, #e2e8f0);
}

.icon-container {
    width: 80px;
    height: 80px;
    background-color: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    color: var(--accent, #10b981);
    animation: scaleIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes scaleIn {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.icon-container svg {
    width: 45px;
    height: 45px;
}

.summary-card {
    background-color: #eff6ff;
    border: 1px dashed #93c5fd;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 24px;
    text-align: left;
}

.summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #dbeafe;
    padding-bottom: 8px;
    margin-bottom: 10px;
    font-size: 0.85rem;
    color: var(--text-muted, #64748b);
}

.summary-header strong {
    color: var(--primary, #2563eb);
    font-size: 0.95rem;
}

.info-box {
    background-color: #f1f5f9;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: left;
}

.info-box h3 {
    font-size: 1rem;
    color: var(--secondary, #0f172a);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-list {
    list-style: none;
    padding: 0;
}

.info-list li {
    font-size: 0.95rem;
    color: var(--text-main, #334155);
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.btn-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (min-width: 480px) {
    .btn-group {
        flex-direction: row;
        justify-content: center;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-primary {
    background-color: var(--primary, #2563eb);
    color: #ffffff;
}

.btn-primary:hover {
    background-color: var(--primary-dark, #1d4ed8);
}

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

.btn-whatsapp:hover {
    background-color: #1eb956;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid var(--border, #e2e8f0);
}

.feature-item {
    font-size: 0.85rem;
    color: var(--text-muted, #64748b);
    font-weight: 500;
}

.feature-item strong {
    display: block;
    color: var(--secondary, #0f172a);
    font-size: 0.95rem;
    margin-bottom: 3px;
}

.site-footer {
    margin-top: 30px;
    font-size: 0.85rem;
    color: var(--text-muted, #64748b);
    text-align: center;
}

.site-footer a {
    color: var(--primary, #2563eb);
    text-decoration: none;
}
