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

:root {
  --primary: #0EA5E9;
  --primary-light: #38BDF8;
  --primary-dark: #0284C7;
  --primary-deeper: #0369A1;
  --secondary: #10B981;
  --secondary-light: #34D399;
  --accent: #F59E0B;
  --accent-light: #FBBF24;
  --danger: #EF4444;
  --bg-main: #F0F9FF;
  --bg-white: #FFFFFF;
  --bg-card: rgba(255,255,255,0.85);
  --text-dark: #0F172A;
  --text-main: #1E293B;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --border-light: #E2E8F0;
  --border-color: #E2E8F0;
  --border-card: rgba(255,255,255,0.6);
  --glass-bg: rgba(255,255,255,0.7);
  --glass-blur: blur(16px);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.12);
  --shadow-primary: 0 4px 20px rgba(14,165,233,0.3);
  --shadow-secondary: 0 4px 20px rgba(16,185,129,0.3);
  --gradient-primary: linear-gradient(135deg, #0EA5E9 0%, #10B981 100%);
  --gradient-hero: linear-gradient(135deg, #0369A1 0%, #0EA5E9 50%, #10B981 100%);
  --gradient-card: linear-gradient(145deg, rgba(255,255,255,0.9) 0%, rgba(240,249,255,0.9) 100%);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 50px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--text-main);
  background: var(--bg-main);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; outline: none; font-family: var(--font-body); }
input, select, textarea { font-family: var(--font-body); outline: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.75rem 1.75rem; border-radius: var(--radius-full); font-weight: 600;
  font-size: 0.95rem; transition: var(--transition); border: none; cursor: pointer;
  text-decoration: none; position: relative; overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; top: 50%; left: 50%; width: 0; height: 0;
  background: rgba(255,255,255,0.2); border-radius: 50%; transform: translate(-50%,-50%);
  transition: width 0.6s, height 0.6s;
}
.btn:active::after { width: 300px; height: 300px; }

.btn-primary {
  background: var(--gradient-primary); color: #fff;
  box-shadow: var(--shadow-primary);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(14,165,233,0.4); }

.btn-secondary {
  background: var(--bg-white); color: var(--primary);
  border: 2px solid var(--primary); box-shadow: var(--shadow-sm);
}
.btn-secondary:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }

.btn-accent {
  background: linear-gradient(135deg, var(--accent) 0%, #F97316 100%); color: #fff;
  box-shadow: 0 4px 20px rgba(245,158,11,0.3);
}
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(245,158,11,0.4); }

.btn-large { padding: 1rem 2.5rem; font-size: 1.05rem; }
.btn-small { padding: 0.5rem 1.25rem; font-size: 0.85rem; }
.btn-full { width: 100%; }
.btn-icon { width: 44px; height: 44px; padding: 0; border-radius: 50%; }

/* Glass Card */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.glass-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* Section */
.section { padding: 5rem 0; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-title {
  font-size: 2.25rem; margin-bottom: 0.75rem;
  background: var(--gradient-primary); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.section-subtitle { font-size: 1.1rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; }

/* Badge */
.badge {
  display: inline-flex; align-items: center; gap: 0.25rem; padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full); font-size: 0.75rem; font-weight: 600;
}
.badge-primary { background: rgba(14,165,233,0.1); color: var(--primary); }
.badge-secondary { background: rgba(16,185,129,0.1); color: var(--secondary); }
.badge-accent { background: rgba(245,158,11,0.1); color: var(--accent); }

/* Star Rating */
.stars { display: inline-flex; gap: 2px; color: var(--accent); }
.stars .material-icons-outlined { font-size: 18px; }
.stars .filled { color: var(--accent); }
.stars .empty { color: #E2E8F0; }

/* Input */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; margin-bottom: 0.4rem; font-weight: 600; font-size: 0.9rem; color: var(--text-dark);
}
.form-input {
  width: 100%; padding: 0.75rem 1rem; border: 2px solid var(--border-light);
  border-radius: var(--radius-md); font-size: 0.95rem; transition: var(--transition);
  background: var(--bg-white);
}
.form-input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(14,165,233,0.15); }

/* Toast / Notification */
.toast {
  position: fixed; bottom: 2rem; right: 2rem; padding: 1rem 1.5rem;
  border-radius: var(--radius-md); color: #fff; font-weight: 500; z-index: 10000;
  animation: slideInRight 0.4s ease; box-shadow: var(--shadow-lg);
}
.toast-success { background: var(--secondary); }
.toast-error { background: var(--danger); }
.toast-info { background: var(--primary); }

/* Overlay Modal */
.modal-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(15,23,42,0.6); backdrop-filter: blur(4px);
  z-index: 9999; display: none; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.modal-overlay.active { display: flex; opacity: 1; }
.modal-box {
  background: var(--bg-white); border-radius: var(--radius-xl); padding: 2rem;
  max-width: 520px; width: 90%; max-height: 90vh; overflow-y: auto;
  box-shadow: var(--shadow-xl); animation: scaleIn 0.3s ease;
}
.modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.modal-header h3 { font-size: 1.4rem; }
.modal-close {
  width: 36px; height: 36px; border-radius: 50%; background: var(--bg-main);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: var(--transition); border: none;
}
.modal-close:hover { background: var(--danger); color: #fff; }

/* Skeleton Loading */
.skeleton {
  background: linear-gradient(90deg, #E2E8F0 25%, #F1F5F9 50%, #E2E8F0 75%);
  background-size: 200% 100%; animation: shimmer 1.5s infinite; border-radius: var(--radius-md);
}

/* Scroll to top */
.scroll-top {
  position: fixed; bottom: 2rem; right: 2rem; width: 48px; height: 48px;
  border-radius: 50%; background: var(--gradient-primary); color: #fff;
  display: none; align-items: center; justify-content: center; cursor: pointer;
  box-shadow: var(--shadow-primary); z-index: 999; transition: var(--transition); border: none;
}
.scroll-top.visible { display: flex; }
.scroll-top:hover { transform: translateY(-3px) scale(1.05); }

/* Animations */
@keyframes fadeInUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes scaleIn { from { opacity:0; transform:scale(0.9); } to { opacity:1; transform:scale(1); } }
@keyframes slideInRight { from { opacity:0; transform:translateX(100px); } to { opacity:1; transform:translateX(0); } }
@keyframes shimmer { 0% { background-position:200% 0; } 100% { background-position:-200% 0; } }
@keyframes pulse { 0%,100% { transform:scale(1); } 50% { transform:scale(1.05); } }
@keyframes float { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-10px); } }
@keyframes drift { 0% { transform:translate(0,0); } 100% { transform:translate(30px,-30px); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes countUp { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:translateY(0); } }

.animate-fade-in { animation: fadeInUp 0.8s ease forwards; }
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ============ NAVBAR ============ */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226,232,240,0.6);
  padding: 0.75rem 0; transition: var(--transition);
}
.navbar.scrolled { padding: 0.5rem 0; box-shadow: var(--shadow-md); }
.nav-content { display: flex; justify-content: space-between; align-items: center; }
.nav-logo {
  display: flex; align-items: center; gap: 0.5rem; font-family: var(--font-heading);
  font-size: 1.6rem; font-weight: 800;
  background: var(--gradient-primary); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.nav-logo .material-icons-outlined { color: var(--primary); -webkit-text-fill-color: initial; font-size: 28px; }
.nav-menu { display: flex; list-style: none; gap: 2rem; align-items: center; }
.nav-link {
  color: var(--text-main); font-weight: 500; font-size: 0.95rem;
  position: relative; padding: 0.25rem 0;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px;
  background: var(--gradient-primary); transition: width 0.3s;
}
.nav-link:hover { color: var(--primary); }
.nav-link:hover::after { width: 100%; }

/* Mobile hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 5px; background: none; border: none;
}
.nav-hamburger span {
  width: 24px; height: 2.5px; background: var(--text-dark);
  border-radius: 2px; transition: var(--transition);
}
.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============ FOOTER ============ */
.footer {
  background: linear-gradient(180deg, #0F172A 0%, #1E293B 100%);
  color: #CBD5E1; padding: 4rem 0 1.5rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 3rem;
}
.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-brand p { opacity: 0.7; font-size: 0.9rem; max-width: 280px; line-height: 1.7; }
.footer-section h4 { color: #fff; font-size: 1rem; margin-bottom: 1rem; font-family: var(--font-heading); }
.footer-section ul { list-style: none; }
.footer-section li { margin-bottom: 0.6rem; }
.footer-section a { color: #94A3B8; font-size: 0.9rem; }
.footer-section a:hover { color: var(--primary-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; color: #64748B;
}
.footer-social { display: flex; gap: 1rem; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center; color: #94A3B8; font-size: 18px;
}
.footer-social a:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .section-title { font-size: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .container { padding: 0 1rem; }
  .section { padding: 3rem 0; }
  .section-title { font-size: 1.75rem; }
  .section-subtitle { font-size: 1rem; }

  /* Mobile Nav */
  .nav-hamburger { display: flex; }
  .nav-menu {
    position: fixed; top: 60px; left: 0; width: 100%; height: calc(100vh - 60px);
    background: rgba(255,255,255,0.98); backdrop-filter: blur(20px);
    flex-direction: column; justify-content: flex-start; align-items: center;
    padding-top: 2rem; gap: 1.5rem;
    transform: translateX(100%); transition: transform 0.35s ease;
  }
  .nav-menu.active { transform: translateX(0); }
  .nav-link { font-size: 1.1rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }

  .modal-box { padding: 1.5rem; width: 95%; }
  .btn-large { padding: 0.875rem 2rem; font-size: 1rem; }
}

@media (max-width: 480px) {
  .section-title { font-size: 1.5rem; }
  .btn { padding: 0.65rem 1.5rem; font-size: 0.9rem; }
  .btn-large { padding: 0.75rem 1.75rem; }
}

/* ============ PAGE TOP SPACE (for fixed navbar) ============ */
.page-top-space { height: 80px; }

/* ============ HIGHLIGHT TEXT ============ */
.highlight {
  background: var(--gradient-primary); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}

/* ============ PAGE HEADER ============ */
.page-header {
  text-align: center; padding: 3rem 0 2rem;
  background: linear-gradient(135deg, rgba(14,165,233,0.05) 0%, rgba(16,185,129,0.05) 100%);
}
.page-header h1 { font-size: 2.5rem; margin-bottom: 0.5rem; }
.page-header p { color: var(--text-muted); font-size: 1.1rem; }

/* ============ WHATSAPP FLOATING BUTTON ============ */
.wa-float {
  position: fixed; bottom: 2rem; left: 2rem; width: 60px; height: 60px;
  border-radius: 50%; background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4); z-index: 998;
  transition: var(--transition); cursor: pointer; border: none;
  animation: waFloat 3s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.5); }
.wa-float svg { width: 32px; height: 32px; }
@keyframes waFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ============ TESTIMONIALS ============ */
.testimonials-section { background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%); color: #fff; }
.testimonials-section .section-title { -webkit-text-fill-color: #fff; background: none; }
.testimonials-section .section-subtitle { color: #94A3B8; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
.testimonial-card {
  background: rgba(255,255,255,0.06); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg);
  padding: 2rem; transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.1); }
.testimonial-stars { color: var(--accent); margin-bottom: 1rem; }
.testimonial-text { color: #CBD5E1; font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-avatar {
  width: 48px; height: 48px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--primary);
}
.testimonial-author-info h4 { color: #fff; font-size: 0.95rem; margin-bottom: 2px; }
.testimonial-author-info p { color: #64748B; font-size: 0.8rem; }

/* ============ MY BOOKINGS PAGE ============ */
.bookings-list { display: flex; flex-direction: column; gap: 1.5rem; }
.booking-card {
  background: var(--bg-white); border-radius: var(--radius-lg);
  padding: 1.75rem; box-shadow: var(--shadow-md); border: 1px solid var(--border-light);
  transition: var(--transition); display: grid;
  grid-template-columns: auto 1fr auto; gap: 1.5rem; align-items: center;
}
.booking-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.booking-icon {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  background: rgba(14,165,233,0.1); display: flex; align-items: center; justify-content: center;
}
.booking-icon .material-icons-outlined { font-size: 28px; color: var(--primary); }
.booking-details h4 { margin-bottom: 0.4rem; font-size: 1.05rem; }
.booking-details p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 0.2rem; }
.booking-details .booking-meta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 0.5rem; }
.booking-details .booking-meta span {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 0.82rem; color: var(--text-light);
}
.booking-details .booking-meta .material-icons-outlined { font-size: 15px; }
.booking-status {
  padding: 0.4rem 1rem; border-radius: var(--radius-full);
  font-size: 0.8rem; font-weight: 600; white-space: nowrap;
}
.booking-status.confirmed { background: rgba(16,185,129,0.1); color: var(--secondary); }
.booking-status.pending { background: rgba(245,158,11,0.1); color: var(--accent); }
.no-bookings {
  text-align: center; padding: 4rem 2rem;
  background: var(--bg-white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.no-bookings .material-icons-outlined { font-size: 72px; color: var(--text-light); margin-bottom: 1rem; }
.no-bookings h3 { margin-bottom: 0.5rem; }
.no-bookings p { color: var(--text-muted); margin-bottom: 1.5rem; }

@media (max-width: 768px) {
  .booking-card { grid-template-columns: 1fr; text-align: center; }
  .booking-icon { margin: 0 auto; }
  .booking-details .booking-meta { justify-content: center; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .page-header h1 { font-size: 2rem; }
}
