/* ===================================
   CSS Variables & Custom Properties
   =================================== */
:root {
  /* Colors */
  --background: 0 0% 100%;
  --foreground: 0 0% 15%;
  --card: 0 0% 100%;
  --card-foreground: 0 0% 15%;
  --popover: 0 0% 100%;
  --popover-foreground: 0 0% 15%;
  --primary: 24 95% 53%;
  --primary-foreground: 0 0% 100%;
  --secondary: 24 20% 95%;
  --secondary-foreground: 0 0% 15%;
  --muted: 24 10% 95%;
  --muted-foreground: 0 0% 45%;
  --accent: 24 95% 53%;
  --accent-foreground: 0 0% 100%;
  --destructive: 0 84% 60%;
  --destructive-foreground: 0 0% 98%;
  --border: 24 15% 90%;
  --input: 24 15% 90%;
  --ring: 24 95% 53%;
  --radius: 0.75rem;
  
  /* Spacing */
  --container-padding: 2rem;
  --section-padding: 5rem;
  
  /* Breakpoints */
  --breakpoint-sm: 640px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 1024px;
  --breakpoint-xl: 1280px;
  --breakpoint-2xl: 1400px;
}

/* ===================================
   Base Styles & Reset
   =================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 600;
  line-height: 1.2;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ===================================
   Utility Classes
   =================================== */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.text-gradient {
  background: linear-gradient(to right, hsl(var(--primary)), #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===================================
   Navigation
   =================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: hsl(var(--background) / 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid hsl(var(--border));
}

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

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo {
  height: 3.5rem;
  width: auto;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.25rem;
}

.nav-link {
  color: hsl(var(--foreground) / 0.8);
  font-family: 'Oswald', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

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

.call-btn {
  display: none;
  align-items: center;
  gap: 0.5rem;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.5rem 1.25rem;
  border-radius: 0.5rem;
  transition: filter 0.2s ease;
}

.call-btn:hover {
  filter: brightness(1.1);
}

.mobile-menu-btn {
  display: flex;
  color: hsl(var(--foreground));
  background: none;
  border: none;
  padding: 0.5rem;
}

.mobile-menu-btn .icon {
  width: 1.5rem;
  height: 1.5rem;
}

.mobile-menu-btn .close-icon {
  display: none;
}

.mobile-menu {
  display: none;
  background: hsl(var(--background));
  border-top: 1px solid hsl(var(--border));
  padding: 0 1rem 1rem;
}

.mobile-nav-link {
  display: block;
  padding: 0.5rem 0;
  color: hsl(var(--foreground) / 0.8);
  font-family: 'Oswald', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

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

.mobile-call-btn {
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.5rem 1.25rem;
  border-radius: 0.5rem;
}

/* ===================================
   Hero Section
   =================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 10;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.hero-text {
  text-align: left;
}

.hero-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  background: hsl(var(--primary) / 0.2);
  color: hsl(var(--primary));
  font-family: 'Oswald', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.375rem);
  font-weight: 700;
  color: white;
  line-height: 1.1;
  margin-bottom: 1rem;
  text-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.hero-description {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-size: 1.125rem;
  transition: all 0.2s ease;
}

.btn-primary {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.btn-primary:hover {
  filter: brightness(1.1);
}

.btn-whatsapp {
  background: #16a34a;
  color: white;
}

.btn-whatsapp:hover {
  filter: brightness(1.1);
}

.btn .icon {
  width: 1.25rem;
  height: 1.25rem;
}

/* ===================================
   Hero Section Form
   =================================== */
.hero-form {
  background: hsl(var(--background) / 0.95);
  backdrop-filter: blur(12px);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid hsl(var(--border));
  max-width: 320px;
  margin-left: auto;
  width: 100%;
}

.form-title {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
}

.form-row {
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  color: hsl(var(--foreground));
  margin-bottom: 0.125rem;
}

.input-icon {
  width: 0.875rem;
  height: 0.875rem;
  color: hsl(var(--primary));
  flex-shrink: 0;
}

input, textarea {
  width: 100%;
  padding: 0.625rem 0.875rem;
  border-radius: 0.5rem;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  color: hsl(var(--card-foreground));
  font-size: 0.875rem;
  transition: all 0.2s ease;
  font-family: 'Inter', sans-serif;
}

input:focus, textarea:focus {
  outline: none;
  border-color: hsl(var(--ring));
  box-shadow: 0 0 0 2px hsl(var(--ring) / 0.2);
}

input::placeholder, textarea::placeholder {
  color: hsl(var(--muted-foreground));
}

textarea {
  resize: none;
  min-height: 4.5rem;
}

.location-input-wrapper {
  display: flex;
  gap: 0.5rem;
  align-items: stretch;
}

.location-input-wrapper input {
  flex: 1;
}

/* Location input with icon for mobile */
.location-input-wrapper input::placeholder {
  padding-left: 2rem;
}

.location-input-wrapper {
  position: relative;
}

.location-input-wrapper::before {
  content: "📍";
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: hsl(var(--primary));
  font-size: 0.875rem;
  z-index: 1;
  pointer-events: none;
}

.location-input-wrapper input {
  padding-left: 2.5rem;
}

.detect-location-btn {
  padding: 0.625rem;
  border-radius: 0.5rem;
  background: hsl(var(--primary) / 0.1);
  border: 1px solid hsl(var(--primary));
  color: hsl(var(--primary));
  font-weight: 600;
  transition: all 0.2s ease;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.detect-location-btn:hover {
  background: hsl(var(--primary) / 0.2);
  transform: translateY(-1px);
}

.detect-location-btn .icon {
  width: 0.875rem;
  height: 0.875rem;
}

.btn-submit {
  width: 100%;
  justify-content: center;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  font-size: 0.95rem;
  padding: 0.75rem 1.5rem;
  margin-top: 0.75rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.btn-submit:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

/* Form focus states */
.form-group:focus-within .form-label {
  color: hsl(var(--primary));
}

.form-group:focus-within .input-icon {
  color: hsl(var(--primary));
  transform: scale(1.1);
}

/* ===================================
   Section Styles
   =================================== */
section {
  padding: var(--section-padding) 0;
}

.section-title {
  font-size: clamp(1.875rem, 4vw, 3.125rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
}

.section-description {
  text-align: center;
  color: hsl(var(--muted-foreground));
  max-width: 32rem;
  margin: 0 auto 3rem;
}

/* ===================================
   About Section
   =================================== */
.about-section {
  background: hsl(var(--card));
}

.about-content {
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
}

.about-description {
  color: hsl(var(--muted-foreground));
  margin-bottom: 2.5rem;
  max-width: 48rem;
  line-height: 1.7;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: hsl(var(--primary) / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-icon .icon {
  width: 2rem;
  height: 2rem;
  color: hsl(var(--primary));
}

.feature-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.feature-description {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
}

/* ===================================
   Services Section
   =================================== */
.services-section {
  background: hsl(var(--muted));
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: hsl(var(--card));
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid hsl(var(--border));
  transition: all 0.2s ease;
}

.service-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-0.25rem);
  border-color: hsl(var(--primary) / 0.3);
}

.service-image {
  height: 12rem;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-content {
  padding: 1.5rem;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.service-description {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
}

/* ===================================
   Service Areas Section
   =================================== */
.areas-section {
  background: hsl(var(--secondary));
  color: hsl(var(--secondary-foreground));
}

.areas-section .section-description {
  color: hsl(var(--secondary-foreground) / 0.7);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.area-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: hsl(var(--secondary-foreground) / 0.05);
  border: 1px solid hsl(var(--secondary-foreground) / 0.1);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.2s ease;
}

.area-item:hover {
  border-color: hsl(var(--primary));
  background: hsl(var(--primary) / 0.1);
}

.area-item::before {
  content: "📍";
  color: hsl(var(--primary));
  flex-shrink: 0;
}

/* ===================================
   Why Choose Us Section
   =================================== */
.why-us-section {
  background: hsl(var(--muted));
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.reason-item {
  text-align: center;
}

.reason-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: hsl(var(--primary) / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.reason-icon .icon {
  width: 2rem;
  height: 2rem;
  color: hsl(var(--primary));
}

.reason-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.reason-description {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
}

/* ===================================
   Reviews Section
   =================================== */
.reviews-section {
  background: hsl(var(--card));
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
}

.review-card {
  background: hsl(var(--muted));
  border-radius: 0.5rem;
  padding: 1.5rem;
  border: 1px solid hsl(var(--border));
  transition: border-color 0.2s ease;
}

.review-card:hover {
  border-color: hsl(var(--primary) / 0.3);
}

.review-rating {
  display: flex;
  gap: 0.125rem;
  margin-bottom: 0.75rem;
}

.star-icon {
  width: 1rem;
  height: 1rem;
}

.star-icon:not([fill="currentColor"]) {
  stroke: hsl(var(--border));
  fill: none;
}

.review-text {
  color: hsl(var(--foreground) / 0.8);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.review-author {
  margin-top: auto;
}

.author-name {
  font-weight: 600;
  font-size: 0.875rem;
}

.author-location {
  color: hsl(var(--muted-foreground));
  font-size: 0.75rem;
}

/* ===================================
   Google Reviews Section
   =================================== */
.google-reviews-section {
  padding: 4rem 0;
  background: hsl(var(--card));
}

.google-reviews-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.google-reviews-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.google-logo {
  width: 2rem;
  height: 2rem;
}

.google-reviews-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
}

.google-reviews-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.stars {
  display: flex;
  gap: 0;
}

.rating-number {
  font-weight: 700;
  font-size: 1.125rem;
}

.rating-text {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
}

/* ===================================
   Gallery Section
   =================================== */
.gallery-section {
  background: hsl(var(--muted));
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid hsl(var(--border));
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
}

.gallery-item:hover {
  border-color: hsl(var(--primary));
}

.gallery-item img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0 0 0 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  padding: 1rem;
  display: flex;
  align-items: flex-end;
}

.gallery-title {
  color: white;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
}

/* ===================================
   Lightbox Modal
   =================================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 64rem;
  width: 100%;
}

.lightbox-close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  color: white;
  background: none;
  border: none;
  padding: 0.5rem;
  transition: color 0.2s ease;
}

.lightbox-close:hover {
  color: hsl(var(--primary));
}

.lightbox-close .icon {
  width: 2rem;
  height: 2rem;
}

.lightbox-image {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 0.5rem;
}

.lightbox-title {
  color: white;
  text-align: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  margin-top: 0.75rem;
  font-size: 1.125rem;
}

/* ===================================
   Footer
   =================================== */
.footer {
  background: hsl(var(--foreground));
  color: hsl(var(--background));
  padding: 3rem 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  height: 4rem;
  width: auto;
  margin-bottom: 1rem;
}

.footer-description {
  color: hsl(var(--background) / 0.7);
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
  max-width: 300px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: hsl(var(--background) / 0.8);
  font-size: 0.875rem;
}

.contact-item .icon {
  width: 1rem;
  height: 1rem;
  color: hsl(var(--primary));
  flex-shrink: 0;
}

.contact-item a {
  color: inherit;
}

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

.footer-title {
  font-weight: 600;
  margin-bottom: 1rem;
  color: hsl(var(--background));
}

.address-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.address-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: hsl(var(--background) / 0.8);
  font-size: 0.875rem;
}

.address-item .icon {
  width: 1rem;
  height: 1rem;
  color: hsl(var(--primary));
  flex-shrink: 0;
  margin-top: 0.125rem;
}

/* ===================================
   Sticky Call Buttons
   =================================== */
.sticky-buttons {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sticky-btn {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.sticky-btn:hover {
  transform: scale(1.1);
}

.whatsapp-btn {
  background: #16a34a;
  color: white;
}

.call-btn {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 10px hsl(var(--primary) / 0.4);
  }
  50% {
    box-shadow: 0 0 25px hsl(var(--primary) / 0.7);
  }
}

.sticky-btn .icon {
  width: 1.5rem;
  height: 1.5rem;
}

/* ===================================
   Responsive Design
   =================================== */
@media (min-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
  }
  
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .areas-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .reasons-grid {
    grid-template-columns: repeat(5, 1fr);
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
  
  .call-btn {
    display: inline-flex;
  }
  
  .mobile-menu-btn {
    display: none;
  }
  
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .areas-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .hero-form {
    max-width: 300px;
    padding: 1.375rem;
  }
  
  .form-title {
    font-size: 1.375rem;
    margin-bottom: 1.375rem;
  }
  
  .form-row {
    margin-bottom: 1rem;
  }
  
  .form-label {
    font-size: 0.775rem;
  }
  
  input, textarea {
    padding: 0.625rem 0.8125rem;
    font-size: 0.85rem;
  }
  
  .btn-submit {
    padding: 0.6875rem 1.375rem;
    font-size: 0.925rem;
  }
  
  /* Service Areas Tablet Responsive */
  .areas-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.875rem;
  }
  
  .area-item {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }
  
  /* Location icon for tablet */
  .location-input-wrapper::before {
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.875rem;
  }
  
  .location-input-wrapper input {
    padding-left: 2.5rem;
  }
}

@media (max-width: 767px) {
  .container {
    padding: 0 1rem;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .hero-form {
    margin-left: 0;
    margin-right: 0;
    padding: 1.25rem;
    max-width: 100%;
  }
  
  .form-title {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
  }
  
  .form-row {
    margin-bottom: 1rem;
  }
  
  .form-label {
    font-size: 0.75rem;
  }
  
  input, textarea {
    padding: 0.625rem 0.75rem;
    font-size: 0.875rem;
  }
  
  .location-input-wrapper {
    flex-direction: column;
    gap: 0.625rem;
  }
  
  .location-input-wrapper::before {
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.875rem;
  }
  
  .location-input-wrapper input {
    padding-left: 2.5rem;
  }
  
  .detect-location-btn {
    padding: 0.625rem;
    align-self: stretch;
  }
  
  .btn-submit {
    padding: 0.625rem 1.25rem;
    font-size: 0.9rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  /* Service Areas Mobile Responsive */
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  
  .area-item {
    padding: 0.625rem 0.875rem;
    font-size: 0.875rem;
    font-weight: 500;
  }
  
  .area-item::before {
    font-size: 0.875rem;
  }
}

/* ===================================
   Print Styles
   =================================== */
@media print {
  .navbar,
  .sticky-buttons,
  .mobile-menu-btn {
    display: none;
  }
  
  .hero-section {
    min-height: auto;
    padding: 2rem 0;
  }
  
  .hero-overlay {
    background: none;
  }
  
  .hero-bg {
    display: none;
  }
  
  .hero-content {
    color: black;
  }
  
  .hero-form {
    display: none;
  }
}
