@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
  --primary: #e8732a;
  --navy: #1a1a2e;
  --bg: #ffffff;
  --muted: #f3f4f6;
  --muted-fg: #6b7280;
  --border: #e5e7eb;
  --radius: 0.75rem;
}

* { box-sizing: border-box; margin: 0; padding: 0; border: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--navy); overflow-x: hidden; }
h1,h2,h3,h4,h5,h6 { font-family: 'Poppins', sans-serif; }
p { line-height: 1.7; max-width: 65ch; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* UTILITIES */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section-padding { padding: 5rem 0; }
.text-primary { color: var(--primary); }
.text-navy { color: var(--navy); }
.text-muted { color: var(--muted-fg); }
.font-poppins { font-family: 'Poppins', sans-serif; }
.rounded-3xl { border-radius: 1.5rem; }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0,0,0,.1), 0 8px 10px -6px rgba(0,0,0,.1); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -2px rgba(0,0,0,.1); }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.9rem 2rem; border-radius: 9999px; font-size: 1.05rem;
  font-weight: 600; font-family: 'Poppins', sans-serif; cursor: pointer;
  transition: all 0.2s; gap: 0.5rem;
}
.btn-primary { background: var(--primary); color: white; box-shadow: 0 4px 15px rgba(232,115,42,0.35); }
.btn-primary:hover { background: #d4651f; box-shadow: 0 6px 20px rgba(232,115,42,0.45); transform: translateY(-1px); }
.btn-full { width: 100%; }

/* HEADER */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(26,26,46,0.92); backdrop-filter: blur(12px);
  transition: all 0.3s; padding: 1rem 0;
}
header.scrolled { padding: 0.5rem 0; box-shadow: 0 4px 20px rgba(0,0,0,0.2); }
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 0.75rem; }
.logo img { height: 45px; width: auto; border-radius: 6px; }
.logo-text { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.15rem; color: white; letter-spacing: 0.02em; }
.header-phone { color: var(--primary); font-size: 0.9rem; font-weight: 500; margin-left: 1rem; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { color: rgba(255,255,255,0.9); font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-reserve { background: var(--primary); color: white !important; padding: 0.5rem 1.4rem; border-radius: 9999px; font-weight: 600 !important; }
.nav-reserve:hover { background: #d4651f; color: white !important; }
.burger { display: none; background: none; cursor: pointer; padding: 0.4rem; }
.burger span { display: block; width: 24px; height: 2px; background: white; margin: 5px 0; transition: all 0.3s; }
.mobile-nav { display: none; padding: 1rem 0 0.5rem; border-top: 1px solid rgba(255,255,255,0.1); margin-top: 1rem; }
.mobile-nav a { display: block; color: rgba(255,255,255,0.9); padding: 0.75rem 0; font-size: 1rem; font-weight: 500; }
.mobile-nav a:hover { color: var(--primary); }
.mobile-nav .btn-primary { margin-top: 0.75rem; text-align: center; display: block; padding: 0.8rem; }

/* GRADIENT OVERLAYS */
.gradient-overlay { position: absolute; inset: 0; background: linear-gradient(to top, #1a1a2e 0%, rgba(26,26,46,0.5) 50%, transparent 100%); }
.gradient-overlay-dark { position: absolute; inset: 0; background: rgba(26,26,46,0.72); }

/* HERO */
.hero { position: relative; min-height: 100dvh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-content { position: relative; z-index: 10; text-align: center; color: white; padding: 6rem 1.5rem 3rem; max-width: 1100px; margin: 0 auto; }
.hero-content h1 { font-size: clamp(2.5rem, 7vw, 4.5rem); font-weight: 800; line-height: 1.1; margin-bottom: 1.5rem; letter-spacing: -0.02em; }
.hero-content p { font-size: clamp(1rem, 2vw, 1.3rem); color: rgba(255,255,255,0.9); max-width: 700px; margin: 0 auto 2.5rem; }
.hero-subtitle { font-size: clamp(0.9rem, 1.5vw, 1.1rem) !important; opacity: 0.8; margin-top: 0.5rem !important; }
.arrow-down { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.7); font-size: 2rem; animation: bounce 2s infinite; }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(-10px)} }

/* PAGE HERO */
.page-hero { position: relative; height: 60vh; min-height: 400px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-content { position: relative; z-index: 10; text-align: center; color: white; padding: 5rem 1.5rem 3rem; max-width: 900px; }
.page-hero-content h1 { font-size: clamp(2.5rem, 7vw, 4rem); font-weight: 800; margin-bottom: 1rem; }
.page-hero-content p { font-size: 1.2rem; opacity: 0.9; margin: 0 auto; }
.page-hero-sm { height: 50vh; min-height: 350px; }

/* CARDS */
.activity-card {
  background: white; border-radius: 1.5rem; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08); transition: all 0.3s;
  display: flex; flex-direction: column; height: 100%;
}
.activity-card:hover { box-shadow: 0 15px 40px rgba(0,0,0,0.15); transform: translateY(-4px); }
.card-img { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.activity-card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.card-title { font-family: 'Poppins', sans-serif; font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: 0.75rem; }
.card-desc { color: var(--muted-fg); flex: 1; margin-bottom: 1rem; }
.card-meta { background: var(--muted); border-radius: 0.75rem; padding: 1rem; display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.25rem; font-size: 0.9rem; }
.card-meta-row { display: flex; align-items: center; gap: 0.5rem; color: rgba(26,26,46,0.75); }
.card-meta-row svg { color: var(--primary); flex-shrink: 0; }
.card-price-label { font-size: 0.8rem; color: var(--muted-fg); }
.card-price { font-family: 'Poppins', sans-serif; font-size: 2rem; font-weight: 700; color: var(--primary); }
.card-footer { padding: 0 1.75rem 1.75rem; }

/* GRIDS */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-2-lg { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

/* TESTIMONIALS */
.testimonial-card { background: white; border-radius: 1.5rem; padding: 2rem; box-shadow: 0 8px 30px rgba(0,0,0,0.1); }
.stars { display: flex; gap: 0.25rem; margin-bottom: 1.25rem; color: var(--primary); font-size: 1.1rem; }
.testimonial-quote { font-size: 1.05rem; font-weight: 500; line-height: 1.7; color: var(--navy); margin-bottom: 1.25rem; }
.testimonial-author { border-top: 1px solid var(--border); padding-top: 1rem; }
.testimonial-author p { color: var(--navy); font-weight: 700; margin: 0; }
.testimonial-author span { font-size: 0.85rem; color: var(--muted-fg); }

/* CHECK BADGES */
.check-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-bottom: 2.5rem; }
.check-item { display: flex; align-items: center; gap: 0.75rem; background: white; padding: 1rem 1.25rem; border-radius: 0.75rem; box-shadow: 0 1px 6px rgba(0,0,0,0.06); border: 1px solid var(--border); }
.check-icon { color: var(--primary); font-size: 1.4rem; flex-shrink: 0; }
.check-label { font-weight: 600; color: var(--navy); font-size: 0.95rem; }

/* INFO BOXES */
.info-box { background: white; padding: 2rem; border-radius: 1.5rem; box-shadow: 0 2px 15px rgba(0,0,0,0.06); border: 1px solid var(--border); }
.info-box h3 { font-family: 'Poppins', sans-serif; font-size: 1.25rem; font-weight: 700; color: var(--primary); margin-bottom: 0.75rem; }
.info-box p { color: var(--muted-fg); font-size: 1rem; max-width: 100%; }

/* CONTACT CARDS */
.contact-info-card { display: flex; align-items: flex-start; gap: 1.5rem; background: var(--muted); padding: 1.5rem; border-radius: 1rem; }
.contact-icon-wrap { width: 3.5rem; height: 3.5rem; border-radius: 9999px; background: rgba(232,115,42,0.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon-wrap svg { color: var(--primary); width: 1.5rem; height: 1.5rem; }
.contact-info-card h3 { font-weight: 700; color: var(--navy); margin-bottom: 0.25rem; }
.contact-info-card a, .contact-info-card p { color: var(--muted-fg); font-size: 1.05rem; }
.contact-info-card a:hover { color: var(--primary); }

/* FORM */
.form-group { margin-bottom: 1.5rem; }
.form-label { display: block; font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; font-size: 0.95rem; }
.form-input, .form-textarea, .form-select {
  width: 100%; padding: 0.9rem 1.2rem; border: 1.5px solid var(--border);
  border-radius: 0.75rem; font-size: 1rem; font-family: 'Inter', sans-serif;
  color: var(--navy); background: white; transition: border-color 0.2s;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(232,115,42,0.15);
}
.form-textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

/* VALUES CARDS */
.value-card { background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.2); border-radius: 1.5rem; padding: 2.5rem; text-align: center; color: white; }
.value-icon { width: 5rem; height: 5rem; border-radius: 9999px; background: var(--primary); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; box-shadow: 0 4px 20px rgba(232,115,42,0.4); }
.value-icon svg { width: 2.5rem; height: 2.5rem; color: white; }
.value-card h3 { font-family: 'Poppins', sans-serif; font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; }
.value-card p { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin: 0 auto; max-width: 100%; }

/* CERT CARDS */
.cert-card { display: flex; align-items: center; gap: 1rem; background: var(--muted); padding: 1rem 1.25rem; border-radius: 1rem; }
.cert-icon { width: 3rem; height: 3rem; border-radius: 9999px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cert-icon.blue { background: #dbeafe; color: #2563eb; }
.cert-icon.green { background: #dcfce7; color: #16a34a; }
.cert-card h3 { font-weight: 700; color: var(--navy); font-size: 0.95rem; }
.cert-card p { font-size: 0.82rem; color: var(--muted-fg); margin: 0; }

/* STATS */
.stat-item { text-align: center; }
.stat-value { font-family: 'Poppins', sans-serif; font-size: clamp(3rem, 8vw, 5rem); font-weight: 800; color: white; margin-bottom: 0.5rem; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.stat-label { font-size: 1.1rem; color: rgba(255,255,255,0.9); font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }

/* SECTIONS */
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--navy); margin-bottom: 1rem; }
.section-header p { color: var(--muted-fg); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.section-header.white h2 { color: white; }
.section-header.white p { color: rgba(255,255,255,0.8); }
.bg-muted { background: #f9fafb; }
.bg-overlay { position: relative; overflow: hidden; }
.bg-overlay-img { position: absolute; inset: 0; z-index: 0; }
.bg-overlay-img img { width: 100%; height: 100%; object-fit: cover; }
.bg-overlay-content { position: relative; z-index: 10; }
.rounded-top { border-radius: 2rem 2rem 0 0; position: relative; z-index: 20; margin-top: -2.5rem; background: white; }

/* PHOTO */
.photo-portrait { aspect-ratio: 4/5; overflow: hidden; border-radius: 1.5rem; box-shadow: 0 25px 50px rgba(0,0,0,0.15); }
.photo-portrait img { width: 100%; height: 100%; object-fit: cover; }
.photo-landscape { aspect-ratio: 4/3; overflow: hidden; border-radius: 1.5rem; box-shadow: 0 20px 40px rgba(0,0,0,0.12); }
.photo-landscape img { width: 100%; height: 100%; object-fit: cover; }
.photo-square { aspect-ratio: 1; overflow: hidden; border-radius: 1.5rem; box-shadow: 0 20px 40px rgba(0,0,0,0.12); }
.photo-square img { width: 100%; height: 100%; object-fit: cover; }

/* FOOTER */
footer { background: var(--navy); color: white; padding: 3rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem; }
.footer-brand { }
.footer-logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.footer-logo img { height: 40px; border-radius: 5px; }
.footer-logo span { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1rem; }
.footer-desc { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.7; max-width: 100%; }
.footer-col h4 { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1.25rem; color: rgba(255,255,255,0.5); }
.footer-col a { display: block; color: rgba(255,255,255,0.75); font-size: 0.9rem; margin-bottom: 0.6rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--primary); }
.footer-col p { color: rgba(255,255,255,0.75); font-size: 0.9rem; margin: 0 0 0.6rem; max-width: 100%; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.85rem; max-width: 100%; margin: 0; }

/* MAP */
.map-wrap { aspect-ratio: 16/9; border-radius: 1.5rem; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.1); border: 1px solid var(--border); }
.map-wrap iframe { width: 100%; height: 100%; display: block; }

/* FADE IN ANIMATIONS */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-left.visible { opacity: 1; transform: translateX(0); }
.fade-right { opacity: 0; transform: translateX(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-right.visible { opacity: 1; transform: translateX(0); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .grid-3, .grid-2, .grid-2-lg, .form-row { grid-template-columns: 1fr; }
  .check-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .burger { display: block; }
  .mobile-nav.open { display: block; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .header-phone { display: none; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
