/* ------ Base ------ */
:root{
  --bg:#fff7f6;
  --bg-alt: #f9f9f9; /* Added --bg-alt for alternative background color */
  --text:#262626;
  --muted:#6b6b6b;
  --primary:#ff6b6b;
  --primary-ink:#fff;
  --card:#ffffff;
  --line:#f0e8e7;
  --radius:14px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", Helvetica, sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
}

img{max-width:100%;display:block;border-radius:12px}
a{color:inherit;text-decoration:none}
.small{font-size:.925rem}
.muted{color:var(--muted)}
.container{max-width:1150px;margin:0 auto;padding:0 20px}

/* ------ Topbar ------ */
.topbar{
  position:sticky;top:0;z-index:50;
  backdrop-filter:saturate(180%) blur(10px);
  background:rgba(255,247,246,.8);
  border-bottom:1px solid var(--line);
}
.topbar .topbar__inner{display:flex;align-items:center;justify-content:space-between;min-height:64px}

.brand{display:flex;gap:10px;align-items:center}
.brand__logo{width:34px;height:34px;border-radius:10px;background:var(--primary);color:var(--primary-ink);display:grid;place-items:center;font-weight:700}
.brand__logo-img {
  height: 85px;  /* Increased from 35px */
  width: 250px;  /* Increased from 180px */
  object-fit: contain;
}
.brand__text{display:flex;flex-direction:column;line-height:1}
.brand__text span{font-size:.85rem;color:var(--muted)}

.nav{display:flex;gap:18px;align-items:center}
.nav__link{opacity:.85}
.nav__toggle{display:none;background:none;border:0;padding:6px 2px;cursor:pointer}
.nav__toggle span{display:block;width:24px;height:2px;background:#222;margin:5px 0;transition:transform .2s}
.nav__toggle.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.nav__toggle.open span:nth-child(2){opacity:0}
.nav__toggle.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* ------ Buttons ------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 50px; /* Changed from 4px to 50px for rounded edges */
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn--sm{padding:0.5rem 1rem;font-size:0.875rem}
.btn--primary {
  background-color: var(--primary);
  color: white;
  border: 2px solid var(--primary);
}

.btn--primary:hover {
  background-color: transparent;
  color: var(--primary);
}
.btn--ghost {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn--ghost:hover {
  background-color: var(--primary);
  color: white;
}

/* ------ Hero ------ */
.hero{padding:48px 0}
.hero__inner{display:grid;grid-template-columns:1.1fr .9fr;gap:40px;align-items:center}
.eyebrow{font-size:40px;line-height:1.05;margin:0 0 16px;font-weight:700;letter-spacing:-.02em}
.ratings{display:flex;gap:10px;align-items:center;margin:12px 0 22px}
.ratings__badge {
  background: #ffe6e6;
  border: 1px solid #ffd0d0;
  padding: 6px 10px;
  border-radius: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}
.ratings__badge .fas {
  color: var(--primary);
  font-size: 0.9em;
}
.hero__ctas{display:flex;gap:12px;margin-top:8px}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}


/* Center align eyebrow and supporting text on tablet + mobile */
@media (max-width: 1024px) {
  .hero__copy {
    text-align: center;
  }

  .eyebrow {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .muted,
  .ratings,
  .hero__ctas {
    justify-content: center;
    text-align: center;
  }
}


/* ------ Sections ------ */
.section{padding:70px 0}
.section--alt{background:#fff2f1}
.section__header{display:flex;flex-direction:column;gap:8px;align-items:center;margin-bottom:26px}
.section__header h2{margin:0;font-size:28px}

/* ------ Services ------ */
.grid{display:grid;gap:18px}
.services{grid-template-columns:repeat(4,1fr)}
.card{background:var(--card);border:1px solid var(--line);border-radius:16px;overflow:hidden;transition:transform .15s, box-shadow .2s}
.card:hover{transform:translateY(-4px);box-shadow:0 12px 30px rgba(0,0,0,.06)}
.card--service img{aspect-ratio:1 / 1;object-fit:cover;width:100%}
.card__body{padding:10px 12px}
.card__body h3{margin:0;font-size:1rem}
.service {
  text-align: center;
}

.service img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.service img:hover {
  transform: scale(1.05);
}

.service h3 {
  margin: 1rem 0;
  color: #333;
}

.service p {
  color: #666;
  line-height: 1.5;
}

/* ------ About ------ */
.about{display:grid;grid-template-columns:1fr 1fr;gap:34px;align-items:center}
.badge{display:inline-block;background:#ffe6e6;border:1px solid #ffd0d0;color:#b03b3b;padding:4px 10px;border-radius:999px;margin-bottom:8px;font-weight:600}
.checks{margin:14px 0 22px;padding-left:18px}
.checks li{margin:6px 0}
.about__media {
  flex: 1;
  margin-right: 2rem;
}

.about__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.about-hero {
  background-color: var(--bg-alt);
  padding: 120px 0 80px;
  text-align: center;
}

.about-hero__content {
  max-width: 800px;
  margin: 0 auto;
}

.about-hero__content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.about-hero__subtitle {
  font-size: 1.25rem;
  color: var(--muted);
}


.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.story-image img {
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

@media (max-width: 992px) {
  .about-hero__content h1 {
    font-size: 3rem;
  }

  .story-grid {
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .about-hero__content h1 {
    font-size: 2.5rem;
  }

  .story-grid {
    grid-template-columns: 1fr;
  }

  .story-stats {
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }
}

/* ------ Gallery ------ */
.masonry {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.masonry__item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.masonry__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.1));
  pointer-events: none;
}

.masonry__item img {
  width: 100%;
  height: 300px; /* Increased height for better visibility of details */
  object-fit: cover;
  transition: transform 0.3s ease;
}

.masonry__item:hover img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .masonry {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}

/* ------ Testimonials ------ */
.testimonials__grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.tcard{background:#fff;border:1px solid var(--line);border-radius:16px;padding:18px}
.tcard__rating{font-weight:700;margin-bottom:8px}
.tcard__rating .fas {
  color: #ff6b6b; /* Replace with your actual brand color */
  margin-right: 2px;
}

/* ------ CTA ------ */
.cta{padding:60px 0;background:#fff}
.cta__inner{display:grid;grid-template-columns:1fr 1fr;gap:24px;align-items:center}
.cta .phone{display:inline-block;margin-top:8px;font-size:26px;font-weight:700;color:var(--primary)}
.cta__map iframe{width:100%;height:280px;border:0;border-radius:14px}


/* ------ Booking ------ */
/* .booking {
  padding: 5rem 0;
  background-color: #f8f9fa;
} */

.booking__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.booking__content {
  padding-right: 2rem;
}

.booking__content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.booking__subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
}

.booking__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  margin-bottom: 1.5rem;
  transition: color 0.3s ease;
}

.booking__phone:hover {
  color: var(--primary-dark);
}

.booking__location {
  display: flex;
  align-items: start;
  gap: 0.75rem;
  color: #666;
}

.booking__location i {
  margin-top: 0.25rem;
  color: var(--primary);
}

.booking__map {
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

.booking__map iframe {
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .booking__inner {
    grid-template-columns: 1fr;
  }
  
  .booking__content {
    padding-right: 0;
    text-align: center;
  }
  
  .booking__location {
    justify-content: center;
  }
  
  .booking__content h2 {
    font-size: 2rem;
  }
  
  .booking__phone {
    font-size: 1.75rem;
  }
}

/* ------ Responsive ------ */
@media (max-width: 980px){
  .hero__inner{grid-template-columns:1fr;gap:26px}
  .services{grid-template-columns:repeat(2,1fr)}
  .about{grid-template-columns:1fr}
  .cta__inner{grid-template-columns:1fr}
  .testimonials__grid{grid-template-columns:1fr 1fr}
}
@media (max-width: 760px){
  .eyebrow{font-size:32px}
  .nav{position:fixed;inset:64px 0 auto 0;background:#fff;padding:16px;border-bottom:1px solid var(--line);display:none;flex-direction:column;gap:12px}
  .nav.open{display:flex}
  .nav__toggle{display:block}
  .services{grid-template-columns:1fr 1fr}
  .masonry{columns:2 160px}
  .testimonials__grid{grid-template-columns:1fr}
  .footer__grid{grid-template-columns:1fr}
  .hero__media img{height:380px}
}
/* Add this at the end of your CSS file */

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px; /* Changed from left: 30px to right: 30px */
  background-color: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  z-index: 100;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  color: white;
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 25px;
    bottom: 20px;
    right: 20px; /* Changed from left: 20px to right: 20px */
  }
}





/* ===== HAMBURGER + MOBILE NAV FORCE FIX ===== */

/* baseline */
.nav { display:flex; align-items:center; gap:2rem; }
.nav__toggle { display:none; }

/* show hamburger + convert nav to dropdown <=1200px */
@media (max-width:1200px){
  .topbar { position:sticky; top:0; z-index:1000; background:#fff; }
  .topbar__inner { position:relative; }

  /* force the hamburger to show */
  .nav__toggle{
    display:flex !important;
    flex-direction:column; justify-content:space-between;
    width:28px; height:20px; padding:0; margin-left:12px;
    background:none; border:0; cursor:pointer; z-index:1100;
  }
  .nav__toggle span{
    width:100%; height:3px; background:#333; border-radius:10px;
    transition:transform .3s ease, opacity .3s ease;
  }
  .nav__toggle.open span:nth-child(1){ transform:rotate(45deg) translateY(8px); }
  .nav__toggle.open span:nth-child(2){ opacity:0; }
  .nav__toggle.open span:nth-child(3){ transform:rotate(-45deg) translateY(-8px); }

  /* collapse nav into a panel */
  .nav{
    position:absolute; right:0; left:0; top:100%;
    background:#fff; flex-direction:column; align-items:flex-start;
    max-height:0; overflow:hidden; opacity:0; pointer-events:none;
    padding:0; box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:max-height .3s ease, opacity .3s ease, padding .2s ease;
  }
  .nav.open{
    max-height:520px; opacity:1; pointer-events:auto;
    padding:14px 20px;
  }

  .nav__link, .btn--sm{
    display:block; width:100%; padding:10px 2px; text-align:left;
  }
  .btn--sm{ text-align:center; margin-top:6px; }
}

/* optional: prevent page scroll when menu is open */
body.nav-open { overflow:hidden; }



/* ===== Floating Call Button ===== */
.call-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background-color: var(--primary, #ff6b6b);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  z-index: 100;
}

.call-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  background-color: #ff4b4b;
}

/* Smaller size on mobile */
@media (max-width: 768px) {
  .call-float {
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
}



.services__cta {
  text-align: center;
  margin-top: 40px;
}


