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

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

:root {
  --black: #000000;
  --white: #ffffff;
  --orange: #ff6000;
  --orange-dark: #cc4d00;
  --orange-light: #ff8133;
  --gray-100: #f7f7f7;
  --gray-200: #eeeeee;
  --gray-400: #999999;
  --gray-600: #555555;
  --gray-800: #222222;
  --font: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --radius: 4px;
  --radius-lg: 8px;
  --shadow: 0 2px 12px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.15);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--black);
  background: var(--white);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--orange); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--orange-dark); }

img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 760px; margin: 0 auto; padding: 0 24px; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
  text-align: center;
  letter-spacing: 0.02em;
}
.btn-primary { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); color: var(--white); }
.btn-outline { background: transparent; color: var(--orange); border-color: var(--orange); }
.btn-outline:hover { background: var(--orange); color: var(--white); }
.btn-dark { background: var(--black); color: var(--white); border-color: var(--black); }
.btn-dark:hover { background: var(--gray-800); color: var(--white); }
.btn-white { background: var(--white); color: var(--black); border-color: var(--white); }
.btn-white:hover { background: var(--gray-100); color: var(--black); }
.btn-sm { padding: 10px 22px; font-size: 14px; }
.btn-lg { padding: 18px 42px; font-size: 17px; }

/* ─── NAV ─── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--black);
  border-bottom: 2px solid var(--orange);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.navbar-logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}
.navbar-logo span { color: var(--orange); }
.navbar-logo:hover { color: var(--white); }

.navbar-nav {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
}
.navbar-nav a {
  color: var(--gray-200);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all 0.2s;
  display: block;
}
.navbar-nav a:hover, .navbar-nav a.active {
  color: var(--orange);
}
.navbar-nav .nav-cta a {
  background: var(--orange);
  color: var(--white);
  padding: 8px 18px;
}
.navbar-nav .nav-cta a:hover { background: var(--orange-dark); color: var(--white); }

.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.navbar-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ─── HERO ─── */
.hero {
  background: var(--black);
  color: var(--white);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 400px; height: 400px;
  background: var(--orange);
  opacity: 0.06;
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 500px; height: 500px;
  background: var(--orange);
  opacity: 0.04;
  border-radius: 50%;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.hero h1 span { color: var(--orange); }
.hero-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-photo-wrap {
  width: 380px;
  height: 460px;
  background: var(--gray-800);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  border: 3px solid rgba(255,96,0,0.3);
}
.hero-photo-wrap::before {
  content: 'EN';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-size: 100px;
  font-weight: 900;
  color: rgba(255,96,0,0.2);
}
.hero-photo-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute;
  bottom: -16px; left: -16px;
  background: var(--orange);
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius-lg);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

/* ─── SECTION COMMONS ─── */
.section { padding: 90px 0; }
.section-alt { background: var(--gray-100); }
.section-dark { background: var(--black); color: var(--white); }
.section-orange { background: var(--orange); color: var(--white); }

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.section-dark .section-label { color: var(--orange); }
.section-orange .section-label { color: rgba(255,255,255,0.8); }

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.section-dark .section-title { color: var(--white); }
.section-orange .section-title { color: var(--white); }

.section-subtitle {
  font-size: 17px;
  color: var(--gray-600);
  max-width: 600px;
  margin-bottom: 52px;
  line-height: 1.7;
}
.section-dark .section-subtitle { color: rgba(255,255,255,0.6); }
.section-orange .section-subtitle { color: rgba(255,255,255,0.85); }

.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ─── STAT BAR ─── */
.stats-bar {
  background: var(--orange);
  padding: 32px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.stat-item {
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,0.3);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: 36px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 14px; color: rgba(255,255,255,0.85); font-weight: 500; }

/* ─── CARDS ─── */
.cards-grid { display: grid; gap: 28px; }
.cards-2 { grid-template-columns: repeat(2, 1fr); }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

.card-body { padding: 28px; }
.card-icon {
  width: 52px; height: 52px;
  background: rgba(255,96,0,0.1);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 18px;
  color: var(--orange);
}
.card-title { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.card-text { font-size: 15px; color: var(--gray-600); line-height: 1.6; }

/* ─── BOOK CARD ─── */
.book-hero {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  align-items: start;
}
.book-cover {
  background: var(--gray-800);
  border-radius: var(--radius-lg);
  aspect-ratio: 2/3;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.book-cover-placeholder {
  text-align: center;
  color: rgba(255,255,255,0.5);
  padding: 30px;
}
.book-cover-placeholder .book-title-text {
  font-size: 20px; font-weight: 800; color: var(--white); margin-bottom: 8px;
}
.book-cover-placeholder .book-author-text { font-size: 14px; color: var(--orange); }
.book-cover img { width: 100%; height: 100%; object-fit: cover; }

.book-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.book-info h2 { font-size: 36px; font-weight: 800; margin-bottom: 12px; letter-spacing: -0.5px; }
.book-info .author { font-size: 16px; color: var(--gray-600); margin-bottom: 20px; }
.book-info .description { font-size: 16px; line-height: 1.75; color: var(--gray-600); margin-bottom: 28px; }
.book-price {
  font-size: 38px; font-weight: 900; color: var(--orange); margin-bottom: 8px;
}
.book-price-note { font-size: 14px; color: var(--gray-400); margin-bottom: 28px; }
.book-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ─── SERVICES ─── */
.service-card {
  padding: 36px 28px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: all 0.2s;
}
.service-card:hover { border-color: var(--orange); box-shadow: var(--shadow); }
.service-number {
  font-size: 48px;
  font-weight: 900;
  color: rgba(255,96,0,0.12);
  line-height: 1;
  margin-bottom: 16px;
}
.service-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.service-card p { font-size: 15px; color: var(--gray-600); }

/* ─── VIDEO GRID ─── */
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.video-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  background: var(--white);
  transition: box-shadow 0.2s;
}
.video-card:hover { box-shadow: var(--shadow-lg); }
.video-thumb {
  background: var(--gray-800);
  aspect-ratio: 16/9;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.video-play {
  width: 56px; height: 56px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
  z-index: 2;
}
.video-play:hover { transform: scale(1.08); background: var(--orange-dark); }
.video-play::after {
  content: '';
  border-left: 20px solid var(--white);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 4px;
}
.video-duration {
  position: absolute; bottom: 10px; right: 10px;
  background: rgba(0,0,0,0.75);
  color: var(--white);
  font-size: 12px; font-weight: 600;
  padding: 3px 8px; border-radius: 3px;
}
.video-info { padding: 16px 20px; }
.video-info h4 { font-size: 15px; font-weight: 600; margin-bottom: 6px; line-height: 1.4; }
.video-info p { font-size: 13px; color: var(--gray-400); }

/* ─── TESTIMONIALS ─── */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: box-shadow 0.2s;
}
.testimonial-card:hover { box-shadow: var(--shadow); }
.testimonial-stars { color: var(--orange); font-size: 18px; margin-bottom: 16px; }
.testimonial-text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--gray-600);
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  background: var(--black);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-weight: 700; font-size: 16px;
  flex-shrink: 0;
}
.testimonial-name { font-size: 15px; font-weight: 700; }
.testimonial-role { font-size: 13px; color: var(--gray-400); }

/* ─── ABOUT PAGE ─── */
.about-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 70px;
  align-items: start;
}
.about-photo {
  background: var(--gray-200);
  border-radius: var(--radius-lg);
  aspect-ratio: 3/4;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  position: sticky;
  top: 90px;
  font-size: 80px;
  font-weight: 900;
  color: rgba(0,0,0,0.1);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-content h2 { font-size: 40px; font-weight: 800; margin-bottom: 8px; }
.about-roles {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px;
}
.role-tag {
  font-size: 13px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  background: rgba(255,96,0,0.1);
  color: var(--orange);
  border: 1px solid rgba(255,96,0,0.2);
}
.about-bio { font-size: 16px; color: var(--gray-600); line-height: 1.8; margin-bottom: 20px; }
.mv-card {
  background: var(--gray-100);
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 24px 28px;
  margin-bottom: 20px;
}
.mv-card h4 { font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); margin-bottom: 8px; }
.mv-card p { font-size: 15px; color: var(--gray-600); }

/* ─── BOOKING ─── */
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 24px;
}
.cal-header { font-size: 12px; font-weight: 600; text-align: center; padding: 8px 0; color: var(--gray-400); }
.cal-day {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.15s;
  border: 1px solid transparent;
}
.cal-day:hover { background: rgba(255,96,0,0.1); border-color: var(--orange); color: var(--orange); }
.cal-day.available { color: var(--black); }
.cal-day.selected { background: var(--orange); color: var(--white); }
.cal-day.unavailable { color: var(--gray-200); cursor: not-allowed; }
.cal-day.unavailable:hover { background: none; border-color: transparent; color: var(--gray-200); }
.cal-day.today { font-weight: 800; border-color: var(--orange); color: var(--orange); }
.time-slots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.time-slot {
  padding: 10px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.15s;
}
.time-slot:hover, .time-slot.selected { background: var(--orange); color: var(--white); border-color: var(--orange); }
.time-slot.booked { background: var(--gray-100); color: var(--gray-400); cursor: not-allowed; }

.booking-summary {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: sticky;
  top: 90px;
}
.booking-summary h3 { font-size: 18px; font-weight: 700; margin-bottom: 20px; }
.summary-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--gray-200); font-size: 14px; }
.summary-row:last-of-type { border-bottom: none; }
.summary-label { color: var(--gray-600); }
.summary-value { font-weight: 600; }
.service-options { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.service-option {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 14px 16px;
  cursor: pointer;
  transition: all 0.15s;
  display: flex; justify-content: space-between; align-items: center;
}
.service-option:hover, .service-option.active { border-color: var(--orange); background: rgba(255,96,0,0.05); }
.service-option .svc-name { font-weight: 600; font-size: 14px; }
.service-option .svc-detail { font-size: 13px; color: var(--gray-400); }
.service-option .svc-price { font-weight: 700; color: var(--orange); font-size: 15px; }

/* ─── BLOG ─── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  background: var(--white);
  transition: box-shadow 0.2s, transform 0.2s;
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.blog-thumb {
  background: var(--gray-800);
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
}
.blog-cat {
  position: absolute; top: 14px; left: 14px;
  background: var(--orange);
  color: var(--white);
  font-size: 11px; font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.blog-body { padding: 24px; }
.blog-meta { font-size: 13px; color: var(--gray-400); margin-bottom: 10px; }
.blog-body h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; line-height: 1.4; }
.blog-body p { font-size: 14px; color: var(--gray-600); line-height: 1.6; margin-bottom: 16px; }
.blog-link { font-size: 14px; font-weight: 600; color: var(--orange); }
.blog-link:hover { color: var(--orange-dark); }

/* ─── CONTACT ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 60px;
  align-items: start;
}
.contact-info-item {
  display: flex; gap: 16px; align-items: flex-start;
  margin-bottom: 28px;
}
.contact-icon {
  width: 48px; height: 48px;
  background: rgba(255,96,0,0.1);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  color: var(--orange);
}
.contact-icon-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-400); margin-bottom: 4px; }
.contact-icon-value { font-size: 15px; font-weight: 600; }
.social-links { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.social-link {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 14px; font-weight: 600;
  color: var(--black);
  transition: all 0.2s;
}
.social-link:hover { background: var(--black); color: var(--white); border-color: var(--black); }
.social-link .si { font-size: 18px; }

/* ─── FORM ─── */
.form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 8px; }
.form-control {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font);
  font-size: 15px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
  color: var(--black);
}
.form-control:focus { border-color: var(--orange); }
textarea.form-control { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ─── NEWSLETTER ─── */
.newsletter { padding: 80px 0; }
.newsletter-inner {
  max-width: 560px; margin: 0 auto; text-align: center;
}
.newsletter h2 { font-size: 36px; font-weight: 800; color: var(--white); margin-bottom: 14px; }
.newsletter p { font-size: 17px; color: rgba(255,255,255,0.75); margin-bottom: 36px; }
.newsletter-form { display: flex; gap: 0; max-width: 480px; margin: 0 auto; }
.newsletter-form input {
  flex: 1;
  padding: 15px 20px;
  font-family: var(--font);
  font-size: 15px;
  border: none;
  border-radius: var(--radius) 0 0 var(--radius);
  outline: none;
}
.newsletter-form button {
  padding: 15px 28px;
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 0 var(--radius) var(--radius) 0;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.newsletter-form button:hover { background: var(--gray-800); }

/* ─── PAGE HERO ─── */
.page-hero {
  background: var(--black);
  padding: 70px 0 50px;
  text-align: center;
}
.page-hero h1 { font-size: 48px; font-weight: 800; color: var(--white); margin-bottom: 14px; }
.page-hero p { font-size: 18px; color: rgba(255,255,255,0.65); max-width: 540px; margin: 0 auto; }
.breadcrumb { display: flex; gap: 8px; align-items: center; justify-content: center; margin-bottom: 24px; }
.breadcrumb a { font-size: 13px; color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { font-size: 13px; color: rgba(255,255,255,0.3); }
.breadcrumb .current { font-size: 13px; color: var(--orange); font-weight: 600; }

/* ─── FOOTER ─── */
.footer { background: var(--black); color: rgba(255,255,255,0.7); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-top: 14px; }
.footer-col h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--white); margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}
.footer-bottom a { color: var(--orange); }
.footer-socials { display: flex; gap: 14px; }
.footer-socials a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  font-weight: 700;
  transition: all 0.2s;
}
.footer-socials a:hover { background: var(--orange); color: var(--white); }

/* ─── ALERTS ─── */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  margin-bottom: 16px;
}
.alert-success { background: #e6f9f0; color: #0a6640; border: 1px solid #b3e6d0; }
.alert-error { background: #fef0f0; color: #cc0000; border: 1px solid #f9b3b3; }

/* ─── SEARCH ─── */
.search-bar { display: flex; gap: 0; max-width: 480px; margin-bottom: 40px; }
.search-bar input {
  flex: 1;
  padding: 13px 18px;
  font-family: var(--font);
  font-size: 15px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius) 0 0 var(--radius);
  outline: none;
}
.search-bar input:focus { border-color: var(--orange); }
.search-bar button {
  padding: 13px 22px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font);
  font-weight: 600;
  border: none;
  border-radius: 0 var(--radius) var(--radius) 0;
  cursor: pointer;
}

/* ─── MISC ─── */
.divider { border: none; border-top: 1px solid var(--gray-200); margin: 48px 0; }
.text-orange { color: var(--orange); }
.bg-orange-soft { background: rgba(255,96,0,0.07); }
.pill {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  background: rgba(255,96,0,0.1);
  color: var(--orange);
  margin-right: 6px; margin-bottom: 6px;
}
.stars { color: var(--orange); font-size: 20px; letter-spacing: 2px; }
.tag-filter { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 36px; }
.tag-btn {
  padding: 8px 18px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  background: var(--white);
  cursor: pointer;
  transition: all 0.2s;
}
.tag-btn:hover, .tag-btn.active { background: var(--orange); color: var(--white); border-color: var(--orange); }
.page-actions { display: flex; gap: 12px; align-items: center; margin-bottom: 48px; flex-wrap: wrap; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-image { display: none; }
  .hero-actions { justify-content: center; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { position: static; aspect-ratio: 1; max-width: 360px; margin: 0 auto; }
  .booking-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .book-hero { grid-template-columns: 1fr; }
  .book-cover { max-width: 280px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .navbar-nav { display: none; }
  .navbar-nav.open { display: flex; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--black); padding: 16px; gap: 4px; border-top: 1px solid rgba(255,255,255,0.08); }
  .navbar-toggle { display: flex; }
  .navbar { position: relative; }
  .hero { padding: 60px 0; }
  .section { padding: 60px 0; }
  .cards-3 { grid-template-columns: 1fr; }
  .cards-2 { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); padding: 16px 0; }
  .stat-item:nth-child(2n) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 14px; }
  .form-row { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { border-radius: var(--radius); }
  .newsletter-form button { border-radius: var(--radius); }
  .time-slots { grid-template-columns: repeat(2, 1fr); }
  .booking-summary { position: static; }
}

/* Print */
@media print {
  .navbar, .footer, .newsletter { display: none; }
}
