/* ============================================================
   SKINPASE SKIN & HAIR CLINIC — Premium Stylesheet
   ============================================================ */

/* ── Custom Properties ─────────────────────────────────────── */
:root {
  --primary:    #00A9B5;
  --primary-dk: #007F8A;
  --secondary:  #0B2D5C;
  --accent:     #00C7D4;
  --white:      #ffffff;
  --off-white:  #F7FAFB;
  --light-gray: #EEF3F5;
  --mid-gray:   #9EADB8;
  --dark:       #0a1628;
  --text:       #1E2D3D;
  --text-light: #4A5F72;

  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);

  --shadow-sm:  0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.14);
  --shadow-xl:  0 32px 80px rgba(0,0,0,0.18);
  --shadow-teal:0 12px 40px rgba(0,169,181,0.22);

  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  --container:  1240px;
  --gutter:     clamp(20px, 4vw, 60px);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: rgba(0, 199, 212, 0.10);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }

/* ── Utilities ──────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section-padding { padding-block: 100px; }
.highlight { color: var(--primary); }
.desktop-br { display: inline; }

/* ── Section Header ─────────────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 40px;
}
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(0,169,181,0.10);
  border: 1px solid rgba(0,169,181,0.22);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-tag--light {
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.20);
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--secondary);
  line-height: 1.2;
  margin-bottom: 18px;
}
.section-subtitle {
  font-size: 1.0625rem;
  color: var(--text-light);
  line-height: 1.7;
}
.why-section .section-tag{
    background:rgba(255,255,255,.15);
    color:#fff;
    border-color:rgba(255,255,255,.2);
}
/* ── Reveal Animations ──────────────────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
  transition-delay: var(--delay, 0s);
}
.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 50px;
  padding: 14px 30px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.btn--primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(0,169,181,0.30);
}
.btn--primary:hover {
  background: var(--primary-dk);
  box-shadow: var(--shadow-teal);
  transform: translateY(-2px);
}

.btn--hero-primary {
  background: var(--primary);
  color: var(--white);
  font-size: 1rem;
  padding: 16px 36px;
  box-shadow: 0 6px 28px rgba(0,169,181,0.35);
}
.btn--hero-primary:hover {
  background: var(--accent);
  box-shadow: 0 10px 36px rgba(0,199,212,0.40);
  transform: translateY(-3px);
}
.btn--hero-primary svg { flex-shrink: 0; }

.btn--hero-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.55);
  font-size: 1rem;
  padding: 14px 34px;
  backdrop-filter: blur(6px);
}
.btn--hero-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-3px);
}

.btn--outline-primary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 14px 36px;
}
.btn--outline-primary:hover {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-teal);
  transform: translateY(-2px);
}

.btn--doctor-book {
  background: var(--white);
  color: var(--secondary);
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: 50px;
  box-shadow: var(--shadow-md);
}
.btn--doctor-book:hover {
  background: var(--primary);
  color: var(--white);
}

.btn--branch-call {
  background: var(--primary);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.875rem;
  gap: 7px;
}
.btn--branch-call:hover {
  background: var(--primary-dk);
  transform: translateY(-2px);
  box-shadow: var(--shadow-teal);
}

.btn--branch-dir {
  background: transparent;
  color: #d5d8dc;
  border: 1.5px solid #d5d8dc;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.875rem;
  gap: 7px;
}
.btn--branch-dir:hover {
  background: var(--secondary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--form-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(0,169,181,0.35);
  gap: 10px;
  letter-spacing: 0.02em;
}
.btn--form-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,169,181,0.45);
}
.btn--form-submit:active { transform: translateY(-1px); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
}
.site-header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 80px;
  
}

/* Header Container */
.header-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    max-width:100%;
    padding:0 40px;
    margin:0;
}

/* Logo */
.logo{
    display:flex;
    align-items:center;
    gap:12px;
    flex-shrink:0;
    margin-left:0;
}

.site-logo{
    height:75px; /* bigger logo */
    width:auto;
    display:block;
    margin-left:0;
    object-fit:contain;
}

/* Desktop Large */
@media (min-width:1200px){
    .header-inner{
        padding-left:15px;
        padding-right:40px;
    }

    .site-logo{
        height:80px;
        margin-bottom:-10px
    }
}

/* Tablet */
@media (max-width:1024px){
    .site-logo{
        height:80px;
    }

    .header-inner{
        padding:0 20px;
    }
}

/* Mobile */
@media (max-width:768px){
    .site-logo{
        height:60px;
    }

    .header-inner{
        padding:0 12px;
    }
}

@media (max-width:768px){

.why2-card{

    width:90%;
    max-width:90%;
    margin:0 auto;

}
@media (max-width:768px){

.doctor-card{

    width:90%;
    max-width:90%;
    margin:auto;

}
@media (max-width:768px){

.branch-card{

    width:90%;
    max-width:90%;
    margin:auto;

}

}

}
}
.logo:hover { opacity: 0.85; }
.logo-icon {
  color: var(--primary);
  transition: var(--transition-fast);
  display: flex;
}
.logo--footer .logo-icon { color: var(--accent); }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-brand {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--secondary);
  letter-spacing: -0.01em;
}
.site-header:not(.scrolled) .logo-brand { color: var(--white); }
.logo--footer .logo-brand { color: var(--white); }
.logo-tagline {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--primary);
}
.site-header:not(.scrolled) .logo-tagline { color: rgba(255,255,255,0.7); }
.logo--footer .logo-tagline { color: rgba(255,255,255,0.55); }

/* Nav */
.main-nav { margin-left: auto; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  color: var(--white);
  position: relative;
  transition: var(--transition-fast);
  white-space: nowrap;
}
.site-header.scrolled .nav-link { color: var(--text); }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-link:hover::after,
.nav-link--dropdown:hover::after { transform: scaleX(1); }
.nav-link:hover { color: var(--primary); }

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-arrow { transition: transform 0.3s ease; }
.nav-dropdown:hover .dropdown-arrow { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0,0,0,0.14);
  padding: 8px;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
  border: 1px solid rgba(0,0,0,0.06);
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition-fast);
}
.dropdown-item::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}
.dropdown-item:hover { background: rgba(0,169,181,0.08); color: var(--primary); }

/* Header CTA */
.header-cta {
  flex-shrink: 0;
  font-size: 0.9rem;
  padding: 11px 24px;
}

/* Mobile toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.burger-line {
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition-fast);
  display: block;
}
.site-header.scrolled .burger-line { background: var(--text); }
.mobile-toggle.is-open .burger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.is-open .burger-line:nth-child(2) { opacity: 0; }
.mobile-toggle.is-open .burger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  background: var(--white);
  padding: 16px var(--gutter) 24px;
  border-top: 1px solid var(--light-gray);
  box-shadow: 0 20px 40px rgba(0,0,0,0.10);
}
.mobile-menu.open { display: block; }
.mobile-nav-list { display: flex; flex-direction: column; gap: 2px; }
.mobile-nav-link {
  display: block;
  padding: 12px 16px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  width: 100%;
  text-align: left;
}
.mobile-nav-link:hover { background: var(--light-gray); color: var(--primary); }
.mobile-nav-link--sub { padding-left: 32px; font-size: 0.9rem; color: var(--text-light); }
.mobile-submenu { display: none; }
.mobile-submenu.open { display: block; }
.mobile-cta { width: 100%; text-align: center; margin-top: 12px; border-radius: var(--radius-sm); }


/*treatments dropdown*/

/*=========================================================
            PREMIUM TREATMENTS DROPDOWN
=========================================================*/

.treatments-menu{
    position:relative;
}

.dropdown-arrow{
    margin-left:6px;
    transition:.35s ease;
}

.treatments-menu:hover .dropdown-arrow{
    transform:rotate(180deg);
}

/* ==============================
      DROPDOWN PANEL
============================== */
/* ==============================
      DROPDOWN PANEL
============================== */

.treatment-dropdown{

    position:absolute;

    top:calc(100% + 18px);

    left:50%;

    transform:translateX(-50%);

    width:912px;

    max-width:95vw;

    display:flex;

    gap:22px;

    padding:26px;

    border-radius:26px;

    /* SOLID BACKGROUND */
    background:#ffffff;

    /* Remove transparency effect */
    backdrop-filter:none;
    -webkit-backdrop-filter:none;

    border:1px solid rgba(0,169,181,.12);

    box-shadow:
        0 25px 60px rgba(5,31,62,.15),
        0 0 0 1px rgba(0,169,181,.06);

    opacity:0;

    visibility:hidden;

    transition:.35s ease;

    /* Keep dropdown above everything */
    z-index:9999;

}


.treatments-menu:hover .treatment-dropdown{

    opacity:1;

    visibility:visible;

    transform:
        translateX(-50%)
        translateY(0);

}




/* ==============================
      CARD
============================== */

.treatment-card{

    flex:1;

    background:#ffffff;

    backdrop-filter:none;
    -webkit-backdrop-filter:none;

    border:1px solid rgba(0,169,181,.12);

    border-radius:22px;

    padding:16px;

    transition:.35s ease;

}


/* Hover */
.treatment-card:hover{

    transform:translateY(-6px);

    background:#ffffff;

    box-shadow:
        0 15px 35px rgba(0,169,181,.12);

}

/* ==============================
      ICON
============================== */

.treatment-icon{

    width:72px;

    height:72px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

    background:#F4FBFC;

    color:#00A9B5;

    margin-bottom:22px;

    transition:.4s;

}

.treatment-card:hover .treatment-icon{

    transform:rotate(-10deg) scale(1.08);

}

/* ==============================
      TITLE
============================== */

.treatment-card h3{

    font-family:var(--font-primary);

    font-size:20px;

    color:#00a9b5;
;

    margin-bottom:6px;

}

/* Small text */

.treatment-card p{

    font-size:.9rem;

    color:#4c555e;

    margin-bottom:18px;

}



/* ==============================
        LIST
============================== */
.treatment-card ul{

    list-style:none;

    padding:0;

    margin:0 0 20px;

}


.treatment-card li{

    margin-bottom:12px;

}

.treatment-card:not(:last-child){

    border-right:1px solid rgba(5,31,62,.08);

}
.treatment-card li a{

    font-size:15px;

    color:#000000;

    text-decoration:none;

    transition:.3s;

}

 .treatment-card li a:hover{

    color:#00A9B5;

    padding-left:6px;

}

.treatment-card li a::after{

    content:"→";

    opacity:0;

    transform:translateX(-8px);

    transition:.3s;

    color:#00A9B5;

}

/* .treatment-card li a:hover{

    color:#00A9B5;

    padding-left:10px;

} */

.treatment-card li a:hover::after{

    opacity:1;

    transform:none;

}

/* ==============================
     EXPLORE BUTTON
============================== */

.explore-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    width:150px;

    height:44px;

    border-radius:40px;

    border:2px solid #00A9B5;

    background:rgba(255,255,255,.4);

    color:#00A9B5;

    text-decoration:none;

    font-size:.9rem;

    font-weight:600;

    transition:.35s;

}

.explore-btn:hover{

    background:#00A9B5;

    color:#fff;

    transform:translateY(-2px);

}
/* ============================================================
   HERO
   ============================================================ */
.hero-section{
    position:relative;
    width:100%;
    height:100svh;
    min-height:100svh;
    overflow:hidden;
}
.hero-media{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
}

.hero-video{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    /* Deep navy base for premium depth */
    linear-gradient(
      160deg,
      rgba(11,45,92,0.88) 0%,
      rgba(11,45,92,0.60) 45%,
      rgba(11,45,92,0.80) 100%
    );
}
/* Teal atmospheric glow — layered on top via pseudo-element */
.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 40%, rgba(0,169,181,0.22) 0%, transparent 70%),
    radial-gradient(ellipse 40% 35% at 20% 70%, rgba(0,199,212,0.10) 0%, transparent 60%),
    linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.42) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  /* Shift content slightly above true center — feels more premium */
  /* margin-top: -8vh; */
  padding-top: 82px;
  padding-bottom: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(0,199,212,0.3);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(0,199,212,0.3); }
  50% { box-shadow: 0 0 0 7px rgba(0,199,212,0.12); }
}

.hero-heading {
  font-family: var(--font-serif);
  /* Luxury hospital scale: 90px–110px on desktop */
  font-size: clamp(2.6rem, 7.5vw, 6.875rem);
  font-weight: 700;
  color: var(--white);
  line-height: 0.97;
  margin-bottom: 28px;
  max-width: 960px;
  letter-spacing: -0.025em;
  /* Subtle text shadow for cinematic depth */
  text-shadow: 0 4px 32px rgba(0,0,0,0.35), 0 1px 4px rgba(0,0,0,0.20);
}
.hero-heading em {
  font-style: italic;
  color: var(--accent);
  /* Glow on the italic line */
  text-shadow: 0 0 60px rgba(0,199,212,0.40), 0 4px 24px rgba(0,0,0,0.20);
}

.hero-subheading {
  font-size: clamp(1rem, 1.4vw, 1.1875rem);
  color: rgba(255,255,255,0.80);
  line-height: 1.80;
  margin-bottom: 48px;
  max-width: 620px;
  letter-spacing: 0.005em;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.stats-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(0,169,181,0.15);
}
.stats-bar-inner {
  display: flex;
  align-items: stretch;
  justify-content: space-around;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 24px 16px;
  flex: 1;
}
.stat-number {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
}
.stat-suffix {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-light);
}
.stat-divider {
  width: 1px;
  background: var(--light-gray);
  align-self: stretch;
  margin-block: 16px;
}
/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--secondary);
  padding-block: 20px;
  overflow: hidden;
}
.trust-strip-inner { overflow: hidden; }
.trust-track {
  display: flex;
  align-items: center;
  gap: 0;
  animation: trust-scroll 28s linear infinite;
  width: max-content;
}
@keyframes trust-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.trust-strip:hover .trust-track { animation-play-state: paused; }
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.88);
  padding: 0 32px;
  white-space: nowrap;
}
.trust-icon {
  color: var(--accent);
  display: flex;
  flex-shrink: 0;
}
.trust-sep {
  color: rgba(255,255,255,0.2);
  font-size: 1.5rem;
  line-height: 1;
  padding: 0 4px;
}

/* ============================================================
   WHY SKINPASE
   ============================================================ */

  /* ============================================================
   WHY SKINPASE — Premium Aster-style Carousel
   ============================================================ */
.spw-section {
  position: relative;
  overflow: hidden;
  padding: 18px 0 17px;
background: linear-gradient(
    135deg,
    #f8fcfd 0%,
    #eef7f9 50%,
    #f4fbfc 100%
  );
}

/* Decorative glows */
.spw-deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.spw-deco--tr {
  top: -160px; right: -160px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(0,169,181,0.08), transparent 70%);
}
.spw-deco--bl {
  bottom: -120px; left: -120px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(11,45,92,0.05), transparent 70%);
}

.spw-inner {
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 60px);
  position: relative;
  z-index: 1;
}

/* ── Header ─────────────────────────────────────────────── */
.spw-hd {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 15px;
}
.spw-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #00A9B5;
  background: rgba(0,169,181,0.08);
  border: 1px solid rgba(0,169,181,0.20);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.spw-title {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  font-weight: 700;
  color: #0B2D5C;
  line-height: 1.18;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}
.spw-title span {
  color: #00A9B5;
  font-style: normal;
}
.spw-desc {
  font-size: 1.0625rem;
  color: #4A5F72;
  line-height: 1.75;
  margin: 0;
}

/* ── Carousel ───────────────────────────────────────────── */
.spw-carousel { position: relative; }

.spw-viewport {
  overflow: hidden;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}
.spw-viewport:active { cursor: grabbing; }

.spw-track {
  display: flex;
  gap: 24px;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

/* ── Card ───────────────────────────────────────────────── */
.spw-card {
  flex: 0 0 calc((100% - 48px) / 3);
    padding: 28px;
    border-radius: 22px;
    height: auto;
  background: #ffffff;
  border-radius: 22px;
  border: 1px solid rgba(0,169,181,0.12);
  padding: 12px 20px 10px;;
  box-shadow: 0 4px 28px rgba(11,45,92,0.07), 0 1px 6px rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
  cursor: default;
  outline: none;
  transition:
    transform 0.6s cubic-bezier(0.22,1,0.36,1),
    box-shadow 0.6s cubic-bezier(0.22,1,0.36,1),
    border-color 0.6s ease;
}

/* Gradient fill layer — fades in on hover */
.spw-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: linear-gradient(135deg, #00A9B5 0%, #0B2D5C 100%);
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 0;
}

.spw-card:hover,
.spw-card:focus-visible {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0,169,181,0.25), 0 8px 28px rgba(11,45,92,0.12);
  border-color: transparent;
}
.spw-card:hover::before,
.spw-card:focus-visible::before {
  opacity: 1;
}

/* All content above gradient */
.spw-card-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Icon */
.spw-icon-wrap {
  width:31px;
    height:32px;
  border-radius: 16px;
  background: rgba(0,169,181,0.08);
  border: 1px solid rgba(0,169,181,0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  flex-shrink: 0;
  transition:
    background 0.5s ease,
    border-color 0.5s ease,
    transform 0.5s cubic-bezier(0.34,1.56,0.64,1);
}
.spw-card:hover .spw-icon-wrap,
.spw-card:focus-visible .spw-icon-wrap {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.26);
  transform: scale(1.06);
}
.spw-icon-wrap svg {
   width:31px;
    height:32px;
  stroke: #00A9B5;
  transition: stroke 0.5s ease;
}
.spw-card:hover .spw-icon-wrap svg,
.spw-card:focus-visible .spw-icon-wrap svg {
  stroke: #ffffff;
}

/* Number */
.spw-num {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #00A9B5;
  margin-bottom: 7px;
  transition: color 0.5s ease;
}
.spw-card:hover .spw-num,
.spw-card:focus-visible .spw-num {
  color: rgba(255,255,255,0.60);
}

/* Title */
.spw-card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #0B2D5C;
  line-height: 1.28;
  margin: 0 0 14px;
  transition: color 0.5s ease;
}
.spw-card:hover .spw-card-title,
.spw-card:focus-visible .spw-card-title {
  color: #ffffff;
}

/* Divider */
.spw-divider {
  width: 32px; height: 2px;
  background: rgba(0,169,181,0.35);
  border-radius: 2px;
  margin-bottom: 14px;
  transition: width 0.5s ease, background 0.5s ease;
}
.spw-card:hover .spw-divider,
.spw-card:focus-visible .spw-divider {
  width: 52px;
  background: rgba(255,255,255,0.45);
}

/* Description */
.spw-card-text {
  font-size: 0.88rem;
  color: #4A5F72;
  line-height: 1.72;
  margin: 0;
  flex: 1;
  transition: color 0.5s ease;
}
.spw-card:hover .spw-card-text,
.spw-card:focus-visible .spw-card-text {
  color: rgba(255,255,255,0.78);
}

/* ── Navigation ─────────────────────────────────────────── */
.spw-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 32px;
}

.spw-counter {
  font-size: 0.82rem;
  font-weight: 600;
  color: #9EADB8;
  margin-right: 8px;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 5px;
}
.spw-counter span { color: #0B2D5C; }
.spw-counter em {
  font-style: normal;
  color: #c8d6dc;
}

.spw-btn {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: #ffffff;
  border: 1.5px solid rgba(0,169,181,0.28);
  color: #0B2D5C;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(11,45,92,0.08);
  transition:
    background 0.32s ease,
    border-color 0.32s ease,
    color 0.32s ease,
    transform 0.35s cubic-bezier(0.34,1.56,0.64,1),
    box-shadow 0.32s ease;
}
.spw-btn svg {
  width: 18px; height: 18px;
  stroke: currentColor;
  transition: transform 0.3s ease;
}
.spw-btn:hover {
  background: #00A9B5;
  border-color: #00A9B5;
  color: #ffffff;
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(0,169,181,0.30);
}
.spw-btn:disabled {
  opacity: 0.25;
  pointer-events: none;
}
#spwPrev:hover svg { transform: translateX(-2px); }
#spwNext:hover svg { transform: translateX(2px); }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 960px) {
  .spw-card { flex: 0 0 calc((100% - 24px) / 2); }
}
@media (max-width: 580px) {
  .spw-section { padding: 72px 0 80px; }
  .spw-hd { margin-bottom: 40px; }
  .spw-card { flex: 0 0 88%; padding: 30px 26px 28px; }
  .spw-viewport { overflow: visible; }
}
/* ============================================================
   TREATMENTS
   ============================================================ */
/* ============================================================
   TREATMENTS — 3-col wide card redesign
   ============================================================ */
.sp2-section {
  background: linear-gradient(180deg, #fff 0%, #f4fafb 100%);
  padding: 110px 0 124px;
  position: relative;
  overflow: hidden;
}
.sp2-section::before {
  content: '';
  position: absolute;
  top: -160px; right: -160px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,169,181,.07) 0%, transparent 70%);
  pointer-events: none;
}


.sp2-inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 60px);
}

.sp2-hd{
  position:relative;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}

.sp2-view-all{
  position:absolute;
  right:0;
  top:50%;
  transform:translateY(-50%);
}

.sp2-tag {
     font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(0, 169, 181, 0.09);
    border: 1px solid rgba(0, 169, 181, 0.20);
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 18px;
    display: inline-block;
}


.sp2-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.12;
  margin-bottom: 16px;
}
.sp2-title em { font-style: normal; color: var(--primary); }

.sp2-subtitle {
  font-size: 1.0625rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom:26px;
}

.sp2-view-all {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  border-bottom: 1.5px solid rgba(0,169,181,.35);
  padding-bottom: 4px;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
  transition: gap .3s cubic-bezier(0.22,1,0.36,1), color .3s;
}
.sp2-view-all svg { transition: transform .35s cubic-bezier(0.22,1,0.36,1); }
.sp2-view-all:hover { color: var(--primary-dk); gap: 14px; }
.sp2-view-all:hover svg { transform: translateX(4px); }

/* Carousel */
.sp2-viewport{
    overflow:hidden;
    cursor:grab;
    user-select:none;
    -webkit-user-select:none;
}
.sp2-viewport:active { cursor: grabbing; }

.sp2-track{
    display:flex;
    gap:24px;
    align-items:stretch;
}


.sp2-card.sr-visible{

    opacity:1;

    transform:translateY(0);

    transition:
        opacity .8s ease,
        transform .8s cubic-bezier(.22,1,.36,1);

}
/* Card — 3-col, tall, wide */
.sp2-card {
 opacity:0;

  transform:translateY(40px);
  min-width: 0;
  height: 490px;
  border-radius: 26px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition:
    transform .9s cubic-bezier(0.22,1,0.36,1),
    box-shadow .9s cubic-bezier(0.22,1,0.36,1);
}
.sp2-card:hover{
  transform:none;

  box-shadow:
    0 16px 35px rgba(0,0,0,.15);
}

.sp2-card:hover .sp2-card-img{
  transform:scale(1.04);
}

.sp2-card:hover .sp2-card-overlay{
  background:linear-gradient(
    135deg,
    rgba(0,169,181,.88) 0%,
    rgba(11,45,92,.94) 100%
  );

}
.sp2-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.sp2-card-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .9s cubic-bezier(0.22,1,0.36,1);
  will-change: transform;
}




/* Teal sweep line */
.sp2-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  border-radius: 0 0 26px 26px;
  background: linear-gradient(90deg, #00A9B5, #00C7D4, #00A9B5);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .7s cubic-bezier(0.22,1,0.36,1) .12s;
  z-index: 5;
}
.sp2-card:hover::after { transform: scaleX(1); }

.sp2-cat {
  position: absolute;
  top: 22px; left: 22px;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(255,255,255,.93);
  backdrop-filter: blur(8px);
  padding: 5px 14px;
  border-radius: 50px;
  z-index: 3;
  transition: opacity .45s ease;
}
.sp2-card:hover .sp2-cat { opacity: 0; }

/* Body — bottom left, generous padding */
.sp2-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0 24px 24px;
  z-index: 4;
 transform:none;
  transition: transform .9s cubic-bezier(0.22,1,0.36,1);
}

/* Treatment name — 2rem+ premium serif */
.sp2-card-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  text-shadow: 0 2px 16px rgba(0,0,0,.35);
}

.sp2-card-divider {
  width: 36px; height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
  margin: 13px 0 14px;
  transition: width .55s cubic-bezier(0.22,1,0.36,1);
}
.sp2-card:hover .sp2-card-divider { width: 60px; }

.sp2-card-desc {
  font-size: .96rem;
  color: rgba(255,255,255,.84);
  line-height: 1.68;
  margin-bottom: 20px;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity .6s ease .12s, max-height .6s cubic-bezier(0.22,1,0.36,1) .07s;
}
.sp2-card:hover .sp2-card-desc { opacity: 1; max-height: 100px; }

.sp2-card-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: .88rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  letter-spacing: .04em;
  text-decoration: none;
  transition: gap .3s, color .3s;
}
.sp2-card:hover .sp2-card-link { color: #fff; }

.sp2-link-circle {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.5);
  display: flex; align-items: center; justify-content: center;
  transition: background .4s, border-color .4s, transform .4s;
}
.sp2-card-link:hover .sp2-link-circle {
  background: #fff;
  border-color: #fff;
  transform: translateX(4px);
}
.sp2-card-link:hover .sp2-link-circle svg { color: var(--primary); }

/* Navigation */
.sp2-nav-row {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 38px;
  width: 100%;
}

.sp2-arrows {
  display: flex;
  gap: 14px;
  margin-left: auto;
  display: none;

}
.sp2-arrows { display: flex; gap: 12px; }

.sp2-arr {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid rgba(0,169,181,.48);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .4s, border-color .4s, color .4s, transform .4s, box-shadow .4s;
  box-shadow: 0 4px 18px rgba(0,169,181,.10);
}
.sp2-arr:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: scale(1.09);
  box-shadow: 0 8px 28px rgba(0,169,181,.32);
}
.sp2-arr:disabled { opacity: .28; pointer-events: none; }
.sp2-arr svg { transition: transform .3s; }
.sp2-arr#spPrev:hover svg { transform: translateX(-3px); }
.sp2-arr#spNext:hover svg { transform: translateX(3px); }

/* .sp2-prog {
  flex: 1;
  height: 2px;
  background: rgba(0,169,181,.14);
  border-radius: 2px;
  overflow: hidden;
  margin-inline: 24px;
}
.sp2-prog-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  transition: width .8s cubic-bezier(0.22,1,0.36,1);
} */

.sp2-dots { display: flex; align-items: center; gap: 9px; }
.sp2-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(0,169,181,.25);
  cursor: pointer;
  border: none; padding: 0;
  transition: all .4s cubic-bezier(0.22,1,0.36,1);
}
.sp2-dot.active { width: 28px; border-radius: 4px; background: var(--primary); }

/* Responsive */
@media (max-width: 860px) {
  .sp2-card { flex: 0 0 calc((100% - 24px) / 2); }
}
@media (max-width: 540px) {
  .sp2-card { flex: 0 0 90%; height: 480px; }
  .sp2-card-title { font-size: 1.7rem; }
  .sp2-hd { flex-direction: column; align-items: flex-start; }
  .sp2-section { padding: 72px 0 80px; }
}
/* ============================================================
   SPECIALISTS
   ============================================================ */
.specialists-section{
  position:relative;
  overflow:hidden;
  padding:120px 0;

  
}

.specialists-section::before{
  content:'';
  position:absolute;
  top:-180px;
  right:-180px;
  width:500px;
  height:500px;
  border-radius:50%;

  background:radial-gradient(
    circle,
    rgba(0,169,181,.15),
    transparent 70%
  );

  pointer-events:none;
}
.specialists-section .section-title,
.specialists-section h2{
  color:#0b2d5c;
}

.specialists-section .section-subtitle,
.specialists-section p{
  color:#00a9b5;
}
.specialists-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.doctor-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
}
.doctor-card:hover,
.doctor-card:focus {
  box-shadow: var(--shadow-xl);
  transform: translateY(-8px);
  outline: none;
}
.doctor-img-wrap {
  position: relative;
  aspect-ratio: 5/5;
  overflow: hidden;
}
.doctor-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.doctor-card:hover .doctor-img,
.doctor-card:focus .doctor-img { transform: scale(1.04); }

.doctor-hover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,169,181,0.90) 100%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 28px;
}
.doctor-card:hover .doctor-hover-overlay,
.doctor-card:focus .doctor-hover-overlay { opacity: 1; }

.doctor-body {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.doctor-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--secondary);
}
.doctor-qual {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.5;
}
.doctor-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--light-gray);
}
.doctor-exp {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary);
}
.doctor-branch {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
  background: var(--light-gray);
  padding: 4px 12px;
  border-radius: 50px;
}

/* ============================================================
   BRANCHES
   ============================================================ */
.branches-section{
  position:relative;
  overflow:hidden;
  padding:120px 0;

  background:
  radial-gradient(circle at top right, rgba(0, 169, 181, .10), 
  transparent 35%), radial-gradient(circle at bottom left, rgba(11, 45, 92, .06), 
  transparent 40%), linear-gradient(135deg, rgba(0, 169, 181, 0.35) 0%,
   #eef7f9 50%, #f4fbfc 100%);
}

/* Top Glow */
.branches-section::before{
  content:'';
  position:absolute;
  top:-220px;
  right:-220px;
  width:520px;
  height:520px;
  border-radius:50%;

  background:
  radial-gradient(
    circle,
    rgba(0,169,181,.12),
    transparent 70%
  );

  pointer-events:none;
}

/* Bottom Glow */
.branches-section::after{
  content:'';
  position:absolute;
  bottom:-250px;
  left:-250px;
  width:600px;
  height:600px;
  border-radius:50%;

  background:
  radial-gradient(
    circle,
    rgba(11,45,92,.07),
    transparent 70%
  );

  pointer-events:none;
}


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

.branch-card{
  position:relative;
  min-height:480px;
  border-radius:22px;
  overflow:hidden;
  cursor:pointer;
  box-shadow:0 12px 35px rgba(0,0,0,.15);
  transition:all .8s cubic-bezier(.22,1,.36,1);
}

/* Background image fills entire card */
.branch-img-wrap{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
}

.branch-img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .9s cubic-bezier(.22,1,.36,1);
}

/* Dark overlay */
.branch-overlay{
  position:absolute;
  inset:0;
  background:
  linear-gradient(
    180deg,
    rgba(0,0,0,.15) 0%,
    rgba(0,0,0,.45) 45%,
    rgba(0,0,0,.90) 100%
  );
  z-index:1;
}

/* Teal hover overlay */
.branch-card::after{
  content:'';
  position:absolute;
  inset:0;
  background:
  linear-gradient(
    135deg,
    rgba(0,169,181,.75),
    rgba(11,45,92,.65)
  );
  opacity:0;
  transition:.8s ease;
  z-index:2;
}

.branch-card:hover::after{
  opacity:1;
}

.branch-card:hover{
  transform:translateY(-12px);
  box-shadow:
  0 30px 80px rgba(0,0,0,.25),
  0 0 35px rgba(0,169,181,.25);
}

.branch-card:hover .branch-img{
  transform:scale(1.12);
}

/* Content over image */
.branch-body{
  position:absolute;
  bottom:28px;
  left:28px;
  right:28px;
  z-index:3;

  padding:0;
  display:flex;
  flex-direction:column;
  gap:14px;
}

.branch-location-badge{
  display:inline-flex;
  width:max-content;

  background:rgba(0,169,181,.95);
  color:#fff;

  padding:8px 14px;
  border-radius:6px;

  font-size:.78rem;
  font-weight:700;
  letter-spacing:.04em;
}

.branch-name{
  color:#fff;
  font-size:2rem;
 font-family:var(--font-primary);
  margin:0;
}

.branch-address{
  color:rgba(255,255,255,.92);
  line-height:1.7;
  font-size:.95rem;
}

.branch-address svg{
  color:#00A9B5;
}

.branch-actions{
  display:flex;
  gap:12px;
  margin-top:8px;
}

@media(max-width:1024px){

  .branches-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .branch-card{
    height:500px;
  }
}

@media(max-width:768px){

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

  .branch-card{
    height:460px;
  }

  .branch-name{
    font-size:1.75rem;
  }
}
/* ============================================================
   APPOINTMENT
   ============================================================ */
.appointment-section {
  position: relative;
  overflow: hidden;
  background: var(--secondary);
}
.appointment-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 50%, rgba(0,169,181,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 90% 20%, rgba(0,199,212,0.10) 0%, transparent 60%);
  pointer-events: none;
}
.appointment-bg::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(0,169,181,0.12);
}
.appointment-bg::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(0,199,212,0.10);
}

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

.appointment-info {
  padding-right: 20px;
}
.appointment-title {
font-family: var(--font-primary);
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-block: 16px 20px;
}
.appointment-title em {
  font-style: normal;
  color: var(--accent);
}
.appointment-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin-bottom: 40px;
}

.contact-items { display: flex; flex-direction: column; gap: 13px; margin-bottom: 25px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-item-icon {
  width: 46px; height: 46px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  display: grid; place-items: center;
  color: var(--accent);
  flex-shrink: 0;
}
.contact-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}
.contact-value {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  transition: var(--transition-fast);
}
a.contact-value:hover { color: var(--accent); }
.contact-value--sub {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  margin-top: 2px;
}

.branch-info-strip {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-md);
  padding: 20px 24px;
}
.branch-info-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.branch-info-list { display: flex; flex-direction: column; gap: 10px; }
.branch-info-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.80);
}
.branch-info-item svg { color: var(--primary); flex-shrink: 0; }

/* Form */
.appointment-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  box-shadow: var(--shadow-xl);
}

.appointment-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
}
.req { color: var(--primary); margin-left: 2px; }

.form-control {
  padding: 13px 16px;
  border: 1.5px solid #D8E2E8;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition-fast);
  outline: none;
  width: 100%;
}
.form-control::placeholder { color: var(--mid-gray); }
.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,169,181,0.12);
}
.form-control:invalid:not(:placeholder-shown) {
  border-color: #E53E3E;
}

.select-wrap { position: relative; }
.form-select { appearance: none; cursor: pointer; padding-right: 42px; }
.select-arrow {
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  pointer-events: none;
  transition: var(--transition-fast);
}
.select-wrap:focus-within .select-arrow { color: var(--primary); transform: translateY(-50%) rotate(180deg); }

.form-textarea { resize: vertical; min-height: 110px; }

.form-disclaimer {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  color: var(--mid-gray);
  text-align: center;
  justify-content: center;
}
.form-disclaimer svg { color: var(--primary); flex-shrink: 0; }

/* Form success */
.form-success {
  text-align: center;
  padding: 40px 20px;
}
.form-success-icon {
  color: var(--primary);
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}
.form-success h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--secondary);
  margin-bottom: 10px;
}
.form-success p { color: var(--text-light); font-size: 0.95rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--dark); color: var(--white); }

.footer-top { padding-block: 72px 60px; }
.footer-top-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.5fr;
  gap: 48px;
}
.footer-brand { max-width: 340px; }
.footer-about {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-block: 20px 24px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 50%;
  display: grid; place-items: center;
  color: rgba(255,255,255,0.65);
  transition: var(--transition-fast);
}
.social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.footer-link::before {
  content: '›';
  color: var(--primary);
  font-size: 1.1rem;
  line-height: 1;
}
.footer-link:hover { color: var(--white); padding-left: 4px; }

.footer-contact-items { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 9px;
}
.footer-contact-item svg { color: var(--primary); flex-shrink: 0; }
.footer-contact-value {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: var(--transition-fast);
}
a.footer-contact-value:hover { color: var(--accent); }

.footer-branches { display: flex; flex-direction: column; gap: 10px; }
.footer-branch { display: flex; flex-direction: column; gap: 2px; margin-left: 25px; }
.footer-branch strong {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.80);
}
.footer-branch span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-block: 22px;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 0.85rem; color: rgba(255,255,255,0.40); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-link {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.40);
  transition: var(--transition-fast);
}
.footer-bottom-link:hover { color: var(--accent); }

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
/* ============================================================
   FLOATING BUTTON — Single contact (Home page)
   ============================================================ */
.floating-actions {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9999;
}

.float-btn {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: none;
  cursor: pointer;
  text-decoration: none;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.4s ease;
  will-change: transform;
}

.float-btn--message {
  background: linear-gradient(145deg, #00C7D4 0%, #00A9B5 50%, #007F8A 100%);
  box-shadow:
    0 8px 32px rgba(0,169,181,0.50),
    0 2px 10px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.22);
  animation: messagePulse 2.8s ease-in-out infinite;
}

.float-btn--message:hover {
  transform: translateY(-5px) scale(1.10);
  animation: none;
  box-shadow:
    0 18px 50px rgba(0,169,181,0.65),
    0 6px 20px rgba(0,0,0,0.20),
    inset 0 1px 0 rgba(255,255,255,0.28);
}

/* Glass ring on hover */
.float-btn--message::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,199,212,0.35);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
  transform: scale(0.88);
  pointer-events: none;
}

.float-btn--message:hover::before {
  opacity: 1;
  transform: scale(1.06);
}

/* Teal glow halo */
.float-btn--message::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,199,212,0.22) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.float-btn--message:hover::after {
  opacity: 1;
}

.float-btn svg {
  width: 26px;
  height: 26px;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.22));
  flex-shrink: 0;
}

/* Tooltip */
.float-tooltip {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: rgba(8,15,28,0.93);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 7px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
  border: 1px solid rgba(255,255,255,0.10);
}

.float-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: rgba(8,15,28,0.93);
}

.float-btn:hover .float-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

@keyframes messagePulse {
  0%   { box-shadow: 0 8px 32px rgba(0,169,181,0.50), 0 2px 10px rgba(0,0,0,0.18), 0 0 0 0 rgba(0,199,212,0.48), inset 0 1px 0 rgba(255,255,255,0.22); }
  50%  { box-shadow: 0 8px 32px rgba(0,169,181,0.50), 0 2px 10px rgba(0,0,0,0.18), 0 0 0 14px rgba(0,199,212,0), inset 0 1px 0 rgba(255,255,255,0.22); }
  100% { box-shadow: 0 8px 32px rgba(0,169,181,0.50), 0 2px 10px rgba(0,0,0,0.18), 0 0 0 0 rgba(0,199,212,0), inset 0 1px 0 rgba(255,255,255,0.22); }
}

@media (max-width: 640px) {
  .floating-actions { bottom: 20px; right: 20px; }
  .float-btn { width: 56px; height: 56px; }
  .float-tooltip { display: none; }
}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .treatments-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { max-width: 100%; grid-column: 1 / -1; }
  .appointment-inner { gap: 48px; }
  .stats-bar-inner { gap: 0; }
  /* Hero: pull back to 100vh on tablet — still immersive */
  .hero-section { height:100svh;min-height:100svh; }
  .hero-heading { font-size: clamp(2.6rem, 6.5vw, 5rem); }
}

@media (max-width: 900px) {
  .main-nav, .header-cta { display: none; }
  .mobile-toggle { display: flex; }
  .specialists-grid { grid-template-columns: repeat(3, 1fr); }
  .branches-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 640px) {
  :root { --gutter: 20px; }
  .section-padding { padding-block: 72px; }
  .desktop-br { display: none; }

  .why-grid { grid-template-columns: 1fr; }
  .treatments-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .specialists-grid { grid-template-columns: 1fr; }
  .branches-grid { grid-template-columns: 1fr; }

  .appointment-inner { grid-template-columns: 1fr; gap: 40px; }
  .appointment-info { padding-right: 0; }
  .form-row { grid-template-columns: 1fr; }
  .appointment-form-wrap { padding: 28px 20px; }

  .stats-bar-inner { flex-wrap: wrap; justify-content: center; }
  .stat-item { flex: 0 0 45%; padding: 18px 8px; }
  .stat-divider { display: none; }

  .footer-top-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: 1; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  /* Hero mobile — full screen, content centred, no awkward offset */
  .hero-section { height:100svh;
min-height:100svh; }
  .hero-content {
    margin-top: 0;
    padding-bottom: 160px;
  }
  .hero-heading {
    font-size: clamp(2.1rem, 9vw, 3rem);
    line-height: 1.05;
    letter-spacing: -0.015em;
  }
  .hero-subheading { font-size: 0.95rem; margin-bottom: 36px; }
  .hero-badge { font-size: 0.7rem; padding: 7px 14px; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-actions .btn { width: 100%; max-width: 300px; justify-content: center; }

  .section-header { margin-bottom: 40px; }
  .why-card { padding: 28px 24px; }
  .branch-actions { flex-direction: column; }
  .branch-actions .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   SKINPASE — Premium Style Improvements
   Apply these styles AFTER the existing style.css
   ============================================================ */

/* ── CSS Custom Properties (extends existing) ─────────────── */
:root {
  --float-size: 64px;
  --ease-premium: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-cinematic: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================================================
   1. FLOATING BUTTONS — Glassmorphism Premium
   ============================================================ */
.floating-actions {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
}

.float-btn {
  width: var(--float-size);
  height: var(--float-size);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: none;
  cursor: pointer;
  transition:
    transform 0.4s var(--ease-premium),
    box-shadow 0.4s var(--ease-smooth);
  will-change: transform;
  text-decoration: none;
  flex-shrink: 0;
}

/* WhatsApp Button */
.float-btn--whatsapp {
  background: linear-gradient(145deg, #25D366 0%, #1DA851 50%, #128C7E 100%);
  box-shadow:
    0 8px 32px rgba(37, 211, 102, 0.45),
    0 2px 8px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  color: #fff;
}

.float-btn--whatsapp:hover {
  transform: translateY(-5px) scale(1.08);
  box-shadow:
    0 18px 50px rgba(37, 211, 102, 0.55),
    0 6px 20px rgba(0, 0, 0, 0.20),
    inset 0 1px 0 rgba(255, 255, 255, 0.30);
}

/* Call Button */
.float-btn--call {
  background: linear-gradient(145deg, #00C7D4 0%, #00A9B5 45%, #0B2D5C 100%);
  box-shadow:
    0 8px 32px rgba(0, 169, 181, 0.45),
    0 2px 8px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.20);
  color: #fff;
}

.float-btn--call:hover {
  transform: translateY(-5px) scale(1.08);
  box-shadow:
    0 18px 50px rgba(0, 169, 181, 0.55),
    0 6px 20px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* Glassmorphism ring behind buttons */
.float-btn::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.4s var(--ease-premium);
  transform: scale(0.85);
}

.float-btn:hover::before {
  opacity: 1;
  transform: scale(1.05);
}

/* Glow halo effect */
.float-btn::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.float-btn--whatsapp::after {
  background: radial-gradient(circle, rgba(37, 211, 102, 0.25) 0%, transparent 70%);
}

.float-btn--call::after {
  background: radial-gradient(circle, rgba(0, 199, 212, 0.25) 0%, transparent 70%);
}

.float-btn:hover::after {
  opacity: 1;
}

/* SVG icons inside */
.float-btn svg {
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
  flex-shrink: 0;
}

/* Tooltip */
.float-tooltip {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 7px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    transform 0.3s var(--ease-premium);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.float-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: rgba(10, 22, 40, 0.92);
}

.float-btn:hover .float-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* WhatsApp pulse animation */
@keyframes whatsappPulse {
  0% {
    box-shadow:
      0 8px 32px rgba(37, 211, 102, 0.45),
      0 2px 8px rgba(0, 0, 0, 0.18),
      0 0 0 0 rgba(37, 211, 102, 0.5),
      inset 0 1px 0 rgba(255, 255, 255, 0.25);
  }
  50% {
    box-shadow:
      0 8px 32px rgba(37, 211, 102, 0.45),
      0 2px 8px rgba(0, 0, 0, 0.18),
      0 0 0 14px rgba(37, 211, 102, 0),
      inset 0 1px 0 rgba(255, 255, 255, 0.25);
  }
  100% {
    box-shadow:
      0 8px 32px rgba(37, 211, 102, 0.45),
      0 2px 8px rgba(0, 0, 0, 0.18),
      0 0 0 0 rgba(37, 211, 102, 0),
      inset 0 1px 0 rgba(255, 255, 255, 0.25);
  }
}

.float-btn--whatsapp {
  animation: whatsappPulse 2.8s ease-in-out infinite;
}

.float-btn--whatsapp:hover {
  animation: none;
}

/* Mobile adjustments */
@media (max-width: 640px) {
  :root { --float-size: 56px; }
  .floating-actions { bottom: 20px; right: 20px; gap: 12px; }
  .float-tooltip { display: none; }
}


/* ============================================================
   2. HEADER LOGO — Proper alignment, no negative margins
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.5s var(--ease-smooth), box-shadow 0.5s var(--ease-smooth);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 2px 40px rgba(0, 0, 0, 0.09);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  padding: 0 40px;
  max-width: 100%;
  margin: 0;
  gap: 24px;
}

/* Logo container — proper flex alignment */
.header-inner > .logo-icon:first-child,
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin: 0;
}

/* The actual logo image */
.site-logo {
  height: 87px;
  width: auto;
  display: block;
  object-fit: contain;
  object-position: left center;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
  /* Subtle shadow for premium feel */
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.12));
  transition: filter 0.3s ease, transform 0.3s ease;
}

.site-logo:hover {
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.18));
  transform: scale(1.02);
}

/* Scrolled state — logo adjusts naturally */
.site-header.scrolled .site-logo {
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.10));
}

/* Desktop Large */
@media (min-width: 1200px) {
  .header-inner {
    padding: 0 48px;
  }
  .site-logo {
    height: 75px;
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .header-inner {
    padding: 0 24px;
    height: 80px;
  }
  .site-logo {
    height: 65px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .header-inner {
    padding: 0 16px;
    height: 72px;
  }
  .site-logo {
    height: 55px;
  }
}


/* ============================================================
   3. HERO VIDEO SECTION — Full screen, premium overlay
   ============================================================ */
.hero-section {
  position: relative;
  height: 120vh;
  min-height: 680px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* background: #0B2D5C; Fallback while video loads — eliminates flash */
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video{

position:absolute;
inset:0;

width:100%;
height:100%;

object-fit:cover;
object-position:center center;


  /* Ensures no gap/flash */
  background: #0B2D5C;
}

/* Premium layered overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(11, 45, 92, 0.82) 0%,
    rgba(11, 45, 92, 0.52) 45%,
    rgba(0, 0, 0, 0.72) 100%
  );
  z-index: 1;
}

.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 38%, rgba(0, 169, 181, 0.20) 0%, transparent 68%),
    radial-gradient(ellipse 40% 35% at 18% 72%, rgba(0, 199, 212, 0.09) 0%, transparent 58%),
    linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.50) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 88px; /* Header height offset */
  padding-bottom: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* Stats bar stays above video */
.stats-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid rgba(0, 169, 181, 0.18);
  box-shadow: 0 -4px 32px rgba(0, 0, 0, 0.08);
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-suffix {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 4px;
}

@media (max-width: 640px) {
  .hero-section { height:100svh;
min-height:100svh;  }
  .hero-content { padding-top: 72px; padding-bottom: 150px; }
}


/* ============================================================
   4. WHY SKINPASE — Premium card improvements
   ============================================================ */
.why2-card {
  position: relative;
  height: 500px;
  overflow: hidden;
  cursor: pointer;
  border-radius: 20px;
  transition:
    transform 0.75s var(--ease-cinematic),
    box-shadow 0.75s var(--ease-cinematic);
  will-change: transform, box-shadow;
}

.why2-card:hover {
  transform: translateY(-15px);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.55),
    0 12px 32px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(0, 169, 181, 0.28);
  z-index: 2;
}

.why2-card-bg {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  transition: transform 0.85s var(--ease-cinematic);
  will-change: transform;
}

.why2-card:hover .why2-card-bg {
  transform: scale(1.15);
}

.why2-card-overlay {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.92) 0%,
    rgba(0, 0, 0, 0.55) 38%,
    rgba(0, 0, 0, 0.15) 68%,
    transparent 100%
  );
  transition: background 0.75s ease;
}

.why2-card:hover .why2-card-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 169, 181, 0.30) 38%,
    rgba(0, 169, 181, 0.12) 68%,
    rgba(0, 169, 181, 0.04) 100%
  );
}

/* Teal sweep line */
.why2-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  border-radius: 0 0 20px 20px;
  background: linear-gradient(90deg, #00A9B5, #00C7D4, #007F8A);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.65s var(--ease-cinematic) 0.08s;
  z-index: 4;
}

.why2-card:hover::after {
  transform: scaleX(1);
}

.why2-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 36px 30px 32px;
  z-index: 3;
  transform: translateY(6px);
  transition: transform 0.75s var(--ease-cinematic);
}

.why2-card:hover .why2-card-body {
  transform: translateY(0);
}

/* Card text reveal */
.why2-card-text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.80);
  line-height: 1.68;
  margin-bottom: 18px;
  max-width: 340px;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition:
    opacity 0.5s ease 0.10s,
    max-height 0.6s var(--ease-cinematic) 0.06s;
}



.why2-card:hover .why2-card-text {
  opacity: 1;
  max-height: 130px;
}

@media (max-width: 1024px) {
  .why2-card-text { opacity: 1 !important; max-height: 130px !important; }
}

@media (max-width: 640px) {
  .why2-card { height: 430px; }
  .why2-card-text { opacity: 1 !important; max-height: 130px !important; }
}


/* ============================================================
   5. OUR SPECIALITIES CAROUSEL — Premium improvements
   ============================================================ */
.sp2-section {
  background: linear-gradient(180deg, #ffffff 0%, #f2f8f9 100%);
  padding: 35px 0;
  position: relative;
  overflow: hidden;
}

.sp2-section::before {
  content: '';
  position: absolute;
  top: -180px; right: -180px;
  width: 540px; height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 169, 181, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.sp2-section::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11, 45, 92, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

/* Card — 3 per row, tall, premium */
.sp2-card {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 0;
  height: 450px;
  border-radius: 26px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 0.85s var(--ease-cinematic),
    box-shadow 0.85s var(--ease-cinematic);
  will-change: transform, box-shadow;
}


.sp2-card:hover{
  transform:none !important;
}

.sp2-card:hover .sp2-card-img{
  transform:scale(1.10) !important;
}



.sp2-card-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.85s var(--ease-cinematic);
  will-change: transform;
}



/* Overlay — clear on default, teal-navy on hover */
.sp2-card-overlay {
  position: absolute;
  inset: 0;
  border-radius: 26px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.06) 0%,
    rgba(0, 0, 0, 0.30) 40%,
    rgba(0, 0, 0, 0.85) 100%
  );
  transition: 
  background 0.85s var(--ease-cinematic);
}

.sp2-card:hover .sp2-card-overlay {
  background: linear-gradient(
    145deg,
    rgba(0, 169, 181, 0.90) 0%,
    rgba(11, 45, 92, 0.96) 100%
  );
}

/* Teal sweep bottom line */
.sp2-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  border-radius: 0 0 26px 26px;
  background: linear-gradient(90deg, #00A9B5, #00C7D4, #007F8A);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.65s var(--ease-cinematic) 0.10s;
  z-index: 5;
}

.sp2-card:hover::after {
  transform: scaleX(1);
}

/* Category badge hides on hover */
.sp2-cat {
  position: absolute;
  top: 22px; left: 22px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 6px 14px;
  border-radius: 50px;
  z-index: 3;
  transition: opacity 0.40s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

.sp2-card:hover .sp2-cat {
  opacity: 0;
}

/* Card body */
.sp2-card-body{
    position:absolute;
    left:0;
    right:0;
    bottom:0;

    padding:0 24px 24px;

    z-index:4;

    display:flex;
    flex-direction:column;

    min-height:160px;
}

/* Premium serif title */
.sp2-card-title {
  font-family: var(--font-serif);
  font-size: 2.05rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.12;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.40);
  letter-spacing: -0.01em;
}

.sp2-card-divider {
  width: 36px;
  height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
  margin: 14px 0 15px;
  transition: width 0.5s var(--ease-cinematic);
}

.sp2-card:hover .sp2-card-divider {
  width: 64px;
  background: rgba(255, 255, 255, 0.75);
}

.sp2-card-desc{

    font-size:.95rem;
    line-height:1.7;

    color:rgba(255,255,255,.85);

    margin-bottom:18px;

    flex:1;

    opacity:0;
    max-height:0;
    overflow:hidden;

    transition:
    opacity .55s ease,
    max-height .55s ease;
}

.sp2-card:hover .sp2-card-desc{

    opacity:1;

    max-height:140px;

}

.sp2-card:hover .sp2-card-desc {
  opacity: 1;
  max-height: 110px;
}

.sp2-card-link{

    margin-top:auto;

    display:inline-flex;

    align-items:center;

    gap:10px;

    font-weight:600;

    color:#fff;

}

.sp2-card:hover .sp2-card-link {
  color: #fff;
}

.sp2-link-circle {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  display: flex; align-items: center; justify-content: center;
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    transform 0.4s var(--ease-premium);
}

.sp2-card-link:hover .sp2-link-circle {
  background: #fff;
  border-color: #fff;
  transform: translateX(5px);
}

.sp2-card-link:hover .sp2-link-circle svg {
  color: var(--primary);
}

/* Navigation — arrows on the right */
.sp2-nav-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 42px;
  gap: 16px;
}


/* Premium arrow buttons */
.sp2-arrows {
  display: flex;
  gap: 12px;
}

.sp2-arr {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid rgba(0, 169, 181, 0.40);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    color 0.35s ease,
    transform 0.4s var(--ease-premium),
    box-shadow 0.35s ease;
  box-shadow: 0 4px 18px rgba(0, 169, 181, 0.08);
}

.sp2-arr:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: scale(1.10);
  box-shadow: 0 10px 32px rgba(0, 169, 181, 0.35);
}

.sp2-arr:disabled {
  opacity: 0.25;
  pointer-events: none;
}

.sp2-arr svg {
  transition: transform 0.3s ease;
}

.sp2-arr:hover svg {
  transform: translateX(0);
}

#spPrev:hover svg { transform: translateX(-2px); }
#spNext:hover svg { transform: translateX(2px); }

/* Responsive */
@media (max-width: 860px) {
  .sp2-card { flex: 0 0 calc((100% - 24px) / 2); }
}

@media (max-width:560px){

    .sp2-track{
        gap:16px;
    }

    .sp2-card{
        flex:0 0 86%;
        max-width:86%;
        height:480px;
    }

}
@media (max-width:560px){

.why2-card{

    width:86%;
    max-width:86%;

}

}
@media (max-width:560px){

.doctor-card{

    width:86%;
    max-width:86%;

}

}
@media (max-width:560px){

.branch-card{

    width:86%;
    max-width:86%;

}

}
/* ============================================================
   6. GENERAL POLISH — Shadows, transitions, typography
   ============================================================ */

/* Section spacing refinements */
.section-padding {
  padding-block: 23px;
}

/* Trust strip */
.trust-strip {
  background: linear-gradient(135deg, #0B2D5C 0%, #0d3568 100%);
  padding-block: 22px;
  border-top: 1px solid rgba(0, 199, 212, 0.15);
  border-bottom: 1px solid rgba(0, 199, 212, 0.10);
}

.trust-item {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.90);
}

.trust-icon {
  color: #00C7D4;
}

/* Specialists cards */
.doctor-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.07),
    0 1px 6px rgba(0, 0, 0, 0.04);
  transition:
    transform 0.6s var(--ease-cinematic),
    box-shadow 0.6s var(--ease-cinematic);
  cursor: pointer;
}

.doctor-card:hover,
.doctor-card:focus {
  box-shadow:
    0 28px 72px rgba(0, 0, 0, 0.16),
    0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-10px);
  outline: none;
}

.doctor-img {
  transition: transform 0.75s var(--ease-cinematic);
}

.doctor-card:hover .doctor-img {
  transform: scale(1.05);
}


/* Form controls */
.form-control {
  transition:
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow:
    0 0 0 3px rgba(0, 169, 181, 0.14),
    0 2px 8px rgba(0, 169, 181, 0.08);
  background: #fafffe;
}

/* Appointment section form */
.appointment-form-wrap {
  background: #fff;
  border-radius: 24px;
  padding: 44px 42px;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.22),
    0 8px 24px rgba(0, 0, 0, 0.10);
}

/* Footer polish */
.site-footer {
  background: #080f1c;
}

.footer-top {
  padding-block: 80px 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.social-link {
  width: 40px; height: 40px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 50%;
  display: grid; place-items: center;
  color: rgba(255, 255, 255, 0.65);
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    transform 0.35s var(--ease-premium);
}

.social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}

/* Section headers */
.section-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(0, 169, 181, 0.09);
  border: 1px solid rgba(0, 169, 181, 0.20);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 18px;
  display: inline-block;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.85rem);
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.18;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--text-light);
  line-height: 1.75;
}

/* Reveal animation — smoother */
.reveal-up {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.75s var(--ease-smooth),
    transform 0.75s var(--ease-smooth);
  transition-delay: var(--delay, 0s);
}

.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile nav improvements */
@media (max-width: 900px) {
  .mobile-toggle {
    display: flex;
    padding: 10px;
    margin-left: auto;
  }

  .burger-line {
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.32s var(--ease-smooth);
    display: block;
  }

  .site-header.scrolled .burger-line {
    background: var(--text);
  }
}

/* Progress bar hide (not needed with dots) */
.sp2-prog { display: none !important; }

/* ============================================================
   SKINPASE — Call Button Icon Upgrade Patch
   Add this AFTER style-improvements.css
   ============================================================ */

/* Call button — icon rotation hover effect */
.float-btn--call .call-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: #fff;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.25));
  transition:
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    filter 0.3s ease;
  display: block;
}

.float-btn--call:hover .call-icon {
  transform: rotate(-12deg) scale(1.1);
  filter: drop-shadow(0 2px 6px rgba(255, 255, 255, 0.35));
}

/* Enhanced glow on hover — teal-specific */
.float-btn--call:hover {
  transform: translateY(-5px) scale(1.08);
  box-shadow:
    0 18px 50px rgba(0, 169, 181, 0.60),
    0 6px 20px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(0, 199, 212, 0.20),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}
:root {
  --ease-reveal:   cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring:   cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-organic:  cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --dur-base:      0.85s;
  --dur-slow:      1.0s;
  --dur-fast:      0.65s;
}
 
/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  .sr-fade-up,
  .sr-fade-in,
  .sr-zoom-up,
  .sr-slide-left,
  .sr-slide-right,
  .sr-stagger > *,
  .why2-card,
  .sp2-card,
  .doctor-card,
  .branch-card {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
    clip-path: none !important;
  }
}

.sp2-card-link:hover{
    color:inherit;
}

.sp2-card{
  
    min-width:0;
    height:460px;
    position:relative;

    border-radius:26px;

    overflow:hidden;

    isolation:isolate;

    transform:translateZ(0);
}



/*==========================================
        MOBILE TREATMENTS
==========================================*/

.mobile-treatment{
    list-style:none;
    margin:0;
    padding:0;
}

/* Treatments button (same alignment as other menu items) */

.mobile-treatment-toggle{

    display:flex;

    justify-content:space-between;

    align-items:center;

    width:100%;

    padding:12px 16px;          /* Same as .mobile-nav-link */

    margin:0;

    background:none;

    border:none;

    border-radius:var(--radius-sm);

    font:inherit;

    color:inherit;

    cursor:pointer;

    transition:var(--transition-fast);

}

.mobile-treatment-toggle:hover{

    background:var(--light-gray);

    color:var(--primary);

}

.mobile-treatment-toggle span{

    font-size:20px;

    font-weight:400;

    transition:.3s;

}

/* Plus */


/*==========================================
        DROPDOWN BOX
==========================================*/

.mobile-treatment-menu{

    display:none;

    margin:8px 16px 12px;

    padding:16px;

    border-radius:18px;

    background:rgba(255,255,255,.88);

    backdrop-filter:blur(16px);

    -webkit-backdrop-filter:blur(16px);

    border:1px solid rgba(0,169,181,.08);

    box-shadow:0 12px 30px rgba(0,0,0,.08);

}
.mobile-treatment-menu.open{

    display:block;

    animation:fadeMenu .35s ease;

}

@keyframes fadeMenu{

    from{

        opacity:0;

        transform:translateY(-10px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/*==========================================
        CATEGORY CARD
==========================================*/



.mobile-treatment-group{

    background:#fff;

    border:1px solid rgba(0,169,181,.08);

    border-radius:14px;

    padding:14px;

    transition:.3s;

}

.mobile-treatment-group:not(:last-child){

    margin-bottom:12px;

}

.mobile-treatment-group:hover{

    box-shadow:0 8px 20px rgba(0,169,181,.10);

    transform:translateY(-2px);

}

/*==========================================
        CATEGORY BUTTON
==========================================*/

.mobile-sub-toggle{

    width:100%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    background:none;

    border:none;

    padding:0;

    cursor:pointer;

    color:var(--text);

    font-size:15px;

    font-weight:600;

}

.mobile-sub-toggle span{

    width:26px;

    height:26px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:#F0FCFD;

    color:#00A9B5;

    font-size:18px;

    transition:.3s;

}

.mobile-sub-toggle:hover span{

    background:#00A9B5;

    color:#fff;

    transform:rotate(45deg);

}
.mobile-sub-toggle:hover span{

    background:#00A9B5;

    color:#fff;

}

/*==========================================
        SUB MENU
==========================================*/
.mobile-treatment-list{

    display:none;

    list-style:none;

    margin-top:14px;

    padding-left:8px;

}
.mobile-treatment-list.open{

    display:block;

}
.mobile-treatment-list li{

    padding:10px 0;

    border-bottom:1px solid rgba(0,0,0,.05);

}

.mobile-treatment-list li:last-child{

    border:none;

}


.mobile-treatment-list a{

    display:block;

    color:#667085;

    font-size:14px;

    text-decoration:none;

    transition:.3s;

}

.mobile-treatment-list a:hover{

    color:#00A9B5;

    padding-left:8px;

}
.why2-grid,
.doctors-grid,
.branches-grid{

    justify-content:center;

}
/* ============================================================
   GLOBAL SKINPASE FONT SYSTEM
   Same typography across Index + All Branch Pages
   ============================================================ */

:root {
    --font-primary: "Axiforma", sans-serif;
}

/* Main website typography */
body,
button,
input,
textarea,
select {
    font-family: var(--font-primary);
}

/* All main headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
}

/* ============================================================
   INDEX PAGE
   ============================================================ */

.hero-heading,
.section-title,
.why2-title,
.sp2-title,
.about-title,
.section-header h2,
.specialists-section h2,
.branches-section h2 {
    font-family: var(--font-primary);
}

/* ============================================================
   BRANCH PAGES
   ============================================================ */

.branch-hero-title,
.about-heading,
.branch-name {
    font-family: var(--font-primary);
}

/* Keep highlighted/italic words */
.branch-hero-title em,
.about-heading em {
    font-family: var(--font-primary);
    font-style: italic;
}

/* Small headings / cards */
.about-feature-title,
.gr-author-name,
.footer-branch,
.gr-stat-label,
.branch-location-badge {
    font-family: var(--font-primary);
}
/* ==========================================
   BRANCHES DROPDOWN - SOLID WHITE BACKGROUND
========================================== */

.nav-dropdown .dropdown-menu {
    background: #ffffff !important;

    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;

    border: 1px solid rgba(0, 169, 181, 0.12) !important;

    box-shadow:
        0 20px 45px rgba(5, 31, 62, 0.15) !important;

    z-index: 9999 !important;
}
/* =========================================================
   INDEX PAGE ONLY - BOOK CONSULTATION FLOATING BUTTON
   ========================================================= */

.branch-floating-actions .float-tooltip {
    width: 136px !important;
    min-width: 136px !important;
    white-space: nowrap !important;
    text-align: center;
}
.whatsapp-submit-btn {
  width: 100%;
  min-height: 72px;
  border: none;
  border-radius: 999px;
  background: #25D366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.25);
  transition: all 0.3s ease;
}

.whatsapp-submit-btn:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 16px 35px rgba(37, 211, 102, 0.35);
}

.whatsapp-icon {
  flex-shrink: 0;
}

.submit-arrow {
  font-size: 32px;
  line-height: 1;
  font-weight: 400;
}

@media (max-width: 600px) {
  .whatsapp-submit-btn {
    min-height: 62px;
    gap: 12px;
    font-size: 16px;
  }

  .whatsapp-icon {
    width: 22px;
    height: 22px;
  }

  .submit-arrow {
    font-size: 26px;
  }
}