/* ===================================================
   HOTEL CARPAȚI – MAIN STYLESHEET
   Theme: Elegant Romanian Hospitality
   Colors: Gold (#c9a96e), Deep Brown (#2c1a0e), Cream (#faf7f2)
=================================================== */

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

:root {
  --gold: #c9a96e;
  --gold-dark: #a8874f;
  --brown: #2c1a0e;
  --brown-mid: #5c3d2e;
  --cream: #faf7f2;
  --cream-dark: #f0ebe2;
  --text: #2d2d2d;
  --text-light: #666;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.18);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: all 0.3s ease;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Lato', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); color: var(--text); background: var(--white); line-height: 1.7; }

img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-dark); }
address { font-style: normal; }

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

/* ---- UTILITY ---- */
.hidden { display: none !important; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 4px;
  font-family: var(--font-sans); font-size: 15px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  cursor: pointer; border: 2px solid transparent;
  transition: var(--transition); text-align: center;
}
.btn-primary { background: var(--gold); color: var(--brown); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--brown); }
.btn-full { width: 100%; justify-content: center; }
.btn-large { padding: 18px 40px; font-size: 16px; }

/* ---- SECTIONS ---- */
section { padding: 100px 0; }

.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block; font-size: 12px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--brown); line-height: 1.2; margin-bottom: 16px;
}
.section-header.light .section-title { color: var(--white); }
.section-header.light .section-tag { color: var(--gold); }
.title-divider {
  width: 60px; height: 3px; background: var(--gold);
  margin: 0 auto 20px; border-radius: 2px;
}
.section-note, .section-subtitle {
  font-size: 15px; color: var(--text-light); max-width: 620px; margin: 0 auto;
}
.section-header.light .section-subtitle { color: rgba(255,255,255,0.75); }

/* ============================================================
   NAVIGATION
============================================================ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent; transition: var(--transition);
  padding: 20px 0;
}
#navbar.scrolled {
  background: rgba(44,26,14,0.97);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; flex-direction: column; }
.logo-main {
  font-family: var(--font-serif); font-size: 22px; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.logo-sub { font-size: 10px; color: rgba(255,255,255,0.6); letter-spacing: 2px; margin-top: 3px; }
.nav-links { display: flex; align-items: center; list-style: none; gap: 8px; }
.nav-links a {
  color: var(--white); font-size: 13px; font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase; padding: 8px 12px;
  border-radius: 4px; transition: var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links .nav-cta {
  background: var(--gold); color: var(--brown);
  padding: 10px 20px; margin-left: 8px;
}
.nav-links .nav-cta:hover { background: var(--gold-dark); color: var(--white); }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 26px; height: 2px;
  background: var(--white); transition: var(--transition);
}

/* ============================================================
   HERO SLIDESHOW
============================================================ */
#hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding: 0;
}
.slideshow { position: absolute; inset: 0; }
.slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s ease;
}
.slide.active { opacity: 1; }
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(44,26,14,0.55) 0%, rgba(44,26,14,0.35) 50%, rgba(44,26,14,0.7) 100%);
}
.hero-content {
  position: relative; z-index: 2; text-align: center;
  max-width: 800px; padding: 0 24px;
  animation: fadeInUp 1.2s ease 0.3s both;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-tagline {
  font-size: 14px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.hero-title {
  font-family: var(--font-serif); font-size: clamp(3rem, 8vw, 6rem);
  color: var(--white); font-weight: 700; line-height: 1.1; margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem); color: rgba(255,255,255,0.85);
  margin-bottom: 28px; font-weight: 300; font-style: italic;
  font-family: var(--font-serif);
}
.hero-badges {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-badges span {
  background: rgba(255,255,255,0.12); backdrop-filter: blur(8px);
  border: 1px solid rgba(201,169,110,0.4);
  color: var(--gold); font-size: 12px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 8px 18px; border-radius: 100px;
}
.hero-badges span i { margin-right: 4px; font-size: 10px; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.slide-controls {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 3; display: flex; align-items: center; gap: 16px;
}
.slide-btn {
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3);
  color: var(--white); width: 44px; height: 44px; border-radius: 50%;
  cursor: pointer; transition: var(--transition); font-size: 14px;
  display: flex; align-items: center; justify-content: center;
}
.slide-btn:hover { background: var(--gold); border-color: var(--gold); }
.slide-dots { display: flex; gap: 8px; }
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.4); cursor: pointer; transition: var(--transition);
}
.dot.active { background: var(--gold); width: 24px; border-radius: 4px; }

/* ============================================================
   ABOUT
============================================================ */
#about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-lead {
  font-family: var(--font-serif); font-size: 1.25rem; color: var(--brown);
  margin-bottom: 20px; line-height: 1.6; font-style: italic;
}
.about-text p { color: var(--text-light); margin-bottom: 16px; }
.about-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; margin-top: 36px; padding-top: 36px;
  border-top: 1px solid var(--cream-dark);
}
.stat { text-align: center; }
.stat-num {
  display: block; font-family: var(--font-serif); font-size: 2rem;
  font-weight: 700; color: var(--gold);
}
.stat-label { font-size: 11px; color: var(--text-light); letter-spacing: 1px; text-transform: uppercase; }
.about-images { display: flex; gap: 16px; height: 500px; }
.about-img-main { flex: 1.4; border-radius: var(--radius-lg); overflow: hidden; }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-side { flex: 1; display: flex; flex-direction: column; gap: 16px; }
.about-img-side img { flex: 1; border-radius: var(--radius-lg); object-fit: cover; width: 100%; }

/* ============================================================
   GALLERY
============================================================ */
#gallery { background: var(--brown); padding-bottom: 80px; overflow: hidden; }
#gallery .section-title { color: var(--white); }
.gallery-track-wrapper {
  position: relative; padding: 0 60px;
}
.gallery-track {
  display: flex; gap: 20px;
  overflow-x: auto; scroll-behavior: smooth;
  scrollbar-width: none; padding: 0 24px 16px;
}
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-item {
  flex: 0 0 300px; position: relative;
  border-radius: var(--radius-lg); overflow: hidden;
  cursor: pointer; box-shadow: var(--shadow-lg);
}
.gallery-item img {
  width: 100%; height: 220px; object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(44,26,14,0.9));
  color: var(--gold); font-size: 13px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 36px 16px 14px;
}
.gallery-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: var(--gold); color: var(--brown);
  border: none; width: 48px; height: 48px;
  border-radius: 50%; cursor: pointer; z-index: 10;
  font-size: 16px; transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.gallery-arrow:hover { background: var(--gold-dark); color: var(--white); }
.gallery-arrow.left { left: 8px; }
.gallery-arrow.right { right: 8px; }

/* ============================================================
   SERVICES
============================================================ */
#services { background: var(--white); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.service-card {
  padding: 36px 28px; border-radius: var(--radius-lg);
  border: 1px solid rgba(201,169,110,0.2);
  transition: var(--transition); background: var(--cream);
}
.service-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.service-icon {
  width: 60px; height: 60px; background: var(--brown);
  border-radius: 12px; display: flex; align-items: center;
  justify-content: center; margin-bottom: 20px;
  font-size: 22px; color: var(--gold);
}
.service-card h3 {
  font-family: var(--font-serif); font-size: 1.15rem;
  color: var(--brown); margin-bottom: 12px;
}
.service-card p { font-size: 14px; color: var(--text-light); line-height: 1.7; }

/* ============================================================
   PRICING
============================================================ */
#pricing { background: var(--cream); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.pricing-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow);
  transition: var(--transition); position: relative;
}
.pricing-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.pricing-card.featured {
  border: 2px solid var(--gold);
  transform: translateY(-12px);
}
.pricing-card.featured:hover { transform: translateY(-20px); }
.pricing-badge {
  position: absolute; top: 20px; right: -28px;
  background: var(--gold); color: var(--brown);
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; padding: 6px 40px;
  transform: rotate(45deg); z-index: 2;
}
.pricing-img { height: 200px; overflow: hidden; }
.pricing-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.pricing-card:hover .pricing-img img { transform: scale(1.06); }
.pricing-body { padding: 28px 24px; }
.pricing-body h3 {
  font-family: var(--font-serif); font-size: 1.4rem;
  color: var(--brown); margin-bottom: 10px;
}
.pricing-desc { font-size: 13px; color: var(--text-light); margin-bottom: 16px; line-height: 1.6; }
.pricing-features { list-style: none; margin-bottom: 24px; }
.pricing-features li {
  font-size: 13px; color: var(--text-light);
  padding: 5px 0; display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid var(--cream-dark);
}
.pricing-features li:last-child { border: none; }
.pricing-features i { color: var(--gold); font-size: 11px; }
.pricing-price {
  display: flex; align-items: baseline; gap: 4px;
  margin-bottom: 20px;
}
.price-from { font-size: 12px; color: var(--text-light); }
.price-amount {
  font-family: var(--font-serif); font-size: 2.2rem;
  font-weight: 700; color: var(--brown);
}
.price-night { font-size: 13px; color: var(--text-light); }
.pricing-note {
  text-align: center; font-size: 13px; color: var(--text-light);
  margin-top: 36px;
}
.pricing-note i { color: var(--gold); margin-right: 6px; }

/* ============================================================
   TESTIMONIALS
============================================================ */
#testimonials { background: var(--brown); }
#testimonials .section-title { color: var(--white); }
.booking-score {
  display: flex; align-items: center; gap: 32px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(201,169,110,0.3);
  border-radius: var(--radius-lg); padding: 28px 32px;
  max-width: 680px; margin: 0 auto 48px; text-align: left;
}
.score-box {
  text-align: center; min-width: 100px;
  padding-right: 32px; border-right: 1px solid rgba(201,169,110,0.3);
}
.score-num {
  font-family: var(--font-serif); font-size: 3.5rem;
  font-weight: 700; color: var(--gold); display: block; line-height: 1;
}
.score-label { font-size: 12px; color: rgba(255,255,255,0.7); letter-spacing: 1px; text-transform: uppercase; }
.score-details p { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 12px; }
.score-bars { display: flex; flex-direction: column; gap: 8px; }
.score-bar {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; color: rgba(255,255,255,0.7);
}
.score-bar > span:first-child { min-width: 80px; }
.score-bar > span:last-child { min-width: 28px; text-align: right; color: var(--gold); font-weight: 700; }
.bar { flex: 1; background: rgba(255,255,255,0.1); height: 6px; border-radius: 3px; }
.bar-fill { height: 100%; background: var(--gold); border-radius: 3px; }

.testimonials-slider { overflow: hidden; }
.testimonial-track {
  display: flex; transition: transform 0.5s ease;
}
.testimonial-card {
  min-width: 100%; padding: 0 20px;
  display: flex; flex-direction: column; gap: 20px;
  max-width: 720px; margin: 0 auto;
}
.t-stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; }
.testimonial-card blockquote {
  font-family: var(--font-serif); font-size: 1.15rem;
  color: rgba(255,255,255,0.9); line-height: 1.8;
  font-style: italic; quotes: "\201C""\201D";
}
.testimonial-card blockquote::before { content: open-quote; color: var(--gold); font-size: 3rem; line-height: 0; vertical-align: -0.5em; margin-right: 4px; }
.t-author { display: flex; align-items: center; gap: 14px; }
.t-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gold); color: var(--brown);
  font-size: 18px; font-weight: 700; font-family: var(--font-serif);
  display: flex; align-items: center; justify-content: center;
}
.t-author strong { color: var(--white); display: block; }
.t-author span { font-size: 12px; color: rgba(255,255,255,0.5); }
.testimonial-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-top: 36px;
}
.t-btn {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(201,169,110,0.3);
  color: var(--white); width: 44px; height: 44px;
  border-radius: 50%; cursor: pointer; transition: var(--transition); font-size: 14px;
  display: flex; align-items: center; justify-content: center;
}
.t-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--brown); }
.t-dots { display: flex; gap: 8px; }
.t-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.3); cursor: pointer; transition: var(--transition);
}
.t-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }

/* ============================================================
   CONTACT / RESERVATION
============================================================ */
#contact { background: var(--brown-mid); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; }
.contact-info h3, .contact-form-wrap h3 {
  font-family: var(--font-serif); font-size: 1.5rem;
  color: var(--gold); margin-bottom: 24px;
}
.contact-list { list-style: none; margin-bottom: 32px; }
.contact-list li {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.contact-list li:last-child { border: none; }
.contact-list i {
  color: var(--gold); font-size: 16px; min-width: 20px; margin-top: 2px;
}
.contact-list strong { display: block; color: var(--white); font-size: 12px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.contact-list span, .contact-list a { color: rgba(255,255,255,0.7); font-size: 14px; }
.contact-list a:hover { color: var(--gold); }
.contact-image { border-radius: var(--radius-lg); overflow: hidden; height: 200px; }
.contact-image img { width: 100%; height: 100%; object-fit: cover; }

/* Form styles */
.reservation-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.7); letter-spacing: 1px; text-transform: uppercase; }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  color: var(--white); font-size: 14px;
  padding: 12px 16px; font-family: var(--font-sans);
  transition: var(--transition); resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group select option { background: var(--brown-mid); color: var(--white); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--gold);
  background: rgba(255,255,255,0.10);
}
.form-group input::-webkit-calendar-picker-indicator { filter: invert(1); opacity: 0.6; }
.form-disclaimer {
  font-size: 12px; color: rgba(255,255,255,0.4);
  text-align: center; margin-top: -8px;
}
.form-disclaimer i { color: var(--gold); margin-right: 4px; }

/* Form success */
.form-success {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(201,169,110,0.4);
  border-radius: var(--radius-lg); padding: 48px 32px;
  text-align: center;
}
.form-success i { font-size: 52px; color: var(--gold); margin-bottom: 20px; }
.form-success h3 { font-family: var(--font-serif); font-size: 1.8rem; color: var(--white); margin-bottom: 12px; }
.form-success p { color: rgba(255,255,255,0.7); }
.form-success strong { color: var(--gold); }

/* ============================================================
   FOOTER
============================================================ */
#footer { background: var(--brown); padding: 80px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  font-family: var(--font-serif); font-size: 1.8rem;
  color: var(--gold); font-weight: 700; margin-bottom: 16px;
}
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.8; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.6); display: flex; align-items: center; justify-content: center; font-size: 14px;
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--brown); }
.footer-links h4, .footer-amenities h4, .footer-contact h4 {
  font-family: var(--font-serif); font-size: 1.1rem;
  color: var(--gold); margin-bottom: 20px;
}
.footer-links ul, .footer-amenities ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.5); }
.footer-links a:hover { color: var(--gold); }
.footer-amenities li {
  font-size: 14px; color: rgba(255,255,255,0.5);
  margin-bottom: 8px; display: flex; align-items: center; gap: 8px;
}
.footer-amenities i { color: var(--gold); font-size: 11px; }
.footer-contact address p {
  font-size: 14px; color: rgba(255,255,255,0.5);
  margin-bottom: 12px; line-height: 1.7;
  display: flex; gap: 10px; align-items: flex-start;
}
.footer-contact i { color: var(--gold); margin-top: 3px; min-width: 14px; }
.footer-contact a { color: rgba(255,255,255,0.5); }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
  padding: 24px 0;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,0.3);
}

/* ---- BACK TO TOP ---- */
.back-to-top {
  position: fixed; bottom: 32px; right: 32px; z-index: 999;
  width: 48px; height: 48px; background: var(--gold);
  color: var(--brown); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; box-shadow: var(--shadow-lg);
  opacity: 0; pointer-events: none; transition: var(--transition);
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--gold-dark); color: var(--white); transform: translateY(-4px); }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-images { height: 400px; max-width: 600px; margin: 0 auto; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .pricing-card.featured { transform: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  section { padding: 72px 0; }
  .nav-links { 
    display: none; flex-direction: column;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: var(--brown); z-index: 999;
    align-items: center; justify-content: center; gap: 8px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 18px; padding: 12px 24px; }
  .nav-toggle { display: flex; z-index: 1001; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .booking-score { flex-direction: column; text-align: center; gap: 20px; }
  .score-box { border-right: none; padding-right: 0; border-bottom: 1px solid rgba(201,169,110,0.3); padding-bottom: 20px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .about-images { flex-direction: column; height: auto; }
  .about-img-side { flex-direction: row; height: 180px; }
  .about-img-side img { flex: 1; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 3rem; }
  .hero-badges { gap: 8px; }
  .gallery-item { flex: 0 0 260px; }
  .about-stats { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
