/* ========================================
   THEHRAAV - Complete Static Website CSS
   Matches React design exactly
   ======================================== */

/* ========================================
   CSS VARIABLES / DESIGN TOKENS
   ======================================== */
:root {
  /* Core Colors - HSL Format */
  --background: hsl(40, 30%, 96%);
  --foreground: hsl(195, 50%, 20%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(195, 50%, 20%);
  --primary: hsl(175, 55%, 35%);
  --primary-foreground: hsl(0, 0%, 100%);
  --secondary: hsl(25, 75%, 55%);
  --secondary-foreground: hsl(0, 0%, 100%);
  --muted: hsl(40, 20%, 90%);
  --muted-foreground: hsl(195, 30%, 40%);
  --accent: hsl(35, 85%, 50%);
  --accent-foreground: hsl(0, 0%, 100%);
  --border: hsl(175, 30%, 80%);
  --input: hsl(40, 20%, 88%);

  /* Brand Colors */
  --teal: #1A5F4A;
  --teal-light: #B4E4D3;
  --purple: #4A3867;
  --purple-light: #C4B5E8;
  --pink: #E91E8C;
  --orange: #FF6B35;
  --yellow: #F9E547;
  --dark: #1A1A1A;

  /* Gradients */
  --hero-gradient: linear-gradient(135deg, hsl(175, 55%, 35%), hsl(185, 60%, 28%));
  --warm-gradient: linear-gradient(135deg, hsl(25, 75%, 55%), hsl(15, 70%, 50%));
  --fresh-gradient: linear-gradient(135deg, hsl(140, 45%, 45%), hsl(160, 50%, 40%));
  --purple-gradient: linear-gradient(135deg, #4A3867, #6B4D8A, #8B5A9C);

  /* Shadows */
  --shadow-subtle: 0 4px 20px -2px hsla(175, 55%, 35%, 0.15);
  --shadow-hover: 0 8px 30px -4px hsla(175, 55%, 35%, 0.25);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

  /* Spacing */
  --container-max: 1400px;
  --container-padding: 2rem;

  /* Border Radius */
  --radius: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --radius-full: 9999px;

  /* Font Families */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Covered By Your Grace', cursive;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

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

body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  overflow-x: hidden;
}

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

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

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

ul, ol {
  list-style: none;
}

/* Font Display */
.font-display {
  font-family: var(--font-display);
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section-padding {
  padding: 5rem 0;
}

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

.text-white {
  color: white;
}

.hidden {
  display: none !important;
}

/* Grid Utilities */
.grid {
  display: grid;
}

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

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

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

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-12 {
  gap: 3rem;
}

/* Flex Utilities */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-center {
  align-items: center;
}

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

.justify-between {
  justify-content: space-between;
}

/* ========================================
   ANIMATIONS & KEYFRAMES
   ======================================== */
@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

@keyframes wiggle {
  0%, 100% {
    transform: rotate(-3deg);
  }
  50% {
    transform: rotate(3deg);
  }
}

@keyframes bounce-gentle {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

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

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

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

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

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

/* Animation Classes */
.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-float-delayed {
  animation: float 8s ease-in-out infinite 2s;
}

.animate-float-slow {
  animation: float 10s ease-in-out infinite 1s;
}

.animate-wiggle {
  animation: wiggle 4s ease-in-out infinite;
}

.animate-bounce-gentle {
  animation: bounce-gentle 3s ease-in-out infinite;
}

.animate-bounce {
  animation: bounce 2s infinite;
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

.animate-spin-slow {
  animation: spin-slow 8s linear infinite;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 768px) {
  .animate-float,
  .animate-float-delayed,
  .animate-float-slow,
  .animate-wiggle,
  .animate-bounce-gentle {
    animation: none;
  }
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition-normal);
  cursor: pointer;
  white-space: nowrap;
}

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

.btn-primary {
  background: var(--hero-gradient);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  opacity: 0.9;
  box-shadow: var(--shadow-hover);
}

.btn-warm {
  background: var(--warm-gradient);
  color: var(--foreground);
  font-weight: 700;
}

.btn-warm:hover {
  opacity: 0.9;
  box-shadow: var(--shadow-hover);
}

.btn-yellow {
  background: var(--yellow);
  color: var(--purple);
  font-weight: 700;
}

.btn-yellow:hover {
  background: #f5de30;
}

.btn-pink {
  background: var(--pink);
  color: white;
  font-weight: 700;
}

.btn-pink:hover {
  background: #d11a7d;
}

.btn-outline {
  background: transparent;
  border: 2px solid currentColor;
  color: var(--foreground);
}

.btn-outline:hover {
  background: var(--foreground);
  color: var(--background);
}

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

.btn-full {
  width: 100%;
}

.btn-icon {
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border-radius: 50%;
}

/* WhatsApp Button */
.btn-whatsapp {
  background: #25D366;
  color: white;
  font-weight: 700;
}

.btn-whatsapp:hover {
  background: #22c55e;
  transform: scale(1.05);
}

/* ========================================
   FORM ELEMENTS
   ======================================== */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--purple);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--purple-light);
  border-radius: var(--radius);
  background: white;
  color: var(--foreground);
  font-size: 1rem;
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(233, 30, 140, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

/* ========================================
   CARDS
   ======================================== */
.card {
  background: var(--card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.card-body {
  padding: 1.5rem;
}

.card-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* Glass Card */
.card-glass {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* ========================================
   FLOATING DECORATIONS
   ======================================== */
.floating-decorations {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 10;
  overflow: hidden;
}

.decoration {
  position: absolute;
  opacity: 0.8;
  width: 3rem;
}

.deco-1 { top: 15%; left: 5%; animation: float 6s ease-in-out infinite; }
.deco-2 { top: 25%; right: 8%; animation: float 8s ease-in-out infinite 2s; }
.deco-3 { top: 45%; left: 10%; animation: bounce-gentle 3s ease-in-out infinite; }
.deco-4 { top: 60%; right: 5%; animation: float 10s ease-in-out infinite 1s; }
.deco-5 { top: 75%; left: 15%; animation: wiggle 4s ease-in-out infinite; }
.deco-6 { bottom: 10%; right: 12%; animation: float 6s ease-in-out infinite; }

@media (min-width: 768px) {
  .decoration { width: 5rem; }
}

@media (max-width: 768px) {
  .deco-2, .deco-4, .deco-6 { display: none; }
  .decoration { animation: none !important; }
}

/* ========================================
   NAVIGATION
   ======================================== */
.navigation {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all var(--transition-normal);
  background: transparent;
}

.navigation.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-subtle);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary);
}

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

@media (min-width: 768px) {
  .nav-links { display: flex; }
}

.nav-link {
  color: var(--foreground);
  opacity: 0.8;
  font-weight: 500;
  position: relative;
  transition: color var(--transition-normal);
  padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
  opacity: 1;
}

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

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

.nav-cta {
  padding: 0.75rem 1.5rem;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  width: 44px;
  height: 44px;
}

@media (min-width: 768px) {
  .mobile-menu-btn { display: none; }
}

.hamburger {
  width: 24px;
  height: 2px;
  background: var(--foreground);
  position: relative;
  transition: background var(--transition-normal);
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--foreground);
  transition: transform var(--transition-normal);
}

.hamburger::before { top: -8px; }
.hamburger::after { bottom: -8px; }

.mobile-menu-btn.active .hamburger {
  background: transparent;
}

.mobile-menu-btn.active .hamburger::before {
  transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.active .hamburger::after {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  margin: 0.5rem var(--container-padding);
  box-shadow: var(--shadow-subtle);
  animation: fadeIn 0.3s ease;
}

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

@media (min-width: 768px) {
  .mobile-menu { display: none !important; }
}

.mobile-nav-link {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--foreground);
  opacity: 0.8;
  transition: all var(--transition-normal);
  border-radius: var(--radius);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--primary);
  background: var(--muted);
  opacity: 1;
}

.mobile-cta {
  margin-top: 0.5rem;
}

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

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, 
    hsla(175, 55%, 35%, 0.4), 
    hsla(175, 55%, 35%, 0.2), 
    hsla(40, 30%, 96%, 0.95)
  );
}

.hero-float {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  display: none;
}

@media (min-width: 768px) {
  .hero-float { display: block; }
}

.hero-float-1 {
  top: 5rem;
  left: 2.5rem;
  width: 4rem;
  height: 4rem;
  background: hsla(25, 75%, 55%, 0.3);
  animation: float 6s ease-in-out infinite;
}

.hero-float-2 {
  top: 10rem;
  right: 5rem;
  width: 6rem;
  height: 6rem;
  background: hsla(35, 85%, 50%, 0.2);
  animation: float 8s ease-in-out infinite 2s;
}

.hero-float-3 {
  bottom: 8rem;
  left: 25%;
  width: 5rem;
  height: 5rem;
  background: hsla(175, 55%, 35%, 0.2);
  animation: float 6s ease-in-out infinite;
}

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

.hero-title {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

@media (min-width: 640px) { .hero-title { font-size: 4rem; } }
@media (min-width: 768px) { .hero-title { font-size: 6rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 8rem; } }

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--secondary);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

@media (min-width: 640px) { .hero-subtitle { font-size: 1.5rem; } }
@media (min-width: 768px) { .hero-subtitle { font-size: 1.875rem; } }

.hero-description {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) { .hero-description { font-size: 1.25rem; } }

.hero-description p {
  margin-bottom: 0.25rem;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-mouse {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-full);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0.5rem;
}

.scroll-dot {
  width: 6px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-full);
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section {
  background: var(--teal-light);
  padding: 5rem 0;
}

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

.about-header .section-label {
  color: #2D5F4F;
  font-weight: 500;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.about-header h2 {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--teal);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .about-header h2 { font-size: 3.75rem; }
}

.about-grid {
  display: grid;
  gap: 2rem;
  max-width: 56rem;
  margin: 0 auto;
}

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

.about-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: var(--radius-lg);
  transition: background var(--transition-normal);
}

.about-card:hover {
  background: rgba(255, 255, 255, 0.8);
}

.about-card .icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.about-card h3 {
  font-family: var(--font-display);
  font-size: 1.875rem;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.about-card p {
  color: #2D5F4F;
  font-size: 1.125rem;
  line-height: 1.7;
}

.about-welcome {
  background: var(--teal);
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  color: white;
}

.about-welcome h3 {
  font-family: var(--font-display);
  font-size: 1.875rem;
  margin-bottom: 1.5rem;
}

.about-welcome p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.about-welcome p:last-child {
  margin-bottom: 0;
}

/* ========================================
   ROOMS SECTION
   ======================================== */
.rooms-header {
  background: var(--purple-light);
  padding: 4rem 1rem 3rem;
  text-align: center;
}

.rooms-header .section-label {
  color: var(--purple);
  font-weight: 500;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.rooms-header h2 {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--pink);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .rooms-header h2 { font-size: 3.75rem; }
}

.rooms-header p {
  color: var(--purple);
  font-size: 1.125rem;
  max-width: 40rem;
  margin: 0 auto;
}

/* Room Item - Alternating Layout */
.room-item {
  display: flex;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .room-item { flex-direction: row; }
  .room-item.reverse { flex-direction: row-reverse; }
}

.room-item.pink-bg {
  background: var(--pink);
}

.room-item.purple-bg {
  background: var(--purple-light);
}

.room-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 768px) {
  .room-content { padding: 3rem; }
}

@media (min-width: 1024px) {
  .room-content { 
    width: 40%;
    padding: 4rem;
  }
}

.room-content h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .room-content h3 { font-size: 2.5rem; }
}

@media (min-width: 1024px) {
  .room-content h3 { font-size: 3rem; }
}

.room-content.on-pink h3 { color: var(--purple-light); }
.room-content.on-purple h3 { color: var(--pink); }

.room-capacity {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.room-content.on-pink .room-capacity { color: white; }
.room-content.on-purple .room-capacity { color: var(--purple); }

.room-content p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .room-content p { font-size: 1.125rem; }
}

.room-content.on-pink p { color: rgba(255, 255, 255, 0.9); }
.room-content.on-pink p:last-of-type { color: rgba(255, 255, 255, 0.8); }
.room-content.on-purple p { color: var(--purple); }
.room-content.on-purple p:last-of-type { color: rgba(74, 56, 103, 0.8); }

.room-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.room-feature {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
}

.room-content.on-pink .room-feature {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.room-content.on-purple .room-feature {
  background: white;
  color: var(--purple);
}

.room-image {
  position: relative;
}

@media (min-width: 1024px) {
  .room-image { width: 60%; }
}

.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 300px;
}

@media (min-width: 1024px) {
  .room-image img { min-height: 500px; }
}

.room-deco {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  color: var(--purple-light);
  display: none;
}

@media (min-width: 1024px) {
  .room-deco { display: block; }
}

/* Room Amenities */
.room-amenities {
  background: var(--purple-light);
  padding: 4rem 1rem;
}

.amenities-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  max-width: 60rem;
  margin: 0 auto;
}

.amenity-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-subtle);
  transition: transform var(--transition-normal);
}

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

.amenity-card .icon {
  font-size: 2rem;
}

.amenity-card h4 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--purple);
  margin-bottom: 0.25rem;
}

.amenity-card span {
  font-size: 0.875rem;
  color: rgba(74, 56, 103, 0.7);
}

/* ========================================
   ACTIVITIES SECTION
   ======================================== */
.activities-section {
  background: var(--yellow);
  padding: 5rem 0;
}

.activities-header {
  text-align: center;
  margin-bottom: 4rem;
}

.activities-header .section-label {
  color: var(--purple);
  font-weight: 500;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.activities-header h2 {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--pink);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .activities-header h2 { font-size: 3.75rem; }
}

.activities-header p {
  color: var(--purple);
  font-size: 1.25rem;
  max-width: 40rem;
  margin: 0 auto;
}

.activities-grid {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .activities-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .activities-grid { grid-template-columns: repeat(3, 1fr); }
}

.activity-card {
  padding: 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 300px;
  transition: transform var(--transition-normal);
}

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

.activity-card.bg-orange { background: var(--orange); }
.activity-card.bg-teal { background: var(--teal); }
.activity-card.bg-pink { background: var(--pink); }
.activity-card.bg-purple { background: var(--purple); }
.activity-card.bg-purple-light { background: var(--purple-light); }
.activity-card.bg-teal-light { background: var(--teal-light); }

.activity-icon {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform var(--transition-normal);
}

.activity-card:hover .activity-icon {
  transform: scale(1.1) rotate(6deg);
}

.activity-icon svg {
  width: 2rem;
  height: 2rem;
  stroke: white;
  stroke-width: 2;
  fill: none;
}

.activity-card.bg-purple-light .activity-icon svg,
.activity-card.bg-teal-light .activity-icon svg {
  stroke: var(--foreground);
}

.activity-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: white;
  margin-bottom: 0.75rem;
}

.activity-card.bg-purple-light h3,
.activity-card.bg-teal-light h3 {
  color: var(--foreground);
}

.activity-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
}

.activity-card.bg-purple-light p,
.activity-card.bg-teal-light p {
  color: var(--foreground);
  opacity: 0.8;
}

/* ========================================
   REVIEWS SECTION
   ======================================== */
.reviews-section {
  background: var(--pink);
  padding: 5rem 0;
}

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

.reviews-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.reviews-badge svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: var(--yellow);
  stroke: var(--yellow);
}

.reviews-badge span {
  color: var(--yellow);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
}

.reviews-header h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: white;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .reviews-header h2 { font-size: 3rem; }
}

.reviews-header p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  max-width: 40rem;
  margin: 0 auto 1.5rem;
}

.rating-summary {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-full);
  padding: 0.75rem 1.5rem;
}

.rating-number {
  font-size: 1.875rem;
  font-weight: 700;
  color: white;
}

.rating-stars {
  display: flex;
  gap: 0.25rem;
}

.rating-stars svg {
  width: 1rem;
  height: 1rem;
  fill: var(--yellow);
  stroke: var(--yellow);
}

.rating-count {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Review Cards */
.reviews-grid {
  display: grid;
  gap: 1.5rem;
  position: relative;
}

@media (min-width: 768px) {
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}

.review-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-xl);
  transition: transform var(--transition-normal);
}

.review-card:hover {
  transform: scale(1.02);
}

.review-quote {
  color: rgba(233, 30, 140, 0.2);
  margin-bottom: 1rem;
}

.review-quote svg {
  width: 2rem;
  height: 2rem;
}

.review-title {
  font-weight: 700;
  color: var(--purple);
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.review-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.review-rating svg {
  width: 1rem;
  height: 1rem;
  fill: var(--yellow);
  stroke: var(--yellow);
}

.review-text {
  color: rgba(74, 56, 103, 0.8);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-cottage {
  display: inline-block;
  background: rgba(233, 30, 140, 0.1);
  color: var(--pink);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid #f0f0f0;
}

.review-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(233, 30, 140, 0.2);
}

.review-author-name {
  font-weight: 600;
  color: var(--purple);
}

.review-author-info {
  font-size: 0.75rem;
  color: rgba(74, 56, 103, 0.6);
}

/* Review Navigation */
.reviews-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .reviews-nav { display: none; }
}

.reviews-nav button {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-normal);
}

.reviews-nav button:hover {
  transform: scale(1.1);
}

.reviews-nav svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: var(--pink);
}

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.reviews-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transition: all var(--transition-normal);
}

.reviews-dot.active {
  width: 1.5rem;
  background: var(--yellow);
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-section {
  background: var(--orange);
  padding: 5rem 0;
}

.contact-header {
  text-align: center;
  margin-bottom: 4rem;
}

.contact-header .section-label {
  color: var(--yellow);
  font-weight: 500;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.contact-header h2 {
  font-family: var(--font-display);
  font-size: 3rem;
  color: white;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .contact-header h2 { font-size: 3.75rem; }
}

.contact-header p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  max-width: 40rem;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  gap: 3rem;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

/* Contact Info */
.contact-info-card {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: var(--radius-xl);
}

.contact-info-card h3 {
  font-family: var(--font-display);
  font-size: 1.875rem;
  color: white;
  margin-bottom: 1.5rem;
}

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

.contact-item .icon {
  font-size: 2rem;
}

.contact-item-label {
  font-weight: 700;
  color: white;
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.contact-item-value {
  color: rgba(255, 255, 255, 0.8);
}

.contact-item a {
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition-normal);
}

.contact-item a:hover {
  color: white;
}

/* Why Thehraav Card */
.why-card {
  background: var(--yellow);
  padding: 2rem;
  border-radius: var(--radius-xl);
  margin-top: 2rem;
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--purple);
  margin-bottom: 1rem;
}

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

.why-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--purple);
  font-size: 1.125rem;
}

.why-item .icon {
  font-size: 1.5rem;
}





.contact-form-card h3 {
  font-family: var(--font-display);
  font-size: 1.875rem;
  color: var(--purple);
  margin-bottom: 1.5rem;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.footer-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(233, 30, 140, 0.1), transparent, rgba(255, 107, 53, 0.1));
  pointer-events: none;
}

.footer-content {
  position: relative;
  z-index: 10;
  padding: 4rem 0;
}

.footer-grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr 1fr; }
}

/* Footer Brand */
.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--yellow);
  margin-bottom: 1rem;
}

.footer-brand .tagline {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.footer-brand .description {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-normal);
}

.footer-social a:hover {
  transform: scale(1.1);
}

.footer-social a.instagram { background: var(--pink); }
.footer-social a.facebook { background: var(--purple); }
.footer-social a.youtube { background: var(--orange); }

.footer-social svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: white;
  fill: none;
}

/* Footer Links */
.footer-section h4 {
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color var(--transition-normal);
}

.footer-link:hover {
  color: var(--yellow);
}

.footer-link::before {
  content: '';
  width: 0;
  height: 2px;
  background: var(--yellow);
  transition: width var(--transition-normal);
}

.footer-link:hover::before {
  width: 1rem;
}

/* Footer Contact */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-normal);
}

.footer-contact-item:hover {
  color: var(--teal-light);
}

.footer-contact-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-contact-icon.phone { background: rgba(180, 228, 211, 0.2); }
.footer-contact-icon.email { background: rgba(196, 181, 232, 0.2); }
.footer-contact-icon.location { background: rgba(255, 107, 53, 0.2); }

.footer-contact-icon svg {
  width: 1rem;
  height: 1rem;
}

.footer-contact-icon.phone svg { stroke: var(--teal-light); }
.footer-contact-icon.email svg { stroke: var(--purple-light); }
.footer-contact-icon.location svg { stroke: var(--orange); }

/* Footer CTA */
.footer-cta p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

.footer-cta .btn {
  margin-bottom: 1.5rem;
}

.footer-rooms {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

/* Footer Bottom */
.footer-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
  margin-bottom: 2rem;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-copyright svg {
  width: 1rem;
  height: 1rem;
  fill: var(--pink);
  stroke: var(--pink);
}

.footer-back-top {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition-normal);
}

.footer-back-top:hover {
  color: var(--yellow);
}

.footer-back-top span {
  font-size: 0.875rem;
}

.footer-back-top .icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
}

.footer-back-top:hover .icon {
  border-color: var(--yellow);
  background: rgba(249, 229, 71, 0.1);
}

.footer-back-top svg {
  width: 1rem;
  height: 1rem;
  transition: transform var(--transition-normal);
}

.footer-back-top:hover svg {
  transform: translateY(-2px);
}

/* ========================================
   FLOATING WHATSAPP BUTTON
   ======================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 40;
}

.whatsapp-btn {
  width: 3.5rem;
  height: 3.5rem;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-normal);
  position: relative;
}

.whatsapp-btn::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.3;
  animation: pulse 2s ease-in-out infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn svg {
  width: 1.75rem;
  height: 1.75rem;
  fill: white;
  position: relative;
  z-index: 1;
}

.whatsapp-tooltip {
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  margin-right: 0.75rem;
  background: white;
  color: var(--foreground);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: var(--shadow-subtle);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.whatsapp-btn:hover + .whatsapp-tooltip,
.floating-whatsapp:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
}

/* ========================================
   PAGE HEADERS (for inner pages)
   ======================================== */
.page-header {
  padding: 8rem 0 4rem;
  text-align: center;
}

.page-header.purple { background: var(--purple-light); }
.page-header.pink { background: var(--pink); }
.page-header.teal { background: var(--teal-light); }
.page-header.yellow { background: var(--yellow); }
.page-header.orange { background: var(--orange); }

.page-header h1 {
  font-family: var(--font-display);
  font-size: 3rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .page-header h1 { font-size: 4rem; }
}

.page-header.purple h1 { color: var(--pink); }
.page-header.pink h1 { color: white; }
.page-header.teal h1 { color: var(--teal); }
.page-header.yellow h1 { color: var(--pink); }
.page-header.orange h1 { color: white; }

.page-header p {
  font-size: 1.25rem;
  max-width: 40rem;
  margin: 0 auto;
}

.page-header.purple p { color: var(--purple); }
.page-header.pink p { color: rgba(255, 255, 255, 0.9); }
.page-header.teal p { color: #2D5F4F; }
.page-header.yellow p { color: var(--purple); }
.page-header.orange p { color: rgba(255, 255, 255, 0.9); }

/* ========================================
   TOAST NOTIFICATIONS
   ======================================== */
.toast-container {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
}

.toast {
  background: var(--teal);
  color: white;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: fadeInUp 0.3s ease;
}

.toast.hidden {
  display: none;
}

.toast-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.toast-message {
  font-weight: 500;
}

.toast-close {
  margin-left: 1rem;
  opacity: 0.7;
  transition: opacity var(--transition-normal);
}

.toast-close:hover {
  opacity: 1;
}

/* ========================================
   RESPONSIVE UTILITIES
   ======================================== */
@media (max-width: 640px) {
  .container {
    padding: 0 1rem;
  }

  .section-padding {
    padding: 3rem 0;
  }
}

@media (min-width: 768px) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (min-width: 1024px) {
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ========================================
   CAROUSEL STYLES
   ======================================== */
.carousel {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  flex: 0 0 100%;
  min-width: 100%;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-subtle);
  z-index: 10;
  transition: all var(--transition-normal);
}

.carousel-nav:hover {
  transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev { left: 1rem; }
.carousel-nav.next { right: 1rem; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.carousel-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  transition: all var(--transition-normal);
}

.carousel-dot.active {
  width: 1.5rem;
  background: var(--primary);
}

/* ========================================
   GALLERY GRID
   ======================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1;
  transition: transform var(--transition-normal);
}

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

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

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 3rem;
  height: 3rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: background var(--transition-normal);
}

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

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

/* ========================================
   BLOG CARDS
   ======================================== */
.blog-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  transition: all var(--transition-normal);
}

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

.blog-card-image {
  aspect-ratio: 16/9;
  object-fit: cover;
}

.blog-card-body {
  padding: 1.5rem;
}

.blog-card-category {
  display: inline-block;
  background: rgba(233, 30, 140, 0.1);
  color: var(--pink);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.blog-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.blog-card-excerpt {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.blog-card-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-card-author img {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
}

/* ========================================
   VIRTUAL TOUR / MAP SECTION
   ======================================== */
.virtual-tour {
  padding: 5rem 0;
  background: var(--muted);
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}

@media (min-width: 768px) {
  .map-container iframe {
    height: 500px;
  }
}

/* ========================================
   WEATHER WIDGET
   ======================================== */
.weather-widget {
  background: var(--purple);
  padding: 3rem 0;
}

.weather-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  color: white;
}

.weather-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  min-width: 150px;
}

.weather-icon {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.weather-temp {
  font-size: 2rem;
  font-weight: 700;
}

.weather-label {
  font-size: 0.875rem;
  opacity: 0.8;
}

/* ========================================
   CTA BANNER
   ======================================== */
.cta-banner {
  padding: 4rem 0;
  text-align: center;
}

.cta-banner.purple { background: var(--purple); }
.cta-banner.pink { background: var(--pink); }
.cta-banner.orange { background: var(--orange); }

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: white;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .cta-banner h2 { font-size: 3rem; }
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  max-width: 40rem;
  margin: 0 auto 2rem;
}

/* Print Styles */
@media print {
  .navigation,
  .floating-whatsapp,
  .floating-decorations {
    display: none !important;
  }
}
