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

:root {
  --primary: #e65c00;
  --primary-dark: #c44d00;
  --secondary: #f9d423;
  --dark: #1a1a2e;
  --dark-2: #16213e;
  --dark-3: #0f3460;
  --light: #f8f9fa;
  --white: #ffffff;
  --gray: #6c757d;
  --light-gray: #f1f3f5;
  --text: #333333;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.2);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

a {
  text-decoration: none;
  color: inherit;
}

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

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--light); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; }

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

.section {
  padding: 90px 0;
}

.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title span {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 580px;
  line-height: 1.7;
}

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

.text-center .section-subtitle {
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #ff8c00);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(230, 92, 0, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(230, 92, 0, 0.5);
}

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

.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  transform: translateY(-3px);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  transition: var(--transition);
}

.navbar.scrolled .brand-name {
  color: var(--dark);
}

.brand-tagline {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
}

.navbar.scrolled .brand-tagline {
  color: var(--gray);
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--white); }

.navbar.scrolled .nav-links a {
  color: var(--gray);
}

.navbar.scrolled .nav-links a:hover {
  color: var(--primary);
}

.navbar.scrolled .nav-links a::after {
  background: var(--primary);
}

.nav-cta {
  background: linear-gradient(135deg, var(--primary), #ff8c00) !important;
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(230, 92, 0, 0.4);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(230, 92, 0, 0.5) !important;
}

.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 3px;
  transition: var(--transition);
}

.navbar.scrolled .hamburger span {
  background: var(--dark);
}

/* ===== SHARED HERO / SLIDE STATS ===== */
.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--secondary);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}

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

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(5deg); }
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.stat-value span {
  color: var(--secondary);
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ===== BANNER SLIDER ===== */
.banner-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  background: var(--dark);
}

.slider-track {
  display: flex;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: all;
}

.slide.exit {
  opacity: 0;
  transform: scale(0.97);
}

/* Background image */
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 8s linear;
}

.slide.active .slide-bg {
  transform: scale(1.06);
}

/* Gradient overlay */
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    125deg,
    rgba(15, 15, 35, 0.88) 0%,
    rgba(15, 33, 62, 0.75) 50%,
    rgba(230, 92, 0, 0.18) 100%
  );
}

/* Content area */
.slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 90px 40px 40px;
  max-width: 100%;
}

.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--secondary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 22px;
  width: fit-content;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s 0.2s ease, transform 0.6s 0.2s ease;
}

.slide.active .slide-badge {
  opacity: 1;
  transform: translateY(0);
}

.slide-title {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s 0.35s ease, transform 0.7s 0.35s ease;
}

.slide.active .slide-title {
  opacity: 1;
  transform: translateY(0);
}

.slide-title span {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.slide-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto 32px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s 0.5s ease, transform 0.7s 0.5s ease;
}

.slide.active .slide-desc {
  opacity: 1;
  transform: translateY(0);
}

.slide-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s 0.65s ease, transform 0.7s 0.65s ease;
}

.slide.active .slide-actions {
  opacity: 1;
  transform: translateY(0);
}

/* Stats row (slide 1 only) */
.slide-stats {
  display: flex;
  justify-content: center;
  gap: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s 0.8s ease, transform 0.7s 0.8s ease;
}

.slide.active .slide-stats {
  opacity: 1;
  transform: translateY(0);
}

/* Feature tags (slides 2-5) */
.slide-feature-tags {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s 0.8s ease, transform 0.7s 0.8s ease;
}

.slide.active .slide-feature-tags {
  opacity: 1;
  transform: translateY(0);
}

.slide-feature-tags span {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
}

/* ---- ARROWS ---- */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  border-radius: 50%;
  cursor: pointer;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.slider-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 28px rgba(230, 92, 0, 0.5);
}

.slider-prev { left: 28px; }
.slider-next { right: 28px; }

/* ---- DOTS ---- */
.slider-dots {
  position: absolute;
  bottom: 110px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 20;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.slider-dot.active {
  background: var(--secondary);
  width: 30px;
  border-radius: 5px;
  box-shadow: 0 0 12px rgba(249, 212, 35, 0.6);
}

/* ---- COUNTER ---- */
.slider-counter {
  position: absolute;
  top: 50%;
  right: 28px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  z-index: 20;
  margin-top: 70px;
}

#slideCurrentNum {
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.counter-sep {
  width: 2px;
  height: 28px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 2px;
}

.counter-total {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
}

/* ---- PROGRESS BAR ---- */
.slider-progress-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.12);
  z-index: 20;
}

.slider-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: width linear;
  box-shadow: 0 0 10px rgba(230, 92, 0, 0.6);
}

/* ---- THUMBNAIL STRIP ---- */
.slider-thumbs {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 20;
  padding: 6px 10px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(14px);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.thumb {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 6px 12px 6px 6px;
  border-radius: 10px;
  border: 1.5px solid transparent;
  transition: var(--transition);
}

.thumb:hover {
  background: rgba(255, 255, 255, 0.08);
}

.thumb.active {
  border-color: var(--secondary);
  background: rgba(249, 212, 35, 0.1);
}

.thumb-img {
  width: 36px;
  height: 36px;
  border-radius: 7px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.thumb span {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
}

.thumb.active span {
  color: var(--secondary);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .banner-slider { height: 100svh; min-height: 580px; }
  .slide-content { padding: 0 22px; padding-top: 85px; }
  .slide-desc { font-size: 0.95rem; }
  .slider-prev { left: 12px; }
  .slider-next { right: 12px; }
  .slider-arrow { width: 44px; height: 44px; font-size: 1.6rem; }
  .slider-counter { display: none; }
  .slider-thumbs { gap: 6px; padding: 5px 8px; bottom: 10px; }
  .thumb span { display: none; }
  .thumb { padding: 5px; }
  .thumb-img { width: 32px; height: 32px; }
  .slide-stats { gap: 20px; }
  .slider-dots { bottom: 100px; }
}

@media (max-width: 480px) {
  .slide-title { font-size: 2rem; }
  .slide-actions { gap: 10px; }
  .slide-actions .btn { padding: 12px 20px; font-size: 0.85rem; }
  .slider-thumbs { display: none; }
  .slider-dots { bottom: 56px; }
}

/* ===== FEATURES BAR ===== */
.features-bar {
  background: linear-gradient(135deg, var(--primary), #ff8c00);
  padding: 28px 0;
  position: relative;
  overflow: hidden;
}

.features-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-bar-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  padding: 8px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-bar-item:last-child {
  border-right: none;
}

.feature-bar-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 44px;
  text-align: center;
  color: var(--white);
}

.feature-bar-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
}

.feature-bar-text span {
  font-size: 0.78rem;
  opacity: 0.8;
}

/* ===== AMENITIES ===== */
.amenities {
  background: var(--light);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.amenity-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid transparent;
  cursor: default;
}

.amenity-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(230, 92, 0, 0.2);
}

.amenity-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(230, 92, 0, 0.1), rgba(249, 212, 35, 0.1));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: var(--primary);
  margin: 0 auto 18px;
  transition: var(--transition);
}

.amenity-card:hover .amenity-icon {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
}

.amenity-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
}

/* ===== ROOMS ===== */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 50px;
}

.room-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

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

.room-card.featured {
  border: 2px solid var(--primary);
  transform: scale(1.02);
}

.room-card.featured:hover {
  transform: scale(1.02) translateY(-8px);
}

.room-card-header {
  background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
  padding: 32px 28px 24px;
  position: relative;
  overflow: hidden;
}

.room-card.featured .room-card-header {
  background: linear-gradient(135deg, var(--primary), #ff8c00);
}

.room-card-header::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.room-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--secondary);
  color: var(--dark);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.room-icon {
  font-size: 1.8rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 14px;
  display: flex;
  gap: 6px;
}

.room-type {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.room-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
}

.room-card-body {
  padding: 26px 28px 28px;
  display: flex;
  flex-direction: column;
}

/* Highlight tag below header */
.room-highlight-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(230, 92, 0, 0.08);
  border: 1px solid rgba(230, 92, 0, 0.2);
  color: var(--primary);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
  width: fit-content;
}

.room-card.featured .room-highlight-tag {
  background: rgba(230, 92, 0, 0.12);
  border-color: rgba(230, 92, 0, 0.35);
}

/* Short description */
.room-desc {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Feature list */
.room-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-bottom: 24px;
  flex: 1;
}

.room-features li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.83rem;
  color: var(--text);
  line-height: 1.4;
}

.room-features li i {
  color: var(--primary);
  font-size: 0.7rem;
  flex-shrink: 0;
  width: 14px;
  text-align: center;
}

.room-btn {
  width: 100%;
  justify-content: center;
  gap: 8px;
  margin-top: auto;
}

/* ===== WHY CHOOSE US ===== */
.why-us {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 50%, var(--dark-3) 100%);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.why-us .section-title {
  color: var(--white);
}

.why-us .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.why-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(230, 92, 0, 0.4);
  transform: translateY(-6px);
}

.why-number {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(230, 92, 0, 0.2);
  line-height: 1;
  margin-bottom: 16px;
  font-family: 'Georgia', serif;
}

.why-icon {
  font-size: 1.7rem;
  color: var(--primary);
  margin-bottom: 16px;
  width: 48px;
  height: 48px;
  background: rgba(230, 92, 0, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.why-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

/* ===== TESTIMONIALS SLIDER ===== */
.testimonials {
  background: linear-gradient(160deg, #f8f9fa 60%, #fff3e8 100%);
  overflow: hidden;
}

/* Wrapper clips the sliding track */
.tslider-wrapper {
  position: relative;
  margin-top: 50px;
  overflow: hidden;
  padding-bottom: 10px;
}

/* The scrolling row of cards */
.tslider-track {
  display: flex;
  gap: 28px;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Individual card */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px 28px;
  box-shadow: var(--shadow);
  border: 1.5px solid transparent;
  flex: 0 0 calc(33.333% - 19px);
  min-width: calc(33.333% - 19px);
  transition: box-shadow 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(230, 92, 0, 0.14);
}

.testimonial-card:hover::after {
  transform: scaleX(1);
}

/* Quote icon + stars row */
.tcard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.tquote-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), #ff8c00);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  box-shadow: 0 6px 18px rgba(230, 92, 0, 0.3);
  flex-shrink: 0;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
}

.testimonial-stars i {
  color: var(--secondary);
  font-size: 0.88rem;
}

.testimonial-text {
  font-size: 0.94rem;
  color: #555;
  line-height: 1.85;
  font-style: italic;
  margin-bottom: 26px;
  min-height: 90px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
}

.author-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}

.author-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
}

.author-role {
  font-size: 0.78rem;
  color: var(--gray);
  margin-top: 2px;
}

/* Prev / Next arrows */
.tslider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: var(--white);
  border: 1.5px solid #e8e8e8;
  border-radius: 50%;
  color: var(--dark);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.tslider-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(230, 92, 0, 0.4);
  transform: translateY(-50%) scale(1.08);
}

.tslider-arrow.disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

.tslider-prev { left: -24px; }
.tslider-next { right: -24px; }

/* Footer: dots + counter */
.tslider-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 36px;
}

.tslider-dots {
  display: flex;
  gap: 8px;
}

.tslider-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ddd;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}

.tslider-dot.active {
  background: var(--primary);
  width: 28px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(230, 92, 0, 0.4);
}

.tslider-counter {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gray);
}

#tCurrentNum {
  color: var(--primary);
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 900px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 14px);
    min-width: calc(50% - 14px);
  }
  .tslider-prev { left: -10px; }
  .tslider-next { right: -10px; }
}

@media (max-width: 580px) {
  .testimonial-card {
    flex: 0 0 100%;
    min-width: 100%;
  }
  .tslider-arrow { display: none; }
}

.author-role {
  font-size: 0.8rem;
  color: var(--gray);
}

/* ===== CONTACT ===== */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
  margin-top: 50px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--light);
  border-radius: var(--radius);
  padding: 22px;
  transition: var(--transition);
  border: 1px solid transparent;
}

.contact-info-card:hover {
  border-color: rgba(230, 92, 0, 0.2);
  box-shadow: var(--shadow);
  transform: translateX(6px);
}

.contact-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary), #ff8c00);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(230, 92, 0, 0.3);
}

.contact-info-label {
  font-size: 0.75rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.5;
}

.contact-info-value a {
  color: var(--primary);
  transition: var(--transition);
}

.contact-info-value a:hover {
  color: var(--primary-dark);
}

/* ===== MAP ===== */
.contact-map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  border: 1px solid rgba(0,0,0,0.06);
  background: var(--white);
  display: flex;
  flex-direction: column;
}

.map-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  background: var(--white);
  border-bottom: 1px solid #f0f0f0;
  gap: 12px;
  flex-wrap: wrap;
}

.map-header-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.map-pin-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), #ff8c00);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(230,92,0,0.3);
}

.map-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
}

.map-subtitle {
  font-size: 0.78rem;
  color: var(--gray);
  margin-top: 2px;
}

.map-directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary), #ff8c00);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 50px;
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(230,92,0,0.35);
}

.map-directions-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(230,92,0,0.45);
}

.map-frame-wrap {
  width: 100%;
  height: 380px;
  position: relative;
  overflow: hidden;
}

.map-frame-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.9) contrast(1.05);
}

.map-footer-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 14px 20px;
  background: var(--dark);
  flex-wrap: wrap;
}

.map-strip-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.75);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 20px;
}

.map-strip-item i {
  color: var(--secondary);
  font-size: 0.85rem;
}

.map-strip-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.15);
}

@media (max-width: 900px) {
  .contact-wrapper { grid-template-columns: 1fr; }
  .map-frame-wrap { height: 300px; }
  .map-footer-strip { gap: 0; }
  .map-strip-item { padding: 4px 12px; font-size: 0.75rem; }
}

@media (max-width: 480px) {
  .map-strip-divider { display: none; }
  .map-strip-item { flex: 1; justify-content: center; }
  .map-frame-wrap { height: 260px; }
  .contact-wrapper { gap: 28px; }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  padding: 60px 0 28px;
  color: rgba(255, 255, 255, 0.65);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-heading {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a i {
  font-size: 0.8rem;
  width: 14px;
  text-align: center;
  color: var(--primary);
}

.footer-links a:hover {
  color: var(--secondary);
  transform: translateX(4px);
}

.footer-links a::before {
  content: '›';
  color: var(--primary);
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--secondary);
}

/* ===== FLOATING CALL BUTTON ===== */
.float-call {
  position: fixed;
  bottom: 90px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #25d366, #1da851);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.float-call:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55);
}

.float-call i {
  font-size: 1.3rem;
  animation: phoneShake 2.5s ease-in-out infinite;
}

@keyframes phoneShake {
  0%, 50%, 100% { transform: rotate(0deg); }
  10%  { transform: rotate(-18deg); }
  20%  { transform: rotate(18deg); }
  30%  { transform: rotate(-12deg); }
  40%  { transform: rotate(12deg); }
}

.float-call-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.35);
  animation: callRipple 2.2s ease-out infinite;
  pointer-events: none;
}

.float-call-ring-2 {
  background: rgba(37, 211, 102, 0.2);
  animation-delay: 0.8s;
}

@keyframes callRipple {
  0%   { transform: scale(1);   opacity: 0.8; }
  100% { transform: scale(2.4); opacity: 0;   }
}

@media (max-width: 480px) {
  .float-call { width: 50px; height: 50px; right: 16px; bottom: 80px; }
  .float-call i { font-size: 1.15rem; }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), #ff8c00);
  color: var(--white);
  border: none;
  border-radius: 14px;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(230, 92, 0, 0.4);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(230, 92, 0, 0.5);
}

/* ===== GALLERY ===== */
.gallery-section {
  background: var(--light);
}

.gallery-slider {
  margin-top: 50px;
}

.gallery-main-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--dark);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-hover);
}

.gallery-main-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.28s ease;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.gallery-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 28px rgba(230, 92, 0, 0.5);
}

.gallery-prev { left: 18px; }
.gallery-next { right: 18px; }

.gallery-info-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px 18px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
  z-index: 8;
}

.gallery-counter {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  background: rgba(0, 0, 0, 0.35);
  padding: 5px 14px;
  border-radius: 50px;
  backdrop-filter: blur(8px);
}

.gallery-counter i {
  color: var(--secondary);
  font-size: 0.82rem;
}

.gallery-expand-btn {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 10px;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
}

.gallery-expand-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.1);
}

.gallery-progress-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  z-index: 9;
}

.gallery-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  box-shadow: 0 0 8px rgba(230, 92, 0, 0.5);
}

/* Thumbnail strip */
.gallery-thumbs-outer {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}

.gallery-thumb-scroll {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--white);
  border: 1.5px solid #e0e0e0;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  color: var(--dark);
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.gallery-thumb-scroll:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.gallery-thumbs-viewport {
  flex: 1;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.gallery-thumbs-viewport::-webkit-scrollbar {
  display: none;
}

.gallery-thumbs-track {
  display: flex;
  gap: 8px;
  padding: 4px 2px;
}

.gallery-thumb {
  flex-shrink: 0;
  width: 82px;
  height: 62px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2.5px solid transparent;
  transition: var(--transition);
  background: #ddd;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-thumb:hover img {
  transform: scale(1.08);
}

.gallery-thumb.active {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(230, 92, 0, 0.28);
}

.gallery-thumb:hover {
  border-color: rgba(230, 92, 0, 0.55);
}

/* ===== LIGHTBOX ===== */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.gallery-lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.93);
}

.gallery-lightbox img {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  z-index: 1;
  transition: opacity 0.25s ease;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: var(--transition);
}

.lightbox-close:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.1);
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: var(--transition);
}

.lightbox-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.08);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
  font-weight: 600;
  z-index: 2;
  background: rgba(0, 0, 0, 0.45);
  padding: 6px 18px;
  border-radius: 50px;
  backdrop-filter: blur(8px);
}

@media (max-width: 768px) {
  .gallery-arrow { width: 42px; height: 42px; font-size: 0.88rem; }
  .gallery-prev { left: 10px; }
  .gallery-next { right: 10px; }
  .gallery-thumb { width: 66px; height: 50px; }
  .lightbox-arrow { width: 42px; height: 42px; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
}

@media (max-width: 480px) {
  .gallery-thumb { width: 54px; height: 42px; }
  .gallery-thumb-scroll { width: 30px; height: 30px; font-size: 0.7rem; }
  .gallery-main-wrap { aspect-ratio: 4 / 3; }
}

/* ===== ANIMATE ON SCROLL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1), transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--dark);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 10px;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

/* ===== MOBILE NAV ===== */
@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--dark);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 80px 0 40px;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
    z-index: 999;
  }

  .nav-links.open { right: 0; }

  .nav-links li { width: 100%; }

  .nav-links a {
    display: block;
    padding: 14px 30px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-links a:hover { color: var(--secondary) !important; }
  .nav-links a::after { display: none; }

  .nav-cta {
    margin: 16px 20px 0;
    border-radius: 10px !important;
    background: linear-gradient(135deg, var(--primary), #ff8c00) !important;
  }

  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .hero-desc { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }

  .features-bar-grid { grid-template-columns: 1fr 1fr; }
  .feature-bar-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .feature-bar-item:nth-child(3), .feature-bar-item:nth-child(4) { border-bottom: none; }
  .feature-bar-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.15); }

  .rooms-grid { grid-template-columns: 1fr; }
  .room-card.featured { transform: none; }

  .contact-wrapper { grid-template-columns: 1fr; }

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

  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

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

  .section { padding: 70px 0; }
}

@media (max-width: 480px) {
  .hero-stats { flex-direction: column; gap: 16px; align-items: center; }
  .features-bar-grid { grid-template-columns: 1fr; }
  .feature-bar-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .feature-bar-item:last-child { border-bottom: none; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
}
