    :root{
      --accent:#ff5a00;
      --text:#101828;
      --muted:#667085;
      --blue:#18a0ff;
      --heroA:#d8f3ff;
      --heroB:#ffffff;
      --cardRadius:28px;
    }

    *{box-sizing:border-box}
    html,body{height:100%}
    body{
      margin:0;
      font-family:Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      color:var(--text);
      background:#fff;
    }

    /* Page container (matches screenshot margins) */
    .page{
      width:min(1200px, 96vw);
      margin:0 auto;
      padding:22px 0 40px;
    }

    /* Header */
    header{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
    }

    .brand{
      display:flex;
      align-items:baseline;
      gap:6px;
      font-weight:700;
      letter-spacing:0.2px;
      user-select:none;
    }
    .brand .denta{color:#14a3ff}
    .brand .care{color:#111; font-weight:500}
    .brand span{font-size:20px}

    nav{
      flex:1;
      display:flex;
      justify-content:center;
    }
    .navlist{
      display:flex;
      gap:34px;
      list-style:none;
      padding:0;
      margin:0;
      font-size:13px;
      letter-spacing:0.3px;
      text-transform:uppercase;
      color:#344054;
    }
    .navlist a{
      text-decoration:none;
      color:inherit;
      font-weight:500;
    }
    .navlist a.active{ color:var(--accent); }

    .cta{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:14px;
      padding:18px 28px;
      border-radius:999px;
      background:var(--accent);
      color:#fff;
      font-weight:600;
      border:0;
      cursor:pointer;
      box-shadow:0 10px 24px rgba(255,90,0,0.22);
      white-space:nowrap;
    }
    .cta svg{display:block}

    /* Hero card */
    .hero{
      margin-top:18px;
      position:relative;
      border-radius:var(--cardRadius);
      background:linear-gradient(90deg, rgba(216,243,255,1) 0%, rgba(255,255,255,1) 58%);
      min-height:722px;
      box-shadow:0 18px 40px rgba(16,24,40,0.14);
      overflow:hidden;
    }

    /* Light rounded top-left corner pill like screenshot */
    .hero::before{
      content:"";
      position:absolute;
      left:0;
      top:0;
      width:100%;
      height:100%;
      border-radius:var(--cardRadius);
      background:
        radial-gradient(900px 420px at 12% 20%, rgba(255,255,255,0.38) 0%, rgba(255,255,255,0) 70%);
      pointer-events:none;
    }

    /* Big title (two-tone like screenshot) */
    .hero-title{
      position:absolute;
      left:44px;
      top:84px;
      font-weight:800;
      letter-spacing:2px;
      text-transform:uppercase;
      line-height:0.92;
      margin:0;
      font-size:86px;
      z-index:2;
      color:#16a6ff;
    }
    .hero-title .faded{
      color:rgba(22,166,255,0.22);
      margin-right:18px;
    }

    /* Left content block */
    .left{
      position:absolute;
      left:54px;
      top:220px;
      width:420px;
      z-index:3;
    }

    .bubble{
      background:#fff;
      border-radius:16px;
      padding:16px 18px;
      width:340px;
      box-shadow:0 12px 24px rgba(16,24,40,0.08);
      font-size:13px;
      color:#344054;
      line-height:1.6;
    }

    .hours{
      margin-top:22px;
      font-size:13px;
      color:#101828;
    }
    .hours .label{ color:#344054; font-weight:500; margin-bottom:4px;}
    .hours .time{ font-weight:700; letter-spacing:0.2px;}

    .book-btn{
      margin-top:22px;
      display:inline-flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      width:270px;
      padding:18px 20px;
      border-radius:999px;
      background:var(--accent);
      color:#fff;
      font-weight:600;
      border:0;
      cursor:pointer;
      box-shadow:0 14px 28px rgba(255,90,0,0.22);
      text-transform:uppercase;
      font-size:12px;
      letter-spacing:0.4px;
    }

    .book-btn .icon{
      width:32px;height:32px;
      border-radius:999px;
      display:grid;
      place-items:center;
      background:rgba(255,255,255,0.14);
    }

    /* Right stats */
    .stats{
      position:absolute;
      right:66px;
      top:240px;
      width:240px;
      z-index:3;
      display:flex;
      flex-direction:column;
      gap:38px;
    }
    .stat .num{
      font-size:24px;
      font-weight:700;
      color:var(--accent);
      line-height:1.1;
    }
    .stat .txt{
      margin-top:6px;
      color:#344054;
      font-size:13px;
      line-height:1.35;
    }

    /* Center image (tooth + splash) */
    .hero-image{
      position:absolute;
      left:50%;
      top:208px;
      transform:translateX(-50%);
      width:520px;
      max-width:min(520px, 56vw);
      z-index:2;
      pointer-events:none;
      filter:drop-shadow(0 18px 24px rgba(16,24,40,0.12));
    }

    /* Bottom “floor shadow” like screenshot */
    .floor{
      position:absolute;
      left:0;
      right:0;
      bottom:-48px;
      height:130px;
      background:radial-gradient(70% 120px at 50% 0%, rgba(16,24,40,0.26) 0%, rgba(16,24,40,0) 62%);
      z-index:1;
      pointer-events:none;
    }

    /* Responsive adjustments */
    @media (max-width: 980px){
      .hero{min-height:620px}
      .hero-title{font-size:66px; left:28px}
      .left{left:28px}
      .stats{right:28px}
      .hero-image{top:260px; width:460px}
    }
    @media (max-width: 780px){
      header{flex-wrap:wrap}
      nav{order:1; width:100%}
      .navlist{flex-wrap:wrap; justify-content:center; row-gap:10px}
      .cta{order:2}
      .hero-title{font-size:52px}
      .left{position:relative; top:auto; left:auto; padding:230px 18px 0}
      .stats{position:relative; right:auto; top:auto; padding:22px 18px 40px; width:auto; flex-direction:row; flex-wrap:wrap}
      .hero-image{top:210px}
    }
  /* Section wrapper */
  .gallery-section{
    width: 100%;
    padding: 40px 0;
  }

  /* Swiper container */
  .swiper.mySwiper{
    width: 100%;
    max-width: 1200px;     /* keep aligned with your page container */
    margin: 0 auto;
    height: 320px;         /* max height requirement */
  }

  /* Slides */
  .swiper-slide{
    border-radius: 16px;
    overflow: hidden;
    background: #f2f4f7;
    height: 100%;
  }

  .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Pagination positioning */
  .swiper-pagination{
    position: relative;
    margin-top: 14px;
  }

  /* Responsive: reduce columns on small screens */
  @media (max-width: 992px){
    .swiper.mySwiper{ height: 300px; }
  }
  @media (max-width: 768px){
    .swiper.mySwiper{ height: 260px; }
  }
  .brand{
  display:flex;
  align-items:center;
}

.brand-logo{
  display:flex;
  align-items:center;
  text-decoration:none;
}

.brand-logo img {
    height: 133px;
    width: auto;
    display: block;
    position: absolute;
    object-fit: contain;
    z-index: 999;
    top: 0;
}
  .wa-float{
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 9999;
    text-decoration: none;
  }
  .wa-bubble{
    background-color: #25D366;
    padding: 14px;
    border-radius: 50%;
    box-shadow: 0px 0px 11px rgba(0,0,0,.5);
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .wa-float:focus-visible .wa-bubble{
    outline: 3px solid rgba(37,211,102,.35);
    outline-offset: 4px;
  }
  .wa-float:hover .wa-bubble{
    transform: translateY(-2px);
    transition: transform .15s ease;
  }
  .cta{
  text-decoration: none;
}
.book-btn{
  text-decoration: none;
}
.legal{
  max-width: 900px;
  margin: 30px auto 60px;
  padding: 0 18px;
  line-height: 1.8;
}

.legal h1{ margin-top: 10px; }
.legal h2{ margin-top: 26px; }
.legal ul{ padding-left: 20px; }


.site-footer{
  margin-top: 60px;
  background: #0b1220;
  color: rgba(255,255,255,0.86);
  /*border-radius: 22px;*/
  overflow: hidden;
}

.footer-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 34px 22px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 22px;
}

.footer-logo{
  height: 34px;
  width: auto;
  display: block;
  margin-bottom: 10px;
}

.footer-note{
  margin: 0;
  max-width: 420px;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
}

.footer-links h4,
.footer-cta h4{
  margin: 0 0 10px 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.footer-links a,
.footer-cta a{
  display: block;
  text-decoration: none;
  color: rgba(255,255,255,0.78);
  font-size: 13px;
  padding: 6px 0;
}

.footer-links a:hover,
.footer-cta a:hover{
  color: #ffffff;
}

.footer-whatsapp{
  color: rgba(255,255,255,0.9);
}

.footer-bottom{
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-copy,
.footer-dev{
  font-size: 12px;
  color: rgba(255,255,255,0.68);
}

.footer-dev a{
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  font-weight: 600;
}

.footer-dev a:hover{
  text-decoration: underline;
}

@media (max-width: 860px){
  .footer-inner{
    grid-template-columns: 1fr;
  }
}
/* About Whitening Section */
.about-whitening{
  width: 100%;
  padding: 44px 0 10px;
}

.about-card{
  max-width: 1200px;
  margin: 0 auto;
  padding: 22px;
  border-radius: var(--cardRadius);
  background: linear-gradient(90deg, rgba(216,243,255,0.55) 0%, rgba(255,255,255,1) 55%);
  box-shadow: 0 18px 40px rgba(16,24,40,0.10);
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 22px;
  overflow: hidden;
}

.about-media{
  border-radius: 20px;
  overflow: hidden;
  background: #f2f4f7;
  min-height: 320px;
}

.about-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-content{
  padding: 8px 6px;
}

.about-content h2{
  margin: 6px 0 10px;
  font-size: 24px;
  letter-spacing: 0.2px;
  color: #101828;
}

.about-content p{
  margin: 0 0 14px;
  color: #344054;
  font-size: 13px;
  line-height: 1.8;
  max-width: 560px;
}

.about-points{
  margin: 0;
  padding-left: 18px;
  color: #344054;
  font-size: 13px;
  line-height: 1.8;
}

.about-points li{
  margin: 6px 0;
}

.about-actions{
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.about-btn{
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 260px;
  padding: 16px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(255,90,0,0.18);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.4px;
}

.about-btn .icon{
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.14);
}

.about-note{
  font-size: 12px;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 980px){
  .about-card{
    grid-template-columns: 1fr;
  }
  .about-media{
    min-height: 260px;
  }
}
