/* Miami Blue Spa - Main Stylesheet */
/* Colors: Primary Blue #1E88E5, Secondary #1976D2, Accent #E3F2FD */

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-blue: #1E88E5;
  --secondary-blue: #1976D2;
  --accent-blue: #E3F2FD;
  --dark-gray: #333333;
  --light-gray: #F5F5F5;
  --white: #FFFFFF;
  --text-color: #333333;
  --text-dark: #333333;
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background: var(--white);
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  color: var(--primary-blue);
}

h2 {
  font-size: 2rem;
  color: var(--secondary-blue);
}

h3 {
  font-size: 1.5rem;
  color: var(--text-color);
}

p {
  margin-bottom: 1rem;
}

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

.section {
  padding: 4rem 0;
}

.section-alt {
  background: var(--light-gray);
}

/* ===== HEADER ===== */
.header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo span {
  display: none;
}

.logo-icon {
  width: 50px;
  height: 50px;
  background: var(--accent-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 1.2rem;
}

/* ===== NAVIGATION ===== */
.nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: var(--text-color);
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
}

.nav-link:hover {
  color: var(--primary-blue);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-blue);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active {
  color: var(--primary-blue);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 0.5rem;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--primary-blue);
  border-radius: 3px;
  transition: var(--transition);
}

/* ===== DROPDOWN MENU ===== */
.nav-dropdown {
  position: relative;
}

.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 15px;
  background: transparent;
}

.dropdown-toggle {
  cursor: pointer;
}

.dropdown-menu {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: white;
  min-width: 220px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  border-radius: 12px;
  padding: 0.75rem 0;
  z-index: 1000;
  list-style: none;
  border: 2px solid var(--accent-blue);
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  visibility: visible;
  opacity: 1;
}

.dropdown-link {
  display: block;
  padding: 0.85rem 1.5rem;
  color: var(--text-dark);
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 0.95rem;
}

.dropdown-link:hover {
  background: var(--accent-blue);
  color: var(--primary-blue);
  padding-left: 2rem;
}

.dropdown-link.active {
  background: var(--primary-blue);
  color: white;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: var(--primary-blue);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--secondary-blue);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(30, 136, 229, 0.3);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
  background: var(--primary-blue);
  color: var(--white);
}

.btn-call {
  background: #25D366;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-call:hover {
  background: #20BA5A;
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--white) 100%);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="none" stroke="%231E88E5" stroke-width="0.5" opacity="0.1"/></svg>');
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: fadeInUp 0.8s ease;
}

.hero-subhead {
  font-size: 1.2rem;
  color: var(--text-color);
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.trust-badges {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 3rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--secondary-blue);
  font-weight: 500;
}

.badge-icon {
  width: 24px;
  height: 24px;
  color: var(--primary-blue);
}

/* ===== SERVICE PREVIEW GRID ===== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(30, 136, 229, 0.2);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--accent-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--primary-blue);
}

.service-card h3 {
  color: var(--secondary-blue);
  margin-bottom: 1rem;
}

.service-price {
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 1.2rem;
  margin: 1rem 0;
}

/* ===== WHY CHOOSE SECTION ===== */
.why-choose {
  background: var(--light-gray);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature {
  text-align: center;
  padding: 2rem;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
}

.feature h3 {
  margin-bottom: 1rem;
}

/* ===== REVIEWS SECTION ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.review-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.stars {
  color: #FFC107;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.review-text {
  font-style: italic;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.review-author {
  font-weight: 600;
  color: var(--secondary-blue);
}

.review-meta {
  font-size: 0.9rem;
  color: #666;
}

/* ===== LOCATION SECTION ===== */
.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
  align-items: start;
}

.location-info h3 {
  margin-bottom: 1.5rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.info-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  flex-shrink: 0;
}

.map-container {
  width: 100%;
  height: 400px;
  background: var(--light-gray);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark-gray);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #CCC;
}

.footer-links a:hover {
  color: var(--white);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--secondary-blue);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid #555;
  padding-top: 1.5rem;
  text-align: center;
  color: #999;
}

/* ===== STICKY BOOK BUTTON (Mobile) ===== */
.sticky-book {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary-blue);
  color: var(--white);
  padding: 1rem;
  text-align: center;
  font-weight: 700;
  font-size: 1.1rem;
  z-index: 999;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
  display: none;
}

.sticky-book:hover {
  background: var(--secondary-blue);
}

/* ===== FLOATING CONTACT WIDGET ===== */
.floating-contact {
  position: fixed;
  bottom: 100px;
  right: 20px;
  z-index: 1000;
}

.contact-toggle {
  width: 60px;
  height: 60px;
  background: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.contact-toggle:hover {
  transform: scale(1.1);
}

.contact-menu {
  position: absolute;
  bottom: 70px;
  right: 0;
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.2);
  padding: 0.5rem;
  display: none;
  flex-direction: column;
  min-width: 160px;
}

.floating-contact:hover .contact-menu,
.floating-contact.active .contact-menu {
  display: flex;
  animation: slideUp 0.3s ease;
}

.contact-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  text-decoration: none;
  color: #333;
  border-radius: 8px;
  transition: background 0.2s ease;
  font-weight: 500;
}

.contact-option:hover {
  background: var(--accent-blue);
  color: var(--primary-blue);
}

.contact-option span:first-child {
  font-size: 1.25rem;
}

/* ===== DAVID ROBBINS WEB DESIGN LOGO ===== */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@700&family=JetBrains+Mono:wght@400&display=swap');

.drwd-logo-container {
  display: flex;
  justify-content: center;
  padding: 2rem 0 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 2rem;
}

.drwd-logo-link {
  text-decoration: none;
  display: inline-block;
}

.drwd-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  padding: 0.5rem 1rem;
}

.drwd-icon {
  position: relative;
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}

.drwd-ring {
  position: absolute;
  border: 2px solid transparent;
}

.drwd-ring-outer {
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #0ea5e9, #8b5cf6, #ec4899, #0ea5e9) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: drwd-spin 8s linear infinite;
}

.drwd-ring-inner {
  inset: 6px;
  border-radius: 8px;
  background: linear-gradient(-135deg, #f97316, #eab308, #22c55e, #f97316) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: drwd-spin 6s linear infinite reverse;
}

.drwd-core {
  position: absolute;
  inset: 12px;
  border-radius: 6px;
  overflow: hidden;
  animation: drwd-pulse 2s ease-in-out infinite;
}

.drwd-core-gradient {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0ea5e9, #8b5cf6, #ec4899);
  background-size: 200% 200%;
  animation: drwd-gradient 4s ease infinite;
}

.drwd-particle {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #0ea5e9;
  top: 50%;
  left: 50%;
  opacity: 0.8;
}

.drwd-particle-1 { animation: drwd-orbit 3s linear infinite; }
.drwd-particle-2 { animation: drwd-orbit 3.5s linear infinite; animation-delay: 0.4s; background: #8b5cf6; }
.drwd-particle-3 { animation: drwd-orbit 4s linear infinite; animation-delay: 0.8s; background: #ec4899; }
.drwd-particle-4 { animation: drwd-orbit 4.5s linear infinite; animation-delay: 1.2s; background: #22c55e; }

.drwd-text {
  display: flex;
  flex-direction: column;
}

.drwd-name {
  display: flex;
}

.drwd-letter {
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, #fff 0%, #a1a1aa 50%, #fff 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: drwd-shimmer 3s ease-in-out infinite, drwd-float 2s ease-in-out infinite;
}

.drwd-subtitle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.15rem;
}

.drwd-subtitle-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #71717a;
}

.drwd-cursor {
  width: 6px;
  height: 12px;
  background: #0ea5e9;
  animation: drwd-blink 1s step-end infinite;
}

.drwd-brackets {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  color: #52525b;
  display: flex;
  align-items: center;
  gap: 1px;
}

.drwd-glow {
  position: absolute;
  inset: -20px;
  opacity: 0.2;
  pointer-events: none;
  filter: blur(25px);
  background: radial-gradient(ellipse at center, #0ea5e9 0%, transparent 70%);
  animation: drwd-breathe 4s ease-in-out infinite;
}

.drwd-logo-link:hover .drwd-glow {
  opacity: 0.4;
}

/* ===== BLOG STYLES ===== */
.blog-hero {
  padding: 3rem 0;
  background: var(--accent-blue);
}

.blog-breadcrumb {
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.blog-breadcrumb a {
  color: var(--primary-blue);
  text-decoration: none;
}

.blog-breadcrumb a:hover {
  text-decoration: underline;
}

.blog-meta {
  display: flex;
  gap: 2rem;
  color: #666;
  font-size: 0.95rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.blog-featured-image {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 2rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.blog-content {
  line-height: 1.8;
  font-size: 1.05rem;
}

.blog-content p {
  margin-bottom: 1.5rem;
}

.blog-content h2 {
  color: var(--primary-blue);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.blog-content h3 {
  color: var(--text-dark);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.blog-content h4 {
  color: var(--primary-blue);
  margin-bottom: 0.75rem;
}

.blog-content a {
  color: var(--primary-blue);
}

.blog-content ul {
  margin: 1rem 0;
}

.blog-content li {
  margin-bottom: 0.5rem;
}

.author-box {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--light-gray);
  border-radius: 15px;
  margin: 3rem 0;
}

.author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-blue);
}

.author-info h4 {
  margin: 0 0 0.25rem;
  color: var(--text-dark);
}

.author-info p {
  margin: 0;
  color: #666;
  font-size: 0.95rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

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

@keyframes drwd-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes drwd-gradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes drwd-shimmer {
  0%, 100% { background-position: 200% 0; }
  50% { background-position: 0% 0; }
}

@keyframes drwd-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

@keyframes drwd-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

@keyframes drwd-breathe {
  0%, 100% { transform: scale(1); opacity: 0.2; }
  50% { transform: scale(1.1); opacity: 0.35; }
}

@keyframes drwd-orbit {
  0% { transform: translate(-50%, -50%) rotate(0deg) translateX(18px) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg) translateX(18px) rotate(-360deg); }
}

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

/* ===== MOBILE NAVIGATION ===== */
.mobile-menu-overlay,
.mobile-nav-panel {
  display: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }
  
  /* Header */
  .nav-menu.desktop-only {
    display: none !important;
  }
  
  .menu-toggle {
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
  }
  
  .menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 2px;
    transition: all 0.3s ease;
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }
  
  /* Mobile Menu Overlay */
  .mobile-menu-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
  }
  
  .mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  
  /* Mobile Nav Panel */
  .mobile-nav-panel {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: white;
    z-index: 999;
    transition: left 0.3s ease;
    overflow-y: auto;
  }
  
  .mobile-nav-panel.active {
    left: 0;
  }
  
  .mobile-nav-panel.active.slide-out {
    left: -100%;
  }
  
  .mobile-nav-panel.submenu-panel {
    left: -100%;
  }
  
  .mobile-nav-panel.submenu-panel.active {
    left: 0;
  }
  
  .mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1rem;
    background: var(--primary-blue);
    color: white;
    min-height: 60px;
  }
  
  .mobile-nav-title {
    font-size: 1.2rem;
    font-weight: 700;
  }
  
  .mobile-nav-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
  }
  
  .submenu-header {
    justify-content: flex-start;
    gap: 1rem;
  }
  
  .back-button {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: none;
    border: none;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0.5rem;
  }
  
  .back-arrow {
    font-size: 1.4rem;
    font-weight: bold;
  }
  
  .mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.25rem;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    transition: all 0.2s ease;
  }
  
  .mobile-nav-link:hover,
  .mobile-nav-link:active {
    background: var(--accent-blue);
    color: var(--primary-blue);
  }
  
  .mobile-nav-link.active {
    color: var(--primary-blue);
    font-weight: 600;
  }
  
  .submenu-arrow {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-blue);
    margin-left: 0.5rem;
  }
  
  .mobile-nav-cta {
    padding: 1.25rem;
  }
  
  .mobile-nav-cta .btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 1rem;
    font-size: 1.1rem;
  }
  
  /* Dropdown Mobile */
  .dropdown-menu {
    position: static;
    box-shadow: none;
    background: var(--light-gray);
    transform: none;
    left: 0;
    border: none;
    padding-left: 1rem;
    visibility: hidden;
    opacity: 0;
  }
  
  .nav-dropdown::after {
    display: none;
  }
  
  .nav-dropdown:hover .dropdown-menu {
    visibility: hidden;
    opacity: 0;
  }
  
  .nav-dropdown.active .dropdown-menu {
    visibility: visible;
    opacity: 1;
  }
  
  /* Hero */
  .hero {
    padding: 4rem 0;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  /* Location */
  .location-content {
    grid-template-columns: 1fr;
  }
  
  /* Blog */
  .author-box {
    flex-direction: column;
    text-align: center;
  }
  
  .blog-meta {
    gap: 1rem;
    justify-content: center;
  }
  
  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  /* Sticky Book Button */
  .sticky-book {
    display: block;
  }
  
  /* Floating Contact */
  .floating-contact {
    bottom: 80px;
  }
}

@media (min-width: 769px) {
  .mobile-menu-overlay,
  .mobile-nav-panel {
    display: none !important;
  }
  
  .sticky-book {
    display: none !important;
  }
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
/* ===== BOOKING PAGE STYLES ===== */
/* Add this section to the end of your style.css file */

/* Compact Hero for Booking Page */
.hero-compact {
  padding: 4rem 0;
}

/* Booking Container */
.booking-container {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Featured Booking Widget */
.booking-widget-featured {
  background: linear-gradient(135deg, var(--accent-blue) 0%, #bbdefb 100%);
  padding: 2rem;
  border-radius: 15px;
  border: 3px solid var(--primary-blue);
}

.booking-widget-featured h2 {
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.booking-widget-subtitle {
  color: #555;
  margin-bottom: 2rem;
}

/* Booking Divider */
.booking-divider {
  display: flex;
  align-items: center;
  margin: 2.5rem 0;
  gap: 1rem;
}

.booking-divider-line {
  flex: 1;
  height: 2px;
  background: var(--light-gray);
}

.booking-divider-text {
  color: #888;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
}

/* Booking Methods Grid */
.booking-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.booking-method-card {
  text-align: center;
  padding: 1.5rem;
  border: 2px solid var(--accent-blue);
  border-radius: 15px;
  transition: var(--transition);
}

.booking-method-card:hover {
  border-color: var(--primary-blue);
  box-shadow: 0 5px 15px rgba(30, 136, 229, 0.15);
}

.booking-method-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.booking-method-card h3 {
  margin-bottom: 0.5rem;
}

.booking-method-card p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 1rem;
}

/* Booking Info Box */
.booking-info-box {
  background: var(--accent-blue);
  padding: 2rem;
  border-radius: 15px;
  margin-top: 2.5rem;
}

.booking-info-box h3 {
  margin-bottom: 1rem;
}

.booking-info-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.booking-info-list li {
  margin-bottom: 0.75rem;
}

/* Booking Hours */
.booking-hours {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 2px solid var(--light-gray);
}

/* Cancellation Policy Panel */
.cancellation-policy-panel {
  display: none;
  margin-top: 3rem;
  padding: 2rem;
  background: var(--white);
  border: 2px solid var(--primary-blue);
  border-radius: 15px;
  animation: fadeInUp 0.3s ease;
}

.cancellation-policy-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.cancellation-policy-header h2 {
  color: var(--primary-blue);
  margin: 0;
}

.btn-close {
  background: var(--light-gray);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

.btn-close:hover {
  background: #ddd;
}

.cancellation-policy-section {
  margin-bottom: 2rem;
}

.cancellation-policy-section:last-child {
  margin-bottom: 0;
}

.cancellation-policy-section h3 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.cancellation-policy-section p {
  line-height: 1.8;
}

/* Floating Contact Widget */
.floating-contact {
  position: fixed;
  bottom: 100px;
  right: 20px;
  z-index: 1000;
}

.contact-toggle {
  width: 60px;
  height: 60px;
  background: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.contact-toggle:hover {
  transform: scale(1.1);
}

.contact-menu {
  position: absolute;
  bottom: 70px;
  right: 0;
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.2);
  padding: 0.5rem;
  display: none;
  flex-direction: column;
  min-width: 160px;
}

.floating-contact:hover .contact-menu,
.floating-contact.active .contact-menu {
  display: flex;
  animation: slideUp 0.3s ease;
}

.contact-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  text-decoration: none;
  color: #333;
  border-radius: 8px;
  transition: background 0.2s ease;
  font-weight: 500;
}

.contact-option:hover {
  background: var(--accent-blue);
  color: var(--primary-blue);
}

.contact-option span:first-child {
  font-size: 1.25rem;
}

/* Mobile Responsive for Booking Page */
@media (max-width: 768px) {
  .booking-container {
    padding: 1.5rem;
    margin: 0 1rem;
  }
  
  .booking-widget-featured {
    padding: 1.5rem;
  }
  
  .booking-divider-text {
    font-size: 0.8rem;
  }
  
  .booking-methods-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .cancellation-policy-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .floating-contact {
    bottom: 80px;
  }
}