:root {
  /* Colors */
  --primary: #1D3557;
  --primary-dark: #142a45;
  --primary-light: #2a4a73;
  --secondary: #E07A5F;
  --secondary-dark: #c9654a;
  --accent: #81B29A;
  --accent-dark: #6a9a82;
  --bg: #F4F1DE;
  --surface: #FFFFFF;
  --text: #2B2D42;
  --text-secondary: #6C757D;
  --success: #2A9D8F;
  --error: #E63946;
  --warning: #F4A261;
  --border: #E5E5E5;
  --border-light: #F0F0F0;
  --overlay: rgba(29, 53, 87, 0.7);
  --whatsapp: #25D366;
  --phone: #1D3557;
  --light: #FFFFFF;

  /* Typography */
  --font-heading: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Open Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'SF Mono', 'Fira Code', 'Courier New', monospace;

  /* Font sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.5rem;
  --text-5xl: 3rem;

  /* Spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;

  /* Border radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
  --shadow-hover: 0 12px 32px rgba(0,0,0,0.15);
  --shadow-glow: 0 0 0 3px rgba(224,122,95,0.3);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  /* Layout */
  --max-width: 1280px;
  --header-height: 72px;
  --sticky-cta-height: 56px;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--secondary); }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: var(--text-base); }

/* Typography */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; color: var(--text); }
h1 { font-size: var(--text-4xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }
p { margin-bottom: var(--space-4); }
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-accent { color: var(--accent); }
.text-white { color: white; }
.text-muted { color: var(--text-secondary); }
.font-heading { font-family: var(--font-heading); }
.font-mono { font-family: var(--font-mono); }

/* Container */
.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 var(--space-5); }
@media (max-width: 640px) { .container { padding: 0 var(--space-4); } }

/* Section */
.section { padding: var(--space-8) 0; }
.section-light { background: var(--surface); }
.section-dark { background: var(--primary); color: white; }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark p { color: white; }
.section-title { text-align: center; margin-bottom: var(--space-7); }
.section-title h2 { margin-bottom: var(--space-3); }
.section-title p { color: var(--text-secondary); max-width: 640px; margin: 0 auto; }
.section-title[style*="text-align: left"] p,
.section-title[style*="text-align:left"] p { margin-left: 0; margin-right: 0; max-width: none; }
.section-title .divider {
  width: 60px; height: 3px; background: var(--secondary); margin: var(--space-4) auto 0;
  border-radius: var(--radius-pill);
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
  padding: var(--space-3) var(--space-5); font-family: var(--font-heading); font-weight: 600;
  font-size: var(--text-base); border-radius: var(--radius-pill); transition: all var(--transition-base);
  white-space: nowrap;
}
.btn-primary { background: var(--primary); color: white; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--primary-dark); color: white; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-primary:active { transform: translateY(0); }
.btn-secondary { background: var(--secondary); color: white; box-shadow: var(--shadow-sm); }
.btn-secondary:hover { background: var(--secondary-dark); color: white; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: white; }
.btn-light { background: white; color: var(--primary); }
.btn-light:hover { background: var(--border-light); color: var(--primary); }
.btn-white { background: white; color: var(--primary); }
.btn-white:hover { background: var(--border-light); }
.btn-whatsapp { background: var(--whatsapp); color: white; }
.btn-whatsapp:hover { background: #128C7E; color: white; }
.btn-phone { background: var(--phone); color: white; }
.btn-phone:hover { background: var(--primary-dark); color: white; }
.btn-lg { padding: var(--space-4) var(--space-6); font-size: var(--text-lg); }
.btn-sm { padding: var(--space-2) var(--space-4); font-size: var(--text-sm); }
.btn-full { width: 100%; }
.btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none !important; }

/* Cards */
.card {
  background: var(--surface); border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: all var(--transition-base); border: 1px solid var(--border-light);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.card-image { position: relative; overflow: hidden; aspect-ratio: 16/9; }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.card:hover .card-image img { transform: scale(1.05); }
.card-body { padding: var(--space-5); }
.card-title { font-size: var(--text-xl); font-weight: 700; margin-bottom: var(--space-2); }
.card-text { color: var(--text-secondary); font-size: var(--text-sm); margin-bottom: var(--space-4); }
.card-footer { padding: var(--space-4) var(--space-5); border-top: 1px solid var(--border-light); display: flex; justify-content: space-between; align-items: center; }

/* Badge */
.badge {
  display: inline-flex; align-items: center; gap: var(--space-1);
  padding: var(--space-1) var(--space-3); font-size: var(--text-xs); font-weight: 600;
  border-radius: var(--radius-pill); text-transform: uppercase; letter-spacing: 0.05em;
}
.badge-primary { background: var(--primary); color: white; }
.badge-secondary { background: var(--secondary); color: white; }
.badge-accent { background: var(--accent); color: white; }
.badge-outline { background: transparent; border: 1px solid var(--border); color: var(--text-secondary); }

/* Forms */
.form-group { margin-bottom: var(--space-5); }
.form-label { display: block; font-weight: 600; font-size: var(--text-sm); margin-bottom: var(--space-2); color: var(--text); }
.form-label .required { color: var(--error); }
.form-input, .form-textarea, .form-select {
  width: 100%; padding: var(--space-3) var(--space-4); border: 1px solid var(--border);
  border-radius: var(--radius-sm); background: var(--surface); color: var(--text);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none; border-color: var(--secondary); box-shadow: var(--shadow-glow);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236C757D' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }
.form-hint { font-size: var(--text-xs); color: var(--text-secondary); margin-top: var(--space-1); }
.form-error { font-size: var(--text-xs); color: var(--error); margin-top: var(--space-1); display: none; }
.form-group.has-error .form-input, .form-group.has-error .form-textarea, .form-group.has-error .form-select { border-color: var(--error); }
.form-group.has-error .form-error { display: block; }

/* Grid */
.grid { display: grid; gap: var(--space-5); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .grid-3, .grid-4 { grid-template-columns: 1fr; } .grid-2 { grid-template-columns: 1fr; } }

/* Flex utilities */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-2 { gap: var(--space-2); }
.gap-3 { gap: var(--space-3); }
.gap-4 { gap: var(--space-4); }
.gap-5 { gap: var(--space-5); }

/* Spacing utilities */
.mt-2 { margin-top: var(--space-2); }
.mt-3 { margin-top: var(--space-3); }
.mt-4 { margin-top: var(--space-4); }
.mt-5 { margin-top: var(--space-5); }
.mt-6 { margin-top: var(--space-6); }
.mb-2 { margin-bottom: var(--space-2); }
.mb-3 { margin-bottom: var(--space-3); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-5 { margin-bottom: var(--space-5); }
.mb-6 { margin-bottom: var(--space-6); }

/* Header */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--surface); box-shadow: var(--shadow-sm); height: var(--header-height);
}
.header .container { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.header-logo { display: flex; align-items: center; gap: var(--space-3); }
.header-logo img { height: 44px; width: auto; }
.header-logo-text { font-family: var(--font-heading); font-weight: 700; font-size: var(--text-xl); color: var(--primary); }
.header-logo-text span { color: var(--secondary); }
.header-nav { display: flex; align-items: center; gap: var(--space-5); }
.header-nav a { font-weight: 500; font-size: var(--text-sm); color: var(--text); padding: var(--space-2) 0; position: relative; }
.header-nav a:hover { color: var(--secondary); }
.header-nav a::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
  background: var(--secondary); transition: width var(--transition-base); border-radius: var(--radius-pill);
}
.header-nav a:hover::after { width: 100%; }
.header-nav a.active { color: var(--secondary); }
.header-nav a.active::after { width: 100%; }
.header-cta { display: flex; align-items: center; gap: var(--space-3); }
.header-phone { font-family: var(--font-heading); font-weight: 700; font-size: var(--text-sm); color: var(--primary); white-space: nowrap; }
.header-phone a { color: var(--primary); }
.mobile-toggle { display: none; flex-direction: column; gap: 5px; padding: var(--space-3); cursor: pointer; }
.mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--text); transition: all var(--transition-base); border-radius: var(--radius-pill); }
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 1024px) {
  .header-nav { display: none; position: absolute; top: var(--header-height); left: 0; right: 0;
    background: var(--surface); flex-direction: column; padding: var(--space-5); gap: var(--space-4);
    box-shadow: var(--shadow-lg); border-top: 1px solid var(--border-light); }
  .header-nav.open { display: flex; }
  .header-nav a { font-size: var(--text-lg); padding: var(--space-3) 0; width: 100%; border-bottom: 1px solid var(--border-light); }
  .header-nav a::after { display: none; }
  .mobile-toggle { display: flex; }
  .header-cta .btn { display: none; }
  .header-phone { display: none; }
}

/* Footer */
.footer { background: var(--primary); color: white; padding: var(--space-8) 0 var(--space-5); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--space-6); }
.footer-brand img { height: 48px; margin-bottom: var(--space-4); }
.footer-brand p { color: rgba(255,255,255,0.7); font-size: var(--text-sm); line-height: 1.7; }
.footer-social { display: flex; gap: var(--space-3); margin-top: var(--space-4); }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center; transition: all var(--transition-base);
}
.footer-social a:hover { background: var(--secondary); transform: translateY(-2px); }
.footer-social a svg { width: 18px; height: 18px; fill: white; }
.footer-title { font-family: var(--font-heading); font-weight: 600; font-size: var(--text-lg); margin-bottom: var(--space-4); color: white; }
.footer-links li { margin-bottom: var(--space-3); }
.footer-links a { color: rgba(255,255,255,0.7); font-size: var(--text-sm); transition: color var(--transition-fast); }
.footer-links a:hover { color: var(--secondary); }
.footer-contact li { display: flex; align-items: flex-start; gap: var(--space-3); margin-bottom: var(--space-3); color: rgba(255,255,255,0.7); font-size: var(--text-sm); }
.footer-contact a { color: rgba(255,255,255,0.7); transition: color var(--transition-fast); }
.footer-contact a:hover { color: var(--secondary); }
.footer-contact li svg { width: 18px; height: 18px; fill: var(--secondary); flex-shrink: 0; margin-top: 2px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: var(--space-7); padding-top: var(--space-5); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: var(--space-4); }
.footer-bottom p { color: rgba(255,255,255,0.5); font-size: var(--text-xs); margin: 0; }
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-6); }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* Sticky Mobile CTA */
.sticky-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: var(--surface); box-shadow: 0 -4px 20px rgba(0,0,0,0.1); padding: var(--space-3) var(--space-4);
  border-top: 1px solid var(--border-light);
}
.sticky-cta-inner { display: flex; gap: var(--space-3); max-width: var(--max-width); margin: 0 auto; }
.sticky-cta .btn { flex: 1; padding: var(--space-3) var(--space-2); font-size: var(--text-sm); }
@media (max-width: 768px) {
  .sticky-cta { display: block; }
  body { padding-bottom: calc(var(--sticky-cta-height) + var(--space-4)); }
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed; bottom: calc(var(--sticky-cta-height) + var(--space-4)); right: var(--space-4);
  z-index: 998; width: 56px; height: 56px; border-radius: 50%; background: var(--whatsapp);
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-lg);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: var(--shadow-hover); }
.whatsapp-float svg { width: 28px; height: 28px; fill: white; }
@media (max-width: 768px) {
  .whatsapp-float { bottom: calc(var(--sticky-cta-height) + var(--space-4) + 8px); }
}

/* Hero */
.hero { position: relative; min-height: 80vh; display: flex; align-items: center; overflow: hidden; background: var(--primary); }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.4; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, var(--primary) 0%, rgba(29,53,87,0.6) 50%, rgba(29,53,87,0.3) 100%); }
.hero-content { position: relative; z-index: 1; padding: var(--space-10) 0; max-width: 640px; }
.hero h1 { font-size: var(--text-5xl); color: white; margin-bottom: var(--space-4); line-height: 1.1; }
.hero h1 span { color: var(--secondary); }
.hero p { font-size: var(--text-lg); color: rgba(255,255,255,0.85); margin-bottom: var(--space-6); }
.hero-badges { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-bottom: var(--space-6); }
.hero-buttons { display: flex; flex-wrap: wrap; gap: var(--space-4); }
.hero-trust { display: flex; flex-wrap: wrap; gap: var(--space-5); margin-top: var(--space-7); align-items: center; }
.hero-trust-item { display: flex; align-items: center; gap: var(--space-2); color: rgba(255,255,255,0.8); font-size: var(--text-sm); }
.hero-trust-item svg { width: 20px; height: 20px; fill: var(--secondary); }
@media (max-width: 768px) {
  .hero { min-height: auto; padding: var(--space-8) 0; }
  .hero h1 { font-size: var(--text-3xl); }
  .hero p { font-size: var(--text-base); }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }
}

/* Room Cards */
.room-card { display: flex; gap: var(--space-5); padding: var(--space-5); background: var(--surface); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); border: 1px solid var(--border-light); transition: all var(--transition-base); }
.room-card:hover { box-shadow: var(--shadow-md); }
.room-card-image { width: 280px; min-width: 280px; height: 200px; border-radius: var(--radius-sm); overflow: hidden; position: relative; }
.room-card-image img { width: 100%; height: 100%; object-fit: cover; }
.room-card-badge { position: absolute; top: var(--space-3); left: var(--space-3); }
.room-card-content { flex: 1; display: flex; flex-direction: column; }
.room-card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: var(--space-3); }
.room-card-title { font-size: var(--text-xl); font-weight: 700; }
.room-card-price { text-align: right; }
.room-card-price .amount { font-size: var(--text-2xl); font-weight: 700; color: var(--primary); }
.room-card-price .period { font-size: var(--text-xs); color: var(--text-secondary); }
.room-card-price .tax { font-size: var(--text-xs); color: var(--text-secondary); }
.room-card-desc { color: var(--text-secondary); font-size: var(--text-sm); margin-bottom: var(--space-4); }
.room-card-amenities { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-bottom: var(--space-4); margin-top: auto; }
.room-card-amenity { display: flex; align-items: center; gap: var(--space-1); font-size: var(--text-sm); color: var(--text-secondary); }
.room-card-amenity svg { width: 16px; height: 16px; fill: var(--accent); }
.room-card-actions { display: flex; gap: var(--space-3); align-items: center; }
.room-card-actions .btn { padding: var(--space-3) var(--space-5); }
@media (max-width: 768px) {
  .room-card { flex-direction: column; }
  .room-card-image { width: 100%; min-width: auto; height: 220px; }
  .room-card-header { flex-direction: column; gap: var(--space-3); }
  .room-card-price { text-align: left; }
  .room-card-actions { flex-direction: column; }
  .room-card-actions .btn { width: 100%; }
}

/* Feature Grid */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
.feature-item { text-align: center; padding: var(--space-6) var(--space-4); }
.feature-icon { width: 64px; height: 64px; border-radius: 50%; background: rgba(129,178,154,0.15); display: flex; align-items: center; justify-content: center; margin: 0 auto var(--space-4); }
.feature-icon svg { width: 28px; height: 28px; fill: var(--accent); }
.feature-item h3 { font-size: var(--text-lg); margin-bottom: var(--space-2); }
.feature-item p { color: var(--text-secondary); font-size: var(--text-sm); }
@media (max-width: 768px) { .feature-grid { grid-template-columns: 1fr; } }

/* Testimonials */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
.testimonial-card { background: var(--surface); padding: var(--space-6); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.testimonial-stars { display: flex; gap: var(--space-1); margin-bottom: var(--space-4); }
.testimonial-stars svg { width: 20px; height: 20px; fill: var(--warning); }
.testimonial-text { font-size: var(--text-base); color: var(--text); margin-bottom: var(--space-4); line-height: 1.6; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: var(--space-3); }
.testimonial-author-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--border-light); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--primary); }
.testimonial-author-info h4 { font-size: var(--text-sm); font-weight: 600; margin-bottom: 2px; }
.testimonial-author-info p { font-size: var(--text-xs); color: var(--text-secondary); margin: 0; }
@media (max-width: 768px) { .testimonial-grid { grid-template-columns: 1fr; } }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center; width: 100%;
  padding: var(--space-5) 0; font-family: var(--font-heading); font-weight: 600; font-size: var(--text-lg);
  text-align: left; color: var(--text); background: none; border: none; cursor: pointer;
}
.faq-question:hover { color: var(--primary); }
.faq-question-icon { width: 24px; height: 24px; transition: transform var(--transition-base); flex-shrink: 0; }
.faq-question-icon svg { width: 100%; height: 100%; fill: var(--text-secondary); }
.faq-item.active .faq-question-icon { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height var(--transition-slow), padding var(--transition-slow);
}
.faq-item.active .faq-answer { max-height: 500px; padding-bottom: var(--space-5); }
.faq-answer p { color: var(--text-secondary); line-height: 1.7; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-3); }
.gallery-item { aspect-ratio: 1; border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0); transition: background var(--transition-fast); }
.gallery-item:hover::after { background: rgba(0,0,0,0.2); }
@media (max-width: 1024px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

/* Lightbox */
.lightbox { display: none; position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,0.9); align-items: center; justify-content: center; }
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: var(--radius-sm); }
.lightbox-close { position: absolute; top: var(--space-5); right: var(--space-5); color: white; font-size: 2rem; cursor: pointer; background: none; border: none; }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.2); border: none; color: white; width: 48px; height: 48px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.lightbox-nav:hover { background: rgba(255,255,255,0.4); }
.lightbox-prev { left: var(--space-5); }
.lightbox-next { right: var(--space-5); }

/* Booking Page - Zotel Style */
.booking-search-bar {
  background: var(--surface); padding: var(--space-5); border-radius: var(--radius-md);
  box-shadow: var(--shadow-md); display: flex; gap: var(--space-4); align-items: end; flex-wrap: wrap;
  margin-bottom: var(--space-6);
}
.booking-search-field { flex: 1; min-width: 200px; }
.booking-search-field label { display: block; font-size: var(--text-xs); font-weight: 600; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: var(--space-2); }
.booking-search-field .form-input { font-size: var(--text-base); padding: var(--space-3) var(--space-4); }
.booking-search-field .guest-counter { display: flex; align-items: center; gap: var(--space-3); }
.booking-search-field .guest-counter button { width: 36px; height: 36px; border-radius: var(--radius-sm); border: 1px solid var(--border); background: var(--surface); display: flex; align-items: center; justify-content: center; font-size: var(--text-lg); font-weight: 600; color: var(--text); }
.booking-search-field .guest-counter button:hover { background: var(--border-light); }
.booking-search-field .guest-counter span { font-size: var(--text-lg); font-weight: 600; min-width: 24px; text-align: center; }
.booking-summary { display: flex; align-items: center; gap: var(--space-3); margin-bottom: var(--space-6); font-size: var(--text-sm); color: var(--text-secondary); }
.booking-summary svg { width: 18px; height: 18px; fill: var(--text-secondary); }

/* Location Map */
.map-embed { width: 100%; height: 400px; border-radius: var(--radius-md); overflow: hidden; border: none; }
@media (max-width: 768px) { .map-embed { height: 300px; } }

/* Nearby List */
.nearby-list { display: grid; gap: var(--space-4); }
.nearby-item { display: flex; align-items: center; gap: var(--space-4); padding: var(--space-4); background: var(--surface); border-radius: var(--radius-sm); border: 1px solid var(--border-light); transition: all var(--transition-base); }
.nearby-item:hover { border-color: var(--secondary); box-shadow: var(--shadow-sm); }
.nearby-icon { width: 48px; height: 48px; border-radius: var(--radius-sm); background: rgba(129,178,154,0.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.nearby-icon svg { width: 24px; height: 24px; fill: var(--accent); }
.nearby-info h4 { font-size: var(--text-base); font-weight: 600; margin-bottom: 2px; }
.nearby-info p { font-size: var(--text-sm); color: var(--text-secondary); margin: 0; }
.nearby-distance { font-family: var(--font-heading); font-weight: 700; font-size: var(--text-sm); color: var(--primary); white-space: nowrap; }

/* Blog Cards */
.blog-card { display: flex; gap: var(--space-5); padding: var(--space-5); background: var(--surface); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); border: 1px solid var(--border-light); margin-bottom: var(--space-5); transition: all var(--transition-base); }
.blog-card:hover { box-shadow: var(--shadow-md); }
.blog-card-image { width: 240px; min-width: 240px; height: 160px; border-radius: var(--radius-sm); overflow: hidden; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-content { flex: 1; }
.blog-card-meta { display: flex; gap: var(--space-3); font-size: var(--text-xs); color: var(--text-secondary); margin-bottom: var(--space-3); text-transform: uppercase; letter-spacing: 0.05em; }
.blog-card-title { font-size: var(--text-xl); font-weight: 700; margin-bottom: var(--space-2); }
.blog-card-title a { color: var(--text); }
.blog-card-title a:hover { color: var(--primary); }
.blog-card-excerpt { color: var(--text-secondary); font-size: var(--text-sm); margin-bottom: var(--space-4); }
.blog-card-readmore { font-weight: 600; font-size: var(--text-sm); color: var(--primary); }
.blog-card-readmore:hover { color: var(--secondary); }
@media (max-width: 768px) {
  .blog-card { flex-direction: column; }
  .blog-card-image { width: 100%; min-width: auto; height: 200px; }
}

/* Breadcrumb */
.breadcrumb { display: flex; align-items: center; gap: var(--space-2); font-size: var(--text-sm); color: var(--text-secondary); margin-bottom: var(--space-5); flex-wrap: wrap; }
.breadcrumb a { color: var(--text-secondary); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb-separator { color: var(--border); }
.breadcrumb-current { color: var(--text); font-weight: 500; }

/* Table */
.table-wrapper { overflow-x: auto; border-radius: var(--radius-md); border: 1px solid var(--border-light); }
.table { width: 100%; border-collapse: collapse; }
.table th { background: var(--primary); color: white; padding: var(--space-4); text-align: left; font-weight: 600; font-size: var(--text-sm); white-space: nowrap; }
.table td { padding: var(--space-4); border-bottom: 1px solid var(--border-light); font-size: var(--text-sm); }
.table tr:last-child td { border-bottom: none; }
.table tr:hover td { background: var(--bg); }
.table .price { font-family: var(--font-heading); font-weight: 700; color: var(--primary); }

/* Comparison */
.comparison-table .check { color: var(--success); font-weight: 700; }
.comparison-table .cross { color: var(--error); }
.comparison-table .highlight { background: rgba(129,178,154,0.1); }

/* Urgency Banner */
.urgency-banner {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  color: white; padding: var(--space-3) var(--space-5); text-align: center;
  font-size: var(--text-sm); font-weight: 600; position: relative; overflow: hidden;
}
.urgency-banner::before {
  content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,255,255,0.05) 10px, rgba(255,255,255,0.05) 20px);
  animation: shimmer 20s linear infinite;
}
@keyframes shimmer { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }
.urgency-banner p { position: relative; z-index: 1; margin: 0; }

/* Scroll animations */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Print styles */
@media print {
  .header, .footer, .sticky-cta, .whatsapp-float, .urgency-banner { display: none !important; }
  .hero { min-height: auto; padding: var(--space-5) 0; }
  .hero h1 { font-size: var(--text-2xl); color: var(--text); }
  body { padding-bottom: 0 !important; }
}

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

/* Accessibility */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
:focus-visible { outline: 2px solid var(--secondary); outline-offset: 2px; border-radius: var(--radius-sm); }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: var(--radius-pill); }
::-webkit-scrollbar-thumb:hover { background: var(--text-secondary); }

/* Selection */
::selection { background: var(--secondary); color: white; }
