/* ===== Google Fonts ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ===== Variables ===== */
:root {
  /* Colors */
  --primary-blue: #2563eb;
  --primary-blue-dark: #1d4ed8;
  --primary-blue-light: #bfdbfe;
  --primary-green: #10b981;
  --primary-green-dark: #059669;
  --background-light: #f8fafc;
  --background-white: #ffffff;
  --text-dark: #1e293b;
  --text-light: #64748b;

  /* Gradients */
  --grad-hero: linear-gradient(135deg, rgba(240, 249, 255, 0.9) 0%, rgba(191, 219, 254, 0.4) 100%);
  --grad-blue: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
  --grad-green: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));

  /* Shadows */
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-colored: 0 15px 30px -5px rgba(37, 99, 235, 0.2);

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* Transition */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Reset & Base ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background-color: var(--background-white);
  line-height: 1.6;
  overflow-x: hidden;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section {
  padding: 80px 0;
}

.bg-light {
  background-color: var(--background-light);
}

.bg-pattern {
  background-color: var(--background-light);
  background-image: radial-gradient(var(--primary-blue-light) 1px, transparent 1px);
  background-size: 30px 30px;
}

/* ===== Typography ===== */
.text-center {
  text-align: center;
}

.text-blue {
  color: var(--primary-blue);
}

.text-green {
  color: var(--primary-green);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  font-weight: 500;
  margin-bottom: 25px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 50px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-weight: 600;
  border-radius: 9999px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn:hover {
  transform: translateY(-4px) scale(1.01);
}

.btn-primary {
  background: linear-gradient(135deg, #2563eb, #10b981);
  color: white;
  box-shadow: 0 15px 30px rgba(37, 99, 235, 0.22);
}

.btn-primary:hover {
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.28);
}

.btn-whatsapp {
  background: var(--grad-green);
  color: white;
  box-shadow: 0 10px 20px -5px rgba(16, 185, 129, 0.3);
}

.btn-whatsapp:hover {
  background: var(--primary-green-dark);
}

.btn-outline {
  border: 1.5px solid rgba(37, 99, 235, 0.22);
  color: var(--primary-blue);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: var(--primary-blue);
  color: white;
}

.btn-block {
  width: 100%;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* ===== Glassmorphism ===== */
.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.glass-panel {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  position: relative;
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 1000;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 15px 0;
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--primary-blue);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-blue);
}

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 0 80px;
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.18), transparent 30%),
    radial-gradient(circle at bottom right, rgba(16, 185, 129, 0.18), transparent 30%),
    linear-gradient(180deg, #f8fbff 0%, #f8fafc 100%);
  overflow: hidden;
}

.hero-shapes .shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: rgba(37, 99, 235, 0.2);
  top: -100px;
  left: -100px;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: rgba(16, 185, 129, 0.2);
  bottom: 0;
  right: -50px;
}

.shape-3 {
  width: 250px;
  height: 250px;
  background: rgba(245, 158, 11, 0.15);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary-blue);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.fade-text {
  background: var(--grad-green);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: pulseColor 3s infinite alternate;
}

@keyframes pulseColor {
  0% {
    filter: hue-rotate(0deg);
  }

  100% {
    filter: hue-rotate(20deg);
  }
}

/* ===== About Section ===== */
.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
  padding-right: 20px;
}

.image-card {
  border-radius: var(--radius-lg);
  padding: 15px;
  position: relative;
  transform: rotate(-3deg);
  transition: var(--transition);
}

.image-card:hover {
  transform: rotate(0deg) scale(1.02);
}

.image-card img {
  border-radius: var(--radius-md);
  width: 100%;
  object-fit: cover;
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--background-white);
  padding: 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  border-left: 4px solid var(--primary-blue);
  transform: rotate(3deg);
}

.experience-badge .num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-blue);
  line-height: 1;
}

.experience-badge .text {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 600;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

/* ===== Services Section ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--background-white);
  padding: 40px 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  width: 100%;
  height: 4px;
  background: var(--grad-blue);
  /* Adjust this 0.6s value to make the blue hover slower or faster! */
  transition: all 0.4s ease-in-out;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
  height: 100%;
  z-index: -1;
  opacity: 0.05;
}

.service-icon {
  width: 80px;
  height: 80px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary-blue);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--primary-blue);
  color: var(--background-white);
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.service-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ===== Why Choose Us ===== */
.why-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 30px;
}

.features-list li {
  display: flex;
  gap: 20px;
}

.feature-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background: var(--grad-green);
  color: white;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-sm);
}

.feature-text h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.feature-text p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 500px;
  transition: var(--transition);
}

.why-image:hover img {
  transform: scale(1.05);
}

.glass-overlay {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: var(--radius-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow-md);
}

.glass-overlay h4 {
  font-size: 1.2rem;
  margin: 0;
}

/* ===== Testimonials ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: var(--background-white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.quote-icon {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 3rem;
  color: rgba(37, 99, 235, 0.1);
}

.review-text {
  font-size: 1.05rem;
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 15px;
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-blue-light);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.reviewer-info h4 {
  font-size: 1.1rem;
  margin: 0;
}

.reviewer-info span {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ===== Gallery ===== */


/* ===== Contact Section ===== */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  padding: 0;
  overflow: hidden;
}

.contact-info {
  background: var(--grad-blue);
  color: white;
  padding: 50px;
}

.contact-info .section-title {
  color: white;
}

.contact-info p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  align-items: flex-start;
}

.contact-item .icon {
  font-size: 1.5rem;
  color: var(--primary-green);
  background: rgba(255, 255, 255, 0.1);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-item h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.contact-item a,
.contact-item p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.contact-item a:hover {
  color: white;
  text-decoration: underline;
}

.map-container {
  margin-top: 30px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.contact-form-container {
  padding: 50px;
  background: white;
}

.contact-form-container h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: var(--text-dark);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
  background: var(--background-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  background: white;
}

/* ===== Footer ===== */
.footer {
  background: #0f172a;
  color: #cbd5e1;
  padding-top: 80px;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-logo {
  color: white;
  margin-bottom: 20px;
}

.footer-brand p {
  margin-bottom: 25px;
  max-width: 300px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary-blue);
  transform: translateY(-3px);
}

.footer-links h3 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.footer-links h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background: var(--primary-green);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

/* ===== Floating WhatsApp ===== */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, #25d366, #10b981);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 16px 32px rgba(16, 185, 129, 0.28);
  z-index: 1000;
  transition: all 0.3s ease;
  animation: pulseWhatsapp 2s infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.08);
}

@keyframes pulseWhatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.35);
  }

  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ===== Animations ===== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Premium Pricing Section ===== */
.pricing {
  position: relative;
  overflow: hidden;
}

.pricing-badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary-blue);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 18px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 28px;
  padding: 34px 32px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  overflow: hidden;
}

.pricing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.04), rgba(16, 185, 129, 0.02));
  pointer-events: none;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.12);
  border-color: rgba(37, 99, 235, 0.22);
}

.pricing-card-featured {
  background: linear-gradient(180deg, rgba(239, 246, 255, 0.98), rgba(240, 253, 250, 0.98));
  border: 1px solid rgba(37, 99, 235, 0.2);
  box-shadow: 0 30px 70px rgba(37, 99, 235, 0.16);
  transform: scale(1.02);
}

.pricing-card-featured:hover {
  transform: translateY(-10px) scale(1.02);
}

.popular-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.18);
  z-index: 2;
}

.pricing-icon {
  width: 74px;
  height: 74px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(16, 185, 129, 0.12));
  color: var(--primary-blue);
  font-size: 1.8rem;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}

.featured-icon {
  color: var(--primary-green-dark);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.14), rgba(16, 185, 129, 0.2));
}

.pricing-card h3 {
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text-dark);
  position: relative;
  z-index: 1;
}

.pricing-text {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.price-wrap {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.price {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: var(--primary-blue);
}

.pricing-card-featured .price {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-green-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.price-note {
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 500;
  margin-bottom: 6px;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-dark);
  font-size: 1rem;
}

.pricing-features li i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.12);
  color: var(--primary-green-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.pricing-btn {
  width: fit-content;
  min-width: 170px;
  position: relative;
  z-index: 1;
}

/* ===== Premium Hover Effects ===== */
.service-card,
.testimonial-card,
.pricing-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.service-card:hover,
.testimonial-card:hover,
.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.12);
}

/* ==============================
   RESPONSIVE DESIGN (UNIFIED)
============================== */

/* Laptop / small desktop */
@media (max-width: 1200px) {
  .container {
    width: min(92%, 1100px);
  }

  .hero-title {
    font-size: 3rem;
  }
}

/* Tablet */
@media (max-width: 992px) {
  .nav-container {
    padding: 14px 0;
  }

  .mobile-toggle {
    display: block;
    z-index: 1001;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;
    background: var(--background-white);
    flex-direction: column;
    padding: 90px 24px 24px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    gap: 16px;
    transition: var(--transition);
    z-index: 1000;
  }

  .nav-links.active {
    right: 0;
  }

  .hero-title {
    font-size: 2.7rem;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .about-container,
  .why-container,
  .contact-wrapper,
  .footer-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .why-image,
  .about-image-wrapper {
    order: -1;
  }

  .services-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card-featured {
    transform: none;
  }

  .pricing-card-featured:hover {
    transform: translateY(-10px);
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
  }

  .item-1 {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
  }

  .item-2 {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
  }

  .item-3 {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
  }

  .item-4 {
    grid-column: 1 / 3;
    grid-row: 4 / 5;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .container {
    width: 92%;
  }

  .navbar .logo,
  .footer-logo {
    font-size: 1.6rem;
  }

  .hero {
    padding: 120px 0 70px;
    text-align: center;
  }

  .hero-content {
    justify-items: center;
    max-width: 100%;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 0.98rem;
    max-width: 100%;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
    gap: 14px;
  }

  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .services-grid,
  .pricing-grid,
  .testimonials-grid,
  .footer-container {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .section-subtitle,
  .section-desc {
    font-size: 1rem;
  }

  .pricing-card,
  .service-card,
  .testimonial-card,
  .glass-card,
  .contact-wrapper {
    padding: 20px;
  }

  .contact-form-container,
  .contact-info {
    width: 100%;
    padding: 30px 20px;
  }

  .features-list li {
    align-items: flex-start;
  }

  .map-container iframe {
    height: 220px;
  }

  .glass-overlay {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }
}

/* Small mobile */
@media (max-width: 576px) {
  .pricing-card {
    padding: 26px 22px;
    border-radius: 22px;
  }

  .pricing-card h3 {
    font-size: 1.5rem;
  }

  .price {
    font-size: 2.3rem;
  }

  .popular-tag {
    position: static;
    display: inline-block;
    margin-bottom: 18px;
  }

  .pricing-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .container {
    width: 94%;
  }

  .hero {
    padding: 110px 0 60px;
  }

  .badge {
    font-size: 0.78rem;
    padding: 8px 14px;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.55rem;
  }

  .btn {
    width: 100%;
    padding: 12px 18px;
    font-size: 0.95rem;
  }

  .pricing-card h3,
  .service-card h3,
  .testimonial-card h4 {
    font-size: 1.1rem;
  }

  .price {
    font-size: 1.7rem;
  }

  .nav-links {
    right: -100%;
    width: 100%;
  }

  .gallery-grid {
    display: flex;
    flex-direction: column;
  }

  .gallery-item {
    height: 250px;
  }

  .glass-overlay {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .experience-badge {
    right: 0;
    bottom: -15px;
  }

  .floating-whatsapp {
    width: 52px;
    height: 52px;
    font-size: 1.3rem;
    right: 20px;
    bottom: 20px;
  }
}