:root{

  /* Primary Colors */

  --color-primary:#0f766e;
  --color-primary-light:#14b8a6;
  --color-primary-dark:#0b4f4a;

  /* Accent */

  --color-secondary:#2563eb;
  --color-purple:#7c3aed;
  --color-gold:#d8a066;

  /* Background */

  --bg:#f7fbfc;
  --surface:rgba(255,255,255,.72);
  --surface-strong:#ffffff;

  /* Text */

  --text:#18343b;
  --text-light:#64748b;

  /* Gradients */

  --gradient-primary:
      linear-gradient(
          135deg,
          #14b8a6,
          #0f766e
      );

  --gradient-secondary:
      linear-gradient(
          135deg,
          #3b82f6,
          #2563eb
      );

  --gradient-premium:
      linear-gradient(
          135deg,
          #0ea5e9,
          #14b8a6,
          #10b981
      );

  /* Shadows */

  --shadow-sm:
      0 8px 20px rgba(0,0,0,.05);

  --shadow-md:
      0 20px 45px rgba(0,0,0,.08);

  --shadow-lg:
      0 40px 90px rgba(0,0,0,.12);

  /* Radius */

  --radius:24px;
  --radius-lg:34px;

  /* Animation */

  --transition:
      .35s cubic-bezier(.22,1,.36,1);

}
/* Basic reset and box-sizing */
*,
*::before,
*::after {
box-sizing: border-box;
}
/* Add this CSS to your stylesheet or within a <style> tag */
.fade-in {
opacity: 0;
transform: translateY(40px); /* Slightly more pronounced slide */
transition: 1s cubic-bezier(.22,1,.36,1),opacity 1.5s ease-out, transform 1.5s ease-out;
will-change: opacity, transform; /* Improve performance during transition */
}

.fade-in.visible {
opacity: 1;
transform: translateY(0); /* Reset to original position */
}
/* Style for active navigation link */
.nav-active {
font-weight: 300;
color: var(--color-primary);
border-bottom: 1px solid var(--color-primary);
padding: 8px 16px; /* Adjust padding as needed */
transition: all 0.3s ease;
display: inline-block; /* Ensure it can be shaped into a circle if needed */
border-radius: 50%; /* Make it circular */
}

/* Hover effect for active link */


/* Style for non-active navigation links */
.nav a {
display: inline-block; /* Needed for shape transformation */
padding: 2px 8px;
transition: all 0.3s ease;
border-radius: 30%; /* Make it circular on hover */
}

/* Hover effect for non-active links */
.nav a {
transition: background-color 0.3s ease, border 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
/* ================================
 NAVIGATION LINKS
================================ */

.nav a {
position: relative;
display: inline-flex;
align-items: center;
justify-content: center;

border-radius: 14px;

color: var(--color-text);
font-weight: 300;
text-decoration: none;

border: 1px solid transparent;

transition:
  all 0.35s cubic-bezier(.22,1,.36,1),
  transform .35s cubic-bezier(.22,1,.36,1),
  box-shadow .35s ease;

overflow: hidden;
}

/* Animated Background */
.nav a::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
      135deg,
      rgba(20,184,166,.12),
      rgba(59,130,246,.18)
  );
  opacity:0;
  transform:scale(.85);
  transition:.4s ease;
  border-radius:inherit;
  z-index:-1;
}

/* Animated Shine */
.nav a::after{
  content:"";
  position:absolute;
  top:0;
  left:-120%;
  width:60%;
  height:100%;
  background:linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,.45),
      transparent
  );
  transform:skewX(-25deg);
}

/* Hover */
.nav a:hover{
  color:#0f766e;
  border-color:rgba(20,184,166,.35);

  transform:translateY(-3px) scale(1.04);

  box-shadow:
      0 12px 30px rgba(20,184,166,.18),
      inset 0 1px 0 rgba(255,255,255,.4);

  backdrop-filter:blur(50px);
}

.nav a:hover::before{
  opacity:1;
  transform:scale(1);
}

.nav a:hover::after{
  animation:navShine .8s ease;
}

/* Click Animation */
.nav a:active{
  transform:scale(.96);
}

/* ================================
    ACTIVE LINK
================================ */

.nav a.active,
.nav-active{

  background:linear-gradient(
      135deg,
      #14b8a6,
      #0f766e
  );

  color:#fff !important;

  border:1px solid rgba(255,255,255,.18);

  box-shadow:
      0 12px 28px rgba(15,118,110,.35);

  transform:translateY(-2px);
}

/* Active Hover */

.nav a.active:hover,
.nav-active:hover{

  background:linear-gradient(
      135deg,
      #2dd4bf,
      #0d9488
  );

  color:white;

  transform:translateY(-4px) scale(1.05);

  box-shadow:
      0 18px 36px rgba(13,148,136,.45);
}

/* Underline Animation */

.nav a span{
  position:relative;
  z-index:2;
}

.nav a:not(.active)::before{
  border-radius:14px;
}

/* Shine Animation */

@keyframes navShine{
  from{
      left:-120%;
  }
  to{
      left:160%;
  }
}

section {
scroll-snap-align: start;
}

body {
margin: 0;
font-family: var(--font-body);
color: var(--color-text);
line-height: 1.6;

}

body:not(.loaded) .page-loader {
opacity: 1;
pointer-events: auto;
}

body.loaded > *:not(.page-loader) {
animation: pageFade 0.45s ease;
}

@keyframes pageFade {
from {
  opacity: 0;
  transform: translateY(8px);
}

to {
  opacity: 1;
  transform: translateY(0);
}
}

.page-loader {
position: fixed;
inset: 0;
z-index: 9999;
display: grid;
place-items: center;
background: rgba(243, 248, 247, 0.98);
transition: opacity 0.3s ease, visibility 0.3s ease;
}

.page-loader.hidden {
opacity: 0;
visibility: hidden;
pointer-events: none;
}
/* ===== Premium Dental Pricing Tables ===== */

.price-table{
  width:min(80%, 1000px);
  margin:18px auto 32px;
  border-collapse:separate;
  border-spacing:0;
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 8px 25px rgba(0,0,0,.08);
  font-size:.95rem;
}
.price-category{
  width:min(80%,1000px);
  margin:3px auto 4px;
  padding:4px 2px;
  align-items: center;
  align-content: center;
  text-align: center;
  letter-spacing:.5px;
  text-transform:uppercase;
  border-radius:44px;
  border:1px solid rgba(255,255,255,.18);
  position:relative;
  overflow:hidden;
  background:linear-gradient(135deg,#059669 0%, #10b981 50%, #34d399 100%);
  color:#fff;
  box-shadow:
  0 10px 28px rgba(16,185,129,.28),
  inset 0 1px 0 rgba(255,255,255,.25);
  }

.price-category::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
      120deg,
      transparent 20%,
      rgba(255,255,255,.18) 50%,
      transparent 80%
  );
  transform:translateX(-100%);
  transition:.8s;
}

.price-category:hover::after{
  transform:translateX(100%);
}
@media (max-width:768px){
  .price-table{
      width:95%;
      font-size:.9rem;
  }
}

.price-table thead th{
 background:linear-gradient(
  145deg,
  #3b82f6 0%,
  #2563eb 45%,
  #1d4ed8 100%
);
  color:#fff;
  padding:4px 8px;
  font-weight:600;
  text-align:left;
  border:1px solid rgba(255,255,255,.18);

box-shadow:
0 8px 24px rgba(37,99,235,.28),
inset 0 1px 0 rgba(255,255,255,.25);
  letter-spacing:.3px;
}

.price-table tbody tr{
  transition:.25s;
}

.price-table tbody tr:nth-child(even){
  background:#f8fbff;
}

.price-table tbody tr:hover{
  background:#eef7ff;
}

.price-table td{
  padding:2px 8px;
  border-bottom:1px solid #edf2f7;
  vertical-align:middle;
}

.price-table tbody tr:last-child td{
  border-bottom:none;
}

.price-table td:last-child{
  width:180px;
  text-align:right;
  font-weight:700;
  color:#0077ff;
  white-space:nowrap;
}

.price-table td:first-child{
  font-weight:500;
}

@media(max-width:768px){

.price-table{
  font-size:.87rem;
}

.price-table th,
.price-table td{
  padding:1px 1px;
}

.price-table td:last-child{
  width:120px;
}

}
.price-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  

  padding:4px 3px;
  border:none;
  border-radius:999px;

  background:linear-gradient(135deg,#0ea5e9,#2563eb);
  color:#fff;

  font-size:1rem;
  font-weight:600;
  letter-spacing:.2px;

  cursor:pointer;
  transition:all .35s ease;

  box-shadow:
      0 10px 30px rgba(37,99,235,.28),
      inset 0 1px 0 rgba(255,255,255,.25);

  position:relative;
  overflow:hidden;
}

.price-btn span{
  font-size:1.1rem;
}

.price-btn::before{
  content:"";
  position:absolute;
  top:0;
  left:-120%;
  width:60%;
  height:100%;
  background:linear-gradient(
      120deg,
      transparent,
      rgba(255,255,255,.45),
      transparent
  );
  transition:.7s;
}

.price-btn:hover{
  transform:translateY(-3px);
  box-shadow:
      0 18px 40px rgba(37,99,235,.35),
      inset 0 1px 0 rgba(255,255,255,.3);
}

.price-btn:hover::before{
  left:130%;
}


.price-btn:active{
  transform:translateY(0);
}

.price-btn:focus-visible{
  outline:3px solid rgba(37,99,235,.25);
  outline-offset:4px;
}
/* ===============================
 Premium Password Card
================================= */

.password-card{
  max-width:520px;
  margin:3px auto;
  padding:2px;

  background:rgba(255,255,255,.95);
  backdrop-filter:blur(20px);

  border:1px solid rgba(255,255,255,.45);
  border-radius:22px;

  box-shadow:
      0 18px 45px rgba(15,23,42,.08),
      inset 0 1px 0 rgba(255,255,255,.7);

  text-align:center;
}

.password-label{
  display:block;
  margin-bottom:1px;

  font-size:1rem;
  font-weight:600;
  color:#0f172a;
}

.password-wrapper{
  display:flex;
  gap:1px;
  align-items:center;
  justify-content:center;
}

.password-input{

  flex:1;

  padding:4px 8px;

  border:1.5px solid #dbe4f0;
  border-radius:999px;

  background:#fff;

  font-size:.95rem;
  transition:.3s;

  outline:none;
}

.password-input::placeholder{
  color:#94a3b8;
}

.password-input:focus{

  border-color:#2563eb;

  box-shadow:
      0 0 0 5px rgba(37,99,235,.12);

}

.password-btn{

  padding:4px 6px;

  border:none;
  border-radius:999px;

  background:linear-gradient(135deg,#0ea5e9,#2563eb);

  color:#fff;

  font-size:.95rem;
  font-weight:600;

  cursor:pointer;

  transition:.35s;

  box-shadow:
      0 10px 25px rgba(37,99,235,.30);

}

.password-btn:hover{

  transform:translateY(-3px);

  box-shadow:
      0 18px 35px rgba(37,99,235,.35);

}

.password-btn:active{

  transform:translateY(0);

}

@media (max-width:600px){

.password-wrapper{

  flex-direction:column;

}

.password-input,
.password-btn{

  width:100%;

}

.password-btn{

  justify-content:center;

}

}
.loader-inner {
text-align: center;
color: var(--color-text-muted);
}

.loader-icon {
display: block;
width: 54px;
height: 54px;
margin: 0 auto 0.9rem;
border: 4px solid rgba(15, 118, 110, 0.14);
border-top-color: var(--color-primary);
border-radius: 50%;
animation: spin 0.8s linear infinite;
}

@keyframes spin {
to {
  transform: rotate(360deg);
}
}

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

a {
color: inherit;
text-decoration: none;
}

button,
input,
select,
textarea {
font: inherit;
}

.container {
width: min(1180px, calc(100% - 2rem));
margin-inline: auto;
}

.hidden {
display: none !important;
}

.site-shell {
position: relative;
overflow: clip;
}

.site-shell::before,
.site-shell::after {
content: "";
position: fixed;
z-index: -1;
width: 24rem;
height: 24rem;
border-radius: 50%;
filter: blur(72px);
opacity: 0.55;
pointer-events: none;
}

.site-shell::before {
top: 5rem;
left: -10rem;
background: rgba(216, 160, 102, 0.18);
}

.site-shell::after {
right: -10rem;
bottom: 10rem;
background: rgba(15, 118, 110, 0.16);
}
.header {
position: sticky;
top: 0;
width: 100%;
z-index: 100;
padding: 0rem 0 0;
transition: padding 0.2s ease;
}


.nav {
height: 6px; /* or your desired height */
display: flex;
align-items: center;
justify-content: space-between;
border-radius: 999px;
backdrop-filter: blur(100px);
}

.header.scrolled .nav {
border-color:  rgba(15, 118, 110, 0.16);

}

.nav-brand {
display: inline-flex;
align-items: center;
gap: 0.8rem;
min-width: 0;
font-size: 1.02rem;
font-weight: 700;
color: var(--color-ink);
}

.nav-logo {
width: 46px;
height: 46px;
border-radius: 14px;
object-fit: cover;
box-shadow: var(--shadow-sm);
}

#nav-clinic-name {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}

.nav-links {
display: flex;
align-items: center;
gap: 1.05rem;
list-style: none;
margin: 0;
padding: 0;

}

.nav-links a {
font-size: 0.95rem;
font-weight: 600;
}

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

.nav-toggle {
display: none;
border: 0;
background: transparent;
padding: 0.35rem;
cursor: pointer;
}

.nav-toggle span {
display: block;
width: 24px;
height: 2px;
margin: 5px 0;
border-radius: 999px;
background: var(--color-ink);
}

.btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 0.55rem;
padding: 0.95rem 1.45rem;
border: 1px solid transparent;
border-radius: 999px;
font-size: 0.96rem;
font-weight: 700;
cursor: pointer;
transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.btn:hover {
transform: translateY(-2px);
}

.btn-primary {
background: linear-gradient(135deg, var(--color-primary), #15998f);
color: #fff;
box-shadow: 0 16px 34px rgba(15, 118, 110, 0.22);
}

.btn-secondary {
border-color: rgba(15, 118, 110, 0.12);
background: rgba(255, 255, 255, 0.82);
color: var(--color-primary-dark);
}

.btn-sm {
padding: 0.72rem 1.15rem;
font-size: 0.88rem;
}

.btn-block {
width: 100%;
}

.btn-whatsapp {
background: linear-gradient(135deg, #25d366, #179a48);
color: #fff;
box-shadow: 0 18px 34px rgba(37, 211, 102, 0.2);
}

.section {
padding: 5.5rem 0;
}

.hero {
  position: relative;
  overflow: hidden;
  background: #fff;

  padding-top: calc(var(--header-height) + clamp(4rem, 8vw, 8rem));
  padding-bottom: clamp(4rem, 8vw, 7rem);
}


.hero-layout,
.split-layout,
.booking-layout {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 1rem;
align-items: center;
}


.section-label,
.hero-badge {
display: inline-flex;
align-items: center;
width: fit-content;
padding: 0.46rem 0.88rem; 
border-radius: 999px;
background: rgba(15, 118, 110, 0.08);
color: var(--color-primary-dark);
font-size: 0.78rem;
font-weight: 700;
letter-spacing: 0.08em;
text-transform: uppercase;
}
.eyebrow {
margin-top: 0;
margin-bottom: 0;
padding: 0.46rem 0.88rem; /* Keep this if you want the existing padding */
display: inline-flex;
align-items: center;
width: fit-content;
border-radius: 999px;
background: rgba(15, 118, 110, 0.08);
color: var(--color-primary-dark);
font-size: 0.78rem;
font-weight: 700;
letter-spacing: 0.08em;
text-transform: uppercase;
}

.small-label {
font-size: 0.72rem;
}

.hero-copy h1,
.section-header h2,
.content-card h2,
.booking-copy h2 {
margin: 0.85rem 0 1rem;
color: var(--color-ink);
font-family: var(--font-display);
font-size: clamp(2.5rem, 5vw, 4.8rem);
line-height: 0.98;
letter-spacing: -0.03em;
}

.section-header h2,
.content-card h2,
.booking-copy h2 {
font-size: clamp(2rem, 4vw, 3.15rem);
line-height: 1.06;
}

.hero-subtitle,
.content-card p,
.section-header p,
.booking-copy p,
.review-card p,
.note-card p,
.testimonial-card p,
.trust-card p,
.feature-card span,
.profile-list span,
.contact-action small {
color: var(--color-text-muted);
}

.hero-subtitle {
margin: 0 0 1.8rem;
max-width: 38rem;
font-size: 1.08rem;
}

.hero-actions {
display: flex;
flex-wrap: wrap;
gap: 0.9rem;
margin-bottom: 1.5rem;
}

.hero-points {
display: flex;
flex-wrap: wrap;
gap: 0.75rem;
}

.info-chip {
padding: 0.75rem 1rem;
border: 1px solid rgba(15, 118, 110, 0.1);
border-radius: 999px;
background: rgba(255, 255, 255, 0.74);
box-shadow: var(--shadow-sm);
font-size: 0.92rem;
font-weight: 600;
}
/* Common styles for multiple card components */
.hero-media-card,
.content-card,
.profile-card,
.book-form,
.review-card,
.note-card,
.trust-card,
.contact-action,

.feature-card {
border: 1px solid rgba(255, 255, 255, 0.72);
background: var(--color-surface);
backdrop-filter: blur(16px);
box-shadow: var(--shadow-sm);
}
.service-card,
.team-card,
.testimonial-card{

  background:

      rgba(255,255,255,.68);

  backdrop-filter:blur(22px);
  border:

      1px solid rgba(255,255,255,.45);

  box-shadow:var(--shadow-sm);

  transition:.45s;

}

/* Border-radius for specific cards */
.hero-media-card,
.content-card,
.profile-card,
.book-form,
.review-card,
.note-card,
.testimonial-card,
.service-card,
.team-card {
border-radius: var(--radius);
}

/* Overflow handling for hero media card */
.hero-media-card {
overflow: hidden;
}

/* Minimum height for hero media container */
.hero-media {
min-height: 430px;
}

/* Images inside hero-media and related classes */
.hero-media img,
.image-card img,
.booking-image img {
width: 100%;
height: 100%;
object-fit: cover;
display: block; /* Ensures no inline spacing issues */
}

/* Content padding inside hero media */
.hero-media-content {
padding: 1.5rem;
}

/* Styling for hero media content header */
.hero-media-content h2 {
margin: 0.9rem 0 1rem;
color: var(--color-ink);
font-size: clamp(1.6rem, 2vw, 2.1rem);
line-height: 1.15;
}

.hero-stats {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 0.85rem;
}

.hero-stats div {
padding: 1rem;
transition:.4s;
border-radius: 20px;
background: rgba(15, 118, 110, 0.05);
}
.hero-stats div:hover{

transform:

translateY(-8px)

scale(1.05);

background:white;

box-shadow:

0 25px 60px rgba(20,184,166,.2);

}
.hero-stats strong {
display: block;
color: var(--color-ink);
font-family: var(--font-display);
font-size: 1.7rem;
line-height: 1;
margin-bottom: 0.35rem;
}

.hero-stats span {
color: var(--color-text-muted);
font-size: 0.84rem;
}

.trust-section {
padding-top: 0;
}

.trust-grid,
.feature-grid,
.testimonial-grid {
display: grid;
gap: 1rem;
}

.trust-grid {
grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-card,
.feature-card {
padding: 1.35rem;
border-radius: 24px;
}

.trust-card strong,
.feature-card strong,
.profile-list strong,
.contact-action strong {
display: block;
margin-bottom: 0.35rem;
color: var(--color-ink);
}

.feature-grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
margin-top: 1.7rem;
}

.content-card,
.profile-card,
.book-form,
.review-card,
.note-card {
padding: 1.6rem;
}

.profile-shell,
.contact-side {
display: grid;
gap: 1rem;
}

.profile-head {
display: flex;
align-items: center;
gap: 1rem;
}

.profile-mark {
width: 68px;
height: 68px;
display: grid;
place-items: center;
border-radius: 20px;
background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
color: #fff;
font-size: 1.75rem;
font-weight: 700;
box-shadow: var(--shadow-sm);
}

.profile-card h3,
.review-card h3,
.note-card h3,
.book-form-header h3,
.team-card h3,
.service-card h3 {
margin: 0 0 0.35rem;
color: var(--color-ink);
}

.profile-card p,
.review-card p,
.note-card p,
.book-form-header p,
.team-card p,
.service-card p,
.testimonial-card strong {
margin: 0;
}

.about-address {
margin-top: 1rem !important;
}

.profile-list {
display: grid;
gap: 0.9rem;
margin-top: 1.4rem;
}

.profile-list div {
padding: 1rem;
border-radius: 20px;
background: rgba(15, 118, 110, 0.05);
}

.image-card {
overflow: hidden;
min-height: 320px;
border-radius: var(--radius-lg);
box-shadow: var(--shadow-md);
}

.section-header {
max-width: 44rem;
margin: 0 auto 3rem;
text-align: center;
}

.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 1.2rem;
}
.service-card {
transition: max-height 0.5s ease;
flex-direction: column;
border: 1px solid #ccc;
border-radius: 30px;
background-color: #fff;

}
.service-image-container {
width: 100%;
justify-content: center; /* center the image */
align-items: center;

}
.service-image {
border-radius: 8px; /* optional: rounded corners */
}
.service-card,
.team-card,
.testimonial-card {
padding: 0.5rem;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.team-card:hover,
.testimonial-card:hover {
transform: translateY(-4px);
outline-offset: -2px;
box-shadow: 0 4px 20px rgba(14, 68, 217, 0.3);
    cursor: pointer;
     color: #111827; /* darker or accent color */
background-color: #31ccf233; /* Darker background color on hover */
border-color: #d5be13;    /* Darker border color on hover, if applicable */
}
.service-extra {
display: block;
opacity: 1;
transition: opacity 0.3s ease;
}

.service-card:hover {
  transform:

      perspective(1200px)

      rotateX(5deg)

      rotateY(-5deg)

      translateY(-10px)

      scale(1.02);

  box-shadow: 0 45px 90px rgba(0,0,0,.16);
 outline-offset: -2px;

cursor: pointer;
color: #111827;
background-color: #31ccf233;
border-color: #d5be13;
}
.service-detail-card img {
transition: transform 0.3s ease;
}
section {
scroll-margin-top: 80px; /* adjust this value based on your header height */
}
.service-popup {
opacity: 0;
visibility: hidden;
pointer-events: none;
transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
transform: translateY(10px);
/* Remove from layout when hidden */
display: none;
}

.service-popup.show-popup {
display: block; /* or flex/grid as needed */
opacity: 1;
visibility: visible;
pointer-events: auto;
transform: translateY(0);
}
.service-icon {
display: flex ;
align-items: center;
justify-content: center;
font-size: 2rem; /* your existing size or adjust as needed */
width: 70px; /* same as your inline style or set for consistent sizing */
height: 70px; /* same as your inline style or set for consistent sizing */
color: #fff; /* your existing text color */
border-radius: 50%; /* keep it circular */
box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* your existing shadow */
transition: all 0.3s ease; /* your existing transition */
}

.service-badge {
display: inline-flex;
align-items: center;
 justify-content: center;
margin-bottom: 0.9rem;
padding: 0.38rem 0.72rem;
border-radius: 999px;
background: rgba(15, 118, 110, 0.08);
color: var(--color-primary-dark);
font-size: 0.76rem;
font-weight: 700;
letter-spacing: 0.06em;
text-transform: uppercase;
}

.service-points {
display: grid;
gap: 0.55rem;
margin-top: 1rem;
}

.service-point {
display: flex;
align-items: center;
gap: 0.6rem;
font-size: 0.9rem;
}

.service-point::before {
content: "";
width: 8px;
height: 8px;
border-radius: 50%;
background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
flex: 0 0 auto;
}

.team-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 1.2rem;
}

.team-card {
text-align: center;
}

.team-avatar {
width: 82px;
height: 82px;
display: grid;
place-items: center;
margin: 0 auto 1rem;
border-radius: 24px;
background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
color: #fff;
font-size: 1.45rem;
font-weight: 700;
}

.testimonials {
padding-top: 0;
}

.testimonial-grid {
grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review-stars {
display: inline-flex;
gap: 0.16rem;
margin-bottom: 0.85rem;
color: #f7b84c;
font-size: 1.05rem;
}

.booking {
position: relative;
}

.booking-layout {
align-items: start;
}

.booking-actions {
display: flex;
flex-direction: column;
gap: 0.9rem;
margin-top: 1.4rem;
}

.contact-action {
display: flex;
align-items: center;
gap: 0.95rem;
padding: 1rem 1.05rem;
border-radius: 22px;
}

.action-icon {
min-width: 3rem;
height: 3rem;
display: inline-grid;
place-items: center;
padding: 0 0.9rem;
border-radius: 999px;
background: linear-gradient(135deg, var(--color-primary), #15998f);
color: #fff;
font-size: 0.72rem;
font-weight: 700;
letter-spacing: 0.08em;
text-transform: uppercase;
}

.book-form-header {
margin-bottom: 1.4rem;
}

.form-grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 1rem;
}

.form-row.full {
grid-column: 1 / -1;
}

.form-row label {
display: block;
margin-bottom: 0.5rem;
font-size: 0.88rem;
font-weight: 700;
color: var(--color-ink);
}

.form-row input,
.form-row select,
.form-row textarea {
width: 100%;
padding: 0.95rem 1rem;
border: 1px solid rgba(148, 163, 184, 0.28);
border-radius: 18px;
background: rgba(248, 250, 252, 0.88);
color: var(--color-text);
transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
outline: none;
background: #fff;
border-color: rgba(15, 118, 110, 0.44);
box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.12);
}

.form-note {
margin: 1rem 0 0;
text-align: center;
color: var(--color-text-muted);
font-size: 0.88rem;
}

.form-note.success {
color: var(--color-primary-dark);
}

.form-note.error {
color: #dc2626;
}

.contact-list {
display: grid;
gap: 1rem;
margin: 1.5rem 0;
padding: 0;
list-style: none;
}

.contact-list li {
padding: 1rem 1.1rem;
border-radius: 20px;
background: rgba(15, 118, 110, 0.05);
}

.contact-list strong {
display: block;
margin-bottom: 0.28rem;
color: var(--color-primary-dark);
font-size: 0.82rem;
font-weight: 700;
letter-spacing: 0.08em;
text-transform: uppercase;
}

.contact-list a,
.contact-list span {
word-break: break-word;
}

.qr-grid {
display: flex;
flex-wrap: wrap;
gap: 1rem;
margin-top: 1.5rem;
}

.qr-item {
min-width: 110px;
text-align: center;
}

.qr-item img {
width: 100px;
height: 100px;
margin: 0 auto;
border-radius: 18px;
object-fit: cover;
border: 1px solid rgba(148, 163, 184, 0.24);
box-shadow: var(--shadow-sm);
}

.qr-item span {
display: block;
margin-top: 0.45rem;
color: var(--color-text-muted);
font-size: 0.78rem;
}

.footer {
padding: 0 0 2rem;
}

.footer-inner {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 0.75rem;
padding: 1.3rem 1.5rem;
border-radius: 24px;
background: #10262d;
color: rgba(255, 255, 255, 0.88);
box-shadow: var(--shadow-sm);
}

.footer-note {
color: rgba(255, 255, 255, 0.58);
}

@media (max-width: 1080px) {
.hero-layout,
.split-layout,
.booking-layout {
  grid-template-columns: 1fr;
}

.hero-copy h1 {
  max-width: 20ch;
}

.hero-media {


@keyframes floating{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-15px);

}

100%{

transform:translateY(0);

}


min-height: 380px;
}

.hero-stats,
.trust-grid,
.feature-grid,
.testimonial-grid {
  grid-template-columns: 1fr 1fr;
}
}

@media (max-width: 820px) {
:root {
  --header-height: 76px;
}

.section,
.hero {
  padding: 1.5rem 0;
}

.nav-toggle {
  display: block;
}

.nav {
  padding: 0 1rem;
}

.nav-links {
position: fixed; /* Fixes the element relative to the viewport */
top: 100%;
left: 50%;
transform: translate(-10%, -10%); /* Centers the element */
max-width: fit-content;
flex-direction: column;
align-items: stretch;
gap: 0.85rem;
padding: 0.2rem;
border-radius: 88px;
border: 1px solid rgba(255, 255, 255, 0.9);
background: rgba(255, 255, 255, 0.96);
box-shadow: var(--shadow-md);
opacity: 0; /* Keep this if you want it hidden initially */
pointer-events: none; /* Keep this if needed for initial state */
transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-links.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.nav-links a {
  width: 100%;
  text-align: center;
}

.hero {
  padding-top: calc(var(--header-height) + 0.1rem);
}

.hero-copy h1 {
  font-size: clamp(2.5rem, 12vw, 4rem);
}

.hero-stats,
.trust-grid,
.feature-grid,
.form-grid,
.testimonial-grid {
  grid-template-columns: 1fr;
}

.hero-media {
  min-height: 300px;
}
}

@media (max-width: 560px) {
:root {
  --header-height: 0px;
}

.container {
  width: min(100% - 1rem, 1180px);
}

.nav-brand {
  max-width: 72%;
}

.hero-actions {
  flex-direction: column;
  align-items: stretch;
}

.btn,
.btn-sm {
  width: 100%;
}

.hero-media-card,
.content-card,
.profile-card,
.book-form,
.review-card,
.note-card,
.service-card,
.team-card,
.testimonial-card {
  padding: 1.25rem;
}

.hero-media-content {
  padding: 0.25rem;
}

.image-card,
.hero-media,
.booking-image {
  min-height: 230px;
}

.contact-action {
  align-items: flex-start;
}

.footer-inner {
  padding: 0.15rem;
}


}
}