* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", Arial, sans-serif;
}

/* ── Theme Variables ── */
:root {
  --bg:           #fff9ff;
  --header-bg:    #f2eafa;
  --nav-bg:       #f2eafa;
  --nav-link:     #30133f;
  --text:         #221126;
  --heading:      #4b1e6d;
  --muted:        #555;
  --sub:          #7b5a8a;
  --section-alt:  #f7edfb;
  --card-bg:      #ffffff;
  --input-border: #ddd;
  --input-bg:     #ffffff;
  --form-bg:      #ffffff;
  --wine:         #7b1e3a;
}

html.dark {
  --bg:           #0d0618;
  --header-bg:    #160a28;
  --nav-bg:       #200c3a;
  --nav-link:     #e0c8f5;
  --text:         #e8d5f5;
  --heading:      #c8a0e8;
  --muted:        #a88abf;
  --sub:          #c4a0d4;
  --section-alt:  #120820;
  --card-bg:      #1e0d36;
  --input-border: #3a1f5c;
  --input-bg:     #12062a;
  --form-bg:      #1a0a2e;
  --wine:         #e8789a;
}

html {
  overflow-x: hidden;
}

body {
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}

a, button, .menu-btn, .theme-toggle {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.call-btn:active,
.wa-btn:active,
.insta-btn:active,
.call-card-btn:active,
.footer-social-btn:active,
.nav-btn:active,
.btn:active {
  transform: scale(0.94);
  opacity: 0.9;
}

/* ── Header ── */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 10px 4% 10px 2%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--header-bg);
  z-index: 999;
  box-shadow: 0 6px 24px rgba(75,30,109,0.1);
  transition: background-color 0.3s ease;
}

html.dark .header {
  box-shadow: 0 6px 24px rgba(0,0,0,0.45);
}

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.logo-img {
  height: 120px;
  width: auto;
  display: block;
  mix-blend-mode: multiply;
  transition: 0.3s;
}

html.dark .logo-img {
  mix-blend-mode: normal;
  border-radius: 10px;
}

.logo-text {
  font-size: 26px;
  font-weight: 900;
  background: linear-gradient(135deg, #4b1e6d 0%, #7b1e3a 30%, #d4af37 60%, #f5e6a3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.5px;
}

html.dark .logo-text {
  background: linear-gradient(135deg, #c4a0e0 0%, #e0668a 30%, #d4af37 60%, #f5e6a3 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

nav a {
  text-decoration: none;
  color: var(--nav-link);
  margin: 0 14px;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.25s;
}

/* ── Header Right (actions group) ── */
.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ── Theme Toggle Button ── */
.theme-toggle {
  background: transparent;
  border: 2px solid rgba(75,30,109,0.22);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  min-width: 40px;
  cursor: pointer;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-shadow: none;
  color: var(--nav-link);
  flex-shrink: 0;
  transition: 0.3s;
  line-height: 1;
}

.theme-toggle:hover {
  background: rgba(75,30,109,0.08);
  transform: scale(1.1);
  border-color: #4b1e6d;
}

html.dark .theme-toggle {
  border-color: rgba(212,175,55,0.35);
  color: #d4af37;
}

html.dark .theme-toggle:hover {
  background: rgba(212,175,55,0.1);
  border-color: #d4af37;
  transform: scale(1.1);
}

.dark-icon { display: none; }
html.dark .light-icon { display: none; }
html.dark .dark-icon { display: inline; }

/* ── Button Glow Animation ── */
@keyframes btn-glow {
  0%, 100% {
    box-shadow: 0 8px 24px rgba(123,30,58,0.35), 0 0 10px rgba(212,175,55,0.1);
  }
  50% {
    box-shadow: 0 10px 32px rgba(123,30,58,0.65), 0 0 26px rgba(212,175,55,0.38);
  }
}

.nav-btn,
.btn,
button {
  background: linear-gradient(135deg, #4b1e6d, #7b1e3a);
  color: white;
  padding: 13px 24px;
  border-radius: 40px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(123,30,58,0.3);
  font-size: 15px;
}

.nav-btn,
.btn:not(.outline),
form button {
  animation: btn-glow 2.8s ease-in-out infinite;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.nav-btn:hover,
.btn:not(.outline):hover,
form button:hover {
  filter: brightness(1.12);
  transform: translateY(-2px);
  animation-play-state: paused;
  box-shadow: 0 14px 40px rgba(123,30,58,0.7), 0 0 40px rgba(212,175,55,0.5);
}

@media (prefers-reduced-motion: reduce) {
  .nav-btn, .btn:not(.outline), form button { animation: none; }
}

.outline {
  background: transparent;
  border: 2px solid #d4af37;
}

.menu-btn {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--nav-link);
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  padding: 160px 8% 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: url('images/hero.png') center / cover no-repeat;
  color: white;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 75%, rgba(212,140,30,0.22) 0%, transparent 42%),
    radial-gradient(ellipse at 45% 55%, rgba(140,60,180,0.12) 0%, transparent 38%),
    radial-gradient(ellipse at 50% 0%, rgba(30,5,55,0.55) 0%, transparent 60%),
    linear-gradient(108deg,
      rgba(10,3,20,0.88) 0%,
      rgba(10,3,20,0.78) 28%,
      rgba(10,3,20,0.48) 52%,
      rgba(10,3,20,0.18) 78%,
      rgba(10,3,20,0.08) 100%
    );
  z-index: 1;
}

.hero > * { position: relative; z-index: 2; }

.tag {
  color: #d4af37;
  font-weight: 700;
  margin-bottom: 14px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.center { text-align: center; }

.hero-content { max-width: 600px; }

.hero h1 {
  font-size: 64px;
  line-height: 1.08;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.hero h1 span {
  background: linear-gradient(135deg, #d4af37, #f5e6a3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 17px;
  line-height: 1.85;
  max-width: 580px;
  margin-bottom: 32px;
  opacity: 0.88;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── Services ── */
.section {
  padding: 90px 8%;
}

.section h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 16px;
  color: var(--heading);
  letter-spacing: -0.5px;
}

.services-sub {
  text-align: center;
  color: var(--sub);
  font-size: 15px;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  background: var(--card-bg);
  padding: 30px 26px;
  border-radius: 26px;
  box-shadow: 0 8px 32px rgba(75,30,109,0.08);
  border-top: 3px solid transparent;
  background-clip: padding-box;
  position: relative;
  transition: 0.35s;
  display: flex;
  flex-direction: column;
}

html.dark .service-card {
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 26px;
  padding: 3px 0 0 0;
  background: linear-gradient(135deg, #7b1e3a, #d4af37);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 55px rgba(123,30,58,0.18);
}

.service-icon {
  font-size: 40px;
  margin-bottom: 14px;
}

.service-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card h3 {
  color: var(--wine);
  font-size: 18px;
  margin-bottom: 8px;
}

.service-card p {
  line-height: 1.7;
  font-size: 14px;
  color: var(--muted);
}

/* ── About ── */
.about {
  padding: 90px 8%;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 35px;
  background: var(--section-alt);
  transition: background-color 0.3s ease;
}

.about-card {
  background: var(--card-bg);
  padding: 42px;
  border-radius: 32px;
  box-shadow: 0 15px 50px rgba(75,30,109,0.12);
  border-left: 4px solid #d4af37;
  transition: background-color 0.3s ease;
}

html.dark .about-card {
  box-shadow: 0 15px 50px rgba(0,0,0,0.45);
}

.about-card h2 {
  font-size: 38px;
  color: var(--heading);
  margin-bottom: 16px;
  line-height: 1.2;
}

.about-card > p {
  line-height: 1.8;
  font-size: 15px;
  color: var(--muted);
}

.points { margin-top: 22px; }

.points p {
  margin-bottom: 9px;
  font-weight: 700;
  font-size: 14px;
}

.about-image {
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  min-height: 420px;
  box-shadow: 0 22px 55px rgba(75,30,109,0.22);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.about-image-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 26px 30px;
  background: linear-gradient(to top, rgba(34,17,38,0.9), transparent);
  color: white;
}

.about-image-caption h3 {
  font-size: 26px;
  color: #d4af37;
  margin-bottom: 3px;
}

.about-image-caption p {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
}

/* ── Why ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.why-grid div {
  background: linear-gradient(135deg, #4b1e6d, #7b1e3a);
  color: white;
  padding: 32px;
  border-radius: 26px;
}

.why-grid h3 {
  color: #d4af37;
  font-size: 36px;
  margin-bottom: 8px;
}

.why-title {
  font-size: 17px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
  line-height: 1.3;
}

.why-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}

/* ── FAQ ── */
.faq-list {
  max-width: 820px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--input-border);
  border-left: 4px solid #d4af37;
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: 0 8px 32px rgba(75,30,109,0.06);
  transition: 0.3s;
}

html.dark .faq-item {
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  color: var(--heading);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 24px;
  color: #d4af37;
  font-weight: 400;
  transition: transform 0.25s;
  line-height: 1;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item p {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
}

@media (max-width: 768px) {
  .faq-list { margin-top: 16px; gap: 10px; }
  .faq-item { padding: 13px 16px; border-radius: 13px; }
  .faq-item summary { font-size: 13px; }
  .faq-item p { font-size: 12px; line-height: 1.6; }
}

/* ── Booking ── */
.booking {
  padding: 90px 8%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  align-items: center;
  background: linear-gradient(135deg, #3b0f55, #7b1e3a);
  color: white;
}

.booking h2 {
  font-size: 40px;
  margin-bottom: 16px;
  line-height: 1.2;
}

.booking > div > p {
  line-height: 1.8;
  font-size: 15px;
  opacity: 0.9;
}

form {
  background: var(--form-bg);
  padding: 32px;
  border-radius: 28px;
  box-shadow: 0 20px 55px rgba(0,0,0,0.22);
  transition: background-color 0.3s ease;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 13px;
  border-radius: 14px;
  border: 1px solid var(--input-border);
  background: var(--input-bg);
  color: var(--text);
  outline: none;
  font-size: 14px;
  font-family: inherit;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

textarea { min-height: 120px; resize: vertical; }

button { width: 100%; font-size: 15px; padding: 14px; }

#formMsg {
  color: #2e7d32;
  font-weight: 700;
  margin-top: 12px;
  font-size: 14px;
}

html.dark #formMsg { color: #5fde8a; }

html.dark option {
  background: #200c3a;
  color: #e8d5f5;
}

/* ── Contact ── */
.contact {
  padding: 90px 8%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: var(--section-alt);
  transition: background-color 0.3s ease;
}

.contact-left .tag { margin-bottom: 10px; }

.contact-left h2 {
  font-size: 36px;
  color: var(--heading);
  margin-bottom: 12px;
  line-height: 1.2;
}

.contact-desc {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}

.contact-info-item > span {
  font-size: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-info-item strong {
  display: block;
  color: var(--heading);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 2px;
}

.contact-info-item p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

.contact-right {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

/* ── Contact Buttons ── */
.wa-btn,
.insta-btn,
.call-card-btn {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px 20px;
  border-radius: 16px;
  text-decoration: none;
  color: white;
  font-weight: 700;
  transition: 0.3s;
}

.wa-btn {
  background: #25d366;
  box-shadow: 0 8px 22px rgba(37,211,102,0.3);
}

.insta-btn {
  background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7);
  box-shadow: 0 8px 22px rgba(238,42,123,0.3);
}

.call-card-btn {
  background: linear-gradient(135deg, #4b1e6d, #7b1e3a);
  box-shadow: 0 8px 22px rgba(75,30,109,0.3);
}

.wa-btn img, .insta-btn img, .call-card-btn img {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.wa-btn div strong, .insta-btn div strong, .call-card-btn div strong {
  display: block;
  font-size: 15px;
  margin-bottom: 2px;
}

.wa-btn div span, .insta-btn div span, .call-card-btn div span {
  font-size: 12px;
  opacity: 0.85;
  font-weight: 400;
}

.wa-btn:hover, .insta-btn:hover, .call-card-btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.06);
  color: white;
}

/* ── Floating Buttons ── */
.call-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4b1e6d, #7b1e3a);
  color: white;
  text-align: center;
  line-height: 54px;
  font-size: 26px;
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 8px 25px rgba(75,30,109,0.45);
  transition: transform 0.25s ease;
}

.call-btn:hover {
  transform: scale(1.1);
}

/* ── Footer ── */
footer {
  background: #221126;
  color: #ccc;
  padding: 55px 8% 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 45px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

footer h3 { color: #d4af37; font-size: 26px; margin-bottom: 9px; }
footer h4 { color: #d4af37; font-size: 14px; margin-bottom: 16px; letter-spacing: 1px; text-transform: uppercase; }

.footer-brand p { line-height: 1.8; font-size: 14px; }

.footer-tagline {
  margin-top: 8px;
  color: rgba(212,175,55,0.7);
  font-style: italic;
  font-size: 13px;
}

.footer-links { display: flex; flex-direction: column; }

.footer-links a {
  text-decoration: none;
  color: #ccc;
  font-size: 14px;
  margin-bottom: 9px;
  transition: 0.25s;
}

.footer-links a:hover { color: #d4af37; padding-left: 5px; }

.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }

.footer-social-btn {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.footer-social-btn img { width: 22px; height: 22px; }

.footer-social-btn.wa    { background: #25d366; }
.footer-social-btn.insta { background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7); }
.footer-social-btn.yt    { background: #ff0000; }
.footer-social-btn.call  { background: linear-gradient(135deg, #4b1e6d, #7b1e3a); }

.footer-social-btn:hover { transform: translateY(-3px); filter: brightness(1.1); }

.footer-bottom {
  text-align: center;
  padding: 18px 0;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* ════════════════════════════
   RESPONSIVE
════════════════════════════ */

/* ── Tablet (≤1000px) ── */
@media (max-width: 1000px) {
  .hero { padding: 140px 6% 70px; }
  .hero h1 { font-size: 48px; }

  .about, .booking, .contact {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

/* ── Mobile (≤768px) ── */
@media (max-width: 768px) {

  /* Header */
  .header { padding: 6px 4% 6px 1%; }
  .logo-img { height: 72px; }
  .logo-text { font-size: 18px; }
  .nav-btn { display: none; }
  .menu-btn { display: block; }

  nav {
    display: none;
    position: absolute;
    top: 84px;
    left: 5%;
    right: 5%;
    background: var(--nav-bg);
    padding: 18px;
    border-radius: 20px;
    box-shadow: 0 18px 45px rgba(75,30,109,0.15);
    z-index: 998;
    transition: background-color 0.3s ease;
  }
  nav.active {
    display: flex;
    flex-direction: column;
    gap: 13px;
  }

  .theme-toggle {
    width: 42px;
    height: 42px;
    min-width: 42px;
    font-size: 16px;
  }

  .btn:not(.outline), form button {
    animation-duration: 3.5s;
  }

  /* Hero */
  .hero {
    padding: 100px 5% 55px;
    min-height: 100svh;
    background-position: 40% center;
    background-size: cover;
    justify-content: flex-end;
  }
  .hero::before {
    background:
      radial-gradient(ellipse at 20% 70%, rgba(212,140,30,0.25) 0%, transparent 40%),
      linear-gradient(to bottom,
        rgba(10,3,20,0.78) 0%,
        rgba(10,3,20,0.55) 40%,
        rgba(10,3,20,0.65) 75%,
        rgba(10,3,20,0.80) 100%
      );
  }
  .hero-content { max-width: 100%; }
  .hero h1 { font-size: 28px; line-height: 1.2; margin-bottom: 14px; }
  .hero p { font-size: 14px; margin-bottom: 18px; }
  .hero-buttons { flex-direction: column; gap: 10px; }
  .hero-buttons .btn { text-align: center; padding: 13px 20px; font-size: 14px; }

  /* Services */
  .section { padding: 40px 5%; }
  .section h2 { font-size: 20px; margin-bottom: 8px; }
  .services-sub { font-size: 12px; margin-bottom: 16px; }
  .service-grid { grid-template-columns: 1fr; gap: 10px; }
  .service-card {
    flex-direction: row;
    align-items: flex-start;
    padding: 13px 15px;
    border-radius: 14px;
    border-left: 4px solid var(--wine);
    gap: 12px;
  }
  .service-card::before { display: none; }
  .service-icon { font-size: 24px; margin-bottom: 0; flex-shrink: 0; padding-top: 2px; }
  .service-card h3 { font-size: 14px; margin-bottom: 3px; }
  .service-card p { font-size: 12px; line-height: 1.5; }

  /* About */
  .about { padding: 35px 5%; grid-template-columns: 1fr; gap: 16px; }
  .about-card { padding: 20px; border-radius: 18px; }
  .about-card h2 { font-size: 19px; margin-bottom: 10px; }
  .about-card > p { font-size: 13px; line-height: 1.6; }
  .points { margin-top: 12px; }
  .points p { font-size: 12px; margin-bottom: 6px; }
  .about-image { min-height: 220px; border-radius: 18px; }
  .about-image-caption { padding: 14px 18px; }
  .about-image-caption h3 { font-size: 18px; }
  .about-image-caption p { font-size: 11px; }

  /* Why */
  .why { padding: 35px 5%; }
  .section h2 { font-size: 20px; }
  .why-grid { grid-template-columns: 1fr; gap: 10px; }
  .why-grid div { padding: 16px 18px; border-radius: 16px; }
  .why-grid h3 { font-size: 26px; margin-bottom: 5px; }
  .why-title { font-size: 13px; margin-bottom: 4px; }
  .why-desc { font-size: 12px; line-height: 1.5; }

  /* Booking */
  .booking { padding: 40px 5%; grid-template-columns: 1fr; gap: 22px; }
  .booking h2 { font-size: 20px; margin-bottom: 10px; }
  .booking > div > p { font-size: 13px; }
  form { padding: 20px; border-radius: 20px; }
  input, select, textarea { padding: 12px 14px; font-size: 13px; margin-bottom: 10px; }
  textarea { min-height: 100px; }
  button { padding: 13px; font-size: 14px; }

  /* Contact */
  .contact { padding: 35px 5%; grid-template-columns: 1fr; gap: 22px; }
  .contact-left h2 { font-size: 20px; margin-bottom: 8px; }
  .contact-desc { font-size: 13px; margin-bottom: 16px; }
  .contact-info { gap: 12px; }
  .contact-info-item > span { font-size: 17px; }
  .contact-info-item strong { font-size: 12px; }
  .contact-info-item p { font-size: 12px; }
  .contact-right { gap: 10px; }
  .wa-btn, .insta-btn, .call-card-btn {
    padding: 12px 15px;
    border-radius: 13px;
    gap: 12px;
  }
  .wa-btn img, .insta-btn img, .call-card-btn img { width: 22px; height: 22px; }
  .wa-btn div strong, .insta-btn div strong, .call-card-btn div strong { font-size: 13px; }
  .wa-btn div span, .insta-btn div span, .call-card-btn div span { font-size: 11px; }

  /* Footer */
  footer { padding: 28px 5% 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 20px; padding-bottom: 22px; }
  footer h3 { font-size: 18px; margin-bottom: 6px; }
  footer h4 { font-size: 12px; margin-bottom: 10px; }
  .footer-brand p { font-size: 12px; line-height: 1.5; }
  .footer-tagline { font-size: 11px; margin-top: 4px; }
  .footer-links { flex-direction: row; flex-wrap: wrap; gap: 5px 12px; }
  .footer-links a { font-size: 12px; margin-bottom: 0; }
  .footer-social { gap: 8px; }
  .footer-social-btn { width: 38px; height: 38px; border-radius: 10px; }
  .footer-social-btn img { width: 20px; height: 20px; }
  .footer-bottom { padding: 13px 0; font-size: 11px; }

  .call-btn { width: 48px; height: 48px; line-height: 48px; font-size: 22px; right: 15px; bottom: 15px; }
}

/* ── Small Mobile (≤480px) ── */
@media (max-width: 480px) {
  .logo-img { height: 60px; }
  .logo-text { font-size: 15px; }
  .hero { padding: 90px 5% 40px; background-position: 35% center; }
  .hero h1 { font-size: 22px; }
  .hero p { font-size: 13px; }
  .hero-buttons .btn { font-size: 13px; padding: 12px 16px; }
  .about-card h2, .booking h2, .contact-left h2 { font-size: 18px; }
}
