/* Reset & Global Styles */
/* IMMEDIATE OVERFLOW FIX */
html {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  width: 100%;
  overflow-x: hidden;
  position: relative;
}

.navbar {
  width: 100vw;
  max-width: 100%;
  left: 0;
  right: 0;
}

.booking-container {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Force all elements to respect container */
* {
  max-width: 100%;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background: #0a0a0a;
  color: #fff;
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background: #0a0a0a;
  color: #fff;
  line-height: 1.7;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

/* Pastikan semua gambar responsif */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ==================== NAVBAR UNIVERSAL (100% COPY DARI MEMBER.CSS) ==================== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 18px 50px;
  position: sticky;
  top: 0;
  z-index: 9999;
  border-bottom: 1px solid rgba(255, 153, 102, 0.08);
  height: 72px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}

/* Scroll Effects - Optimized */
.navbar.scroll-up {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar.scroll-down {
  transform: translateY(-100%);
}

/* Logo - Simple & Fast */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 46px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
  will-change: transform;
}

.logo:hover .logo-img {
  transform: translateY(-2px);
}

/* Nav Links Container - Optimized Grid */
.nav-links {
  list-style: none;
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-links li {
  display: flex;
  align-items: center;
}

/* Nav Links - Ultra Clean */
.nav-links li a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
  transition: color 0.25s ease;
  will-change: color;
}

/* Underline Effect - GPU Accelerated */
.nav-links li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff9966, #ffa500);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: width;
}

.nav-links li a:hover {
  color: #ffffff;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
  width: 100%;
}

.nav-links li a.active {
  color: #ff9966;
  font-weight: 600;
}

/* ==================== PROFILE SECTION - OPTIMIZED ==================== */
.nav-profile {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 20px;
}

.profile-btn {
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  border-radius: 50%;
  position: relative;
  min-width: 40px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
  will-change: transform;
}

.profile-btn:hover {
  transform: scale(1.08);
}

/* Hide text completely */
.profile-btn span {
  display: none !important;
  visibility: hidden !important;
}

/* Avatar - Clean & Visible */
.profile-avatar-nav {
  width: 40px !important;
  height: 40px !important;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 153, 102, 0.3);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  display: block;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.profile-btn:hover .profile-avatar-nav {
  border-color: #ff9966;
  box-shadow: 0 4px 16px rgba(255, 153, 102, 0.4);
}

/* Guest Icon */
.guest-icon {
  width: 40px !important;
  height: 40px !important;
  border-radius: 50%;
  background: linear-gradient(135deg, #c96, #ff9966);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  border: 2px solid rgba(255, 153, 102, 0.3);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.profile-btn:hover .guest-icon {
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 16px rgba(255, 153, 102, 0.5);
}

/* Dropdown Menu - Lightweight */
.profile-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  background: rgba(15, 15, 15, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 12px;
  min-width: 190px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  list-style: none;
  display: none;
  padding: 8px;
  z-index: 10000;
  opacity: 0;
  transform: translateY(-8px) scale(0.95);
  transition: opacity 0.2s ease, transform 0.2s ease;
  will-change: opacity, transform;
}

.profile-menu::before {
  content: '';
  position: absolute;
  top: -4px;
  right: 14px;
  width: 8px;
  height: 8px;
  background: rgba(15, 15, 15, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: none;
  border-right: none;
  transform: rotate(45deg);
}

.profile-menu[aria-hidden="false"] {
  display: block;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.profile-menu li {
  margin: 0;
  padding: 0;
}

.profile-menu li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
  will-change: background, color;
}

.profile-menu li a:hover {
  color: #ffffff;
  background: rgba(255, 153, 102, 0.1);
}

.profile-menu li:not(:last-child) {
  margin-bottom: 2px;
}

.profile-menu li:last-child {
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ==================== NAVBAR RESPONSIVE ==================== */
@media (max-width: 1200px) {
  .navbar {
    padding: 18px 40px;
  }

  .nav-links {
    gap: 8px;
  }

  .nav-links li a {
    padding: 10px 14px;
    font-size: 12px;
  }
}

@media (max-width: 1024px) {
  .navbar {
    padding: 16px 30px;
    height: auto;
    min-height: 70px;
  }

  .nav-links {
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-links li a {
    padding: 9px 12px;
    font-size: 11px;
  }

  .logo-img {
    height: 42px;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 14px;
    padding: 14px 20px;
    height: auto;
  }

  .nav-links {
    gap: 6px;
    width: 100%;
    justify-content: center;
  }

  .nav-links li a {
    padding: 8px 10px;
    font-size: 11px;
  }

  .profile-avatar-nav,
  .guest-icon {
    width: 36px !important;
    height: 36px !important;
  }

  .profile-btn {
    min-width: 36px;
    min-height: 36px;
  }

  .logo-img {
    height: 38px;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 12px 16px;
  }

  .nav-links li a {
    padding: 7px 9px;
    font-size: 10px;
  }

  .logo-img {
    height: 34px;
  }

  .profile-menu {
    min-width: 170px;
  }
}

/* ==================== PERFORMANCE OPTIMIZATIONS ==================== */
/* Reduce repaints and reflows */
.navbar,
.nav-links li a,
.profile-btn,
.profile-menu {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  perspective: 1000px;
  -webkit-perspective: 1000px;
}

/* Hardware acceleration for smooth animations */
.nav-links li a::after,
.profile-avatar-nav,
.guest-icon,
.profile-menu {
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

/* Optimize hover states - no layout shifts */
.nav-links li a:hover,
.profile-btn:hover {
  transform: translateZ(0);
}

/* Prevent font rendering issues */
.navbar,
.nav-links,
.profile-menu {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Reduce blur complexity on low-end devices */
@media (prefers-reduced-motion: reduce) {
  .navbar,
  .profile-menu {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(10, 10, 10, 0.98);
  }

  * {
    animation: none !important;
    transition: none !important;
  }
}

/* Container query for future-proofing */
@supports (container-type: inline-size) {
  .navbar {
    container-type: inline-size;
  }
}

/* ==================== BOOKING SECTION ==================== */
.booking-section {
  padding: 80px 20px;
  min-height: calc(100vh - 200px);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.booking-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(201, 102, 102, 0.1) 0%,
    rgba(255, 153, 102, 0.05) 30%,
    transparent 70%
  );
  z-index: 0;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

.booking-container {
  max-width: 700px;
  width: 100%;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(201, 102, 102, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 1;
  animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.booking-container h1 {
  background: linear-gradient(135deg, #c96 0%, #ff9966 50%, #ffcc99 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

/* Form Styles */
.booking-form {
  margin-top: 20px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  color: #e0e0e0;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}

.form-group input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(10, 10, 10, 0.8);
  border: 2px solid rgba(201, 102, 102, 0.3);
  border-radius: 10px;
  color: #fff;
  font-size: 15px;
  transition: all 0.3s ease;
  outline: none;
}

.form-group input::placeholder {
  color: #888;
}

.form-group input:focus {
  border-color: #c96;
  background: rgba(26, 26, 26, 0.9);
  box-shadow: 0 0 15px rgba(201, 102, 102, 0.2);
}

.form-group input:hover {
  border-color: rgba(255, 153, 102, 0.5);
}

/* Submit Button */
.btn-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #c96 0%, #ff9966 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(201, 102, 102, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.btn-submit::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.btn-submit:hover::before {
  left: 100%;
}

.btn-submit:hover {
  background: linear-gradient(135deg, #ff9966 0%, #ffcc99 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 153, 102, 0.4);
}

.btn-submit:active {
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(201, 102, 102, 0.3);
}

.btn-submit span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  z-index: 1;
}

/* ==================== FOOTER ==================== */
/* Orange & Black Footer - Premium Modern Design */
.footer {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
  color: #ffffff;
  padding: 70px 0 30px;
  position: relative;
  overflow: hidden;
  margin-top: 120px;
  border-top: 1px solid rgba(201, 102, 102, 0.15);
}

/* Decorative elements - Enhanced */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, 
      transparent 0%, 
      #c96 20%, 
      #ff9966 40%, 
      #ffa500 50%, 
      #ff9966 60%, 
      #c96 80%, 
      transparent 100%
  );
  animation: gradientFlow 8s ease-in-out infinite;
}

@keyframes gradientFlow {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 1; }
}

.footer::after {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 102, 102, 0.15), transparent 70%);
  border-radius: 50%;
  animation: pulse 6s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { 
      transform: scale(1); 
      opacity: 0.15; 
  }
  50% { 
      transform: scale(1.1); 
      opacity: 0.25; 
  }
}

.glow-circle {
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 153, 102, 0.12), transparent 70%);
  border-radius: 50%;
  animation: pulse 6s ease-in-out infinite 3s;
}

.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 50px;
  position: relative;
  z-index: 1;
}

/* Main Content Grid - Premium Layout */
.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 50px;
}

/* Brand Section - Premium */
.brand-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand-logo-group {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 8px;
}

.logo-circle {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #c96 0%, #ff9966 50%, #ffa500 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 24px;
  color: #000;
  box-shadow: 0 6px 25px rgba(201, 102, 102, 0.5);
  animation: logoGlow 3s ease-in-out infinite;
  position: relative;
}

.logo-circle::before {
  content: '';
  position: absolute;
  inset: -3px;
  background: linear-gradient(135deg, #c96, #ff9966);
  border-radius: 14px;
  opacity: 0;
  filter: blur(8px);
  transition: opacity 0.3s ease;
  z-index: -1;
}

.logo-circle:hover::before {
  opacity: 0.6;
}

@keyframes logoGlow {
  0%, 100% { 
      box-shadow: 0 6px 25px rgba(201, 102, 102, 0.5);
  }
  50% { 
      box-shadow: 0 8px 35px rgba(255, 153, 102, 0.7);
  }
}

.brand-name h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 4px;
  background: linear-gradient(135deg, #ffffff 0%, #ff9966 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.brand-name p {
  font-size: 11px;
  color: #ff9966;
  letter-spacing: 3px;
  font-weight: 600;
  opacity: 0.9;
}

.tagline {
  font-size: 15px;
  line-height: 1.7;
  color: #d0d0d0;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 8px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(201, 102, 102, 0.08);
  border: 1px solid rgba(201, 102, 102, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #ff9966;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #c96, #ff9966);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.social-link svg {
  width: 20px;
  height: 20px;
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease;
}

.social-link:hover {
  transform: translateY(-4px);
  border-color: #ff9966;
  box-shadow: 0 6px 25px rgba(201, 102, 102, 0.5);
}

.social-link:hover::before {
  opacity: 1;
}

.social-link:hover svg {
  transform: scale(1.1);
  color: #000;
}

/* Contact Info - Premium */
.contact-info {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-info p {
  color: #aaaaaa;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 12px;
  font-weight: 400;
}

.contact-phone {
  color: #ff9966;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.contact-phone:hover {
  color: #ffa500;
  text-shadow: 0 0 15px rgba(255, 153, 102, 0.6);
  transform: translateX(3px);
}

/* Links Section - Premium */
.links-section h4 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #ff9966;
  margin-bottom: 24px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
}

.links-section h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #ff9966, #ffa500);
  border-radius: 3px;
}

.links-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.links-list a {
  color: #cccccc;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  padding-left: 0;
  position: relative;
  line-height: 1.5;
  font-weight: 500;
}

.links-list a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff9966, #ffa500);
  transition: width 0.3s ease;
}

.links-list a:hover {
  color: #ffffff;
  padding-left: 18px;
}

.links-list a:hover::before {
  width: 12px;
}

/* Follow Us Section - Premium */
.follow-section h4 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #ff9966;
  margin-bottom: 16px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
}

.follow-section h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #ff9966, #ffa500);
  border-radius: 3px;
}

.follow-section p {
  font-size: 14px;
  color: #aaaaaa;
  line-height: 1.6;
  margin-bottom: 20px;
  font-weight: 400;
}

.follow-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.follow-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(201, 102, 102, 0.08);
  border: 1px solid rgba(201, 102, 102, 0.25);
  border-radius: 10px;
  text-decoration: none;
  color: #d0d0d0;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.follow-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #c96, #ff9966);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.follow-btn:hover::before {
  opacity: 1;
}

.follow-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.follow-btn span {
  position: relative;
  z-index: 1;
}

.follow-btn .follower-count {
  margin-left: auto;
  font-size: 12px;
  opacity: 0.8;
  position: relative;
  z-index: 1;
}

.follow-btn:hover {
  color: #000;
  border-color: #ff9966;
  transform: translateX(6px);
  box-shadow: 0 4px 20px rgba(201, 102, 102, 0.5);
}

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

/* Bottom Section - Premium */
.footer-bottom {
  padding-top: 30px;
  margin-top: 10px;
  border-top: 1px solid rgba(201, 102, 102, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.copyright {
  color: #888888;
  line-height: 1.6;
  font-weight: 500;
}

.footer-bottom-links {
  display: flex;
  gap: 25px;
}

.footer-bottom-links a {
  color: #888888;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  font-weight: 500;
}

.footer-bottom-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff9966, #ffa500);
  transition: width 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #ff9966;
}

.footer-bottom-links a:hover::after {
  width: 100%;
}

/* ==================== RESPONSIVE ==================== */
/* Navbar Responsive */
@media (max-width: 1200px) {
  .nav-links {
      gap: 3px;
  }
  
  .nav-links li a {
      padding: 8px 12px;
      font-size: 13px;
  }
}

@media (max-width: 1024px) {
  .navbar {
      padding: 15px 20px;
      height: auto;
      min-height: 80px;
  }
  
  .nav-links {
      gap: 5px;
      flex-wrap: wrap;
      justify-content: center;
  }
  
  .nav-links li a {
      padding: 6px 10px;
      font-size: 12px;
  }
  
  /* Footer Tablet */
  .footer {
      padding: 60px 0 25px;
  }
  
  .footer-content {
      gap: 50px;
  }
  
  .footer-container {
      padding: 0 40px;
  }
  
  .brand-name h3 {
      font-size: 26px;
  }
  
  .tagline {
      font-size: 14px;
  }
}

@media (max-width: 768px) {
  .navbar {
      flex-direction: column;
      gap: 15px;
      padding: 15px 20px;
  }
  
  .nav-links {
      gap: 5px;
      flex-wrap: wrap;
      justify-content: center;
      width: 100%;
  }
  
  /* Booking Section Mobile */
  .booking-section {
      padding: 50px 15px;
  }
  
  .booking-container {
      padding: 35px 25px;
      border-radius: 15px;
  }
  
  .booking-container h1 {
      font-size: 2em !important;
  }
  
  .form-group input {
      padding: 12px 15px;
      font-size: 14px;
  }
  
  .btn-submit {
      padding: 14px;
      font-size: 16px;
  }
  
  /* Footer Mobile */
  .footer {
      padding: 50px 0 25px;
      margin-top: 80px;
  }

  .footer-content {
      grid-template-columns: 1fr;
      gap: 45px;
      margin-bottom: 40px;
  }

  .footer-container {
      padding: 0 30px;
  }

  .footer-bottom {
      flex-direction: column;
      gap: 18px;
      text-align: center;
      padding-top: 25px;
  }

  .footer-bottom-links {
      flex-wrap: wrap;
      justify-content: center;
      gap: 18px;
  }
  
  .brand-section {
      gap: 20px;
      text-align: center;
  }
  
  .brand-logo-group {
      justify-content: center;
  }
  
  .logo-circle {
      width: 56px;
      height: 56px;
      font-size: 22px;
  }
  
  .brand-name h3 {
      font-size: 24px;
  }
  
  .tagline {
      font-size: 14px;
  }
  
  .social-links {
      justify-content: center;
  }
  
  .contact-info {
      text-align: center;
      margin-top: 20px;
      padding-top: 20px;
  }
  
  .contact-phone {
      font-size: 18px;
  }
  
  .links-section h4,
  .follow-section h4 {
      text-align: center;
  }
  
  .links-section h4::after,
  .follow-section h4::after {
      left: 50%;
      transform: translateX(-50%);
  }
  
  .links-list {
      align-items: center;
      gap: 12px;
  }
}

@media (max-width: 480px) {
  .navbar {
      padding: 12px 15px;
  }
  
  .nav-links li a {
      font-size: 11px;
      padding: 5px 8px;
  }
  
  .logo-img {
      height: 40px;
  }
  
  /* Booking Mobile */
  .booking-section {
      padding: 40px 15px;
  }
  
  .booking-container {
      padding: 25px 20px;
      border-radius: 12px;
  }
  
  .booking-container h1 {
      font-size: 1.8em !important;
  }
  
  .booking-container p {
      font-size: 1em !important;
  }
  
  .form-group label {
      font-size: 14px;
  }
  
  .form-group input {
      padding: 12px 15px;
      font-size: 14px;
  }
  
  .btn-submit {
      padding: 14px;
      font-size: 16px;
  }
  
  /* Footer Extra Small */
  .footer {
      padding: 40px 0 20px;
      margin-top: 60px;
  }
  
  .footer-content {
      gap: 35px;
  }
  
  .footer-container {
      padding: 0 25px;
  }
  
  .brand-section {
      gap: 18px;
  }
  
  .logo-circle {
      width: 52px;
      height: 52px;
      font-size: 20px;
  }
  
  .brand-name h3 {
      font-size: 22px;
  }
  
  .tagline {
      font-size: 13px;
  }
  
  .social-links {
      gap: 10px;
  }
  
  .social-link {
      width: 40px;
      height: 40px;
  }
  
  .social-link svg {
      width: 18px;
      height: 18px;
  }
  
  .contact-info {
      margin-top: 18px;
      padding-top: 18px;
  }
  
  .contact-info p {
      font-size: 13px;
  }
  
  .contact-phone {
      font-size: 17px;
  }
  
  .links-section h4,
  .follow-section h4 {
      font-size: 13px;
      margin-bottom: 20px;
  }
  
  .links-list {
      gap: 11px;
  }
  
  .links-list a {
      font-size: 14px;
  }
  
  .follow-section p {
      font-size: 13px;
  }
  
  .follow-buttons {
      gap: 10px;
  }
  
  .follow-btn {
      padding: 13px 16px;
      font-size: 14px;
  }
  
  .follow-btn svg {
      width: 20px;
      height: 20px;
  }
  
  .footer-bottom {
      padding-top: 20px;
      font-size: 12px;
      gap: 15px;
  }
  
  .footer-bottom-links {
      gap: 15px;
  }
}

/* Extra Small Mobile (max-width: 360px) */
@media (max-width: 360px) {
  .navbar {
      padding: 10px 12px;
  }
  
  .nav-links li a {
      font-size: 10px;
      padding: 4px 6px;
  }
  
  .logo-img {
      height: 35px;
  }
  
  .booking-section {
      padding: 35px 12px;
  }
  
  .booking-container {
      padding: 20px 15px;
  }
  
  .footer {
      padding: 30px 12px 18px;
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #c96 0%, #ff9966 100%);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #ff9966 0%, #ffcc99 100%);
}