/* ============================================
   İPEK TEKNİK - Profesyonel Teknik Servis
   Mobile-First | Customer-Focused Website
   ============================================ */

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

/* --- Design Tokens --- */
:root {
  --blue-primary: #1B5EAB;
  --blue-dark: #14396B;
  --blue-darker: #0E2A4F;
  --blue-deepest: #091C36;
  --blue-light: #2B7DD6;
  --blue-pale: #E8F1FB;
  --orange-primary: #F28C28;
  --orange-hover: #E07A18;
  --orange-light: #FFF3E6;
  --orange-dark: #D46A10;
  --white: #FFFFFF;
  --off-white: #F5F7FA;
  --gray-50: #FAFBFC;
  --gray-100: #F0F2F5;
  --gray-200: #E4E7EB;
  --gray-300: #CBD2D9;
  --gray-400: #9AA5B1;
  --gray-500: #7B8794;
  --gray-600: #616E7C;
  --gray-700: #3E4C59;
  --dark: #1F2933;
  --success: #27AE60;
  --success-bg: #EAFAF1;
  --danger: #E74C3C;
  --warning: #F39C12;

  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Outfit', 'Inter', sans-serif;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.1);
  --shadow-xl: 0 16px 50px rgba(0,0,0,0.12);
  --shadow-card: 0 2px 8px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-full: 9999px;

  --transition: 0.25s ease;
}

/* --- Dark Mode Custom Token Overrides --- */
body.dark-mode {
  --white: #121824;
  --off-white: #0B0E14;
  --gray-50: #1A2436;
  --gray-100: #223049;
  --gray-200: #2C3E5F;
  --gray-300: #425883;
  --gray-400: #7C91BA;
  --gray-500: #A0B3D6;
  --gray-600: #C2D1EB;
  --gray-700: #E2ECFC;
  --dark: #F5F7FA;
  
  --blue-dark: #ECF3FC;
  --blue-pale: #1A2E4C;
  --orange-light: #2C1D11;
  --orange-dark: #FFB366;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.5);
  --shadow-xl: 0 16px 50px rgba(0,0,0,0.6);
  --shadow-card: 0 2px 8px rgba(0,0,0,0.4), 0 1px 2px rgba(0,0,0,0.2);
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-primary);
  color: var(--dark);
  background: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; outline: none; font-family: inherit; }
input, select, textarea { font-family: inherit; outline: none; }
ul, ol { list-style: none; }

/* ============================================
   TOP BAR (Phone number bar)
   ============================================ */
.top-bar {
  background: var(--blue-darker);
  color: rgba(255,255,255,0.8);
  font-size: 0.75rem;
  padding: 6px 0;
  display: none; /* Hidden on mobile */
}

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

.top-bar-left {
  display: flex;
  gap: 20px;
  align-items: center;
}

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

.top-bar-left a svg { flex-shrink: 0; }

.top-bar-right {
  display: flex;
  gap: 16px;
  align-items: center;
}

.top-bar a {
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
}

.top-bar a:hover { color: var(--orange-primary); }

/* ============================================
   HEADER
   ============================================ */
.header {
  background: linear-gradient(135deg, var(--blue-primary) 0%, var(--blue-dark) 100%);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-img {
  height: 44px;
  width: auto;
  border-radius: var(--radius-sm);
  background: var(--white);
  padding: 2px;
  box-shadow: var(--shadow-sm);
  display: block;
}

/* Header Right */
.header-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 14px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-full);
  transition: background var(--transition);
}

.header-phone:hover {
  background: rgba(255,255,255,0.2);
}

.header-phone svg {
  width: 16px;
  height: 16px;
  color: var(--orange-primary);
}

.header-icon-btn {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  color: var(--white);
  transition: background var(--transition);
}

.header-icon-btn:hover {
  background: rgba(255,255,255,0.2);
}

.header-icon-btn svg { width: 18px; height: 18px; }

/* Hamburger */
.hamburger {
  width: 38px;
  height: 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Desktop Nav */
.desktop-nav {
  display: none;
  align-items: center;
  gap: 4px;
}

.desktop-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--white);
  background: rgba(255,255,255,0.12);
}

.desktop-nav-search {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.12);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  gap: 8px;
  margin-left: 8px;
  position: relative;
}

.desktop-nav-search input {
  background: none;
  border: none;
  color: var(--white);
  font-size: 0.8rem;
  width: 120px;
}

.desktop-nav-search input::placeholder { color: rgba(255,255,255,0.5); }

.desktop-nav-search svg { width: 16px; height: 16px; color: rgba(255,255,255,0.6); }

/* Theme Toggle Button */
.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--blue-dark);
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--gray-100);
  flex-shrink: 0;
  margin: 0 4px;
}

.theme-toggle:hover {
  background: var(--blue-pale);
  color: var(--blue-primary);
  transform: scale(1.06) rotate(8deg);
}

.theme-toggle svg {
  width: 20px;
  height: 20px;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

.theme-toggle .sun-icon {
  display: none;
  opacity: 0;
}

.theme-toggle .moon-icon {
  display: block;
  opacity: 1;
}

body.dark-mode .theme-toggle .sun-icon {
  display: block;
  opacity: 1;
  color: var(--orange-primary);
}

body.dark-mode .theme-toggle .moon-icon {
  display: none;
  opacity: 0;
}

body.dark-mode .theme-toggle {
  background: var(--gray-100);
  color: var(--orange-primary);
}

/* Search Dropdown */
.search-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 340px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  overflow: hidden;
  display: none;
  z-index: 200;
  max-height: 400px;
  overflow-y: auto;
}

.search-dropdown.active {
  display: block;
  animation: searchFadeIn 0.2s ease;
}

@keyframes searchFadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.search-dropdown-title {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 12px 16px 6px;
}

.search-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  cursor: pointer;
  transition: background 0.15s ease;
  text-decoration: none;
  color: var(--dark);
}

.search-item:hover {
  background: var(--blue-pale);
}

.search-item-icon {
  width: 32px;
  height: 32px;
  background: var(--gray-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue-primary);
}

.search-item-icon svg {
  width: 16px;
  height: 16px;
  color: var(--blue-primary);
}

.search-item-info {
  flex: 1;
  min-width: 0;
}

.search-item-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--blue-dark);
}

.search-item-name mark {
  background: rgba(243, 156, 18, 0.25);
  color: inherit;
  border-radius: 2px;
  padding: 0 1px;
}

.search-item-desc {
  font-size: 0.75rem;
  color: var(--gray-500);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-no-result {
  padding: 20px 16px;
  text-align: center;
}

.search-no-result p {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 14px;
}

.search-contact-btns {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.search-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  transition: all 0.2s ease;
  text-decoration: none;
}

.search-contact-btn.phone {
  background: var(--blue-primary);
  color: var(--white);
}

.search-contact-btn.phone:hover { background: var(--blue-dark); }

.search-contact-btn.whatsapp {
  background: #25D366;
  color: var(--white);
}

.search-contact-btn.whatsapp:hover { background: #1DA851; }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 99;
  transform: translateX(-100%);
  transition: transform 0.35s ease;
  overflow-y: auto;
}

.mobile-menu.active { transform: translateX(0); }

.mobile-menu-inner {
  padding: 16px;
}

.mobile-menu-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gray-700);
  transition: all var(--transition);
}

.mobile-menu-link:active,
.mobile-menu-link:hover {
  background: var(--blue-pale);
  color: var(--blue-primary);
}

.mobile-menu-link svg { width: 20px; height: 20px; opacity: 0.6; }

.mobile-menu-divider {
  height: 1px;
  background: var(--gray-200);
  margin: 12px 0;
}

.mobile-menu-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  background: var(--orange-primary);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-lg);
  margin-top: 16px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-primary) 60%, var(--blue-light) 100%);
  overflow: hidden;
}

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

/* Mobile: image on top, text below */
.hero-image-side {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(14, 42, 79, 0.3) 0%, rgba(14, 42, 79, 0.7) 100%);
}

.hero-content-side {
  padding: 28px 20px 32px;
  position: relative;
  z-index: 2;
}

.hero-subtitle-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-full);
  color: var(--orange-primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-subtitle-top .dot {
  width: 6px;
  height: 6px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
}

.hero-title .orange { color: var(--orange-primary); }

.hero-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
  line-height: 1.5;
}

.hero-cta-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-cta-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--orange-primary);
  border-radius: var(--radius-lg);
  color: var(--white);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(242, 140, 40, 0.35);
}

.hero-cta-card:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(242, 140, 40, 0.45);
}

.hero-cta-card-phone {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: none;
}

.hero-cta-card-phone:hover {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: none;
}

.hero-cta-card-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.hero-cta-card-icon svg {
  width: 20px;
  height: 20px;
}

.hero-cta-card-text {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.hero-cta-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.hero-cta-card-sub {
  font-size: 0.72rem;
  opacity: 0.7;
  margin-top: 2px;
}

.hero-cta-card-arrow {
  font-size: 1.2rem;
  opacity: 0.6;
  transition: transform 0.3s ease;
}

.hero-cta-card:hover .hero-cta-card-arrow {
  transform: translateX(4px);
  opacity: 1;
}

/* ============================================
   SERVICE CARDS
   ============================================ */
.services-section {
  padding: 32px 0 40px;
}

.services-section.services-top {
  padding-top: 0;
  margin-top: -20px;
  position: relative;
  z-index: 10;
}

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

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--blue-dark);
  position: relative;
  padding-left: 14px;
}

.section-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 4px;
  background: var(--orange-primary);
  border-radius: var(--radius-full);
}

.section-link {
  font-size: 0.8rem;
  color: var(--blue-primary);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

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

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover {
  border-color: var(--blue-primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

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

.service-card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-pale);
  border-radius: var(--radius-lg);
  transition: transform 0.3s ease;
}

.service-card-icon svg {
  width: 36px;
  height: 36px;
}

.service-card:hover .service-card-icon {
  transform: scale(1.1);
}

.service-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--blue-dark);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.service-card-desc {
  font-size: 0.72rem;
  color: var(--gray-500);
  line-height: 1.4;
  margin-bottom: 14px;
}

.service-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  background: var(--orange-primary);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
  border: none;
  cursor: pointer;
}

.service-card-btn:hover { background: var(--orange-hover); }

/* ============================================
   SERVICE PROCESS STEPS
   ============================================ */
.process-section {
  padding: 48px 0;
  background: var(--gray-50);
}

.process-subtitle {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-top: 8px;
  margin-bottom: 32px;
  padding-left: 14px;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.process-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

.process-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--orange-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.process-card:hover::before {
  opacity: 1;
}

.process-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.process-card-number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--orange-primary);
  line-height: 1;
}

.process-card-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, var(--orange-primary), transparent);
  border-radius: 2px;
}

.process-card-icon {
  width: 56px;
  height: 56px;
  background: var(--blue-pale);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: transform 0.3s ease;
}

.process-card-icon svg {
  width: 28px;
  height: 28px;
  color: var(--blue-primary);
}

.process-card:hover .process-card-icon {
  transform: scale(1.1);
}

.process-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--blue-dark);
  margin-bottom: 6px;
}

.process-card-desc {
  font-size: 0.78rem;
  color: var(--gray-500);
  line-height: 1.5;
}

/* ============================================
   URGENT SERVICE BANNER
   ============================================ */
.urgent-banner {
  padding: 0;
}

.urgent-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  padding: 32px 24px;
  background: linear-gradient(135deg, var(--orange-primary), #E85D26);
  border-radius: var(--radius-xl);
  margin: 0 16px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(242, 140, 40, 0.3);
}

.urgent-inner::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -30%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.12), transparent 70%);
  border-radius: 50%;
}

.urgent-icon {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.urgent-icon svg {
  width: 28px;
  height: 28px;
  color: var(--white);
}

.urgent-text h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 4px;
}

.urgent-text p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
}

.urgent-text strong {
  color: var(--white);
}

.urgent-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--white);
  color: var(--orange-primary);
  font-weight: 800;
  font-size: 0.9rem;
  border-radius: var(--radius-full);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  white-space: nowrap;
}

.urgent-btn svg {
  width: 18px;
  height: 18px;
}

.urgent-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.15);
}

/* ============================================
   ADVANTAGES
   ============================================ */
.advantages-section {
  padding: 48px 0;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-primary));
  position: relative;
  overflow: hidden;
}

.advantages-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(242, 140, 40, 0.1), transparent 70%);
  border-radius: 50%;
}

.advantages-section .section-title {
  color: var(--white);
}

.advantages-section .section-title::before {
  background: var(--orange-primary);
}

.advantages-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.advantage-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 22px 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.advantage-card:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-3px);
}

.advantage-icon {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.advantage-icon svg {
  width: 36px;
  height: 36px;
}

.advantage-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--white);
  margin-bottom: 6px;
}

.advantage-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--orange-primary);
}

.advantage-desc {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}

/* ============================================
   BRANDS BAND
   ============================================ */
.brands-section {
  padding: 16px 0;
  background: var(--blue-darker);
  overflow: hidden;
  width: 100%;
}

.brands-ticker-wrapper {
  overflow: hidden;
  width: 100%;
  display: flex;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.brands-ticker {
  display: flex;
  align-items: center;
  white-space: nowrap;
  width: max-content;
  flex-shrink: 0;
  animation: brandScroll 25s linear infinite;
  will-change: transform;
}

.brands-ticker span:not(.sep) {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.08em;
  padding: 0 25px;
  display: inline-block;
}

.brands-ticker .sep {
  color: var(--orange-primary);
  font-size: 0.95rem;
  opacity: 0.9;
  padding: 0;
  display: inline-block;
}

@keyframes brandScroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/* ============================================
   FREE SUPPORT / CALENDAR SECTION
   ============================================ */
.support-section {
  padding: 40px 0;
}

.support-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.support-header {
  background: var(--blue-primary);
  padding: 20px;
  color: var(--white);
  text-align: center;
}

.support-header h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.support-header p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
}

.support-body {
  padding: 20px;
}

/* Calendar Slots */
.calendar-type-selector {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.calendar-type-btn {
  padding: 10px 6px;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  text-align: center;
  transition: all var(--transition);
  background: var(--gray-100);
  color: var(--gray-600);
  border: 1px solid var(--gray-200);
  cursor: pointer;
}

.calendar-type-btn.active {
  background: var(--blue-primary);
  color: var(--white);
}

.mini-calendar {
  margin-bottom: 16px;
}

.mini-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.mini-cal-title {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--blue-dark);
}

.mini-cal-nav {
  display: flex;
  gap: 4px;
}

.mini-cal-nav-btn {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  border-radius: var(--radius-sm);
  color: var(--gray-600);
  font-size: 0.8rem;
  transition: all var(--transition);
}

.mini-cal-nav-btn:hover {
  background: var(--blue-primary);
  color: var(--white);
}

.mini-cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  text-align: center;
}

.mini-cal-day-name {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--gray-400);
  padding: 4px 0;
}

.mini-cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
}

.mini-cal-day:hover { background: var(--gray-100); }
.mini-cal-day.disabled { color: var(--gray-300); cursor: default; }
.mini-cal-day.disabled:hover { background: none; }
.mini-cal-day.today { background: var(--blue-pale); color: var(--blue-primary); font-weight: 700; }

.mini-cal-day.selected {
  background: var(--orange-primary);
  color: var(--white);
  font-weight: 700;
}

.mini-cal-day.available {
  position: relative;
}

.mini-cal-day.available::after {
  content: '';
  position: absolute;
  bottom: 2px;
  width: 4px;
  height: 4px;
  background: var(--success);
  border-radius: 50%;
}

.support-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}

.support-slot {
  padding: 10px 8px;
  text-align: center;
  background: var(--gray-50);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition);
}

.support-slot:hover { border-color: var(--blue-primary); }

.support-slot.selected {
  border-color: var(--orange-primary);
  background: var(--orange-light);
}

.support-slot.unavailable {
  opacity: 0.45;
  cursor: not-allowed;
  background: var(--gray-100);
  border-color: var(--gray-200);
  color: var(--gray-400);
}

.support-slot.unavailable .support-slot-time {
  color: var(--gray-400);
}

.support-slot.unavailable:hover {
  border-color: var(--gray-200);
}

.selected-date-info {
  margin-top: -8px;
  margin-bottom: 20px;
  padding: 10px 14px;
  background: rgba(27, 94, 171, 0.05);
  border-left: 3px solid var(--blue-primary);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue-primary);
  transition: all var(--transition);
}

.selected-date-info.has-selection {
  background: rgba(46, 204, 113, 0.08);
  border-left-color: var(--success);
  color: #27ae60;
}

.support-slot-time {
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--dark);
}

.support-slot-label {
  font-size: 0.65rem;
  color: var(--gray-400);
  margin-top: 2px;
}

/* New Form Container Grid Styles */
.support-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.support-left-col {
  display: flex;
  flex-direction: column;
}

.support-right-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--gray-50);
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
}

.support-slots-label-heading,
.booking-form-heading {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 12px;
  border-left: 3px solid var(--orange-primary);
  padding-left: 8px;
}

.booking-form-heading {
  margin-bottom: 4px;
}

.support-submit {
  width: 100%;
  padding: 14px;
  background: var(--orange-primary);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  margin-top: 8px;
}

.support-submit:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(242, 140, 40, 0.3);
}

@media (min-width: 768px) {
  .support-columns {
    grid-template-columns: 1.1fr 0.9fr;
  }
  .support-right-col {
    padding: 30px;
  }
}

/* Booking Success State Styles */
.booking-success-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 24px;
  max-width: 500px;
  margin: 0 auto;
  animation: successFadeInUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.success-icon-wrapper {
  width: 70px;
  height: 70px;
  background: var(--success-bg);
  color: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(39, 174, 96, 0.15);
  animation: successPulse 2s infinite;
}

@keyframes successPulse {
  0% { box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.4); }
  70% { box-shadow: 0 0 0 12px rgba(39, 174, 96, 0); }
  100% { box-shadow: 0 0 0 0 rgba(39, 174, 96, 0); }
}

.success-icon-wrapper svg {
  width: 32px;
  height: 32px;
}

.booking-success-state h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 12px;
}

.booking-success-state p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 28px;
}

.success-action-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.success-wa-btn {
  width: 100%;
  padding: 14px 28px;
  background: #25D366;
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.success-wa-btn:hover {
  background: #1DA851;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.reset-booking-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray-500);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.2s ease;
  padding: 6px;
}

.reset-booking-btn:hover {
  color: var(--blue-primary);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  padding: 48px 0;
  background: var(--white);
}

.testimonials-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 10px 16px 24px;
}

.testimonials-scroll::-webkit-scrollbar { display: none; }

.testimonial-card {
  flex: 0 0 290px;
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-light);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 12px;
  right: 22px;
  font-family: Georgia, serif;
  font-size: 4rem;
  color: var(--orange-primary);
  opacity: 0.12;
  line-height: 1;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 16px;
  font-style: italic;
}

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

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 2px 8px rgba(27, 94, 171, 0.25);
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--blue-dark);
}

.testimonial-role {
  font-size: 0.72rem;
  color: var(--orange-dark);
  font-weight: 500;
}

.testimonial-actions {
  display: flex;
  gap: 8px;
}

.section-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--blue-pale);
  color: var(--blue-primary);
  font-weight: 700;
  font-size: 0.8rem;
  border-radius: var(--radius-full);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

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

.loading-testimonials {
  width: 100%;
  text-align: center;
  padding: 40px 0;
  color: var(--gray-400);
  font-size: 0.9rem;
  font-weight: 600;
}

/* ============================================
   COMMENT SUBMISSION FORM
   ============================================ */
.comment-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 12px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  color: var(--dark);
  background: var(--gray-50);
  transition: all 0.25s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(27, 94, 171, 0.1);
}

.star-rating-input {
  display: flex;
  gap: 8px;
}

.star-rating-input button {
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--gray-300);
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
  padding: 0;
  line-height: 1;
}

.star-rating-input button:hover {
  transform: scale(1.15);
}

.star-rating-input button.active,
.star-rating-input button.active ~ button {
  /* Note: standard layout goes left-to-right, we handle color programmatically in JS */
}

.star-rating-input button.gold {
  color: #F39C12;
}

.comment-submit-btn {
  width: 100%;
  padding: 14px;
  background: var(--orange-primary);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  transition: background var(--transition);
  margin-top: 8px;
}

.comment-submit-btn:hover {
  background: var(--orange-hover);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
  position: relative;
}

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

.faq-badge {
  display: inline-block;
  padding: 6px 18px;
  background: var(--blue-pale);
  color: var(--blue-primary);
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  box-shadow: 0 2px 10px rgba(27, 94, 171, 0.08);
}

.faq-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--blue-dark);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.faq-subtitle {
  font-size: 0.95rem;
  color: var(--gray-600);
}

.faq-list {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-left: 4px solid transparent;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
  border-color: var(--gray-300);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.faq-item.active {
  border-color: var(--blue-primary);
  border-left-color: var(--orange-primary);
  box-shadow: var(--shadow-lg);
  transform: scale(1.01);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px 28px;
  background: none;
  border: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--blue-dark);
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
  gap: 20px;
}

.faq-q-icon {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-light));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(27, 94, 171, 0.2);
}

.faq-item.active .faq-question {
  color: var(--blue-primary);
  background: var(--blue-pale);
}

.faq-item.active .faq-q-icon {
  background: linear-gradient(135deg, var(--orange-primary), var(--orange-hover));
  box-shadow: 0 4px 10px rgba(242, 140, 40, 0.2);
}

.faq-toggle {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  border-radius: 50%;
  color: var(--gray-500);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-toggle svg {
  width: 14px;
  height: 14px;
}

.faq-question:hover .faq-toggle {
  background: var(--blue-primary);
  color: var(--white);
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  background: var(--orange-primary);
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 24px 28px 24px 78px;
  font-size: 0.92rem;
  color: var(--gray-700);
  line-height: 1.7;
  border-top: 1px solid var(--gray-100);
}

@media (max-width: 576px) {
  .faq-section {
    padding: 60px 0;
  }
  .faq-title {
    font-size: 1.75rem;
  }
  .faq-question {
    padding: 18px 20px;
  }
  .faq-answer p {
    padding: 18px 20px 18px 68px;
  }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--blue-deepest);
  padding: 40px 0 20px;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-bottom: 28px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-logo-img {
  height: 60px;
  width: auto;
  border-radius: var(--radius-md);
  background: var(--white);
  padding: 3px;
  display: block;
}

.footer-desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  max-width: 300px;
}

.footer-col-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--orange-primary);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

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

.footer-link {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-link:hover { color: var(--white); }

.footer-link svg {
  flex-shrink: 0;
  opacity: 0.6;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
}

.footer-social-btn {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  color: var(--white);
  font-size: 1rem;
  transition: all var(--transition);
}

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

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
}

/* ============================================
   FOOTER MAP
   ============================================ */
.footer-map-wrapper {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 32px;
}

.footer-map-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--white);
}

.footer-map-title svg {
  color: var(--orange-primary);
}

.footer-map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  position: relative;
  border: 1px solid rgba(255,255,255,0.06);
}

.footer-map-container::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
}

.footer-map-container iframe {
  display: block;
  width: 100%;
  min-height: 280px;
  filter: saturate(0.85) contrast(1.05);
  transition: filter 0.4s ease;
}

.footer-map-container:hover iframe {
  filter: saturate(1) contrast(1);
}

.footer-map-directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--orange-primary), var(--orange-hover));
  color: var(--white);
  font-weight: 700;
  font-size: 0.82rem;
  border-radius: var(--radius-full);
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(227, 126, 30, 0.3);
}

.footer-map-directions-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(227, 126, 30, 0.45);
  background: linear-gradient(135deg, var(--orange-hover), var(--orange-primary));
}

/* ============================================
   WHATSAPP FAB
   ============================================ */
.fab-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 16px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 50;
  transition: all 0.3s ease;
  animation: fabBounce 3s ease-in-out infinite;
}

.fab-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

@keyframes fabBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
  position: fixed;
  bottom: 90px;
  right: 16px;
  width: 42px;
  height: 42px;
  background: var(--blue-primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: var(--shadow-md);
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--blue-dark);
  transform: translateY(-3px);
}

/* ============================================
   MORE SERVICES BANNER
   ============================================ */
.more-services-banner {
  margin-top: 40px;
  background: var(--white);
  border: 1px dashed var(--blue-primary);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.more-services-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.more-services-badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--orange-light);
  color: var(--orange-dark);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.more-services-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 12px;
}

.more-services-desc {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 24px;
}

.more-services-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--blue-primary);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.more-services-btn:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(27, 94, 171, 0.3);
}

.more-services-btn svg {
  transition: transform 0.3s ease;
}

.more-services-btn:hover svg {
  transform: scale(1.1);
}

/* ============================================
   SERVICE MODAL
   ============================================ */
.service-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.service-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 36, 66, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.service-modal-container {
  position: relative;
  width: 100%;
  max-width: 550px;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  z-index: 2;
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-modal.active .service-modal-container {
  transform: translateY(0) scale(1);
}

.service-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--gray-600);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 10;
}

.service-modal-close:hover {
  background: var(--danger);
  color: var(--white);
}

.service-modal-content {
  padding: 32px;
}

.service-modal-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--gray-100);
  padding-bottom: 16px;
}

.service-modal-icon-wrapper {
  width: 50px;
  height: 50px;
  background: var(--blue-pale);
  color: var(--blue-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-modal-icon-wrapper svg {
  width: 28px;
  height: 28px;
}

.service-modal-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--blue-dark);
}

.service-modal-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.modal-info-block h5 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--orange-dark);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.modal-info-block ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.modal-info-block li {
  font-size: 0.88rem;
  color: var(--gray-700);
  position: relative;
  padding-left: 20px;
  line-height: 1.5;
}

.modal-info-block li::before {
  content: "•";
  position: absolute;
  left: 4px;
  color: var(--blue-primary);
  font-weight: bold;
}

.service-modal-footer {
  margin-top: 28px;
  display: flex;
  gap: 12px;
}

.modal-btn {
  flex: 1;
  padding: 12px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.modal-btn-phone {
  background: var(--blue-primary);
  color: var(--white);
}

.modal-btn-phone:hover {
  background: var(--blue-dark);
}

.modal-btn-whatsapp {
  background: #25D366;
  color: var(--white);
}

.modal-btn-whatsapp:hover {
  background: #1DA851;
}

@media (max-width: 576px) {
  .service-modal-content {
    padding: 24px;
  }
  .service-modal-footer {
    flex-direction: column;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVE - Tablet
   ============================================ */
@media (min-width: 768px) {
  .top-bar { display: block; }

  .header .container { height: 65px; }

  .hamburger { display: none; }

  .desktop-nav { display: flex; }

  .hero-inner {
    flex-direction: row;
    min-height: 420px;
  }

  .hero-image-side {
    flex: 1;
    height: auto;
  }

  .hero-content-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
  }

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

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

  /* Process Steps - 4 columns on tablet */
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Urgent Banner - horizontal */
  .urgent-inner {
    flex-direction: row;
    text-align: left;
    padding: 28px 36px;
    margin: 0;
    border-radius: var(--radius-xl);
  }

  .advantages-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ============================================
   RESPONSIVE - Desktop
   ============================================ */
@media (min-width: 1024px) {
  .container { padding: 0 24px; }

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

  .hero-content-side { padding: 60px; }

  .testimonial-card { flex: 0 0 320px; }
}

@media (min-width: 1200px) {
  .hero-title { font-size: 2.7rem; }
}

/* ============================================
   Dark scrollbar
   ============================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gray-400); }
