/* ========================================
   SPANISH BARCELONA - Landing Page Styles
   Visual style inspired by learnspanishlloret.com
   Colors: Burgundy/Red accent on dark backgrounds
======================================== */

/* ========== CSS VARIABLES ========== */
.spanish-barcelona-page {
  --sb-primary: #a82c2a;
  --sb-primary-dark: #8a2422;
  --sb-primary-light: #c53a38;
  --sb-text-light: #ffffff;
  --sb-text-muted: rgba(255, 255, 255, 0.7);
  --sb-bg-dark: #1a1a1a;
  --sb-bg-darker: #111111;
  --sb-overlay: rgba(0, 0, 0, 0.6);
}

/* ========== HEADER ========== */
.sb-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  background: transparent;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

.sb-header.scrolled {
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
}

.sb-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sb-logo-img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.sb-btn-book {
  background: var(--sb-primary);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.sb-btn-book:hover {
  background: var(--sb-primary-light);
  transform: translateY(-2px);
}

/* ========== HERO SECTION ========== */
.sb-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.sb-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.sb-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sb-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.7) 100%
  );
}

.sb-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
}

.sb-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  color: var(--sb-text-light);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.sb-hero-badge svg {
  color: #fbbf24;
}

.sb-hero-title {
  font-family: 'Outfit', var(--font-primary);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--sb-text-light);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.sb-highlight {
  display: inline-block;
  background: var(--sb-primary);
  padding: 0.1em 0.3em;
  border-radius: 8px;
}

.sb-hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--sb-text-muted);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.sb-hero-actions {
  margin-bottom: 3rem;
}

.sb-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--sb-primary);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.sb-btn-primary:hover {
  background: var(--sb-primary-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(168, 44, 42, 0.4);
}

.sb-btn-lg {
  padding: 1.125rem 2.5rem;
  font-size: 1.125rem;
}

.sb-btn-full {
  width: 100%;
  justify-content: center;
}

.sb-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--sb-primary);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid var(--sb-primary);
  cursor: pointer;
  text-decoration: none;
}

.sb-btn-outline:hover {
  background: var(--sb-primary);
  color: white;
}

.sb-hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.sb-stat {
  text-align: center;
}

.sb-stat-number {
  display: block;
  font-family: 'Outfit', var(--font-primary);
  font-size: 2rem;
  font-weight: 700;
  color: var(--sb-text-light);
}

.sb-stat-label {
  font-size: 0.875rem;
  color: var(--sb-text-muted);
}

.sb-hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--sb-text-muted);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* ========== SECTION STYLES ========== */
.sb-section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.sb-section-title {
  font-family: 'Outfit', var(--font-primary);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

.sb-section-subtitle {
  font-size: 1.125rem;
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ========== FEATURES SECTION ========== */
.sb-features {
  padding: 6rem 0;
  background: var(--color-bg-secondary);
}

.sb-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.sb-feature-card {
  background: white;
  padding: 2rem;
  border-radius: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.sb-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.sb-feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--sb-primary) 0%, var(--sb-primary-light) 100%);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.sb-feature-icon svg {
  width: 32px;
  height: 32px;
}

.sb-feature-title {
  font-family: 'Outfit', var(--font-primary);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
}

.sb-feature-text {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* ========== HOW IT WORKS ========== */
.sb-how-it-works {
  padding: 6rem 0;
  background: white;
}

.sb-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
}

.sb-step {
  flex: 1;
  max-width: 280px;
  text-align: center;
}

.sb-step-number {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  background: var(--sb-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', var(--font-primary);
  font-size: 1.5rem;
  font-weight: 700;
}

.sb-step-title {
  font-family: 'Outfit', var(--font-primary);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
}

.sb-step-text {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.sb-step-arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sb-primary);
  margin-top: 1rem;
}

.sb-step-arrow svg {
  width: 24px;
  height: 24px;
}

/* ========== PRICING SECTION ========== */
.sb-pricing {
  padding: 6rem 0;
  background: var(--color-bg-secondary);
}

.sb-pricing-card {
  max-width: 480px;
  margin: 0 auto;
  background: white;
  border-radius: 2rem;
  padding: 3rem;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--sb-primary);
  position: relative;
  overflow: hidden;
}

.sb-pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--sb-primary) 0%, var(--sb-primary-light) 100%);
}

.sb-pricing-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.sb-pricing-title {
  font-family: 'Outfit', var(--font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.25rem;
}

.sb-pricing-subtitle {
  font-size: 1rem;
  color: var(--color-text-secondary);
}

.sb-pricing-price {
  text-align: center;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--color-bg-secondary);
  border-radius: 1rem;
}

.sb-pricing-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--sb-primary);
  vertical-align: top;
}

.sb-pricing-amount {
  font-family: 'Outfit', var(--font-primary);
  font-size: 4rem;
  font-weight: 800;
  color: var(--sb-primary);
  line-height: 1;
}

.sb-pricing-period {
  font-size: 1.25rem;
  color: var(--color-text-secondary);
}

.sb-pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.sb-pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-primary);
  font-size: 1rem;
}

.sb-pricing-features li:last-child {
  border-bottom: none;
}

.sb-pricing-features svg {
  width: 20px;
  height: 20px;
  color: var(--sb-primary);
  flex-shrink: 0;
}

/* ========== LOCATIONS SECTION ========== */
.sb-locations {
  padding: 6rem 0;
  background: white;
}

.sb-locations-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.sb-locations-image {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.sb-locations-image img {
  width: 100%;
  height: auto;
  display: block;
}

.sb-partner-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1rem 1.5rem;
  background: var(--color-bg-secondary);
  border-radius: 1rem;
}

.sb-partner-badge span {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

.sb-partner-logo {
  height: 32px;
  width: auto;
}

.sb-locations-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sb-location-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: var(--color-bg-secondary);
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

.sb-location-item:hover {
  background: var(--color-bg-tertiary);
  transform: translateX(5px);
}

.sb-location-item svg {
  width: 24px;
  height: 24px;
  color: var(--sb-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.sb-location-item div {
  display: flex;
  flex-direction: column;
}

.sb-location-item strong {
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 0.25rem;
}

.sb-location-item span {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

/* ========== TESTIMONIALS SECTION ========== */
.sb-testimonials {
  padding: 6rem 0;
  background: var(--color-bg-secondary);
}

.sb-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.sb-testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.sb-testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.sb-testimonial-quote {
  color: var(--sb-primary);
  opacity: 0.3;
  margin-bottom: 1rem;
}

.sb-testimonial-text {
  font-size: 1rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.sb-testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.sb-testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
}

.sb-testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sb-testimonial-info {
  display: flex;
  flex-direction: column;
}

.sb-testimonial-info strong {
  font-weight: 600;
  color: var(--color-text-primary);
}

.sb-testimonial-info span {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

/* ========== CTA SECTION ========== */
.sb-cta {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}

.sb-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.sb-cta-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sb-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.9) 0%,
    rgba(168, 44, 42, 0.85) 100%
  );
}

.sb-cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.sb-cta-title {
  font-family: 'Outfit', var(--font-primary);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--sb-text-light);
  margin-bottom: 1rem;
}

.sb-cta-text {
  font-size: 1.125rem;
  color: var(--sb-text-muted);
  margin-bottom: 2rem;
}

/* ========== FOOTER ========== */
.sb-footer {
  background: var(--sb-bg-dark);
  padding: 4rem 0 2rem;
  color: var(--sb-text-light);
}

.sb-footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sb-footer-logo {
  display: inline-block;
  margin-bottom: 1rem;
}

.sb-footer-logo img {
  height: 36px;
  filter: brightness(0) invert(1);
}

.sb-footer-tagline {
  color: var(--sb-text-muted);
  font-size: 0.9375rem;
  margin-bottom: 0.25rem;
}

.sb-footer-company {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8125rem;
}

.sb-footer-content h4 {
  font-family: 'Outfit', var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  color: var(--sb-text-light);
  margin-bottom: 1rem;
}

.sb-footer-contact a,
.sb-footer-links a {
  display: block;
  color: var(--sb-text-muted);
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
  text-decoration: none;
}

.sb-footer-contact a:hover,
.sb-footer-links a:hover {
  color: var(--sb-primary-light);
}

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

.sb-social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--sb-text-light);
  transition: all 0.3s ease;
}

.sb-social-links a:hover {
  background: var(--sb-primary);
  transform: translateY(-3px);
}

.sb-footer-bottom {
  padding-top: 2rem;
  text-align: center;
}

.sb-footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
}

/* ========== BOOKING MODAL ========== */
.sb-booking-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.sb-booking-overlay.active {
  opacity: 1;
  visibility: visible;
}

.sb-booking-modal {
  background: white;
  border-radius: 1.5rem;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
  transform: scale(0.9) translateY(30px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sb-booking-overlay.active .sb-booking-modal {
  transform: scale(1) translateY(0);
}

.sb-booking-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-tertiary);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.sb-booking-close:hover {
  background: var(--sb-primary);
  color: white;
}

.sb-booking-close svg {
  width: 20px;
  height: 20px;
}

.sb-booking-content {
  padding: 2.5rem;
}

.sb-booking-header {
  text-align: center;
  margin-bottom: 2rem;
}

.sb-booking-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, var(--sb-primary) 0%, var(--sb-primary-light) 100%);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.sb-booking-icon svg {
  width: 32px;
  height: 32px;
}

.sb-booking-title {
  font-family: 'Outfit', var(--font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
}

.sb-booking-subtitle {
  color: var(--color-text-secondary);
  font-size: 1rem;
}

/* Form Styles */
.sb-booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.sb-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.sb-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sb-form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-primary);
}

.sb-form-group input,
.sb-form-group select,
.sb-form-group textarea {
  padding: 0.875rem 1rem;
  border: 2px solid var(--color-border);
  border-radius: 0.75rem;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: white;
}

.sb-form-group input:focus,
.sb-form-group select:focus,
.sb-form-group textarea:focus {
  outline: none;
  border-color: var(--sb-primary);
  box-shadow: 0 0 0 3px rgba(168, 44, 42, 0.1);
}

.sb-form-group input::placeholder,
.sb-form-group textarea::placeholder {
  color: var(--color-text-muted);
}

.sb-form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.sb-form-consent {
  margin-top: 0.5rem;
}

.sb-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

.sb-checkbox input {
  display: none;
}

.sb-checkbox-mark {
  width: 20px;
  height: 20px;
  border: 2px solid var(--color-border);
  border-radius: 4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  margin-top: 2px;
}

.sb-checkbox input:checked + .sb-checkbox-mark {
  background: var(--sb-primary);
  border-color: var(--sb-primary);
}

.sb-checkbox input:checked + .sb-checkbox-mark::after {
  content: '';
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.sb-checkbox a {
  color: var(--sb-primary);
  text-decoration: underline;
}

/* Submit Button */
.sb-btn-submit {
  margin-top: 0.5rem;
  position: relative;
}

.sb-btn-submit .sb-btn-loading {
  display: none;
  align-items: center;
  gap: 0.5rem;
}

.sb-btn-submit.loading .sb-btn-text,
.sb-btn-submit.loading .sb-btn-arrow {
  display: none;
}

.sb-btn-submit.loading .sb-btn-loading {
  display: flex;
}

.sb-spinner {
  width: 20px;
  height: 20px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Success State */
.sb-booking-success {
  text-align: center;
  padding: 2rem 0;
}

.sb-success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.sb-success-icon svg {
  width: 40px;
  height: 40px;
}

.sb-booking-success h3 {
  font-family: 'Outfit', var(--font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
}

.sb-booking-success p {
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .sb-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .sb-locations-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .sb-locations-image {
    order: -1;
  }
  
  .sb-testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .sb-footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .sb-hero {
    min-height: auto;
    padding: 100px 0 60px;
  }
  
  .sb-hero-stats {
    gap: 2rem;
  }
  
  .sb-features-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .sb-steps {
    flex-direction: column;
    gap: 2rem;
  }
  
  .sb-step {
    max-width: 100%;
  }
  
  .sb-step-arrow {
    transform: rotate(90deg);
    margin: 0;
  }
  
  .sb-pricing-card {
    padding: 2rem;
  }
  
  .sb-form-row {
    grid-template-columns: 1fr;
  }
  
  .sb-footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .sb-social-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .sb-hero-title {
    font-size: 2rem;
  }
  
  .sb-btn-primary {
    width: 100%;
    justify-content: center;
  }
  
  .sb-hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .sb-booking-content {
    padding: 1.5rem;
  }
  
  .sb-booking-modal {
    border-radius: 1.5rem 1.5rem 0 0;
    max-height: 95vh;
  }
  
  .sb-booking-overlay {
    align-items: flex-end;
    padding: 0;
  }
}
