:root {
  --primary: #ff6e00;
  --primary-dark: #e56200;
  --whatsapp: #25d366;
  --whatsapp-dark: #1da851;
  --dark: #0a0a0a;
  --dark-light: #151515;
  --dark-card: #1a1a1a;
  --gray: #888;
  --light: #f5f5f5;
  --gradient: linear-gradient(135deg, #ff6e00 0%, #ff8b33 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: var(--dark);
  color: #fff;
  line-height: 1.7;
  overflow-x: hidden;
  min-width: 280px;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px clamp(3%, 5vw, 5%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 110, 0, 0.1);
  width: 100%;
  max-width: 100vw;
}

.navbar.scrolled {
  padding: 10px clamp(3%, 5vw, 5%);
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 50px;
  transition: transform 0.3s ease;
}

.nav-logo:hover img {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--primary);
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(255, 110, 0, 0.4);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: clamp(4px, 1.2vw, 5px);
  cursor: pointer;
  padding: clamp(8px, 2.5vw, 10px);
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
  background: var(--dark);
  border: none;
  border-radius: 6px;
}

.menu-toggle:focus {
  outline: none;
}

.menu-toggle span {
  width: clamp(22px, 6vw, 25px);
  height: clamp(2px, 0.5vw, 2.5px);
  background: var(--primary);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.menu-toggle[aria-expanded="true"] span {
  background: #fff;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(100px, 15vh, 120px) clamp(15px, 5vw, 20px) clamp(60px, 10vh, 80px);
  background:
    radial-gradient(ellipse at 20% 80%, rgba(255, 110, 0, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(255, 110, 0, 0.1) 0%, transparent 50%),
    var(--dark);
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,110,0,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  width: 100%;
  animation: fadeInUp 1s ease;
  padding: 0 15px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-logo {
  width: min(200px, 50vw);
  max-width: 200px;
  margin: 0 auto 30px;
  filter: drop-shadow(0 10px 30px rgba(255, 110, 0, 0.3));
  animation: float 3s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.hero h1 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 0%, #ccc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero h1 span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  color: #fff;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.9rem, 2vw, 1rem);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  min-height: 48px;
  justify-content: center;
}

.btn-primary {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.btn-primary:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

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

.btn-secondary:hover {
  background: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 110, 0, 0.3);
}

/* Stats Section */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(150px, 40vw, 200px), 1fr));
  gap: clamp(15px, 5vw, 30px);
  padding: clamp(40px, 8vh, 60px) clamp(3%, 5vw, 5%);
  background: var(--dark-light);
  border-top: 1px solid rgba(255, 110, 0, 0.1);
  border-bottom: 1px solid rgba(255, 110, 0, 0.1);
  width: 100%;
  max-width: 100vw;
}

.stat-item {
  text-align: center;
  padding: 20px;
}

.stat-number {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  color: var(--gray);
  font-size: clamp(0.75rem, 2vw, 0.95rem);
  line-height: 1.4;
}

/* Section Styles */
section {
  padding: clamp(50px, 12vh, 100px) clamp(3%, 5vw, 5%);
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(35px, 8vw, 60px);
}

.section-tag {
  display: inline-block;
  background: rgba(255, 110, 0, 0.1);
  color: var(--primary);
  padding: 8px 20px;
  border-radius: 50px;
  font-family: 'Shrikhand', cursive;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 15px;
}

.section-subtitle {
  color: var(--gray);
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Services Grid
   Responsive layout: 2 columns → 1 column
   - Desktop/Tablet (>640px): 2 cards per row
   - Mobile (<640px): 1 card per row
*/
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 4vw, 30px);
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.service-card {
  background: var(--dark-card);
  padding: clamp(25px, 6vw, 40px) clamp(20px, 5vw, 30px);
  border-radius: clamp(15px, 3vw, 20px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 110, 0, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

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

.service-icon {
  width: clamp(55px, 12vw, 70px);
  height: clamp(55px, 12vw, 70px);
  background: rgba(255, 110, 0, 0.1);
  border-radius: clamp(12px, 2.5vw, 15px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: clamp(20px, 4vw, 25px);
  font-size: clamp(1.4rem, 4vw, 1.8rem);
  color: var(--primary);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.service-card:hover .service-icon {
  background: var(--primary);
  color: #fff;
  transform: scale(1.1);
}

.service-card h3 {
  font-size: clamp(1.1rem, 3vw, 1.3rem);
  margin-bottom: 15px;
  font-weight: 600;
}

.service-card p {
  color: var(--gray);
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  line-height: 1.6;
}

/* Testimonials */
.testimonials {
  background: var(--dark-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
  gap: clamp(20px, 4vw, 30px);
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.testimonial-card {
  background: var(--dark-card);
  padding: clamp(25px, 5vw, 40px);
  border-radius: clamp(15px, 3vw, 20px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  width: 100%;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 6rem;
  color: rgba(255, 110, 0, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

.stars {
  color: #ffc107;
  font-size: 1.1rem;
  margin-bottom: 20px;
  letter-spacing: 3px;
}

.testimonial-card p {
  font-size: 1rem;
  line-height: 1.8;
  color: #ccc;
  font-style: italic;
  margin-bottom: 20px;
}

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

.author-avatar {
  width: 50px;
  height: 50px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.author-info span {
  display: block;
}

.author-name {
  font-weight: 600;
}

.author-role {
  font-size: 0.85rem;
  color: var(--gray);
}

.google-reviews-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 50px;
  background: var(--dark-card);
  padding: 15px 30px;
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.google-reviews-btn:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.google-reviews-btn i {
  color: var(--primary);
}

/* Location Section */
.location {
  background: var(--dark);
}

.location-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: clamp(25px, 6vw, 50px);
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  width: 100%;
}

.location-info {
  padding: 20px;
}

.location-item {
  display: flex;
  gap: clamp(12px, 3vw, 20px);
  margin-bottom: clamp(20px, 4vw, 30px);
  padding: clamp(18px, 4vw, 25px);
  background: var(--dark-card);
  border-radius: clamp(12px, 2.5vw, 15px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  width: 100%;
}

.location-item:hover {
  border-color: rgba(255, 110, 0, 0.3);
  transform: translateX(10px);
}

.location-icon {
  width: clamp(40px, 10vw, 50px);
  height: clamp(40px, 10vw, 50px);
  background: rgba(255, 110, 0, 0.1);
  border-radius: clamp(10px, 2vw, 12px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: clamp(1rem, 3vw, 1.3rem);
  flex-shrink: 0;
}

.location-item h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--gray);
  font-weight: 500;
}

.location-item p {
  font-size: 1.05rem;
  font-weight: 500;
}

.location-item.whatsapp-card {
  cursor: pointer;
  background: var(--primary);
  border-color: var(--primary);
  text-decoration: none;
}

.location-item.whatsapp-card:hover {
  border-color: var(--primary-dark);
  background: var(--primary-dark);
  transform: translateX(10px) scale(1.02);
  box-shadow: 0 10px 30px rgba(255, 110, 0, 0.4);
}

.location-item.whatsapp-card .location-icon {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.location-item.whatsapp-card h4 {
  color: #fff;
}

.location-item.whatsapp-card p {
  color: #fff;
}

.location-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.location-map {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.location-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(100%) invert(92%) contrast(90%);
}

/* CTA Section */
.cta {
  background:
    radial-gradient(ellipse at center, rgba(255, 110, 0, 0.2) 0%, transparent 70%),
    var(--dark-light);
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
  padding: 0 clamp(15px, 3vw, 20px);
}

.cta h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 20px;
}

.cta h2 span {
  color: var(--primary);
}

.cta p {
  color: #fff;
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  margin-bottom: 40px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Social Section */
.social {
  background: var(--dark);
  text-align: center;
  padding: clamp(50px, 10vh, 80px) clamp(3%, 5vw, 5%);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.social-link {
  width: clamp(48px, 12vw, 60px);
  height: clamp(48px, 12vw, 60px);
  background: var(--dark-card);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: clamp(1.2rem, 3.5vw, 1.5rem);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 110, 0, 0.3);
}

.social-link[aria-label="WhatsApp"] {
  background: var(--primary);
  border-color: var(--primary);
}

.social-link[aria-label="WhatsApp"]:hover {
  background: #fff;
  border-color: #fff;
  color: var(--primary);
}

/* Footer */
footer {
  background: var(--dark-light);
  padding: clamp(30px, 6vh, 40px) clamp(3%, 5vw, 5%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(15px, 3vw, 20px);
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 15px;
}

.footer-text {
  color: #fff;
  font-size: 0.9rem;
}

.footer-text span {
  color: var(--primary);
}

.footer-links {
  display: flex;
  gap: clamp(15px, 4vw, 30px);
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: var(--gray);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  padding: 8px 12px;
  min-height: 44px;
  display: flex;
  align-items: center;
}

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

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: clamp(15px, 4vw, 30px);
  right: clamp(15px, 4vw, 30px);
  z-index: 999;
  width: clamp(52px, 12vw, 60px);
  height: clamp(52px, 12vw, 60px);
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: clamp(1.5rem, 4vw, 1.8rem);
  text-decoration: none;
  box-shadow: 0 5px 30px rgba(37, 211, 102, 0.5);
  animation: pulse 2s infinite;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 40px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Mobile Responsive */

/* Tablet Landscape */
@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .location-content {
    gap: 40px;
  }

  section {
    padding: 80px 4%;
  }

  .hero {
    padding: 100px 5% 70px;
  }
}

/* Tablet Portrait - Menu adjustments only */
@media (max-width: 968px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark-light);
    flex-direction: column;
    padding: 20px;
    gap: 0;
    border-bottom: 1px solid rgba(255, 110, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-links.active {
    display: flex;
    max-height: 500px;
  }

  .nav-links li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links a {
    display: flex;
    padding: 16px 10px;
    font-size: clamp(0.95rem, 2.5vw, 1rem);
    min-height: 48px;
    align-items: center;
    width: 100%;
  }

  .nav-links a::after {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .nav-cta {
    display: none;
  }

  .location-content {
    grid-template-columns: 1fr;
  }

  .location-map {
    order: -1;
  }

  .location-info {
    padding: 0;
  }

  .location-item:hover {
    transform: none;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  section {
    padding: 70px 4%;
  }
}

/* Tablet Small - Adjust location layout */
@media (max-width: 900px) {
  .location-content {
    grid-template-columns: 1fr;
  }

  .location-map {
    order: -1;
  }
}

/* Mobile - 1 column for services */
@media (max-width: 640px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 50px 4%;
  }

  .hero-buttons {
    gap: 15px;
    flex-direction: column;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .btn {
    width: 100%;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: clamp(18px, 4vw, 20px);
  }

  .location-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .social-links {
    flex-wrap: wrap;
  }
}

/* Mobile Medium - General adjustments */
@media (max-width: 768px) {
  .navbar {
    padding: 12px clamp(3%, 4vw, 4%);
  }

  .nav-logo img {
    height: clamp(38px, 10vw, 42px);
  }

  .hero {
    padding: clamp(90px, 15vh, 100px) 5% clamp(50px, 10vh, 60px);
    min-height: auto;
  }

  .hero-logo {
    width: clamp(120px, 35vw, 140px);
    margin-bottom: clamp(20px, 4vh, 25px);
  }

  .hero h1 {
    font-size: clamp(1.4rem, 5vw, 1.6rem);
    margin-bottom: 15px;
  }

  .hero p {
    font-size: clamp(0.9rem, 2.5vw, 0.95rem);
    margin-bottom: 30px;
    padding: 0;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(12px, 3vw, 15px);
    padding: clamp(35px, 6vh, 40px) 4%;
  }

  .stat-item {
    padding: clamp(12px, 3vw, 15px) clamp(8px, 2vw, 10px);
  }

  .stat-number {
    font-size: clamp(1.8rem, 6vw, 2rem);
  }

  .stat-label {
    font-size: clamp(0.75rem, 2vw, 0.8rem);
  }

  section {
    padding: clamp(50px, 10vh, 60px) clamp(3%, 4vw, 4%);
  }

  .section-header {
    margin-bottom: clamp(35px, 6vh, 40px);
  }

  .section-tag {
    font-size: clamp(0.7rem, 2vw, 0.75rem);
    padding: clamp(5px, 1.5vw, 6px) clamp(14px, 3vw, 16px);
    letter-spacing: clamp(1px, 0.3vw, 1.5px);
  }

  .section-title {
    font-size: clamp(1.4rem, 5vw, 1.5rem);
  }

  .section-subtitle {
    font-size: clamp(0.9rem, 2.5vw, 0.95rem);
    padding: 0;
  }

  .service-card {
    padding: clamp(25px, 5vw, 30px) clamp(20px, 4vw, 25px);
  }

  .service-icon {
    width: clamp(55px, 12vw, 60px);
    height: clamp(55px, 12vw, 60px);
    font-size: clamp(1.3rem, 4vw, 1.5rem);
  }

  .service-card h3 {
    font-size: clamp(1.1rem, 3.5vw, 1.15rem);
  }

  .service-card p {
    font-size: clamp(0.85rem, 2.5vw, 0.9rem);
  }

  .service-card:hover {
    transform: none;
  }

  .service-card:active {
    transform: scale(0.98);
  }

  .testimonial-card {
    padding: 30px 25px;
  }

  .testimonial-card::before {
    font-size: 4rem;
    top: 15px;
    right: 20px;
  }

  .testimonial-card p {
    font-size: 0.95rem;
  }

  .google-reviews-btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .location-item {
    padding: 20px;
    gap: 15px;
  }

  .location-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }

  .location-item h4 {
    font-size: 0.9rem;
  }

  .location-item p {
    font-size: 0.95rem;
  }

  .location-map {
    aspect-ratio: 4 / 3;
  }

  .cta h2 {
    font-size: 1.4rem;
  }

  .cta p {
    font-size: 0.95rem;
    padding: 0 10px;
  }

  .social {
    padding: 60px 4%;
  }

  .social-link {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .footer-text {
    font-size: 0.85rem;
  }
}

/* Mobile Small */
@media (max-width: 480px) {
  .navbar {
    padding: clamp(8px, 2.5vw, 10px) clamp(3%, 4vw, 4%);
  }

  .nav-logo img {
    height: clamp(35px, 9vw, 38px);
  }

  .menu-toggle {
    padding: clamp(6px, 2vw, 8px);
  }

  .menu-toggle span {
    width: clamp(20px, 5vw, 22px);
  }

  .hero {
    padding: clamp(80px, 14vh, 90px) clamp(12px, 4vw, 15px) clamp(45px, 8vh, 50px);
  }

  .hero-logo {
    width: clamp(100px, 30vw, 120px);
    margin-bottom: clamp(18px, 4vh, 20px);
  }

  .hero h1 {
    font-size: clamp(1.3rem, 5vw, 1.4rem);
    line-height: 1.4;
  }

  .hero p {
    font-size: clamp(0.85rem, 2.5vw, 0.9rem);
    line-height: 1.6;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: clamp(10px, 3vw, 12px);
    padding: 0;
  }

  .btn {
    width: 100%;
    justify-content: center;
    padding: clamp(12px, 3.5vw, 14px) clamp(20px, 5vw, 24px);
    font-size: clamp(0.85rem, 2.5vw, 0.9rem);
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(8px, 2.5vw, 10px);
    padding: clamp(25px, 6vh, 30px) 3%;
  }

  .stat-item {
    padding: clamp(10px, 3vw, 12px) clamp(6px, 2vw, 8px);
  }

  .stat-number {
    font-size: clamp(1.5rem, 5vw, 1.7rem);
  }

  .stat-label {
    font-size: clamp(0.65rem, 2vw, 0.7rem);
    line-height: 1.3;
  }

  section {
    padding: clamp(40px, 8vh, 50px) clamp(3%, 4vw, 4%);
  }

  .section-header {
    margin-bottom: clamp(25px, 5vh, 30px);
  }

  .section-title {
    font-size: clamp(1.2rem, 4.5vw, 1.3rem);
  }

  .section-subtitle {
    font-size: clamp(0.85rem, 2.5vw, 0.9rem);
  }

  .service-card {
    padding: clamp(20px, 5vw, 25px) clamp(15px, 4vw, 20px);
  }

  .service-icon {
    width: clamp(50px, 11vw, 55px);
    height: clamp(50px, 11vw, 55px);
    font-size: clamp(1.2rem, 3.5vw, 1.3rem);
    margin-bottom: clamp(18px, 4vw, 20px);
  }

  .service-card h3 {
    font-size: clamp(1.05rem, 3.5vw, 1.1rem);
    margin-bottom: clamp(10px, 2.5vw, 12px);
  }

  .service-card p {
    font-size: clamp(0.8rem, 2.5vw, 0.85rem);
    line-height: 1.6;
  }

  .testimonial-card {
    padding: 25px 20px;
  }

  .testimonial-card::before {
    font-size: 3rem;
    top: 10px;
    right: 15px;
  }

  .stars {
    font-size: 1rem;
    margin-bottom: 15px;
  }

  .testimonial-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 15px;
  }

  .author-avatar {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }

  .author-name {
    font-size: 0.9rem;
  }

  .author-role {
    font-size: 0.75rem;
  }

  .google-reviews-btn {
    margin-top: 35px;
    padding: 12px 20px;
    font-size: 0.85rem;
  }

  .location-item {
    padding: clamp(16px, 4vw, 18px) clamp(12px, 3.5vw, 15px);
    gap: clamp(10px, 3vw, 12px);
    margin-bottom: clamp(12px, 3.5vw, 15px);
  }

  .location-icon {
    width: clamp(38px, 9vw, 40px);
    height: clamp(38px, 9vw, 40px);
    font-size: clamp(0.95rem, 2.5vw, 1rem);
    border-radius: clamp(8px, 2vw, 10px);
  }

  .location-item h4 {
    font-size: clamp(0.75rem, 2vw, 0.8rem);
    margin-bottom: clamp(4px, 1.5vw, 5px);
  }

  .location-item p {
    font-size: clamp(0.85rem, 2.5vw, 0.9rem);
    line-height: 1.5;
  }

  .location-buttons {
    flex-direction: column;
    margin-top: 25px;
    gap: 10px;
  }

  .location-map {
    border-radius: 15px;
    aspect-ratio: 1 / 1;
  }

  .cta {
    padding: clamp(45px, 8vh, 50px) clamp(3%, 4vw, 4%);
  }

  .cta h2 {
    font-size: clamp(1.2rem, 4.5vw, 1.25rem);
    line-height: 1.4;
  }

  .cta p {
    font-size: clamp(0.85rem, 2.5vw, 0.9rem);
    margin-bottom: clamp(25px, 5vh, 30px);
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: clamp(10px, 3vw, 12px);
    padding: 0;
  }

  .social {
    padding: 50px 4%;
  }

  .social-links {
    gap: 15px;
    margin-top: 30px;
  }

  .social-link {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }

  .social-link:hover {
    transform: none;
  }

  footer {
    padding: clamp(25px, 5vh, 30px) clamp(3%, 4vw, 4%);
  }

  .footer-links {
    gap: clamp(12px, 3vw, 15px);
  }

  .footer-links a {
    font-size: clamp(0.75rem, 2vw, 0.8rem);
    padding: clamp(6px, 2vw, 8px) clamp(10px, 2.5vw, 12px);
  }

  .footer-text {
    font-size: clamp(0.8rem, 2.5vw, 0.85rem);
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    font-size: 1.7rem;
  }
}

/* Prevent horizontal scroll */
@media (max-width: 480px) {

  .hero-content,
  .section-subtitle,
  .hero p,
  .cta p {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* Extra Small Devices */
@media (max-width: 360px) {
  .hero h1 {
    font-size: 1.25rem;
  }

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

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

  .stat-label {
    font-size: 0.65rem;
  }

  .section-title {
    font-size: 1.2rem;
  }

  .btn {
    padding: 12px 20px;
    font-size: 0.85rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: clamp(12px, 3vw, 15px);
  }

  .service-card {
    padding: clamp(18px, 4vw, 20px) clamp(12px, 3vw, 15px);
  }

  section {
    padding: 40px 3%;
  }

  .navbar {
    padding: 10px 3%;
  }
}

/* Landscape Mobile Fix */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 80px 20px 40px;
  }

  .hero-logo {
    width: 100px;
    margin-bottom: 15px;
  }

  .hero h1 {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }

  .hero p {
    font-size: 0.85rem;
    margin-bottom: 20px;
  }

  .hero-buttons {
    flex-direction: row;
    gap: 10px;
  }

  .btn {
    width: auto;
    padding: 10px 20px;
    font-size: 0.85rem;
  }

  section {
    padding: 60px 5%;
  }

  .stats {
    padding: 40px 5%;
  }
}

/* Landscape Tablet */
@media (max-height: 768px) and (min-width: 769px) and (orientation: landscape) {
  .hero {
    min-height: 100vh;
    padding: 100px 5% 60px;
  }

  section {
    padding: 80px 5%;
  }
}

/* Touch device improvements */
@media (hover: none) and (pointer: coarse) {

  .service-card:hover,
  .location-item:hover,
  .social-link:hover {
    transform: none;
  }

  .btn:hover {
    transform: none;
  }

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

  /* Active states for better touch feedback */
  .btn:active {
    transform: scale(0.97);
    opacity: 0.9;
  }

  .social-link:active {
    transform: scale(0.95);
  }

  .location-item:active {
    transform: scale(0.99);
  }

  .nav-links a:active {
    background: rgba(255, 110, 0, 0.1);
  }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* High resolution displays */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {

  .nav-logo img,
  .hero-logo {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Ultra Small Devices (< 280px) */
@media (max-width: 280px) {
  body {
    font-size: 14px;
  }

  .navbar {
    padding: 8px 2%;
  }

  .nav-logo img {
    height: 32px;
  }

  .hero h1 {
    font-size: 1.1rem;
  }

  .stats {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 20px 2%;
  }

  .btn {
    padding: 10px 16px;
    font-size: 0.8rem;
  }

  section {
    padding: 30px 2%;
  }
}

/* Large Tablets and Small Desktops */
@media (min-width: 1025px) and (max-width: 1440px) {
  section {
    padding: 90px 6%;
  }
}

/* Ultra Wide Screens */
@media (min-width: 1920px) {

  .navbar,
  section,
  .stats {
    padding-left: max(5%, calc((100vw - 1920px) / 2));
    padding-right: max(5%, calc((100vw - 1920px) / 2));
  }

  .hero {
    padding-left: max(5%, calc((100vw - 1920px) / 2));
    padding-right: max(5%, calc((100vw - 1920px) / 2));
  }

  .services-grid,
  .location-content {
    max-width: 1600px;
  }
}

/* Prevent text overflow */
* {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
  hyphens: auto;
}

/* iOS Safari specific fixes */
@supports (-webkit-touch-callout: none) {
  .hero {
    min-height: -webkit-fill-available;
  }

  input,
  textarea,
  button,
  select,
  a {
    -webkit-tap-highlight-color: rgba(255, 110, 0, 0.2);
  }
}

/* Ensure no horizontal scroll */
html,
body {
  max-width: 100vw;
  overflow-x: hidden;
}

/* Container queries support for future-proofing */
@supports (container-type: inline-size) {

  .services-grid,
  .testimonials-grid {
    container-type: inline-size;
  }
}

/* Flexible gap support fallback */
@supports not (gap: 20px) {

  .services-grid>*,
  .testimonials-grid>*,
  .stats>* {
    margin: 10px;
  }
}

/* Safe area insets for devices with notches */
@supports (padding: max(0px)) {
  .navbar {
    padding-left: max(clamp(3%, 5vw, 5%), env(safe-area-inset-left));
    padding-right: max(clamp(3%, 5vw, 5%), env(safe-area-inset-right));
  }

  .hero,
  section,
  .stats,
  footer {
    padding-left: max(clamp(3%, 5vw, 5%), env(safe-area-inset-left));
    padding-right: max(clamp(3%, 5vw, 5%), env(safe-area-inset-right));
  }

  .whatsapp-float {
    right: max(clamp(15px, 4vw, 30px), calc(env(safe-area-inset-right) + 15px));
    bottom: max(clamp(15px, 4vw, 30px), calc(env(safe-area-inset-bottom) + 15px));
  }
}

/* Ensure buttons and interactive elements are accessible */
@media (max-width: 480px) {

  a,
  button,
  .btn,
  .nav-links a,
  .social-link {
    min-width: 44px;
    min-height: 44px;
  }
}

/* Print styles */
@media print {

  .navbar,
  .whatsapp-float,
  .hero-buttons,
  .location-buttons,
  .cta-buttons {
    display: none;
  }

  body {
    background: white;
    color: black;
  }
}