  *{margin:0;padding:0;box-sizing:border-box;}
  :root{
    --teal:#0A7E8C;--teal2:#0d9aaa;--teal-light:#E6F7F9;
    --dark:#1A1A2E;--gray:#f7f9fa;--white:#fff;
    --shadow:0 4px 24px rgba(10,126,140,0.13);
    --radius:14px;
  }
  html{scroll-behavior:smooth;}
  body{font-family:'Segoe UI',Arial,sans-serif;color:var(--dark);background:var(--white);}

  /* NAV */
  nav{
    position:fixed;top:0;left:0;right:0;z-index:100;
    background:rgba(255,255,255,0.96);backdrop-filter:blur(10px);
    box-shadow:0 2px 16px rgba(10,126,140,0.10);
    display:flex;align-items:center;justify-content:space-between;
    padding:0 5%;height:68px;
  }
  .nav-logo{display:flex;align-items:center;gap:10px;}
  .nav-logo span.icon{font-size:2rem;}
  .nav-logo span.name{font-size:1.25rem;font-weight:700;color:var(--teal);}
  .nav-logo span.sub{font-size:.75rem;color:#777;margin-top:-2px;display:block;}
  .nav-links{display:flex;gap:28px;list-style:none;}
  .nav-links a{text-decoration:none;color:var(--dark);font-weight:500;font-size:.95rem;transition:.2s;}
  .nav-links a:hover{color:var(--teal);}
  .nav-cta{
    background:var(--teal);color:var(--white);border:none;
    padding:10px 22px;border-radius:30px;font-size:.92rem;font-weight:600;
    cursor:pointer;text-decoration:none;transition:.2s;
    display:flex;align-items:center;gap:6px;
  }
  .nav-cta:hover{background:var(--teal2);transform:scale(1.03);}
  .hamburger{display:none;flex-direction:column;gap:5px;cursor:pointer;}
  .hamburger span{width:24px;height:2.5px;background:var(--teal);border-radius:2px;transition:.3s;}
  @media(max-width:768px){
    nav{padding:0 4%;height:60px;}
    .nav-links{display:none;flex-direction:column;gap:0;position:absolute;top:60px;left:0;right:0;background:var(--white);box-shadow:var(--shadow);padding:12px 0;}
    .nav-links.open{display:flex;}
    .nav-links li a{display:block;padding:14px 4%;border-bottom:1px solid #f0f0f0;}
    .hamburger{display:flex;}
    .nav-cta{display:none;}
    .nav-links .nav-cta{display:flex;margin:12px 4%;}
  }

  /* TABLET */
  @media(max-width:1024px) and (min-width:641px){
    .hero-wrap{gap:30px;}
    .hero-content{max-width:48%;}
    .hero h1{font-size:2.2rem;}
    .services-grid{grid-template-columns:repeat(2,1fr);}
    .pricing-grid{grid-template-columns:repeat(2,1fr);}
    .testimonials-grid{grid-template-columns:repeat(2,1fr);}
    .gallery-grid{grid-template-columns:repeat(3,1fr);}
  }

  /* MOBILE RESPONSIVE */
  @media(max-width:640px){
    section{padding:60px 4%;}
    .hero{padding:80px 4% 30px;min-height:auto;padding-top:90px;}
    .hero-wrap{flex-direction:column;gap:30px;text-align:center;}
    .hero-content{max-width:100%;}
    .hero-btns{justify-content:center;}
    .hero-stats{justify-content:center;}
    .demo-bar{font-size:.75rem;padding:8px 3%;}
    
    /* Services mobile */
    .services-grid{grid-template-columns:1fr;gap:16px;}
    .service-card{padding:22px 18px;}
    
    /* Why us mobile */
    .why-wrap{flex-direction:column;}
    .why-img{width:100%;height:220px;}
    .why-content{min-width:100%;}
    .why-list li{gap:12px;}
    .why-list .check{width:28px;height:28px;font-size:.8rem;}
    
    /* Pricing mobile */
    .pricing-grid{grid-template-columns:1fr;}
    .price-card{padding:26px 20px;}
    .price-card .amount{font-size:2rem;}
    
    /* Testimonials mobile */
    .testimonials-grid{grid-template-columns:1fr;}
    
    /* Gallery mobile */
    .gallery-grid{grid-template-columns:repeat(2,1fr);gap:12px;}
    
    /* Contact mobile */
    .contact-wrap{flex-direction:column;gap:32px;}
    .contact-info,.contact-form{min-width:100%;}
    .form-row{grid-template-columns:1fr;}
    .contact-form input,.contact-form select,.contact-form textarea{padding:12px 14px;}
    
    /* Footer mobile */
    footer{padding:24px 4%;font-size:.8rem;}
    
    /* WhatsApp FAB mobile */
    .wa-fab{width:50px;height:50px;font-size:1.5rem;bottom:20px;right:20px;}
  }

  /* HERO */
  .hero{
    min-height:100vh;
    background:linear-gradient(135deg,#0A7E8C 0%,#064e56 55%,#0d2030 100%);
    display:flex;align-items:center;padding:90px 5% 40px;
    position:relative;overflow:hidden;
  }
  .hero::before{
    content:'';position:absolute;right:-8%;top:-10%;
    width:520px;height:520px;
    background:rgba(255,255,255,0.04);border-radius:50%;
  }
  .hero::after{
    content:'';position:absolute;right:5%;bottom:-10%;
    width:300px;height:300px;
    background:rgba(255,255,255,0.03);border-radius:50%;
  }
  .hero-wrap {
    display: flex;
    align-items: flex-start;   /* both columns align to top */
    gap: 40px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 1;
  }
  .hero-content{max-width:560px;z-index:1;}
  .hero-badge{
    display:inline-block;background:rgba(255,255,255,0.15);
    color:#fff;font-size:.82rem;padding:6px 16px;border-radius:20px;
    border:1px solid rgba(255,255,255,0.25);margin-bottom:20px;
  }
  .hero h1{font-size:clamp(2rem,5vw,3.4rem);color:#fff;font-weight:800;line-height:1.15;margin-bottom:18px;}
  .hero h1 span{color:#7DF5FF;}
  .hero p{color:rgba(255,255,255,.82);font-size:1.08rem;line-height:1.7;margin-bottom:32px;}
  .hero-btns{display:flex;gap:14px;flex-wrap:wrap;}
  .btn-primary{
    background:#fff;color:var(--teal);font-weight:700;
    padding:14px 28px;border-radius:30px;text-decoration:none;
    display:flex;align-items:center;gap:8px;font-size:1rem;transition:.2s;
    box-shadow:0 4px 20px rgba(0,0,0,.18);
  }
  .btn-primary:hover{transform:translateY(-2px);box-shadow:0 8px 28px rgba(0,0,0,.22);}
  .btn-secondary{
    background:rgba(255,255,255,.12);color:#fff;font-weight:600;
    padding:14px 28px;border-radius:30px;text-decoration:none;
    border:2px solid rgba(255,255,255,.35);font-size:1rem;transition:.2s;
  }
  .btn-secondary:hover{background:rgba(255,255,255,.22);}
  .hero-stats{
    display:flex;gap:32px;margin-top:44px;flex-wrap:wrap;
  }
  .stat{color:#fff;}
  .stat .num{font-size:2rem;font-weight:800;color:#7DF5FF;}
  .stat .label{font-size:.8rem;color:rgba(255,255,255,.7);}
.hero-visual {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  z-index: 1;
  padding-top: 10px;
  gap: 20px;
}
/* ── PREMIUM DR CARD ── */
.premium-dr-card {
  background: rgba(255, 255, 255, 0.15); /* Much more transparent */
  backdrop-filter: blur(25px); /* Stronger blur for frosted look */
  -webkit-backdrop-filter: blur(25px);
  width: 100%;
  max-width: 350px;
  border-radius: 28px;
  padding: 12px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4), inset 0 0 0 1px rgba(255,255,255,0.4);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.premium-dr-card:hover {
  transform: translateY(-10px) scale(1.02);
}
.premium-img-wrapper {
  position: relative;
  width: 100%;
  height: 280px;
  border-radius: 20px;
  overflow: hidden;
  background: transparent;
}
.premium-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.premium-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.9);
  color: #111 !important;
  padding: 6px 12px;
  border-radius: 30px;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  backdrop-filter: blur(5px);
}
.pulse-dot {
  width: 8px;
  height: 8px;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(37, 211, 102, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.premium-content {
  padding: 24px 12px 12px;
  text-align: center;
}
.premium-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff !important; /* Force white text for dark background */
  margin-bottom: 4px;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3); /* Ensure readability */
}
.premium-title {
  font-size: 0.75rem;
  color: #7DF5FF !important; /* Bright cyan for contrast */
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  margin-bottom: 16px;
}
.premium-tags {
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.premium-tags .dr-tag {
  background: rgba(255,255,255,0.15);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.3);
}
.premium-tags .marathi-tag-large {
  font-size: 1.15rem; /* Significantly larger */
  padding: 8px 20px; /* More breathing room */
  font-weight: 800; /* Bolder */
  background: rgba(10, 126, 140, 0.4); /* Subtle teal tint to make it pop */
  border-color: rgba(255, 255, 255, 0.5);
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.premium-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
  margin-bottom: 26px;
}
.p-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-stat-val {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff !important;
  text-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.p-stat-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.7) !important;
  margin-top: 4px;
  font-weight: 600;
}
.p-divider {
  width: 1px;
  height: 30px;
  background: rgba(255,255,255,0.2);
}
.premium-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  background: #fff; /* White button pops on glass */
  color: var(--teal) !important;
  padding: 15px;
  border-radius: 16px;
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.premium-btn:hover {
  background: var(--teal-light);
  transform: translateY(-2px);
}

/* ── MOBILE ── */
@media(max-width: 1024px) {
  .hero-visual {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media(max-width: 640px) {
  .hero-visual {
    width: 100%;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .premium-dr-card {
    margin-top: 0 !important;
  }
}

  /* SECTION BASE */
  section{padding:80px 5%;}
  .section-label{color:var(--teal);font-size:.82rem;font-weight:700;letter-spacing:2px;text-transform:uppercase;margin-bottom:10px;}
  .section-title{font-size:clamp(1.6rem,3.5vw,2.4rem);font-weight:800;color:var(--dark);margin-bottom:14px;}
  .section-sub{color:#666;font-size:1rem;line-height:1.7;max-width:580px;}
  .section-head{text-align:center;margin-bottom:52px;}
  .section-head .section-sub{margin:0 auto;}

  /* SERVICES SLIDER BANNER */
  .services-banner-wrap {
    background: #f7f9fa;
    padding: 20px 0;
    position: relative;
    z-index: 10;
  }
  .slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    color: var(--teal);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
  }
  .slider-arrow:hover {
    background: var(--teal);
    color: #fff;
    border-color: var(--teal);
    box-shadow: 0 6px 16px rgba(10,126,140,0.3);
  }
  .prev-arrow {
    left: 20px;
  }
  .next-arrow {
    right: 20px;
  }
  @media(min-width: 1300px) {
    .prev-arrow { left: calc(50% - 630px); }
    .next-arrow { right: calc(50% - 630px); }
  }
  @media(max-width: 768px) {
    .slider-arrow {
      width: 36px;
      height: 36px;
    }
    .prev-arrow { left: 10px; }
    .next-arrow { right: 10px; }
  }
  .services-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .services-slider::-webkit-scrollbar {
    display: none;
  }
  .slide {
    flex: 0 0 100%;
    width: 100%;
    scroll-snap-align: center;
    display: flex;
    justify-content: center;
    padding: 0 2%;
  }
  .banner-img {
    width: 100%;
    max-width: 1200px;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }

  @media(max-width: 768px) {
    .slide {
      padding: 0 4%; /* slightly more padding on smaller screens */
    }
    .banner-img {
      border-radius: 12px; /* slightly smaller radius for smaller screens */
    }
    .services-banner-wrap {
      padding: 15px 0; /* slightly less top/bottom padding */
    }
  }

  .slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
  }
  .dot {
    width: 10px;
    height: 10px;
    background: rgba(0,0,0,0.15); /* Darker dots since background is light now */
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
  }
  .dot.active {
    background: var(--teal); /* Teal active dot */
    transform: scale(1.4);
  }

  /* SERVICES */
  #services{background:var(--gray);}
  .services-grid{
    display:grid;grid-template-columns:repeat(auto-fit,minmax(210px,1fr));gap:22px;
  }
  .service-card{
    background:var(--white);border-radius:var(--radius);padding:28px 22px;
    box-shadow:var(--shadow);transition:.3s;cursor:default;
    border:2px solid transparent;
  }
  .service-card:hover{border-color:var(--teal);transform:translateY(-4px);}
  .service-icon-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 16px;
    display: block;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.05));
  }
  .service-card h3{font-size:1rem;font-weight:700;margin-bottom:8px;color:var(--dark);}
  .service-card p{font-size:.88rem;color:#666;line-height:1.6;}
  .service-card .price-tag{
    display:inline-block;background:var(--teal-light);color:var(--teal);
    font-size:.8rem;font-weight:700;padding:4px 12px;border-radius:20px;margin-top:12px;
  }

  /* WHY US */
  .why-wrap{display:flex;gap:50px;align-items:center;flex-wrap:wrap;}
  .why-img{
    flex:1;min-width:280px;
    height:380px;
    border-radius:24px;
    box-shadow: var(--shadow);
  }
  .why-content{flex:1.2;min-width:280px;}
  .why-list{list-style:none;margin-top:24px;}
  .why-list li{
    display:flex;gap:14px;align-items:flex-start;margin-bottom:18px;
  }
  .why-list .check{
    width:32px;height:32px;border-radius:50%;background:var(--teal);
    color:#fff;font-size:.9rem;display:flex;align-items:center;justify-content:center;flex-shrink:0;
  }
  .why-list h4{font-size:.97rem;font-weight:700;margin-bottom:3px;}
  .why-list p{font-size:.87rem;color:#666;}

/* ── TEAM SECTION ── */
.team-section { background: var(--gray); }
 
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
 
.team-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid transparent;
  transition: border-color 0.3s, transform 0.3s;
}
.team-card:hover { border-color: var(--teal); transform: translateY(-4px); }
.featured-doc { border-color: var(--teal); }
 
/* Card image area */
.team-card-img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  margin: 24px auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 4px solid #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.team-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 50%;
}
 
/* Background color variants */
.teal-bg  { background: #E6F7F9; }
.gray-bg  { background: #F1EFE8; }
.blue-bg  { background: #E6F1FB; }
 
/* Avatar fallback */
.team-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  border: 3px solid rgba(255,255,255,0.6);
}
.teal-avatar { background: var(--teal); }
.gray-avatar { background: #888780; }
.blue-avatar { background: #185FA5; }
 
/* Specialization badge */
.team-badge {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.5px;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.teal-badge { background: var(--teal); color: #fff; }
.gray-badge { background: #5F5E5A; color: #fff; }
.blue-badge { background: #185FA5; color: #fff; }
 
/* Availability pill */
.team-avail {
  position: absolute;
  top: 4px;
  right: -10px;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.avail-green { background: rgba(255,255,255,0.85); color: #166534; }
.avail-busy  { background: rgba(255,255,255,0.85); color: #92400e; }
 
.avail-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.green-dot  { background: #22c55e; }
.amber-dot  { background: #f59e0b; }
 
/* Card body */
.team-card-body { padding: 18px 16px; }
 
.team-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
 
.team-qual {
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.teal-text { color: var(--teal); }
.gray-text { color: #5F5E5A; }
.blue-text { color: #185FA5; }
 
/* Specialty tags */
.team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 14px;
}
.team-tag {
  background: var(--gray);
  color: #555;
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 500;
}
 
/* Stats row */
.team-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}
.team-stat {
  background: var(--gray);
  border-radius: 10px;
  padding: 8px 4px;
  text-align: center;
}
.team-stat-num {
  font-size: 0.9rem;
  font-weight: 700;
}
.team-stat-label {
  font-size: 0.68rem;
  color: #888;
  margin-top: 2px;
}
 
/* Divider */
.team-divider {
  height: 1px;
  background: #eee;
  margin-bottom: 12px;
}
 
/* Footer row */
.team-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.team-timing {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: #777;
}
.team-timing svg { flex-shrink: 0; }
 
/* Book button */
.team-btn {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 20px;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.team-btn:hover { opacity: 0.85; }
.teal-btn { background: var(--teal); color: #fff; }
.gray-btn { background: #5F5E5A; color: #fff; }
.blue-btn { background: #185FA5; color: #fff; }
 
/* ── RESPONSIVE ── */
@media(max-width: 768px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .team-card-img { height: 180px; }
  .team-name { font-size: 0.92rem; }
}
 
@media(max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .team-card-img { height: 200px; }
}

  /* DOCTORS SOCIAL SECTION */
  #social { background: var(--white); }
  .doctor-social-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
  }
  .doc-social-link {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--gray);
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
  }
  .doc-social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: var(--teal);
  }
  .icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
  }
  .insta-bg { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
  .fb-bg { background: #1877F2; }

  /* PRICING */
  #pricing{background:var(--gray);}
  .pricing-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:24px;}
  .price-card{
    background:var(--white);border-radius:var(--radius);padding:32px 26px;
    box-shadow:var(--shadow);border:2px solid transparent;transition:.3s;position:relative;
  }
  .price-card.featured{
    border-color:var(--teal);
    background:linear-gradient(160deg,#E6F7F9,#fff);
  }
  .price-card.featured::before{
    content:'⭐ Most Popular';position:absolute;top:-14px;left:50%;transform:translateX(-50%);
    background:var(--teal);color:#fff;font-size:.75rem;font-weight:700;
    padding:5px 16px;border-radius:20px;white-space:nowrap;
  }
  .price-card:hover{transform:translateY(-4px);}
  .price-card .plan{font-size:.82rem;font-weight:700;color:var(--teal);letter-spacing:1.5px;text-transform:uppercase;}
  .price-card .amount{font-size:2.4rem;font-weight:800;color:var(--dark);margin:10px 0 4px;}
  .price-card .amount span{font-size:1rem;color:#888;font-weight:400;}
  .price-card .desc{font-size:.87rem;color:#666;margin-bottom:20px;border-bottom:1px solid #eee;padding-bottom:18px;}
  .price-card ul{list-style:none;margin-bottom:24px;}
  .price-card ul li{font-size:.88rem;color:#555;padding:5px 0;display:flex;align-items:center;gap:8px;}
  .price-card ul li::before{content:'✓';color:var(--teal);font-weight:700;}
  .price-card .btn-price{
    display:block;text-align:center;background:var(--teal);color:#fff;
    padding:12px;border-radius:30px;text-decoration:none;font-weight:700;font-size:.92rem;transition:.2s;
  }
  .price-card .btn-price:hover{background:var(--teal2);}
  .price-card.featured .btn-price{background:var(--dark);}
  .price-card.featured .btn-price:hover{background:#2d2d50;}

  /* TESTIMONIALS */
  .testimonials-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:22px;max-width:1200px;margin:0 auto;}
  .testimonial-card{
    background:var(--gray);border-radius:var(--radius);padding:26px;
    border-left:4px solid var(--teal);
  }
  .testimonial-card .stars{color:#FFD700;font-size:1rem;margin-bottom:12px;}
  .testimonial-card p{font-size:.92rem;color:#444;line-height:1.7;font-style:italic;margin-bottom:16px;}
  .testimonial-card .author{display:flex;align-items:center;gap:12px;}
  .testimonial-card .avatar{
    width:42px;height:42px;border-radius:50%;background:var(--teal);
    display:flex;align-items:center;justify-content:center;color:#fff;font-weight:700;font-size:1rem;
  }
  .testimonial-card .name{font-weight:700;font-size:.9rem;}
  .testimonial-card .role{font-size:.8rem;color:#888;}

  /* FAQ SECTION (Accordion) */
  .faq-item {
    border: 1px solid #eee;
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: .3s;
  }
  .faq-question {
    padding: 18px 24px;
    background: #fff;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--dark);
    transition: .3s;
  }
  .faq-question:hover {
    background: var(--teal-light);
    color: var(--teal);
  }
  .faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: #fff;
    color: #666;
    font-size: .92rem;
    line-height: 1.6;
  }
  .faq-item.active {
    border-color: var(--teal);
    box-shadow: var(--shadow);
  }
  .faq-item.active .faq-question {
    color: var(--teal);
    border-bottom: 1px solid #eee;
  }
  .faq-item.active .faq-answer {
    padding: 18px 24px;
    max-height: 200px;
  }
  .faq-icon {
    font-size: 1.4rem;
    font-weight: 400;
    transition: transform 0.3s;
  }
  .faq-item.active .faq-icon {
    transform: rotate(45deg);
  }

  /* GALLERY */
  #gallery{background:var(--gray);}
  .gallery-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(190px,1fr));gap:16px;}
  .gallery-item{
    border-radius:12px;overflow:hidden;
    aspect-ratio:4/3;
    display:flex;align-items:center;justify-content:center;
    font-size:3rem;
    background:linear-gradient(135deg,var(--teal-light),#b2e5ec);
    transition:.3s;cursor:pointer;
  }
  .gallery-item:hover{transform:scale(1.03);box-shadow:var(--shadow);}
  .gallery-label{font-size:.7rem;font-weight:700;color:var(--teal);text-align:center;margin-top:6px;}

  /* CONTACT */
  #contact{background:var(--dark);}
  #contact .section-title{color:#fff;}
  #contact .section-label{color:#7DF5FF;}
  .contact-wrap{display:flex;gap:48px;flex-wrap:wrap;margin-top:40px;}
  .contact-info{flex:1;min-width:240px;}
  .contact-info .info-item{
    display:flex;gap:16px;align-items:flex-start;margin-bottom:24px;
  }
  .info-icon{
    width:44px;height:44px;border-radius:12px;background:rgba(255,255,255,.1);
    display:flex;align-items:center;justify-content:center;font-size:1.2rem;flex-shrink:0;
    color: #7DF5FF;
  }
  .info-icon svg{width:22px;height:22px;}
  .info-text h4{color:#fff;font-size:.92rem;font-weight:700;margin-bottom:3px;}
  .info-text p{color:rgba(255,255,255,.65);font-size:.88rem;line-height:1.6;}
  .contact-form{flex:1.4;min-width:280px;}
  .form-row{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-bottom:14px;}
  .contact-form input,.contact-form select,.contact-form textarea{
    width:100%;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.15);
    color:#fff;padding:13px 16px;border-radius:10px;font-size:.92rem;
    outline:none;transition:.2s;font-family:inherit;
  }
  .contact-form input::placeholder,.contact-form textarea::placeholder{color:rgba(255,255,255,.4);}
  .contact-form input:focus,.contact-form textarea:focus{border-color:var(--teal2);background:rgba(255,255,255,.12);}
  .contact-form textarea{resize:vertical;min-height:110px;margin-bottom:14px;}
  .contact-form select option{background:var(--dark);}
  .btn-submit{
    background:var(--teal);color:#fff;border:none;padding:14px 32px;
    border-radius:30px;font-size:1rem;font-weight:700;cursor:pointer;
    width:100%;transition:.2s;
  }
  .btn-submit:hover{background:var(--teal2);}
  .map-wrap{
    margin-top:50px;border-radius:16px;overflow:hidden;
    border:3px solid rgba(255,255,255,.1);
  }
  .map-placeholder{
    background:rgba(255,255,255,.05);height:260px;
    display:flex;flex-direction:column;align-items:center;justify-content:center;color:rgba(255,255,255,.5);gap:10px;
    font-size:1rem;
  }
  .map-placeholder span{font-size:2.5rem;}

  /* FOOTER */
  footer{
    background:#0b1520;padding:32px 5%;text-align:center;
    color:rgba(255,255,255,.5);font-size:.85rem;border-top:1px solid rgba(255,255,255,.07);
  }
  footer svg{color: var(--teal); vertical-align: middle;}
  footer a:hover{color: var(--teal); text-decoration: underline !important;}
  footer .footer-logo{
    color:var(--teal);
    font-weight:700;
    font-size:1.1rem;
    margin-bottom:12px;
    background: rgba(255,255,255,0.9);
    display: inline-block;
    padding: 6px 16px;
    border-radius: 30px;
  }
  footer p{margin-bottom:4px;}

  /* SOCIAL LINKS (Footer) */
  .social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
  }
  .social-links a {
    color: rgba(255,255,255,.5);
    font-size: 1.5rem;
    transition: .2s;
    display: flex;
    align-items: center;
  }
  .social-links a:hover {
    color: var(--teal);
    transform: translateY(-3px);
  }

  /* WHATSAPP FAB */
  .wa-fab{
    position:fixed;bottom:26px;right:26px;z-index:200;
    background:#25D366;color:#fff;border-radius:50%;
    width:58px;height:58px;display:flex;align-items:center;justify-content:center;
    font-size:1.8rem;text-decoration:none;box-shadow:0 4px 20px rgba(37,211,102,.5);
    animation:pulse 2.5s infinite;
  }
  @keyframes pulse{0%,100%{box-shadow:0 0 0 0 rgba(37,211,102,.45);}50%{box-shadow:0 0 0 14px rgba(37,211,102,0);}}

  /* DEMO BANNER */
  .demo-bar{
    background:linear-gradient(90deg,#FFD700,#FFA500);
    text-align:center;padding:10px 5%;font-size:.87rem;font-weight:700;color:#222;
    position:sticky;top:68px;z-index:99;
  }
  @media(max-width:640px){
    .demo-bar{top:60px;}
  }
  .demo-bar span{color:#c60000;}
