/* 
 * Basingstoke Computer Repairs - Premium Modern Design
 * Pure CSS (No Frameworks)
 */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Inter:wght@400;500;600&display=swap');

:root {
  /* Modern Color Palette */
  --primary: #2563eb;
  /* Royal Blue */
  --primary-dark: #1e40af;
  --primary-light: #60a5fa;
  --secondary: #0f172a;
  /* Slate Dark */
  --accent: #06b6d4;
  /* Cyan */
  --bg-body: #f8fafc;
  /* very light slate */
  --bg-white: #ffffff;
  --bg-light: #f3f4f6;
  --text-main: #1f2937;
  /* Dark Gray */
  --text-muted: #4b5563;
  --text-light: #9ca3af;
  --border: #e5e7eb;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;

  /* Spacing */
  --container-width: 1280px;
  --container-padding: 1rem;
  --header-height: 80px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

  /* Transitions */
  --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: 'Inter', sans-serif;
  scroll-behavior: smooth;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-main);
  background-color: var(--bg-body);
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--text-main);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

/* Utilities */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.text-center {
  text-align: center;
}

.text-primary {
  color: var(--primary);
}

.text-accent {
  color: var(--accent);
}

.font-bold {
  font-weight: 700;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.grid {
  display: grid;
  gap: 2rem;
}

.grid-cols-2 {
  grid-template-columns: repeat(1, 1fr);
}

.grid-cols-3 {
  grid-template-columns: repeat(1, 1fr);
}

.grid-cols-4 {
  grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 768px) {
  .grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  h1 {
    font-size: 3.5rem;
  }

  h2 {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.section {
  padding: 4rem 0;
}

.bg-white {
  background-color: var(--bg-white);
}

.bg-light {
  background-color: var(--bg-light);
}

.bg-primary {
  background-color: var(--primary);
  color: white;
}

/* Components */

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  gap: 0.5rem;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background-color: var(--bg-white);
  color: var(--primary);
  border-color: var(--border);
}

.btn-secondary:hover {
  border-color: var(--primary);
  background-color: var(--bg-light);
}

.btn-accent {
  background-color: var(--accent);
  color: white;
}

.btn-accent:hover {
  background-color: var(--accent-dark);
  color: white;
}

.btn-whatsapp {
  background-color: #25D366;
  color: white;
}

.btn-whatsapp:hover {
  background-color: #128C7E;
  color: white;
}

/* Cards */
.card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-light);
}

.card-icon {
  width: 48px;
  height: 48px;
  background-color: var(--bg-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

/* Header */
.header {
  height: var(--header-height);
  background-color: rgb(255 255 255 / 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  position: relative;
  /* Removed sticky per user request */
  z-index: 1000;
  transition: var(--transition);
}

.top-bar {
  position: sticky;
  top: 0;
  z-index: 1002;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav {
  display: none;
}

.nav-list {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: var(--text-muted);
  font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

/* Dropdown Navigation */
.nav-item {
  position: relative;
}


.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  min-width: 200px;
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-5px);
  transition: all 0.2s ease;
  z-index: 100;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 0.6rem 0.75rem;
  color: #6b7280;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.15s;
}

.dropdown-item:hover {
  background: #f3f4f6;
  color: var(--primary);
}

.header-actions {
  display: none;
  gap: 1rem;
}

.mobile-toggle {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

@media (min-width: 1024px) {
  .nav {
    display: block;
  }

  .header-actions {
    display: flex;
  }

  .mobile-toggle {
    display: none;
  }
}

/* Hero Section */
.hero {
  padding: 1rem 0;
  background-image: url('../images/hero-background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

/* Background shape decoration with dark overlay for better text visibility */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(30, 41, 59, 0.82) 100%);
  z-index: 0;
}

.hero-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }

  .hero-text {
    max-width: 100%;
    margin: 0;
    text-align: left;
  }

  .hero-form-wrapper {
    display: flex;
    justify-content: flex-end;
  }
}

.text-gradient {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero h1 {
  font-size: 2.5rem;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
  line-height: 1.05;
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 3.5rem;
  }
}

.text-lead {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  max-width: 600px;
}

/* Modern Hero Glassmorphism Banner */
.hero-glass-banner {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
  backdrop-filter: blur(25px) saturate(180%);
  -webkit-backdrop-filter: blur(25px) saturate(180%);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 32px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  animation: fadeInUp 0.8s ease-out;
  position: relative;
}

.hero-glass-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
  border-radius: 30px;
  pointer-events: none;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: 2.75rem;
  font-weight: 900;
  color: white;
  text-shadow:
    2px 4px 16px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(37, 99, 235, 0.3);
  margin-bottom: 1.25rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
  position: relative;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4rem;
  }
}

.hero-subtitle {
  font-size: 1.35rem;
  color: rgba(255, 255, 255, 0.98);
  text-shadow:
    1px 2px 12px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(0, 0, 0, 0.2);
  margin: 0;
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* Modern Hero Buttons */
.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.hero-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.hero-btn:hover::before {
  width: 300px;
  height: 300px;
}

.hero-btn .btn-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.hero-btn:hover .btn-icon {
  transform: scale(1.2) rotate(10deg);
}

.hero-btn-primary {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  border: none;
}

.hero-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.5);
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
}

.hero-btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-btn-secondary:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Modern Trust Badges */
.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.hero-badge:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.hero-badge .badge-icon {
  font-size: 1.25rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.hero-badge .badge-text {
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}



/* Hero Banner Transparent - For Problem Pages */
.hero-banner-transparent {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.hero-banner-transparent h1,
.hero-banner-transparent h2,
.hero-banner-transparent h3 {
  color: white !important;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  -webkit-text-fill-color: white !important;
}

.hero-banner-transparent p,
.hero-banner-transparent span {
  color: white !important;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-banner-transparent .text-gradient {
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  -webkit-text-fill-color: white !important;
  color: white !important;
}


/* Hero Form Card */
.hero-form-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 2px solid rgba(255, 255, 255, 0.8);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  padding: 3rem;
  border-radius: 24px;
  width: 100%;
  max-width: 520px;
}

.hero-form-card h3 {
  color: var(--primary-dark);
  margin-bottom: 2rem;
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 3rem;
}

.badge-item {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-sm);
}

.badge-icon {
  color: var(--accent);
}

/* Sticky Mobile Bottom Bar */
.sticky-mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  padding: 0.75rem;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  gap: 1rem;
  z-index: 1000;
  border-top: 1px solid #e5e7eb;
}

.sticky-mobile-bar .btn {
  flex: 1;
  padding: 0.75rem;
  font-size: 0.95rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .sticky-mobile-bar {
    display: none;
  }
}

/* Modal Popup */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  width: 90%;
  max-width: 500px;
  position: relative;
  transform: translateY(20px);
  transition: all 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #f1f5f9;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  transition: all 0.2s;
}

.modal-close:hover {
  background: #e2e8f0;
  color: #ef4444;
}

.modal-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.modal-header h3 {
  margin-bottom: 0.5rem;
  color: var(--primary-dark);
}

.modal-header p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.form-label {
  display: block;
  margin-bottom: 0.75rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-main);
}

.form-control,
.form-select {
  width: 100%;
  padding: 1.125rem 1.25rem;
  border: 2px solid var(--border);
  border-radius: 12px;
  background-color: var(--bg-white);
  color: var(--text-main);
  transition: var(--transition);
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.5;
}

.form-control:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgb(59 130 246 / 0.15);
  background-color: #fafbff;
}

/* Floating Actions */
.floating-actions {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 900;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  color: white;
  transition: var(--transition);
}

.float-btn:hover {
  transform: scale(1.1);
}

.float-call {
  background-color: var(--primary);
}

.float-wa {
  background-color: #25D366;
}

/* Footer */
.footer {
  background-color: #1f2937;
  color: #f3f4f6;
  padding: 4rem 0 2rem;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer h3 {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: #9ca3af;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid #374151;
  text-align: center;
  color: #9ca3af;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  height: calc(100vh - var(--header-height));
  background-color: var(--bg-white);
  padding: 180px 2rem 2rem;
  /* Large padding to clear header overlap */
  transform: translateX(100%);
  transition: var(--transition);
  z-index: 999;
}

.mobile-menu.active {
  transform: translateX(0);
}

/* Reviews Carousel */
.reviews-scroll {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 1rem 0 2rem;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.reviews-scroll::-webkit-scrollbar {
  display: none;
}

.review-card {
  min-width: 300px;
  flex: 0 0 300px;
  scroll-snap-align: center;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

/* CTA Block */
.cta-block {
  background-color: var(--primary);
  color: white;
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
}

.cta-block h2 {
  color: white;
}

.cta-block p {
  color: rgb(255 255 255 / 0.9);
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 1rem 0;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.breadcrumbs a {
  color: var(--text-muted);
}

.breadcrumbs a:hover {
  color: var(--primary);
}

.separator {
  margin: 0 0.5rem;
}

/* Areas List */
.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.area-tag {
  background-color: var(--bg-white);
  border: 1px solid var(--border);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.area-tag::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.area-tag:hover::before {
  opacity: 1;
}

.area-tag:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* =========================================
   New Enhancements (Homepage & Remote)
   ========================================= */

/* Homepage Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.benefit-card {
  background: white;
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(59, 130, 246, 0.2);
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-icon-wrapper {
  width: 70px;
  height: 70px;
  background: #eff6ff;
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
  transition: background 0.3s;
}

.benefit-card:hover .benefit-icon-wrapper {
  background: var(--primary);
  color: white;
}

/* Remote Support "How It Works" Section */
.remote-process-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: white;
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}

/* Background Pattern */
.remote-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  background-image: radial-gradient(#60a5fa 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.process-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.process-steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  gap: 2rem;
}

/* Connecting Line (Desktop) */
.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 60px;
  right: 60px;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  z-index: 0;
}

.process-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-circle {
  width: 80px;
  height: 80px;
  background: #1e293b;
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
  box-shadow: 0 0 0 8px rgba(15, 23, 42, 1);
  /* Fake spacing from line */
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.process-step:hover .step-circle {
  transform: scale(1.1);
  background: var(--primary);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
  color: white;
}

.step-number {
  background: var(--primary);
  color: white;
  font-weight: bold;
  font-size: 0.8rem;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  position: absolute;
  top: -10px;
  right: calc(50% - 40px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.process-step h4 {
  color: white;
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.process-step p {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Mobile Adjustments for Process */
@media (max-width: 768px) {
  .process-steps {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }

  .process-steps::before {
    width: 3px;
    height: 100%;
    left: 50%;
    top: 0;
    right: auto;
    transform: translateX(-50%);
  }

  .step-circle {
    margin-bottom: 1rem;
    box-shadow: 0 0 0 10px rgba(15, 23, 42, 1);
    /* Bigger mask for vertical */
  }

  .step-number {
    right: auto;
    left: 50%;
    transform: translateX(20px);
  }
}

/* =========================================
   Premium Polish (Glassmorphism & Gradients)
   ========================================= */

/* Header Refinement */
.header-actions {
  display: none !important;
  /* Remove buttons as requested */
}

.header-inner {
  justify-content: center;
  /* Center the content */
  position: relative;
}

.logo {
  position: absolute;
  left: 0;
}

.mobile-toggle {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  z-index: 1003;
}

.nav {
  margin-left: auto;
  /* Push nav to the right */
}

/* Classy Nav Links */
.nav-link {
  color: var(--text-main);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.5rem 0;
  position: relative;

}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Hero Section Premium Upgrade - Vibrant & Animated */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}


/* Header Transparency Refinement */
.header {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

/* Section Moderate Spacing */
.section {
  padding: 6rem 0;
}

/* =========================================
   ULTRA-MODERN WHY CHOOSE US SECTION
   ========================================= */

/* Why Choose Us Section with Animated Background */
.why-choose-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 50%, #f1f5f9 100%);
  background-size: 200% 200%;
  animation: gradientShift 15s ease infinite;
  position: relative;
  overflow: hidden;
}

@keyframes gradientShift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

/* Geometric Background Shapes */
.why-choose-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08), transparent 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
}

.why-choose-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.06), transparent 70%);
  border-radius: 50%;
  animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  33% {
    transform: translate(30px, -30px) rotate(120deg);
  }

  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }
}

/* Premium Benefit Cards with 3D Effects */
.premium-benefit-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.5);
  transform-style: preserve-3d;
  transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
  animation: cardFadeIn 0.6s ease-out backwards;
}

/* Staggered fade-in animation */
.premium-benefit-card:nth-child(1) {
  animation-delay: 0.1s;
}

.premium-benefit-card:nth-child(2) {
  animation-delay: 0.2s;
}

.premium-benefit-card:nth-child(3) {
  animation-delay: 0.3s;
}

.premium-benefit-card:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes cardFadeIn {
  from {
    opacity: 0;
    transform: perspective(1000px) translateY(40px) rotateX(-10deg);
  }

  to {
    opacity: 1;
    transform: perspective(1000px) translateY(0) rotateX(0deg);
  }
}

/* Animated Gradient Border */
.premium-benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 24px;
  padding: 2px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6, #ec4899, #3b82f6);
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: gradientRotate 8s ease infinite;
}

@keyframes gradientRotate {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

/* Hover Effects - 3D Tilt and Glow */
.premium-benefit-card:hover {
  transform: perspective(1000px) translateY(-12px) rotateX(2deg) scale(1.02);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.8),
    0 0 40px rgba(59, 130, 246, 0.2);
}

.premium-benefit-card:hover::before {
  opacity: 1;
}

/* Card Glow Effect on Hover */
.premium-benefit-card::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.3), transparent 70%);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.6s ease;
  border-radius: 50%;
  z-index: 0;
}

.premium-benefit-card:hover::after {
  transform: translate(-50%, -50%) scale(1.5);
}

/* Icon Wrapper with Modern Design */
.card-icon-modern {
  width: 85px;
  height: 85px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Unique gradient for each card */
.premium-benefit-card:nth-child(1) .card-icon-modern {
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25);
}

.premium-benefit-card:nth-child(2) .card-icon-modern {
  background: linear-gradient(135deg, #ede9fe, #ddd6fe);
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.25);
}

.premium-benefit-card:nth-child(3) .card-icon-modern {
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.25);
}

.premium-benefit-card:nth-child(4) .card-icon-modern {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.25);
}

/* Icon Animation on Hover */
.premium-benefit-card:hover .card-icon-modern {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.35);
}

/* Card Title */
.premium-benefit-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1e293b;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.premium-benefit-card:hover h4 {
  color: #2563eb;
}

/* Card Description */
.premium-benefit-card p {
  line-height: 1.8;
  color: #64748b;
  position: relative;
  z-index: 1;
  font-size: 1.05rem;
}

/* Section Title Styling */
.why-choose-title {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #8b5cf6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

/* Animated Underline */
.why-choose-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  border-radius: 2px;
  animation: underlineGrow 1s ease-out 0.5s forwards;
}

@keyframes underlineGrow {
  to {
    width: 120px;
  }
}

/* Badge Styling */
.section-badge {
  display: inline-block;
  padding: 0.6rem 1.8rem;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  border-radius: 50px;
  color: white;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .premium-benefit-card {
    padding: 2rem 1.5rem;
  }

  .card-icon-modern {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }

  .why-choose-title {
    font-size: 2rem;
  }
}

/* =========================================
   Premium Animations & Glassmorphism
   ========================================= */

:root {
  --primary-glow: rgba(37, 99, 235, 0.5);
  --glass-bg: rgba(255, 255, 255, 0.95);
  --glass-border: rgba(255, 255, 255, 0.4);
}

/* Entrance Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 99, 235, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* Utility Animation Classes */
.animate-fade-up {
  animation: fadeInUp 0.8s ease-out;
}

.animate-fade-up-delay {
  animation: fadeInUp 1s ease-out 0.2s backwards;
}

/* Premium Button Style */
.btn-pulse {
  animation: pulse-glow 2s infinite;
}

/* Glassmorphism Refinement */
.glass-panel {
  background: var(--glass-bg) !important;
  backdrop-filter: blur(20px) !important;
  border: 1px solid var(--glass-border) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
}

/* Section Reveal on Scroll */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: transform 0.2s;
  text-decoration: none;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
}

/* =========================================
   Footer Styles
   ========================================= */

.footer {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #cbd5e1;
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}

/* Decorative background pattern */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(59, 130, 246, 0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.5;
  pointer-events: none;
}

.footer .container {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }
}

.footer h3 {
  color: white;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), transparent);
  border-radius: 2px;
}

.footer p {
  color: #94a3b8;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  padding-left: 1rem;
}

.footer-links a::before {
  content: '→';
  position: absolute;
  left: 0;
  opacity: 0;
  transition: all 0.3s ease;
  color: var(--primary);
}

.footer-links a:hover {
  color: white;
  padding-left: 1.25rem;
}

.footer-links a:hover::before {
  opacity: 1;
  left: 0;
}

.areas-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.areas-list a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.areas-list a:hover {
  color: var(--primary);
  transform: translateX(5px);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  color: #64748b;
  font-size: 0.9rem;
  margin: 0;
}

.area-tag {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: var(--transition);
  background: white;
  text-align: center;
  line-height: 1.4;
}

.area-tag:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  color: var(--primary);
}

/* =========================================
   Modal Popup Styles (Premium Glassmorphism)
   ========================================= */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 1rem;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: rgba(255, 255, 255, 0.95);
  width: 100%;
  max-width: 480px;
  padding: 2.5rem;
  border-radius: 24px;
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  position: relative;
  transform: scale(0.95) translateY(10px);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-height: 90vh;
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.modal-overlay.active .modal-content {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: #f1f5f9;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #64748b;
  transition: all 0.2s;
  z-index: 10;
}

.modal-close:hover {
  background: #e2e8f0;
  color: #0f172a;
  transform: rotate(90deg);
}

.modal-header {
  text-align: center;
  margin-bottom: 2rem;
}

.modal-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 1rem auto;
  color: var(--primary);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.modal-header h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.5rem;
  letter-spacing: -0.025em;
}

.modal-header p {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.5;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  color: #475569;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  background: #f8fafc;
  color: #334155;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
  transform: translateY(-1px);
}

.form-submit-btn {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.3);
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.4);
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.trust-badge {
  text-align: center;
  font-size: 0.8rem;
  color: #64748b;
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #f8fafc;
  padding: 0.75rem;
  border-radius: 8px;
  border: 1px solid #f1f5f9;
}

/* =========================================
   Sticky Mobile Bottom Bar
   ========================================= */
.sticky-mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: white;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 9990;
  display: none;
  /* Hidden by default on desktop */
  padding: 0.75rem 1rem;
  gap: 1rem;
  border-top: 1px solid #f1f5f9;
}

@media (max-width: 768px) {
  .sticky-mobile-bar {
    display: flex;
  }
}

.sticky-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  transition: transform 0.2s;
}

.sticky-btn:active {
  transform: scale(0.96);
}

.call-btn {
  background: #eff6ff;
  color: var(--primary);
  border: 1px solid #dbeafe;
}

.book-btn {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* =========================================
   Premium "Why Choose Us" Section (Problem Pages)
   ========================================= */
.section-premium-why {
  background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 50%, #f1f5f9 100%);
  background-size: 200% 200%;
  animation: gradientShift 15s ease infinite;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

/* Subtle modern mesh pattern */
.section-premium-why::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.4) 0%, transparent 20%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.4) 0%, transparent 20%),
    linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 40px 40px, 40px 40px;
  background-position: 0 0, 0 0, -1px -1px, -1px -1px;
  opacity: 0.6;
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  /* Mobile first */
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (min-width: 640px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    /* Tablet */
  }
}

@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
    /* Desktop: Strictly 3 columns */
  }
}

.premium-card {
  background: rgba(255, 255, 255, 0.8);
  /* Slight transparency for glass feel */
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 2rem 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
  height: 100%;
  /* Ensure equal height */
}

.premium-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.05),
    0 10px 10px -5px rgba(0, 0, 0, 0.02),
    0 0 0 1px rgba(37, 99, 235, 0.1);
  background: white;
  border-color: rgba(37, 99, 235, 0.2);
}

.premium-icon-box {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #2563eb;
  margin-bottom: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 2px 4px rgba(37, 99, 235, 0.05);
  transition: transform 0.3s ease;
}

.premium-card:hover .premium-icon-box {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
}

.premium-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1e293b;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

.premium-card-text {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.5;
}

/* Special Review Card */
.premium-card.review-highlight {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.premium-card.review-highlight .premium-card-title,
.premium-card.review-highlight .premium-card-text {
  color: #f1f5f9;
}

.premium-card.review-highlight .premium-icon-box {
  background: rgba(255, 255, 255, 0.1);
  color: #fbbf24;
  font-size: 1.25rem;
  border-color: rgba(255, 255, 255, 0.1);
}

.premium-card.review-highlight:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

/* Homepage Specific Hero Overrides - Restoring Original Size */
.hero.home-hero {
  padding: 6rem 0 4rem;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.home-hero .hero-glass-banner {
  padding: 3rem 2.5rem;
  margin-bottom: 2.5rem;
}

.home-hero h1.hero-title {
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

/* Fix broken selector above */
.home-hero .text-lead,
.home-hero .hero-subtitle {
  margin-bottom: 2.5rem;
}

/* Allow text to be wider on homepage to reduce height */
@media (min-width: 992px) {
  .home-hero .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
  }
}

.home-hero .text-lead,
.home-hero .hero-subtitle {
  max-width: 650px;
}

/* Footer Social Icons - Brand Colors */
.footer-socials {
  margin-top: 0.75rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.social-icon {
  width: 32px;
  height: 32px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.25s ease;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
}

.social-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: all 0.25s ease;
}

/* Facebook - Brand Blue */
.social-icon[aria-label="Facebook"] {
  background: #1877F2;
  border-color: #1877F2;
  color: white;
}

.social-icon[aria-label="Facebook"]:hover {
  background: #0d65d9;
  border-color: #0d65d9;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(24, 119, 242, 0.4);
}

/* Twitter/X - Sky Blue */
.social-icon[aria-label="Twitter"] {
  background: #1DA1F2;
  border-color: #1DA1F2;
  color: white;
}

.social-icon[aria-label="Twitter"]:hover {
  background: #0c8bd9;
  border-color: #0c8bd9;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(29, 161, 242, 0.4);
}

/* Instagram - Gradient */
.social-icon[aria-label="Instagram"] {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: #e1306c;
  color: white;
}

.social-icon[aria-label="Instagram"]:hover {
  background: linear-gradient(45deg, #d67d2a 0%, #d35a2f 25%, #c91f37 50%, #b81d5b 75%, #a61176 100%);
  border-color: #c72d6a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(225, 48, 108, 0.4);
}

/* Mobile responsiveness for social icons */
@media (max-width: 768px) {
  .footer-socials {
    margin-top: 0.65rem;
    gap: 0.4rem;
  }

  .social-icon {
    width: 30px;
    height: 30px;
  }

  .social-icon svg {
    width: 15px;
    height: 15px;
  }
}
/* Logo Refinements */
.logo img {
    height: 75px !important; /* Larger size */
    width: auto;
    margin-left: 1.5rem; /* Push to the right */
    display: block;
}

@media (max-width: 768px) {
    .logo img {
        height: 55px !important; /* Slightly smaller on mobile but still clear */
        margin-left: 0.5rem;
    }
}

/* =========================================
   COMPREHENSIVE MOBILE RESPONSIVE FIXES
   ========================================= */

@media (max-width: 767px) {

  /* --- TOP BAR / URGENCY BANNER --- */
  .top-bar .container {
    flex-direction: column !important;
    gap: 0.5rem !important;
    text-align: center;
    padding: 0.5rem 1rem !important;
  }

  .top-bar .container > span[style*="opacity: 0.5"] {
    display: none !important; /* Hide pipe separators on mobile */
  }

  .top-bar .container > span,
  .top-bar .container > a {
    font-size: 0.8rem !important;
    gap: 0.35rem !important;
  }

  /* --- HERO SECTION --- */
  .hero.home-hero {
    padding: 2rem 0 2rem !important;
    min-height: auto !important;
  }

  .home-hero .hero-glass-banner {
    padding: 1.25rem 1rem !important;
    margin-bottom: 1.5rem !important;
    border-radius: 16px !important;
  }

  .hero-title {
    font-size: 1.6rem !important;
    letter-spacing: -0.02em !important;
  }

  .hero-subtitle {
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
  }

  .hero h1 {
    font-size: 1.6rem !important;
  }

  .hero-grid {
    gap: 1.5rem !important;
  }

  /* --- HERO CTA BUTTONS --- */
  .hero-cta-group {
    flex-direction: column !important;
    gap: 0.75rem !important;
    margin-bottom: 1.5rem !important;
  }

  .hero-btn {
    width: 100% !important;
    justify-content: center !important;
    padding: 1rem 1.5rem !important;
    font-size: 0.95rem !important;
  }

  /* --- HERO TRUST BADGES --- */
  .hero-trust-badges {
    justify-content: center !important;
    gap: 0.5rem !important;
  }

  .hero-badge {
    padding: 0.5rem 0.75rem !important;
    font-size: 0.8rem !important;
  }

  /* --- HERO FORM CARD --- */
  .hero-form-card {
    padding: 1.25rem !important;
    border-radius: 16px !important;
    max-width: 100% !important;
  }

  .hero-form-card h3 {
    font-size: 1.25rem !important;
    margin-bottom: 1rem !important;
  }

  /* --- FORM GRID: FORCE SINGLE COLUMN ON MOBILE --- */
  #hero-quote-form,
  form.grid.grid-cols-2 {
    grid-template-columns: 1fr !important;
    gap: 0.75rem !important;
  }

  #hero-quote-form .form-group,
  #hero-quote-form input,
  #hero-quote-form select,
  #hero-quote-form textarea,
  #hero-quote-form button,
  #hero-quote-form p,
  form.grid.grid-cols-2 .form-group,
  form.grid.grid-cols-2 input,
  form.grid.grid-cols-2 select,
  form.grid.grid-cols-2 textarea,
  form.grid.grid-cols-2 button,
  form.grid.grid-cols-2 p {
    grid-column: span 1 !important;
    width: 100% !important;
  }

  .form-control,
  .form-select {
    padding: 0.875rem 1rem !important;
    font-size: 0.95rem !important;
  }

  /* --- CONTAINER PADDING --- */
  .container {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  /* --- SECTION PADDING --- */
  .section {
    padding: 3rem 0 !important;
  }

  /* --- REMOTE SUPPORT BUTTONS --- */
  .section div[style*="display: flex; gap: 1rem"] {
    flex-direction: column !important;
  }

  .section div[style*="display: flex; gap: 1rem"] .btn {
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
  }

  /* --- SERVICE CARDS GRID --- */
  .grid-cols-3,
  .grid-cols-4 {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  /* --- FEATURES / PROBLEMS GRID --- */
  .features-grid {
    grid-template-columns: 1fr !important;
    gap: 0.75rem !important;
  }

  .area-tag {
    font-size: 1rem !important;
    padding: 1rem !important;
  }

  /* --- STAT COUNTER GRID --- */
  div[style*="grid-template-columns: repeat(auto-fit, minmax(200px, 1fr))"] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem !important;
  }

  /* --- BENEFITS / WHY CHOOSE US CARDS --- */
  div[style*="grid-template-columns: repeat(auto-fit, minmax(280px, 1fr))"] {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  /* --- REVIEW CARDS --- */
  .review-card {
    min-width: 260px !important;
    flex: 0 0 260px !important;
  }

  /* --- HEADINGS --- */
  h2 {
    font-size: 1.5rem !important;
  }

  .text-lead {
    font-size: 1rem !important;
  }

  /* --- FLOATING ACTIONS --- */
  .floating-actions {
    bottom: 1rem !important;
    right: 1rem !important;
  }

  /* --- BOTTOM CTA FORM (if any) --- */
  .cta-block {
    padding: 2rem 1rem !important;
  }

  /* --- MODAL --- */
  .modal-content {
    width: 95% !important;
    padding: 1.5rem !important;
  }

  /* --- WHY CHOOSE SECTION --- */
  .why-choose-title {
    font-size: 1.5rem !important;
  }

  /* --- SOCIAL PROOF TICKER --- */
  div[style*="font-size: 2.5rem"] {
    font-size: 2rem !important;
  }
}

/* Extra small devices (iPhone SE, etc.) */
@media (max-width: 374px) {
  .hero-title {
    font-size: 1.35rem !important;
  }

  .hero-subtitle {
    font-size: 0.85rem !important;
  }

  .hero-form-card {
    padding: 1rem !important;
  }

  .hero-form-card h3 {
    font-size: 1.1rem !important;
  }

  .form-control,
  .form-select {
    padding: 0.75rem 0.875rem !important;
    font-size: 0.9rem !important;
  }

  .hero-badge {
    font-size: 0.75rem !important;
    padding: 0.4rem 0.6rem !important;
  }
}
