/* ===== SEAHAM STAYS - SEAGLASS & COASTAL THEME ===== */

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&family=DM+Sans:wght@400;500;600&display=swap');

/* CSS Variables - Seaglass & Coastal Palette */
:root {
  --seaglass: #7FB8A2;
  --seaglass-light: #A8D5C2;
  --seaglass-pale: #D4EDE3;
  --seaglass-dark: #5A9A82;
  --ocean-deep: #2C5F6E;
  --ocean-mid: #3D8FA0;
  --ocean-light: #B5D9E3;
  --sand: #F5ECD7;
  --sand-light: #FAF6ED;
  --sand-dark: #D4C9A8;
  --driftwood: #8B7D6B;
  --driftwood-light: #B8AE9C;
  --shell-white: #FEFCF8;
  --pebble: #6B7B8D;
  --pebble-dark: #3D4F5F;
  --coral-accent: #E8836B;
  --text-primary: #2A3B47;
  --text-secondary: #5A6B7A;
  --text-light: #8A9BAA;
  --gold-star: #E8B86D;
  --shadow-sm: 0 2px 8px rgba(44, 95, 110, 0.08);
  --shadow-md: 0 4px 20px rgba(44, 95, 110, 0.12);
  --shadow-lg: 0 8px 40px rgba(44, 95, 110, 0.16);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-primary);
  background: var(--shell-white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}

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

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  transition: all 0.4s ease;
  background: transparent;
}

.nav.scrolled {
  background: rgba(254, 252, 248, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  padding: 0.75rem 2rem;
}

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

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--shell-white);
  transition: color 0.4s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav.scrolled .nav-logo {
  color: var(--ocean-deep);
}

.nav-logo svg {
  width: 28px;
  height: 28px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

.nav.scrolled .nav-links a {
  color: var(--text-secondary);
}

.nav-links a:hover {
  color: var(--seaglass-light);
}

.nav.scrolled .nav-links a:hover {
  color: var(--seaglass-dark);
}

.nav-cta {
  background: var(--seaglass) !important;
  color: white !important;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: all 0.3s !important;
}

.nav-cta:hover {
  background: var(--seaglass-dark) !important;
  transform: translateY(-1px);
}

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  margin: 5px 0;
  transition: all 0.3s;
}

.nav.scrolled .nav-mobile-toggle span {
  background: var(--text-primary);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(44, 95, 110, 0.6) 0%,
    rgba(90, 154, 130, 0.4) 50%,
    rgba(44, 95, 110, 0.5) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 2rem;
}

.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 1.2rem;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge svg {
  width: 16px;
  height: 16px;
  fill: var(--gold-star);
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero-sub {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  font-weight: 300;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

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

.btn-primary:hover {
  background: var(--seaglass-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(127, 184, 162, 0.4);
}

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

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: float 3s ease-in-out infinite;
}

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

/* ===== RATING STRIP ===== */
.rating-strip {
  background: linear-gradient(135deg, var(--ocean-deep), var(--ocean-mid));
  color: white;
  padding: 1.5rem 2rem;
}

.rating-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.rating-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
}

.rating-item strong {
  font-size: 1.1rem;
}

.stars {
  display: flex;
  gap: 2px;
}

.star {
  color: var(--gold-star);
  font-size: 1rem;
}

/* ===== SECTIONS ===== */
.section {
  padding: 5rem 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--seaglass);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

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

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

.section-seaglass {
  background: linear-gradient(135deg, var(--seaglass-pale), var(--ocean-light));
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== ABOUT / PROPERTY DETAILS ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.about-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.about-image-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  color: var(--ocean-deep);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.about-text h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.about-text p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.property-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--sand-light);
  border-radius: var(--radius-sm);
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--seaglass-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--seaglass-dark);
}

.feature span {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-primary);
}

/* ===== PHOTO GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 250px);
  gap: 1rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.gallery-item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44, 95, 110, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 2;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s;
}

.gallery-item:hover .gallery-item-label {
  opacity: 1;
  transform: translateY(0);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.95);
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

/* ===== AMENITIES ===== */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.amenity-card {
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all 0.3s;
}

.amenity-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.amenity-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--seaglass-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--seaglass-dark);
  font-size: 1.4rem;
}

.amenity-card h4 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.amenity-card p {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ===== REVIEWS ===== */
.reviews-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.reviews-rating {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--ocean-deep);
}

.reviews-meta {
  text-align: left;
}

.reviews-meta .stars {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.reviews-meta span {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.review-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
  border: 1px solid rgba(127, 184, 162, 0.1);
}

.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--seaglass-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  color: var(--seaglass-dark);
  font-size: 1.1rem;
}

.review-name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  color: var(--text-primary);
}

.review-date {
  font-size: 0.8rem;
  color: var(--text-light);
}

.review-stars {
  color: var(--gold-star);
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.review-text {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ===== COASTAL BANNER ===== */
.coastal-banner {
  position: relative;
  height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coastal-banner-bg {
  position: absolute;
  inset: 0;
}

.coastal-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.coastal-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(44, 95, 110, 0.7) 0%,
    rgba(90, 154, 130, 0.5) 100%
  );
}

.coastal-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 0 2rem;
  max-width: 700px;
}

.coastal-banner-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.coastal-banner-content p {
  font-size: 1.15rem;
  opacity: 0.9;
  line-height: 1.7;
  font-weight: 300;
}

/* ===== DISCOVER SEAHAM ===== */
.seaham-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.5rem;
}

.seaham-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s ease;
  background: white;
}

.seaham-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.seaham-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.seaham-card:hover img {
  transform: scale(1.05);
}

.seaham-card-large {
  grid-row: span 2;
}

.seaham-card-large img {
  height: 100%;
  min-height: 400px;
}

.seaham-card-content {
  padding: 1.25rem 1.5rem;
}

.seaham-card-content h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  color: var(--ocean-deep);
}

.seaham-card-content p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.seaham-card-large .seaham-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
  color: white;
  padding: 2rem 1.5rem;
}

.seaham-card-large .seaham-card-content h3 {
  color: white;
  font-size: 1.3rem;
}

.seaham-card-large .seaham-card-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .seaham-grid {
    grid-template-columns: 1fr;
  }

  .seaham-card-large {
    grid-row: span 1;
  }

  .seaham-card-large img {
    min-height: 300px;
  }

  .coastal-banner {
    height: 300px;
  }

  .coastal-banner-content h2 {
    font-size: 1.8rem;
  }
}

/* ===== BOOKING SECTION ===== */
.booking-section {
  background: linear-gradient(135deg, var(--ocean-deep), var(--seaglass-dark));
  color: white;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.booking-info h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: white;
}

.booking-info p {
  opacity: 0.85;
  margin-bottom: 2rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

.booking-highlights {
  list-style: none;
  margin-bottom: 2rem;
}

.booking-highlights li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-family: 'DM Sans', sans-serif;
}

.booking-highlights li svg {
  width: 20px;
  height: 20px;
  color: var(--seaglass-light);
  flex-shrink: 0;
}

.booking-form-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  color: var(--text-primary);
}

.booking-form-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.booking-price {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.booking-price strong {
  font-size: 1.8rem;
  color: var(--ocean-deep);
  font-weight: 700;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.form-group input, .form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid var(--sand-dark);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.3s;
  background: white;
}

.form-group input:focus, .form-group select:focus {
  outline: none;
  border-color: var(--seaglass);
}

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

/* Rate Type Selector */
.rate-type-selector {
  margin-bottom: 1.25rem;
}

.rate-option {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border: 2px solid var(--sand-dark, #e8e0cc);
  border-radius: var(--radius-sm);
  margin-bottom: 0.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
  background: var(--shell-white);
}

.rate-option:hover {
  border-color: var(--seaglass);
}

.rate-option.selected {
  border-color: var(--seaglass);
  background: var(--seaglass-pale);
}

.rate-option input[type="radio"] {
  margin-top: 0.2rem;
  accent-color: var(--seaglass-dark);
}

.rate-option-content {
  flex: 1;
}

.rate-option-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.2rem;
}

.rate-option-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.rate-option-badge {
  background: var(--seaglass-dark);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.15rem 0.5rem;
  border-radius: 1rem;
  font-family: 'DM Sans', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.rate-option-desc {
  font-size: 0.8rem;
  color: var(--text-light);
  font-family: 'DM Sans', sans-serif;
}

.booking-summary-row.discount {
  color: var(--seaglass-dark);
  font-weight: 500;
}

.booking-summary {
  background: var(--sand-light);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}

.booking-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.booking-summary-row.total {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 1rem;
  border-top: 1px solid var(--sand-dark);
  padding-top: 0.5rem;
  margin-top: 0.5rem;
}

.btn-book {
  width: 100%;
  padding: 1rem;
  font-size: 1.05rem;
  justify-content: center;
}

/* ===== CALENDAR ===== */
.calendar-container {
  margin-bottom: 1.5rem;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.calendar-header h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

.calendar-nav {
  display: flex;
  gap: 0.5rem;
}

.calendar-nav button {
  background: var(--sand-light);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.calendar-nav button:hover {
  background: var(--seaglass-pale);
}

.calendar-grid-display {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.calendar-day-header {
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-light);
  padding: 0.5rem 0;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
}

.calendar-day:hover:not(.disabled):not(.booked) {
  background: var(--seaglass-pale);
}

.calendar-day.today {
  border: 2px solid var(--seaglass);
}

.calendar-day.selected {
  background: var(--seaglass);
  color: white;
}

.calendar-day.in-range {
  background: var(--seaglass-pale);
  color: var(--seaglass-dark);
}

.calendar-day.disabled {
  color: var(--text-light);
  cursor: default;
  opacity: 0.4;
}

.calendar-day.booked {
  background: var(--coral-accent);
  color: white;
  opacity: 0.5;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* ===== LOCATION ===== */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 400px;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.location-details h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.location-details p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.nearby-list {
  list-style: none;
}

.nearby-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--sand-dark);
  font-family: 'DM Sans', sans-serif;
}

.nearby-list li:last-child {
  border-bottom: none;
}

.nearby-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--seaglass-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.nearby-text strong {
  display: block;
  font-size: 0.9rem;
}

.nearby-text span {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ===== HOST SECTION ===== */
.host-card {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  align-items: center;
}

.host-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--seaglass), var(--ocean-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.host-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.host-superhost {
  position: absolute;
  bottom: -4px;
  right: -4px;
  background: var(--coral-accent);
  color: white;
  font-size: 0.65rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  padding: 0.3rem 0.6rem;
  border-radius: 50px;
  border: 3px solid white;
}

.host-info h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.host-stats {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.host-stat {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.host-bio {
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ===== HOUSE RULES ===== */
.rules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.rule-card {
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.rule-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.rule-card h4 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.rule-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--pebble-dark);
  color: white;
  padding: 4rem 2rem 2rem;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-brand p {
  opacity: 0.7;
  line-height: 1.7;
  font-size: 0.9rem;
}

.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

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

.footer-col li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  opacity: 0.7;
  font-size: 0.9rem;
  transition: opacity 0.3s;
}

.footer-col a:hover {
  opacity: 1;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  opacity: 0.6;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ===== WAVE DIVIDER ===== */
.wave-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -1px;
}

.wave-divider svg {
  width: 100%;
  height: 80px;
  display: block;
}

.wave-divider.flip {
  transform: rotate(180deg);
  margin-top: 0;
  margin-bottom: -1px;
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid,
  .booking-grid,
  .location-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 200px);
  }

  .gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
  }

  .amenities-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(254, 252, 248, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1rem;
    box-shadow: var(--shadow-md);
  }

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

  .nav-links a {
    color: var(--text-primary) !important;
  }

  .nav-mobile-toggle {
    display: block;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .gallery-item.large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-item {
    height: 250px;
  }

  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .host-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .host-avatar {
    margin: 0 auto;
  }

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

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

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

  .property-features {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .rating-strip-inner {
    flex-direction: column;
    gap: 1rem;
  }

  .booking-form-card {
    padding: 1.5rem;
  }
}
