:root {
  --bg: #f7f8fb;
  --card: #ffffff;
  --muted: #515b6b;
  --text: #0b0f19;
  --brand: #23cba4;
  --brand-strong: #17b791;
  --accent: #ffb86b;
  --danger: #e45858;
  --shadow: 0 16px 40px rgba(11, 15, 25, 0.08);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.animate-on-scroll {
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }

* { box-sizing: border-box; }
html { 
  height: 100%; 
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body { height: 100%; }
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif;
  background: radial-gradient(1200px 800px at 80% -10%, rgba(35, 203, 164, 0.08), transparent 60%),
              radial-gradient(1000px 600px at -10% 10%, rgba(255, 184, 107, 0.12), transparent 60%),
              var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* Layout */
main { width: 100%; overflow-x: hidden; }
.container { width: min(1200px, 92%); margin: 0 auto; padding: 0 4%; max-width: 100%; }
header.nav {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: saturate(140%) blur(10px);
  background: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(11,15,25,0.08);
  width: 100%;
  overflow-x: hidden;
  transition: all 0.3s ease;
  animation: slideInRight 0.5s ease-out;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; width: 100%; }
.brand { display: flex; gap: 12px; align-items: center; text-decoration: none; color: var(--text); }
.brand-mark { width: 36px; height: 36px; border-radius: 12px; background: linear-gradient(135deg, var(--brand), var(--brand-strong)); box-shadow: 0 8px 24px rgba(75,225,185,0.35); display: grid; place-items: center; }
.brand-mark svg { width: 22px; height: 22px; }
.brand-name { font-weight: 800; letter-spacing: 0.4px; font-size: 18px; }
.nav-links { display: flex; gap: 18px; }
.nav-links a { 
  color: var(--muted); 
  text-decoration: none; 
  font-weight: 600; 
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand);
  transition: width 0.3s ease;
}
.nav-links a:hover { 
  color: var(--text); 
}
.nav-links a:hover::after {
  width: 100%;
}

/* Mobile nav toggle */
.nav-toggle { 
  display: none; 
  width: 42px; 
  height: 42px; 
  border: none;
  border-radius: 10px; 
  background: #fff; 
  box-shadow: 0 2px 8px rgba(11,15,25,0.1);
  align-items: center; 
  justify-content: center; 
  flex-direction: column;
  gap: 5px; 
  z-index: 120; 
  cursor: pointer;
  padding: 10px 8px;
  position: relative;
}
.nav-toggle span { 
  display: block !important; 
  width: 22px; 
  height: 3.5px; 
  background: var(--text) !important; 
  border-radius: 3px; 
  transition: all 0.3s ease;
  transform-origin: center;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

/* Hero */
.hero { padding: 72px 0 36px; position: relative; overflow: hidden; width: 100%; }
.hero-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 36px; align-items: center; }
.hero h1 { font-size: clamp(28px, 5vw, 64px); line-height: 1.05; margin: 0 0 16px; letter-spacing: -0.02em; word-wrap: break-word; overflow-wrap: break-word; }
.hero .sub { color: var(--muted); font-size: 18px; margin-bottom: 28px; word-wrap: break-word; overflow-wrap: break-word; }
.cta { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  appearance: none; border: 0; cursor: pointer; text-decoration: none;
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  color: #0b0f19; font-weight: 800; padding: 14px 20px; border-radius: 14px; font-size: 15px;
  box-shadow: 0 14px 40px rgba(75,225,185,0.35);
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}
.btn:hover::before {
  width: 300px;
  height: 300px;
}
.btn:hover { 
  transform: translateY(-2px) scale(1.02); 
  box-shadow: 0 18px 50px rgba(75,225,185,0.45);
}
.btn:active { transform: translateY(0) scale(0.98); }
.btn.secondary { 
  background: transparent; 
  color: var(--text); 
  border: 1px solid rgba(11,15,25,0.15); 
  box-shadow: none;
}
.btn.secondary:hover {
  background: rgba(11,15,25,0.05);
  border-color: var(--brand);
  transform: translateY(-2px);
}
.btn.secondary:active { transform: translateY(0) scale(0.98); }
.stats { display: flex; gap: 24px; margin-top: 24px; color: var(--muted); font-weight: 600; flex-wrap: wrap; }
.stats strong { color: var(--text); font-size: 18px; display: block; }
.hero-card { background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.8)); border: 1px solid rgba(11,15,25,0.08); padding: 16px; border-radius: 20px; box-shadow: var(--shadow); width: 100%; }
.hero-media { height: 460px; border-radius: 16px; overflow: hidden; position: relative; width: 100%; }
.hero-media img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  display: block; 
  filter: saturate(110%); 
  max-width: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-media:hover img {
  transform: scale(1.05);
}
.media-badge { position: absolute; bottom: 16px; left: 16px; right: 16px; background: rgba(255,255,255,0.8); backdrop-filter: blur(8px); padding: 8px 12px; border-radius: 999px; border: 1px solid rgba(11,15,25,0.12); font-weight: 700; font-size: 12px; color: var(--brand-strong); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: calc(100% - 32px); }

/* Section */
section { padding: 72px 0; width: 100%; overflow-x: hidden; }
.section-head { display: flex; align-items: end; justify-content: space-between; margin-bottom: 24px; flex-wrap: wrap; gap: 12px; }
.eyebrow { color: var(--brand); font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; font-size: 12px; }
.title { font-size: clamp(24px, 3.6vw, 40px); margin: 6px 0 0; letter-spacing: -0.02em; word-wrap: break-word; overflow-wrap: break-word; }
.muted { color: var(--muted); word-wrap: break-word; overflow-wrap: break-word; }

/* Trust bar */
.trustbar { 
  border-top: 1px solid rgba(11,15,25,0.08); 
  border-bottom: 1px solid rgba(11,15,25,0.08); 
  background: rgba(255,255,255,0.7); 
  animation: fadeIn 0.6s ease-out 0.2s both;
}
.trustbar-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; padding: 14px 0; }
.trust-item { 
  display: flex; 
  align-items: center; 
  gap: 10px; 
  color: var(--muted); 
  font-weight: 700; 
  font-size: 14px;
  transition: transform 0.3s ease, color 0.3s ease;
}
.trust-item:hover {
  transform: translateX(4px);
  color: var(--text);
}
.trust-item .dot { 
  width: 8px; 
  height: 8px; 
  border-radius: 999px; 
  background: var(--brand); 
  box-shadow: 0 0 0 3px rgba(35,203,164,0.15);
  animation: pulse 2s ease-in-out infinite;
}

/* Services */
.grid { display: grid; gap: 18px; }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.9));
  border: 1px solid rgba(11,15,25,0.08);
  border-radius: 18px; padding: 20px; box-shadow: var(--shadow);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(0);
}
.card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 60px rgba(11, 15, 25, 0.12);
  border-color: rgba(35,203,164,0.3);
}
.card h3 { margin: 8px 0 8px; letter-spacing: -0.01em; }
.chip { display: inline-block; padding: 6px 10px; font-size: 12px; border-radius: 999px; border: 1px solid rgba(11,15,25,0.12); color: var(--accent); font-weight: 700; }
.price { margin-top: 10px; color: var(--brand); font-weight: 800; }

/* Gallery */
.masonry { columns: 3; column-gap: 16px; width: 100%; }
.masonry img { 
  width: 100%; 
  max-width: 100%; 
  height: auto; 
  border-radius: 14px; 
  margin: 0 0 16px; 
  display: block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), filter 0.5s ease;
  filter: brightness(1);
}
.masonry img:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* Testimonials */
.quotes { display: grid; grid-template-columns: 1.5fr 1fr; gap: 18px; }
.quote {
  padding: 20px; border-radius: 16px; border: 1px solid rgba(11,15,25,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.88));
}
.quote strong { color: var(--text); }

/* CTA */
.cta-banner { display: grid; grid-template-columns: 1fr auto; gap: 18px; align-items: center; padding: 24px; border-radius: 18px; border: 1px solid rgba(11,15,25,0.08); background: linear-gradient(135deg, rgba(35,203,164,0.12), rgba(255,184,107,0.12)); width: 100%; }
.cta-banner > div:first-child { min-width: 0; }
.cta-banner > div:last-child { flex-shrink: 0; }

/* Footer */
footer { padding: 36px 0 80px; color: var(--muted); border-top: 1px solid rgba(11,15,25,0.08); background: linear-gradient(180deg, rgba(255,255,255,0.6), transparent); width: 100%; overflow-x: hidden; }
footer .foot { display: flex; justify-content: flex-start; align-items: flex-start; gap: 18px; flex-wrap: wrap; }
footer .foot > div { flex: 1; min-width: 0; }
footer .foot > div p,
footer .foot > div div { word-wrap: break-word; overflow-wrap: break-word; max-width: 100%; }

/* Floating actions */
.float-actions { 
  position: fixed; 
  right: 18px; 
  bottom: 18px; 
  display: grid; 
  gap: 12px; 
  z-index: 70;
  animation: fadeIn 0.5s ease-out 0.3s both;
}
.float-btn { 
  width: 54px; 
  height: 54px; 
  border-radius: 999px; 
  display: grid; 
  place-items: center; 
  color: #0b0f19; 
  background: #25d366; 
  box-shadow: 0 12px 30px rgba(11,15,25,0.12); 
  text-decoration: none; 
  border: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: float 3s ease-in-out infinite;
}
.float-btn:nth-child(2) {
  animation-delay: 0.5s;
}
.float-btn.call { background: var(--brand-strong); }
.float-btn:hover { 
  transform: translateY(-4px) scale(1.1); 
  box-shadow: 0 16px 40px rgba(11,15,25,0.2);
}
.float-btn:active { transform: translateY(-2px) scale(1.05); }

/* Responsive */
@media (max-width: 960px) {
  .container { padding: 0 4%; }
  .hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .grid.cols-3 { grid-template-columns: 1fr 1fr; }
  .quotes { grid-template-columns: 1fr; }
  .masonry { columns: 2; }
  .nav-toggle { display: flex !important; }
  .nav-links { position: fixed; top: 64px; right: 4%; left: 4%; display: none; flex-direction: column; gap: 12px; background: #ffffff; border: 1px solid rgba(11,15,25,0.12); border-radius: 12px; padding: 12px; box-shadow: var(--shadow); z-index: 110; }
  .nav-links.open { display: flex; }
  .nav-links a { color: var(--text); padding: 8px 10px; border-radius: 8px; }
  .nav-links a:hover { background: rgba(11,15,25,0.04); }
  .trustbar-inner { grid-template-columns: 1fr 1fr; row-gap: 8px; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .cta-banner { grid-template-columns: 1fr; gap: 16px; }
  .cta-banner > div:last-child { width: 100%; display: flex; flex-direction: column; gap: 10px; }
  .cta-banner .btn { width: 100%; }
}
@media (max-width: 640px) {
  .container { padding: 0 4%; }
  .grid.cols-3 { grid-template-columns: 1fr; }
  .masonry { columns: 1; }
  section { padding: 48px 0; }
  .hero { padding: 48px 0 24px; }
  .hero h1 { font-size: clamp(24px, 6vw, 36px); }
  .hero .sub { font-size: 16px; line-height: 1.5; }
  .hero-media { height: 280px; }
  .cta { flex-direction: column; gap: 10px; }
  .btn, .btn.secondary { width: 100%; text-align: center; padding: 14px 16px; font-size: 14px; }
  .stats { flex-direction: column; gap: 12px; }
  .stats > div { text-align: center; }
  .trustbar-inner { grid-template-columns: 1fr; gap: 8px; }
  .trust-item { font-size: 12px; }
  .section-head { gap: 8px; }
  .title { font-size: clamp(20px, 5vw, 28px); }
  .card { padding: 16px; }
  .cta-banner { padding: 20px 16px; }
  .cta-banner h3 { font-size: 18px; }
  footer { padding: 36px 0 100px; }
  footer .foot { flex-direction: column; align-items: flex-start; gap: 16px; }
  footer .foot > div { width: 100%; }
  .float-actions { right: 12px; bottom: 86px; }
  .float-btn { width: 48px; height: 48px; }
  .brand-name { font-size: 16px; }
}

/* Mobile booking bar */
.mobile-book { position: fixed; left: 0; right: 0; bottom: 0; z-index: 95; background: rgba(255,255,255,0.98); border-top: 1px solid rgba(11,15,25,0.1); padding: 10px 12px; display: none; }
.mobile-book .inner { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
.mobile-book a { text-decoration: none; font-weight: 800; font-size: 14px; padding: 12px 10px; border-radius: 12px; text-align: center; border: 1px solid rgba(11,15,25,0.1); }
.mobile-book a.primary { background: linear-gradient(135deg, var(--brand), var(--brand-strong)); color: #0b0f19; border: 0; }
@media (max-width: 640px) {
  .mobile-book { display: block; }
  .float-actions { bottom: 86px; }
}


