/* ========================================
   UPPER BREEZE TECH & TOUR - STYLES
   Cores: Navy #1a2d5c | Gold #e6a93b
   ======================================== */

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

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

:root {
  --navy: #1a2d5c;
  --navy-dark: #0f1c3e;
  --navy-light: #2a4180;
  --gold: #e6a93b;
  --gold-light: #f4c66b;
  --gold-dark: #c08a26;
  --cream: #fdfbf5;
  --white: #ffffff;
  --gray: #6b7280;
  --gray-light: #f3f4f6;
  --shadow-soft: 0 10px 40px rgba(26, 45, 92, 0.08);
  --shadow-medium: 0 20px 60px rgba(26, 45, 92, 0.15);
  --shadow-strong: 0 30px 80px rgba(26, 45, 92, 0.25);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  color: var(--navy);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

/* ========================================
   TOP BAR
   ======================================== */
.top-bar {
  background: var(--navy-dark);
  color: var(--cream);
  padding: 8px 0;
  font-size: 13px;
}

.top-bar-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar-info {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.top-bar-info span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.lang-switcher {
  display: flex;
  gap: 6px;
}

.lang-switcher a {
  color: var(--cream);
  text-decoration: none;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.2s;
}

.lang-switcher a.active,
.lang-switcher a:hover {
  background: var(--gold);
  color: var(--navy-dark);
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
  background: var(--white);
  box-shadow: var(--shadow-soft);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 12px 0;
}

.nav-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.nav-logo img {
  height: 60px;
  width: auto;
}

.nav-menu {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-menu a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s;
  position: relative;
}

.nav-menu a:hover {
  color: var(--gold-dark);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}

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

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--navy);
  cursor: pointer;
}

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(230, 169, 59, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(230, 169, 59, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath fill='%23ffffff' fill-opacity='0.03' d='M50 0 L60 40 L100 50 L60 60 L50 100 L40 60 L0 50 L40 40 Z'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text {
  color: var(--white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(230, 169, 59, 0.15);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease-out;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease-out 0.1s backwards;
}

.hero h1 .gold-text {
  color: var(--gold);
  font-style: italic;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 540px;
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
  box-shadow: 0 10px 30px rgba(230, 169, 59, 0.3);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(230, 169, 59, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #1eb558;
  transform: translateY(-3px);
}

/* MASCOT */
.hero-mascot {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mascot-img {
  width: 100%;
  max-width: 520px;
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4));
  animation: floatMascot 4s ease-in-out infinite, fadeInRight 1s ease-out;
}

@keyframes floatMascot {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}

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

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Hero stats */
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 50px;
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.stat {
  color: var(--white);
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}

.stat-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

/* Decorative clouds */
.cloud {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  pointer-events: none;
}

.cloud-1 { width: 200px; height: 60px; top: 15%; left: 5%; animation: drift 20s linear infinite; }
.cloud-2 { width: 150px; height: 45px; top: 60%; right: 10%; animation: drift 25s linear infinite reverse; }
.cloud-3 { width: 120px; height: 35px; bottom: 20%; left: 15%; animation: drift 30s linear infinite; }

@keyframes drift {
  0% { transform: translateX(-50px); }
  50% { transform: translateX(50px); }
  100% { transform: translateX(-50px); }
}

/* ========================================
   SECTION COMMON
   ======================================== */
section {
  padding: 100px 0;
  position: relative;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--gray);
  max-width: 640px;
  margin: 0 auto;
}

/* ========================================
   SERVICES
   ======================================== */
.services {
  background: var(--cream);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-soft);
  position: relative;
  display: block;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-strong);
}

.service-image {
  height: 240px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.service-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(26, 45, 92, 0.8) 100%);
}

.service-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gold);
  color: var(--navy-dark);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  z-index: 2;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.service-content {
  padding: 28px;
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.service-desc {
  color: var(--gray);
  font-size: 15px;
  margin-bottom: 20px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-link .arrow {
  transition: transform 0.3s;
}

.service-card:hover .service-link .arrow {
  transform: translateX(6px);
}

/* Service card images */
.bg-hotels { background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url('https://images.unsplash.com/photo-1566073771259-6a8506099945?w=800'); }
.bg-tickets { background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url('https://images.unsplash.com/photo-1597466599360-3b9775841aec?w=800'); }
.bg-cars { background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url('https://images.unsplash.com/photo-1542362567-b07e54358753?w=800'); }
.bg-insurance { background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?w=800'); }

/* ========================================
   DESTINATIONS
   ======================================== */
.destinations {
  background: linear-gradient(180deg, var(--cream) 0%, #f5f1e3 100%);
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 20px;
}

.destination-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s;
  box-shadow: var(--shadow-soft);
}

.destination-card:nth-child(1) {
  grid-row: span 2;
}

.destination-card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-strong);
}

.destination-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.destination-card:hover img {
  transform: scale(1.1);
}

.destination-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(26, 45, 92, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: var(--white);
  z-index: 2;
}

.destination-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.destination-country {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-light);
}

.destination-card:nth-child(1) .destination-name {
  font-size: 2.5rem;
}

/* ========================================
   CONCIERGE
   ======================================== */
.concierge {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.concierge::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cpath fill='%23ffffff' fill-opacity='0.03' d='M30 0 L36 24 L60 30 L36 36 L30 60 L24 36 L0 30 L24 24 Z'/%3E%3C/svg%3E");
}

.concierge-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.concierge-text h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.concierge-text p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
}

.concierge-mascot {
  text-align: center;
  position: relative;
}

.concierge-mascot img {
  max-width: 280px;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
  animation: floatMascot 4s ease-in-out infinite;
}

.concierge-form {
  background: var(--white);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-strong);
  color: var(--navy);
}

.concierge-form h3 {
  margin-bottom: 8px;
  font-size: 1.5rem;
}

.concierge-form .form-intro {
  color: var(--gray);
  margin-bottom: 24px;
  font-size: 14px;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeInUp 0.4s ease-out;
}

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

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  transition: all 0.2s;
  background: var(--cream);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}

.service-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.service-option {
  padding: 16px 12px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--cream);
  font-size: 14px;
  font-weight: 500;
}

.service-option:hover {
  border-color: var(--gold);
}

.service-option.selected {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 600;
}

.service-option .icon {
  display: block;
  font-size: 26px;
  margin-bottom: 6px;
}

.form-nav {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.btn-form {
  flex: 1;
  padding: 14px 24px;
  border-radius: 100px;
  border: none;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

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

.btn-form-primary:hover {
  background: var(--navy-dark);
}

.btn-form-back {
  background: var(--gray-light);
  color: var(--navy);
}

.step-indicator {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  justify-content: center;
}

.step-dot {
  width: 30px;
  height: 4px;
  background: #e5e7eb;
  border-radius: 100px;
  transition: all 0.3s;
}

.step-dot.active {
  background: var(--gold);
  width: 40px;
}

/* ========================================
   WHY US
   ======================================== */
.why-us {
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}

.why-item {
  text-align: center;
  padding: 30px 20px;
}

.why-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--white);
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(230, 169, 59, 0.3);
  transform: rotate(-5deg);
  transition: transform 0.3s;
}

.why-item:hover .why-icon {
  transform: rotate(0) scale(1.05);
}

.why-item h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.why-item p {
  color: var(--gray);
  font-size: 15px;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cpath fill='%23ffffff' fill-opacity='0.08' d='M40 0 L48 32 L80 40 L48 48 L40 80 L32 48 L0 40 L32 32 Z'/%3E%3C/svg%3E");
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  color: var(--navy-dark);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.cta-section p {
  color: var(--navy);
  font-size: 1.2rem;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn-primary {
  background: var(--navy);
  color: var(--white);
}

.cta-buttons .btn-primary:hover {
  background: var(--navy-dark);
}

/* ========================================
   FOOTER
   ======================================== */
footer {
  background: var(--navy-dark);
  color: var(--cream);
  padding: 60px 0 24px;
}

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

.footer-brand img {
  height: 80px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-bottom: 16px;
  max-width: 320px;
}

.footer-col h4 {
  color: var(--gold);
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-col ul a:hover {
  color: var(--gold);
}

.footer-contact a,
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-contact a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   FLOATING WHATSAPP
   ======================================== */
.float-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25D366;
  color: var(--white);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  z-index: 99;
  transition: all 0.3s;
  animation: pulse 2s infinite;
}

.float-whatsapp:hover {
  transform: scale(1.1);
}

@keyframes pulse {
  0% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.4); }
  70% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4), 0 0 0 20px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 968px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: var(--shadow-medium);
    gap: 16px;
  }

  .nav-menu.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 24px;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-mascot {
    order: -1;
  }

  .mascot-img {
    max-width: 340px;
  }

  .concierge-grid {
    grid-template-columns: 1fr;
  }

  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 220px);
  }

  .destination-card:nth-child(1) {
    grid-row: span 1;
    grid-column: span 2;
  }

  .destination-card:nth-child(1) .destination-name {
    font-size: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  section {
    padding: 70px 0;
  }
}

@media (max-width: 600px) {
  .top-bar-info {
    font-size: 12px;
    gap: 12px;
  }

  .destinations-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 200px);
  }

  .destination-card:nth-child(1) {
    grid-column: span 1;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .service-options {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .concierge-form {
    padding: 24px;
  }
}
