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

:root {
  /* Premium Colors */
  --primary: #0052FF; 
  --primary-light: rgba(0, 82, 255, 0.08);
  --primary-gradient: linear-gradient(135deg, #0052FF 0%, #009DFF 100%);
  --secondary: #0B132B; /* Deep Indigo / Navy */
  --accent: #F95738; /* Energetic emergency orange */
  --accent-light: rgba(249, 87, 56, 0.1);
  --text-main: #475569;
  --text-light: #94A3B8;
  --bg-main: #FFFFFF;
  --bg-alt: #F4F7FC; /* Very soft tech blue-gray */
  --border: rgba(11, 19, 43, 0.08);
  
  /* Utilities */
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 4px 12px rgba(11, 19, 43, 0.03);
  --shadow-md: 0 12px 24px -6px rgba(11, 19, 43, 0.08);
  --shadow-lg: 0 24px 48px -12px rgba(0, 82, 255, 0.15);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-main);
  background-color: var(--bg-main);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--secondary);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

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

ul {
  list-style: none;
}

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

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

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(rgba(255,255,255,0.15), rgba(255,255,255,0));
  z-index: -1;
  opacity: 0;
  transition: var(--transition);
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  background: var(--primary-gradient);
  color: #fff;
  box-shadow: 0 10px 20px -8px rgba(0, 82, 255, 0.4);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px -8px rgba(0, 82, 255, 0.5);
}

.btn-accent {
  background-color: var(--accent);
  color: #fff;
  box-shadow: 0 10px 20px -8px rgba(249, 87, 56, 0.4);
}

.btn-accent:hover {
  transform: translateY(-4px);
  background-color: #fca311; /* subtle shift */
  box-shadow: 0 16px 32px -8px rgba(249, 87, 56, 0.5);
}

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

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background-color: var(--primary-light);
}

/* Glassmorphic Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  transition: var(--transition);
}

header.scrolled {
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 30px rgba(11, 19, 43, 0.05);
  border-bottom: 1px solid var(--border);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--secondary);
  letter-spacing: -0.02em;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-gradient);
  color: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 8px 16px -4px rgba(0, 82, 255, 0.3);
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-main);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--primary-gradient);
  transition: var(--transition);
  border-radius: 2px;
}

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

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: var(--secondary);
  font-size: 1.15rem;
}

.phone-link i {
  color: var(--primary);
}

.mobile-menu-btn {
  display: none;
  font-size: 1.75rem;
  color: var(--secondary);
  cursor: pointer;
  z-index: 1001;
}

/* Elevated Hero Section */
.hero {
  padding-top: 160px;
  padding-bottom: 120px;
  background-color: var(--bg-alt);
  position: relative;
  overflow: hidden;
}

/* Stunning Background Mesh Gradient */
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 82, 255, 0.15) 0%, rgba(255,255,255,0) 60%);
  border-radius: 50%;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(249, 87, 56, 0.08) 0%, rgba(255,255,255,0) 60%);
  border-radius: 50%;
  z-index: 0;
}

/* Grid Pattern Overlay */
.hero-grid {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: 40px 40px;
  background-image: linear-gradient(to right, rgba(0,0,0,0.02) 1px, transparent 1px), linear-gradient(to bottom, rgba(0,0,0,0.02) 1px, transparent 1px);
  z-index: 0;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: 4.5rem;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

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

.hero-content p {
  font-size: 1.25rem;
  color: var(--text-main);
  margin-bottom: 48px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}

.hero-tags {
  display: flex;
  gap: 16px;
  margin-top: 56px;
}

.tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--secondary);
  background-color: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  padding: 10px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(11, 19, 43, 0.03);
  border: 1px solid rgba(255,255,255,0.5);
}

.tag i {
  color: var(--primary);
}

.hero-image-wrapper {
  position: relative;
}

.hero-image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
  width: 100%;
  height: 640px;
  object-fit: cover;
  border: 8px solid #fff;
}

/* Glassmorphic Badge */
.hero-badge {
  position: absolute;
  bottom: -40px;
  left: -40px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 24px 32px;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  border: 1px solid rgba(255,255,255,0.5);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 20px;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

.badge-icon {
  width: 64px;
  height: 64px;
  background-color: var(--accent-light);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
}

.badge-text h4 {
  font-size: 1.4rem;
  margin-bottom: 2px;
}

.badge-text p {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
}

/* Services Section */
.services {
  padding: 120px 0;
  background-color: var(--bg-main);
}

.section-head {
  text-align: center;
  margin-bottom: 80px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.subtitle {
  color: var(--primary);
  font-weight: 800;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  display: block;
}

.section-head h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.section-head p {
  color: var(--text-main);
  font-size: 1.15rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* Rich Service Cards */
.service-card {
  background-color: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

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

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

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

.service-icon {
  width: 72px;
  height: 72px;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  margin-bottom: 32px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--primary-gradient);
  color: #fff;
  box-shadow: 0 10px 20px -5px rgba(0, 82, 255, 0.4);
}

.service-card h3 {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.service-card p {
  color: var(--text-main);
  margin-bottom: 32px;
  font-size: 1rem;
}

.service-link {
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-link i {
  transition: var(--transition);
}

.service-card:hover .service-link i {
  transform: translateX(6px);
}

/* Gallery Section */
.gallery {
  padding: 120px 0;
  background-color: var(--bg-alt);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
}

.gallery-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Elegant Glass Overlay */
.gallery-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(11, 19, 43, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 32px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transform: translateY(10px);
  opacity: 0.9;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
  opacity: 1;
  background: rgba(11, 19, 43, 0.85);
}

.gallery-content h3 {
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.gallery-content p {
  color: rgba(255,255,255,0.7);
}

.gallery-badge {
  display: inline-block;
  background: var(--primary-gradient);
  color: #fff;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* Testimonials */
.testimonials {
  padding: 120px 0;
  background-color: var(--bg-main);
  position: relative;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.testimonial-card {
  background-color: #fff;
  border: 1px solid var(--border);
  padding: 48px 40px;
  border-radius: var(--radius-lg);
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.quote-icon {
  position: absolute;
  top: 40px;
  right: 40px;
  font-size: 4rem;
  color: var(--primary-light);
}

.stars {
  color: #FFB800;
  margin-bottom: 32px;
  font-size: 1.1rem;
}

.testimonial-text {
  font-size: 1.15rem;
  color: var(--secondary);
  font-weight: 500;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

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

.author-avatar {
  width: 56px;
  height: 56px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-weight: 800;
  font-size: 1.4rem;
}

.author-info h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.author-info p {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 600;
}

/* FAQ Section */
.faq {
  padding: 120px 0;
  background-color: var(--bg-alt);
}
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background-color: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 28px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}
.faq-item:hover {
  box-shadow: var(--shadow-md);
}
.faq-item summary {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary);
  list-style: none; /* remove default arrow */
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: '+';
  font-size: 1.75rem;
  color: var(--primary);
  transition: transform 0.3s ease;
}
.faq-item[open] summary::after {
  content: '−';
}
.faq-item p {
  padding-top: 20px;
  color: var(--text-main);
  line-height: 1.7;
  font-size: 1.05rem;
  border-top: 1px solid rgba(11, 19, 43, 0.05);
  margin-top: 20px;
}

/* Location & Contact */
.location-contact {
  padding: 120px 0;
  background-color: var(--bg-main);
}
.location-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.info-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.info-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.info-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  transition: var(--transition);
}
.info-item:hover .info-icon {
  background: var(--primary-gradient);
  color: white;
  transform: scale(1.05) rotate(-5deg);
}
.info-item h4 {
  font-size: 1.3rem;
  margin-bottom: 6px;
  color: var(--secondary);
}
.info-item p {
  color: var(--text-main);
  font-size: 1.05rem;
  line-height: 1.6;
}
.map-wrapper {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 520px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  border: 4px solid #fff;
}

/* Premium CTA Section */
.cta-section {
  padding: 60px 0 100px;
  background-color: var(--bg-main);
}

.cta-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--secondary);
  padding: 70px 80px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 60px -20px rgba(11, 19, 43, 0.4);
}

/* CTA internal glowing circles */
.cta-container::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 82, 255, 0.4) 0%, transparent 60%);
  border-radius: 50%;
}
.cta-container::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(249, 87, 56, 0.2) 0%, transparent 60%);
  border-radius: 50%;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  color: #fff;
  font-size: 3rem;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.8);
  max-width: 500px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.btn-white {
  background-color: #fff;
  color: var(--secondary);
}

.btn-white:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.2);
}

/* Footer */
footer {
  background-color: var(--secondary);
  color: rgba(255,255,255,0.6);
  padding: 100px 0 30px;
}

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

.footer-brand .logo {
  color: #fff;
  margin-bottom: 32px;
}

.footer-brand p {
  max-width: 320px;
  font-size: 1rem;
  line-height: 1.8;
}

.footer-title {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 32px;
}

.footer-links li {
  margin-bottom: 16px;
}

.footer-links a {
  font-weight: 500;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 8px; /* micro interaction */
}

.footer-contact li {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.footer-contact i {
  color: var(--primary);
  margin-top: 6px;
  font-size: 1.2rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
}

/* Scroll to Top Button */
.scroll-top-btn {
  position: fixed;
  bottom: 120px;
  right: 44px;
  width: 56px;
  height: 56px;
  background-color: var(--secondary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-md);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
}

.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background-color: var(--primary);
  transform: translateY(-5px);
  color: #fff;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 64px;
  height: 64px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
  z-index: 1000;
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  background-color: #1EBE5D;
  transform: scale(1.15) rotate(-5deg);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-content p {
    margin: 0 auto 40px;
  }
  
  .hero-actions, .hero-tags {
    justify-content: center;
  }
  
  .hero-badge {
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    animation: none;
  }
  
  .services-grid, .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .location-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .cta-container {
    padding: 60px 40px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 90px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 90px);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 60px 24px;
    gap: 40px;
    transition: var(--transition);
    border-top: 1px solid var(--border);
  }
  
  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 1.5rem;
    font-weight: 800;
    display: block;
    width: 100%;
    text-align: center;
  }
  
  .nav-links a::after {
    display: none;
  }

  .nav-cta {
    display: none;
  }
}

@media (max-width: 768px) {
  
  .hero {
    padding-top: 130px;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 16px;
  }
  
  .hero-actions .btn {
    width: 100%;
  }

  .hero-tags {
    flex-direction: column;
    width: 100%;
    gap: 12px;
    margin-top: 32px;
  }
  
  .tag {
    width: 100%;
    justify-content: center;
  }
  
  .hero-image {
    height: 400px;
  }
  
  .faq, .location-contact, .testimonials, .gallery, .services {
    padding: 80px 0;
  }

  .map-wrapper {
    height: 350px;
    margin-top: 40px;
  }
  
  .services-grid, .gallery-grid, .testimonials-grid, .location-container {
    grid-template-columns: 1fr;
  }
  
  .cta-container {
    flex-direction: column;
    text-align: center;
    gap: 32px;
    padding: 50px 24px;
  }
  
  .cta-content h2 {
    font-size: 2.2rem;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
    gap: 16px;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    font-size: 1.8rem;
  }

  .scroll-top-btn {
    bottom: 90px;
    right: 24px;
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }
}
