@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&family=Syne:wght@400;500;600;700;800&display=swap');

:root {
  --amber: #E8A849;
  --amber-light: #F5C97A;
  --teal: #2EC4B6;
  --teal-dark: #1A9E92;
  --cream: #FFF8F0;
  --warm-white: #FEFCF9;
  --charcoal: #1E1E2A;
  --slate: #2D2D3F;
  --muted: #8B8B9E;
  --glass: rgba(255,248,240,0.08);
  --glass-border: rgba(232,168,73,0.15);
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 8px 32px rgba(0,0,0,0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--charcoal);
  color: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: 'Syne', sans-serif; }
h1 { font-size: clamp(2.2rem, 8vw, 4.5rem); font-weight: 800; line-height: 1.05; }
h2 { font-size: clamp(1.6rem, 5vw, 3rem); font-weight: 700; line-height: 1.15; }
h3 { font-size: clamp(1.1rem, 3vw, 1.4rem); font-weight: 600; }

p { font-family: 'Space Grotesk', sans-serif; line-height: 1.7; color: rgba(255,248,240,0.7); }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { width: 90%; max-width: 1200px; margin: 0 auto; }

/* --- NAVBAR --- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1rem 0;
  background: rgba(30,30,42,0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: all 0.4s ease;
}
.navbar.scrolled { background: rgba(30,30,42,0.95); padding: 0.6rem 0; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 0.6rem; }
.nav-logo img { width: 42px; height: 42px; border-radius: 50%; border: 2px solid var(--amber); }
.nav-logo span { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.2rem; color: var(--amber); }

.nav-links { display: none; }
.nav-links.active {
  display: flex; flex-direction: column;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(30,30,42,0.98);
  backdrop-filter: blur(30px);
  align-items: center; justify-content: center; gap: 2rem;
  z-index: 999;
}
.nav-links a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem; font-weight: 500;
  color: var(--cream); opacity: 0.8;
  transition: all 0.3s;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--amber); opacity: 1; }

.hamburger {
  display: flex; flex-direction: column; gap: 5px;
  cursor: pointer; z-index: 1001; background: none; border: none; padding: 8px;
}
.hamburger span {
  width: 26px; height: 2px;
  background: var(--cream); border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-cta {
  display: none;
  padding: 0.6rem 1.4rem;
  background: linear-gradient(135deg, var(--amber), var(--amber-light));
  color: var(--charcoal); font-weight: 600; font-size: 0.85rem;
  border-radius: 50px; border: none; cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
  transition: all 0.3s;
}
.nav-cta:hover { transform: scale(1.05); box-shadow: 0 4px 20px rgba(232,168,73,0.4); }

/* --- HERO --- */
.hero {
  position: relative; min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center;
  padding: 6rem 0 3rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.3) saturate(0.8);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(30,30,42,0.5) 0%, rgba(30,30,42,0.8) 70%, var(--charcoal) 100%);
}
.hero-content { position: relative; z-index: 2; text-align: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1.2rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem; font-weight: 500;
  color: var(--amber);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease;
}
.hero-badge .dot { width: 6px; height: 6px; background: var(--teal); border-radius: 50%; animation: pulse 2s infinite; }

.hero h1 { margin-bottom: 1rem; animation: fadeUp 0.8s ease 0.2s both; }
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--amber), var(--teal));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  max-width: 500px; margin: 0 auto 2rem;
  animation: fadeUp 0.8s ease 0.4s both;
}

.hero-btns {
  display: flex; flex-direction: column; gap: 0.8rem;
  align-items: center;
  animation: fadeUp 0.8s ease 0.6s both;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 2rem;
  background: linear-gradient(135deg, var(--amber), var(--amber-light));
  color: var(--charcoal); font-weight: 700; font-size: 0.95rem;
  border-radius: 50px; border: none; cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(232,168,73,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(232,168,73,0.5); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 2rem;
  background: transparent;
  border: 1.5px solid rgba(255,248,240,0.2);
  color: var(--cream); font-weight: 600; font-size: 0.95rem;
  border-radius: 50px; cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
  transition: all 0.3s;
}
.btn-outline:hover { border-color: var(--teal); color: var(--teal); }

.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1rem; margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,248,240,0.08);
  animation: fadeUp 0.8s ease 0.8s both;
}
.stat-item h3 { font-size: clamp(1.5rem, 5vw, 2.2rem); color: var(--amber); margin-bottom: 0.2rem; }
.stat-item p { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; }

/* --- SECTION COMMON --- */
section { padding: 4rem 0; }
.section-label {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem; font-weight: 600;
  color: var(--teal);
  text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 0.8rem;
}
.section-label::before { content: ''; width: 20px; height: 2px; background: var(--teal); }
.section-title { margin-bottom: 1rem; }
.section-desc { max-width: 550px; margin-bottom: 2.5rem; }

/* --- ABOUT --- */
.about-grid { display: grid; gap: 2rem; }
.about-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}
.about-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.about-img:hover img { transform: scale(1.05); }
.about-features {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; margin-top: 1.5rem;
}
.feature-card {
  padding: 1.2rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  transition: all 0.3s;
}
.feature-card:hover { border-color: var(--amber); transform: translateY(-2px); }
.feature-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.feature-card h4 { font-family: 'Syne', sans-serif; font-size: 0.9rem; margin-bottom: 0.3rem; }
.feature-card p { font-size: 0.8rem; }

/* --- SERVICES --- */
.services-grid {
  display: grid; gap: 1rem;
}
.service-card {
  position: relative;
  padding: 1.5rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.4s;
  cursor: pointer;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 3px; height: 0;
  background: linear-gradient(180deg, var(--amber), var(--teal));
  transition: height 0.4s;
}
.service-card:hover::before { height: 100%; }
.service-card:hover { border-color: var(--amber); transform: translateY(-3px); box-shadow: var(--shadow); }
.service-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem; font-weight: 800;
  background: linear-gradient(135deg, rgba(232,168,73,0.15), rgba(46,196,182,0.1));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.service-card h3 { margin: 0.5rem 0; }
.service-card p { font-size: 0.85rem; }

/* --- GALLERY --- */
.gallery-scroll {
  display: flex; gap: 1rem;
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.gallery-scroll::-webkit-scrollbar { display: none; }
.gallery-item {
  flex: 0 0 80%; scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(30,30,42,0.9));
}
.gallery-item .overlay p { color: var(--cream); font-size: 0.85rem; font-weight: 500; }

/* --- OWNER --- */
.owner-section {
  background: linear-gradient(135deg, var(--slate), var(--charcoal));
  border-radius: var(--radius);
  padding: 2rem;
  margin: 0 5%;
}
.owner-card { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1.5rem; }
.owner-img {
  width: 120px; height: 120px;
  border-radius: 50%;
  border: 3px solid var(--amber);
  overflow: hidden;
  flex-shrink: 0;
}
.owner-img img { width: 100%; height: 100%; object-fit: cover; }
.owner-info h3 span { color: var(--amber); }
.owner-socials { display: flex; gap: 0.8rem; margin-top: 1rem; justify-content: center; }
.owner-socials a {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  transition: all 0.3s;
  font-size: 1rem;
}
.owner-socials a:hover { border-color: var(--amber); background: rgba(232,168,73,0.1); color: var(--amber); }

/* --- SCHEDULE --- */
.schedule-grid { display: grid; gap: 0.6rem; }
.schedule-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 1.2rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  transition: all 0.3s;
}
.schedule-row:hover { border-color: var(--amber); }
.schedule-row .day { font-weight: 600; font-size: 0.95rem; }
.schedule-row .time {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem; color: var(--amber);
}
.schedule-row.highlight { background: linear-gradient(135deg, rgba(232,168,73,0.1), rgba(46,196,182,0.05)); border-color: var(--amber); }

/* --- TESTIMONIALS --- */
.testimonial-scroll {
  display: flex; gap: 1rem;
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.testimonial-scroll::-webkit-scrollbar { display: none; }
.testimonial-card {
  flex: 0 0 85%; scroll-snap-align: start;
  padding: 1.5rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
}
.testimonial-stars { color: var(--amber); font-size: 0.9rem; margin-bottom: 0.8rem; letter-spacing: 2px; }
.testimonial-card blockquote { font-style: italic; font-size: 0.95rem; margin-bottom: 1rem; color: rgba(255,248,240,0.85); }
.testimonial-author { font-weight: 600; font-size: 0.85rem; color: var(--amber); }

/* --- CTA BANNER --- */
.cta-banner {
  background: linear-gradient(135deg, var(--amber), var(--teal-dark));
  border-radius: var(--radius);
  padding: 2.5rem 1.5rem;
  text-align: center;
  margin: 0 5%;
  position: relative;
  overflow: hidden;
}
.cta-banner h2 { color: var(--charcoal); }
.cta-banner p { color: rgba(30,30,42,0.7); margin: 0.8rem auto 1.5rem; }
.cta-banner .btn-dark {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 2rem;
  background: var(--charcoal);
  color: var(--cream); font-weight: 700; font-size: 0.95rem;
  border-radius: 50px; border: none; cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
  transition: all 0.3s;
}
.cta-banner .btn-dark:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.3); }

/* --- CONTACT --- */
.contact-grid { display: grid; gap: 1.5rem; }
.contact-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.2rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  transition: all 0.3s;
}
.contact-item:hover { border-color: var(--amber); }
.contact-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(232,168,73,0.1);
  border-radius: 12px;
  font-size: 1.2rem;
}
.contact-item h4 { font-family: 'Syne', sans-serif; font-size: 0.9rem; margin-bottom: 0.2rem; }
.contact-item p { font-size: 0.85rem; }
.contact-item a { color: var(--amber); transition: opacity 0.3s; }
.contact-item a:hover { opacity: 0.8; }

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
  margin-top: 1.5rem;
  border: 1px solid var(--glass-border);
}
.map-container iframe { width: 100%; height: 100%; border: 0; filter: saturate(0.8) brightness(0.8); }

/* --- FOOTER --- */
.footer {
  padding: 3rem 0 1.5rem;
  border-top: 1px solid var(--glass-border);
  margin-top: 3rem;
}
.footer-grid { display: grid; gap: 2rem; margin-bottom: 2rem; }
.footer-brand .logo-row { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.8rem; }
.footer-brand .logo-row img { width: 36px; height: 36px; border-radius: 50%; }
.footer-brand .logo-row span { font-family: 'Syne', sans-serif; font-weight: 800; color: var(--amber); font-size: 1.1rem; }
.footer-links h4 { font-family: 'Syne', sans-serif; font-size: 0.9rem; margin-bottom: 0.8rem; color: var(--cream); }
.footer-links a { display: block; font-size: 0.85rem; color: var(--muted); padding: 0.25rem 0; transition: color 0.3s; }
.footer-links a:hover { color: var(--amber); }
.footer-socials { display: flex; gap: 0.6rem; }
.footer-socials a {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--glass-border);
  border-radius: 50%; font-size: 0.9rem;
  transition: all 0.3s;
}
.footer-socials a:hover { border-color: var(--amber); background: rgba(232,168,73,0.1); color: var(--amber); }
.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,248,240,0.05);
  display: flex; flex-direction: column; gap: 0.5rem; align-items: center;
  text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: var(--muted); }

/* --- WHATSAPP FAB --- */
.whatsapp-fab {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 900;
  width: 56px; height: 56px;
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.3s; cursor: pointer;
  animation: bounce 2s infinite;
}
.whatsapp-fab:hover { transform: scale(1.1); }
.whatsapp-fab svg { width: 28px; height: 28px; fill: white; }

/* --- ANIMATIONS --- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.reveal { opacity: 0; transform: translateY(30px); transition: all 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* --- DESKTOP --- */
@media (min-width: 768px) {
  .hamburger { display: none; }
  .nav-links {
    display: flex !important; position: static;
    flex-direction: row; gap: 2rem;
    background: none; backdrop-filter: none;
  }
  .nav-links a { font-size: 0.9rem; }
  .nav-cta { display: block; }

  .hero-btns { flex-direction: row; justify-content: center; }
  .hero-stats { max-width: 500px; margin: 3rem auto 0; }

  section { padding: 6rem 0; }

  .about-grid { grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }

  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

  .gallery-item { flex: 0 0 45%; }

  .owner-section { padding: 3rem; margin: 0 auto; max-width: 1200px; }
  .owner-card { flex-direction: row; text-align: left; gap: 2rem; }
  .owner-socials { justify-content: flex-start; }

  .testimonial-card { flex: 0 0 45%; }

  .cta-banner { padding: 4rem 3rem; margin: 0 auto; max-width: 1200px; }

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

  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item { flex: 0 0 32%; }
  .testimonial-card { flex: 0 0 33%; }
}
