/* ==========================================
   MODERN HOTEL GOPAL PALACE - MASTER STYLESHEET
   Global Design Standards with Advanced Animations
   ========================================== */

/* CSS RESET & BASE STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* COLOR PALETTE */
  --primary: #b8860b;
  --primary-dark: #8c6a16;
  --secondary: #1f2a37;
  --accent: #2f4858;
  --success: #25d366;
  --text-dark: #1e1e1e;
  --text-light: #5f5f5f;
  --bg-light: #f6f1e8;
  --bg-white: #ffffff;
  --bg-soft: #fbf8f2;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 12px 40px rgba(0, 0, 0, 0.2);

  /* TRANSITIONS */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* SPACING */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;

  /* TYPOGRAPHY */
  --font-family-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-family-serif: 'Playfair Display', 'Georgia', serif;
  --font-size-base: 16px;
  --line-height-base: 1.6;
}

html {
  scroll-behavior: smooth;
  font-size: var(--font-size-base);
}

body {
  font-family: var(--font-family-sans);
  background: linear-gradient(160deg, #f9f5ee 0%, #f2eadb 100%);
  color: var(--text-dark);
  line-height: var(--line-height-base);
  min-height: 100vh;
  overflow-x: hidden;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 10px;
  background: var(--secondary);
  color: white;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  z-index: 1200;
  text-decoration: none;
  transition: top var(--transition-base);
}

.skip-link:focus {
  top: 10px;
}

/* ==========================================
   ANIMATIONS & KEYFRAMES
   ========================================== */

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

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

@keyframes glow {
  0%, 100% { 
    box-shadow: 0 0 5px rgba(255, 106, 0, 0.3),
                0 5px 15px rgba(255, 106, 0, 0.1);
  }
  50% { 
    box-shadow: 0 0 20px rgba(255, 106, 0, 0.5),
                0 8px 25px rgba(255, 106, 0, 0.2);
  }
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes shimmer {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}

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

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* FADE IN ON SCROLL — triggered by IntersectionObserver via .is-visible class */
.fade-in-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

.fade-in-section.is-visible:nth-child(2) { transition-delay: 0.1s; }
.fade-in-section.is-visible:nth-child(3) { transition-delay: 0.2s; }
.fade-in-section.is-visible:nth-child(4) { transition-delay: 0.3s; }
.fade-in-section.is-visible:nth-child(5) { transition-delay: 0.4s; }
.fade-in-section.is-visible:nth-child(6) { transition-delay: 0.5s; }

/* ==========================================
   STICKY NAVIGATION BAR
   ========================================== */

.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: linear-gradient(90deg, rgba(31, 42, 55, 0.96), rgba(184, 134, 11, 0.9));
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  animation: slideInDown 0.5s ease-out;
}

.navbar-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem var(--spacing-lg);
}

.navbar-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
  font-family: var(--font-family-serif);
  transition: opacity var(--transition-base);
}

.navbar-logo:hover {
  opacity: 0.85;
}

/* Navbar shrinks and darkens on scroll */
.navbar.scrolled {
  background: linear-gradient(90deg, rgba(24, 24, 24, 0.97), rgba(61, 45, 10, 0.97));
}

.navbar.scrolled .navbar-container {
  padding: 0.5rem var(--spacing-lg);
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: var(--spacing-lg);
  align-items: center;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: color var(--transition-base);
  padding: 0.5rem 0;
}

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

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

.cta-nav {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  border: 2px solid white;
  transition: all var(--transition-base);
}

.cta-nav:hover {
  background: white;
  color: var(--primary);
}

/* Hamburger toggle button */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

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

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
  background:
    url('./assets/frontday.jpeg') center / cover no-repeat;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  padding: var(--spacing-2xl);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(28, 28, 28, 0.4) 0%,
    rgba(184, 134, 11, 0.55) 45%,
    rgba(0, 0, 0, 0.75) 100%
  );
  pointer-events: none;
  mix-blend-mode: overlay;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.12), transparent 40%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  text-align: center;
}

.hero .hero-title,
.hero .hero-subtitle,
.hero .hero-description {
  color: #ffffff;
}

.trust-strip {
  max-width: 1300px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  background: linear-gradient(90deg, rgba(31, 42, 55, 0.96), rgba(24, 24, 24, 0.96));
  color: #f6efe1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
}

.trust-item {
  text-align: center;
  font-size: 0.95rem;
  letter-spacing: 0.2px;
}

.trust-item strong {
  color: #e7c46a;
  font-size: 1.05rem;
}

.hero-title {
  font-size: clamp(2rem, 8vw, 4rem);
  font-family: var(--font-family-serif);
  margin-bottom: var(--spacing-sm);
  font-weight: 800;
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.5), 0 0 30px rgba(184, 134, 11, 0.4);
  animation: fadeInDown 0.8s ease-out;
  letter-spacing: -1.5px;
  color: #fff;
}

.hero-subtitle {
  font-size: clamp(1.2rem, 4vw, 1.8rem);
  margin-bottom: var(--spacing-md);
  font-weight: 600;
  opacity: 0.98;
  animation: fadeInDown 0.8s ease-out 0.2s both;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.5px;
}

.hero-description {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  margin-bottom: var(--spacing-2xl);
  opacity: 0.95;
  animation: fadeInDown 0.8s ease-out 0.4s both;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.btn {
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

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

.btn-primary:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(255, 106, 0, 0.35);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border-color: white;
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-6px);
  border-color: white;
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.2);
}

/* ==========================================
   FLOATING CTA BUTTONS
   ========================================== */

.cta-floating {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 100;
}

.cta-icon-btn {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all var(--transition-smooth);
  animation: scaleIn 0.5s ease-out;
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
}

.call-btn {
  background: rgba(184, 134, 11, 0.78);
}

.call-btn:hover {
  background: rgba(184, 134, 11, 0.95);
  border-color: rgba(255, 255, 255, 0.6);
}

.whatsapp-btn {
  background: rgba(37, 211, 102, 0.75);
}

.whatsapp-btn:hover {
  background: rgba(37, 211, 102, 0.95);
  border-color: rgba(255, 255, 255, 0.6);
}

.cta-icon-btn:hover {
  transform: scale(1.15) translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.cta-icon {
  width: 80%;
  height: 80%;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* ==========================================
   SECTION CONTAINER & GENERAL STYLES
   ========================================== */

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

section {
  padding: var(--spacing-2xl) var(--spacing-lg);
  background: var(--bg-white);
  margin: var(--spacing-xl) auto;
  border-radius: 16px;
  max-width: 1300px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

/* Section hover removed — individual card hovers remain */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-serif);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}

h2 {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  margin-bottom: var(--spacing-lg);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  padding-bottom: var(--spacing-md);
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
}

h3 {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  margin-bottom: var(--spacing-md);
}

p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: var(--spacing-md);
}

/* ==========================================
   ABOUT SECTION
   ========================================== */

.about {
  background: linear-gradient(135deg, rgba(184, 134, 11, 0.08), rgba(31, 42, 55, 0.05));
}

.about-intro {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: var(--spacing-2xl);
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-2xl);
}

.about-card {
  background: white;
  padding: var(--spacing-xl);
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-smooth);
  border-left: 5px solid var(--primary);
  animation: fadeInUp 0.8s ease-out;
}

.about-card:nth-child(1) { animation-delay: 0.1s; }
.about-card:nth-child(2) { animation-delay: 0.2s; }
.about-card:nth-child(3) { animation-delay: 0.3s; }

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

.about-card h3 {
  color: var(--primary);
  margin-bottom: var(--spacing-md);
}

.section-subheading {
  text-align: center;
  margin-top: var(--spacing-2xl);
  margin-bottom: var(--spacing-xl);
  font-size: 1.8rem;
  color: var(--text-dark);
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
}

.room-card {
  background: linear-gradient(135deg, #fff8ea, #f7efd9);
  padding: var(--spacing-xl);
  border-radius: 12px;
  border-left: 5px solid var(--secondary);
  transition: all var(--transition-base);
}

.room-card:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.room-type {
  display: block;
  font-weight: 700;
  color: var(--secondary);
  font-size: 1.3rem;
  margin-bottom: var(--spacing-sm);
}

/* ==========================================
   FACILITIES SECTION
   ========================================== */

.facilities {
  background: linear-gradient(135deg, rgba(184, 134, 11, 0.04), rgba(184, 134, 11, 0.09));
}

.amenities-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--spacing-lg);
  padding: 0;
}

.amenity-item {
  background: linear-gradient(135deg, #fefaf0, #f5ecd3);
  padding: var(--spacing-lg);
  border-radius: 12px;
  font-weight: 600;
  color: #5f4a1a;
  border-left: 5px solid var(--primary);
  transition: all var(--transition-base);
  animation: fadeInUp 0.6s ease-out;
}

.amenity-item:nth-child(odd) { animation-delay: 0.1s; }
.amenity-item:nth-child(even) { animation-delay: 0.2s; }

.amenity-item:hover {
  transform: translateX(8px) scale(1.02);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, #fff5df, #efdfb6);
}

/* ==========================================
   EVENTS & SERVICES SHOWCASE
   ========================================== */

.events-showcase {
  background: linear-gradient(135deg, #fdf8ee 0%, #f7f0dd 100%) !important;
  padding: var(--spacing-2xl) var(--spacing-lg) !important;
}

.events-showcase h2 {
  text-align: center;
  color: var(--primary);
  margin-bottom: var(--spacing-md);
}

.events-intro {
  text-align: center;
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: var(--spacing-2xl);
  font-weight: 500;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: var(--spacing-xl);
  max-width: 1400px;
  margin: 0 auto;
}

.service-card {
  background: white;
  padding: var(--spacing-xl);
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-smooth);
  border-top: 5px solid var(--primary);
  position: relative;
  overflow: hidden;  
  animation: fadeInUp 0.6s ease-out;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(184, 134, 11, 0.14), rgba(31, 42, 55, 0.08));
  opacity: 0;
  transition: opacity var(--transition-base);
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card:nth-child(1) { animation-delay: 0.05s; }
.service-card:nth-child(2) { animation-delay: 0.1s; }
.service-card:nth-child(3) { animation-delay: 0.15s; }
.service-card:nth-child(4) { animation-delay: 0.2s; }
.service-card:nth-child(5) { animation-delay: 0.25s; }
.service-card:nth-child(6) { animation-delay: 0.3s; }
.service-card:nth-child(7) { animation-delay: 0.35s; }
.service-card:nth-child(8) { animation-delay: 0.4s; }

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

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  font-size: 2.25rem;
  width: 64px;
  height: 64px;
  margin: 0 auto var(--spacing-md);
  border-radius: 50%;
  background: linear-gradient(135deg, #f8edd0, #f2e1b2);
  display: grid;
  place-items: center;
  border: 1px solid rgba(184, 134, 11, 0.35);
}

.service-card h3 {
  color: var(--text-dark);
  margin-bottom: var(--spacing-sm);
  font-size: 1.3rem;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ==========================================
   MARRIAGE HALL HIGHLIGHT
   ========================================== */

.marriage-hall-highlight {
  background: linear-gradient(135deg, #fff8eb 0%, #f4e8cb 100%) !important;
  border-left: 6px solid var(--primary) !important;
  box-shadow: 0 10px 40px rgba(184, 134, 11, 0.2) !important;
}

.highlight-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: var(--spacing-lg);
  box-shadow: var(--shadow-lg);
  letter-spacing: 0.4px;
}

.marriage-hall-highlight h2 {
  color: #e63384;
  margin-bottom: var(--spacing-lg);
}

.hall-info p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-dark);
}

.hall-features {
  margin: var(--spacing-2xl) 0;
  padding: var(--spacing-xl);
  background: linear-gradient(135deg, #fcf6e9 0%, #f4e7c7 100%);
  border-radius: 12px;
  border-left: 5px solid var(--secondary);
}

.hall-features h3 {
  color: var(--secondary);
  margin-bottom: var(--spacing-lg);
}

.hall-features ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
}

.hall-features li {
  padding: var(--spacing-md);
  background: white;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  color: var(--text-dark);
  font-weight: 500;
  transition: all var(--transition-base);
  border-left: 3px solid var(--primary);
}

.hall-features li:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-lg);
}

.cta-button {
  display: flex;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
  margin-top: var(--spacing-2xl);
}

.btn-call {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  transition: all var(--transition-smooth);
}

.btn-call:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(255, 106, 0, 0.4);
}

.btn-whatsapp {
  background: linear-gradient(135deg, var(--success), #128c7e);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  transition: all var(--transition-smooth);
}

.btn-whatsapp:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

/* Gallery heading */
.gallery-heading {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  margin-bottom: var(--spacing-lg);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  padding-bottom: var(--spacing-md);
  text-align: center;
}

.gallery-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
}

/* Testimonial card profile image */
.testimonial-card img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary);
  margin-bottom: var(--spacing-md);
  display: block;
}

.gallery-section {
  padding: var(--spacing-2xl) var(--spacing-lg);
}

.mobile-booking-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  gap: 0.75rem;
  padding: 0.75rem 0.9rem;
  background: rgba(24, 24, 24, 0.95);
  backdrop-filter: blur(8px);
  z-index: 1100;
  transform: translateY(100%);
  transition: transform var(--transition-base);
}

.mobile-booking-bar a {
  flex: 1;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  padding: 0.75rem 0.5rem;
  border-radius: 10px;
  color: white;
}

.mobile-booking-call {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.mobile-booking-whatsapp {
  background: linear-gradient(135deg, #1fb85c, #128c7e);
}

.mobile-booking-bar.visible {
  transform: translateY(0);
}

.himage {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
  padding: var(--spacing-lg) 0;
}

.hotal_image1 {
  grid-column: 1 / -1;
  max-height: 350px;
}

img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-smooth);
  display: block;
  animation: fadeInUp 0.6s ease-out;
}

.himage img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

@media (hover: hover) {
  .himage img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
  }
}

/* ==========================================
   TIMINGS SECTION
   ========================================== */

.timings {
  background: linear-gradient(135deg, #fff9f5, #fff0e6) !important;
}

.timings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-xl);
}

.timing-card {
  background: white;
  padding: var(--spacing-xl);
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border-bottom: 5px solid var(--primary);
  animation: fadeInUp 0.6s ease-out;
}

.timing-card:nth-child(1) { animation-delay: 0.1s; }
.timing-card:nth-child(2) { animation-delay: 0.2s; }
.timing-card:nth-child(3) { animation-delay: 0.3s; }

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

.timing-label {
  display: block;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: var(--spacing-sm);
}

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

/* ==========================================
   LOCATION SECTION
   ========================================== */

.location {
  background: linear-gradient(135deg, rgba(31, 42, 55, 0.06), rgba(184, 134, 11, 0.08)) !important;
}

.location-info {
  background: white;
  padding: var(--spacing-xl);
  border-radius: 12px;
  margin-bottom: var(--spacing-xl);
  box-shadow: var(--shadow-md);
}

.location-address,
.location-distance {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: var(--spacing-md);
}

.map-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 60%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */

.testimonials {
  background: linear-gradient(135deg, #fdf8ee 0%, #f5edd9 100%) !important;
  padding: var(--spacing-2xl) var(--spacing-lg) !important;
}

.testimonials-intro {
  text-align: center;
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: var(--spacing-2xl);
  font-weight: 500;
}

.testimonial-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-xl);
  max-width: 1300px;
  margin: 0 auto;
}

.testimonial-card {
  background: white;
  padding: var(--spacing-xl);
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-smooth);
  border-top: 5px solid var(--primary);
  position: relative;
  animation: fadeInUp 0.6s ease-out;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }

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

.testimonial-card .stars {
  display: block;
  font-size: 1.3rem;
  color: #f4c150;
  margin-bottom: var(--spacing-md);
  letter-spacing: 2px;
}

.testimonial-card p {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: var(--spacing-lg);
  line-height: 1.8;
}

.testimonial-card h3 {
  color: var(--text-dark);
  margin-bottom: var(--spacing-xs);
  font-size: 1.1rem;
}

.testimonial-card span {
  display: block;
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
  background: linear-gradient(135deg, #1f2a37, #2e3540) !important;
  color: white !important;
  padding: var(--spacing-2xl) var(--spacing-lg) !important;
  margin-top: var(--spacing-2xl) !important;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

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

.footer-content {
  margin-bottom: var(--spacing-xl);
  animation: fadeInUp 0.8s ease-out;
}

.footer-content h3 {
  color: white;
  font-size: 1.8rem;
  margin-bottom: var(--spacing-md);
}

.footer-content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--spacing-sm);
}

.footer-contact {
  font-weight: 600;
}

.footer-contact a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
  transition: color var(--transition-base);
}

.footer-contact a:hover {
  color: #ffb347;
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.designer a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
  transition: color var(--transition-base);
}

.designer a:hover {
  color: white;
  text-decoration: underline;
}

/* ==========================================
   RESPONSIVE DESIGN - TABLET
   ========================================== */

@media (max-width: 992px) {
  :root {
    --spacing-lg: 1.5rem;
    --spacing-xl: 2.5rem;
  }

  .nav-menu {
    gap: var(--spacing-md);
  }

  section {
    padding: var(--spacing-xl) var(--spacing-lg);
    margin: var(--spacing-lg) auto;
    border-radius: 12px;
  }

  .hero {
    min-height: 75vh;
    padding: var(--spacing-xl);
  }

  .himage {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .hotal_image1 {
    max-height: 300px;
  }

  .himage img {
    min-height: 250px;
  }
}

/* ==========================================
   RESPONSIVE DESIGN - MOBILE
   ========================================== */

@media (max-width: 768px) {
  :root {
    --font-size-base: 15px;
    --spacing-md: 1rem;
    --spacing-lg: 1.25rem;
    --spacing-xl: 1.75rem;
    --spacing-2xl: 2.5rem;
  }

  .navbar-container {
    padding: 0.75rem var(--spacing-md);
  }

  .navbar-logo {
    font-size: 1.2rem;
  }

  .hamburger {
    display: flex;
  }

  .nav-menu {
    gap: var(--spacing-sm);
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(31, 42, 55, 0.96);
    padding: var(--spacing-md);
    border-radius: 0 0 12px 12px;
    display: none;
  }

  .navbar.active .nav-menu {
    display: flex;
  }

  .hero {
    min-height: 60vh;
    padding: var(--spacing-lg);
  }

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

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .cta-floating {
    display: none;
  }

  .cta-icon-btn {
    width: 60px;
    height: 60px;
  }

  section {
    padding: var(--spacing-lg);
    margin: var(--spacing-md) auto;
  }

  h2 {
    font-size: 1.6rem;
    margin-bottom: var(--spacing-md);
  }

  h3 {
    font-size: 1.1rem;
  }

  .about-grid,
  .timings-grid,
  .services-grid,
  .testimonial-container {
    grid-template-columns: 1fr;
  }

  .himage {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .hotal_image1 {
    max-height: 250px;
    grid-column: 1;
  }

  .nav-link {
    font-size: 0.9rem;
  }

  .cta-nav {
    display: none;
  }

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
    margin: var(--spacing-md);
  }

  .mobile-booking-bar {
    display: flex;
  }

  body {
    padding-bottom: 78px;
  }
}

/* ==========================================
   RESPONSIVE DESIGN - SMALL MOBILE
   ========================================== */

@media (max-width: 480px) {
  :root {
    --font-size-base: 14px;
  }

  .navbar {
    padding: 0;
  }

  .navbar-container {
    flex-direction: row;
    justify-content: space-between;
    gap: 0.5rem;
    padding: var(--spacing-sm);
  }

  .navbar-logo {
    font-size: 1rem;
  }

  .nav-menu {
    gap: var(--spacing-xs);
  }

  .hero {
    min-height: 50vh;
    padding: var(--spacing-md);
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-buttons {
    gap: var(--spacing-sm);
  }

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  .cta-floating {
    display: none;
  }

  .cta-icon-btn {
    width: 55px;
    height: 55px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  section {
    padding: var(--spacing-md);
    margin: var(--spacing-sm) auto;
    border-radius: 10px;
  }

  h2 {
    font-size: 1.3rem;
  }

  .section-subheading {
    font-size: 1.2rem;
  }

  .footer-content h3 {
    font-size: 1.3rem;
  }
}

/* ==========================================
   RESPONSIVE DESIGN - WIDE SCREENS
   ========================================== */

@media (min-width: 1201px) {
  :root {
    --font-size-base: 17px;
    --spacing-2xl: 4.5rem;
  }

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

  section {
    max-width: 1400px;
    margin: var(--spacing-2xl) auto;
  }

  .hero {
    min-height: 100vh;
  }

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

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

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

/* ==========================================
   RESPONSIVE DESIGN - 4K & ULTRA-WIDE
   ========================================== */

@media (min-width: 2560px) {
  :root {
    --font-size-base: 20px;
    --spacing-2xl: 6rem;
  }

  .section-container {
    max-width: 1800px;
  }

  section {
    max-width: 1800px;
    padding: var(--spacing-2xl) var(--spacing-2xl);
  }

  h2 {
    font-size: 3.5rem;
  }

  .himage {
    gap: var(--spacing-xl);
  }

  .himage img {
    min-height: 400px;
  }

  .hero {
    min-height: 110vh;
  }

  .services-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-2xl);
  }
}

/* ==========================================
   ACCESSIBILITY & UTILITIES
   ========================================== */

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

/* FOCUS STATES FOR KEYBOARD NAVIGATION */
a:focus,
button:focus,
input:focus {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}

/* HIGH CONTRAST MODE SUPPORT */
@media (prefers-contrast: more) {
  :root {
    --text-dark: #000;
    --text-light: #333;
    --shadow-md: 0 2px 5px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 4px 10px rgba(0, 0, 0, 0.4);
    --shadow-xl: 0 8px 20px rgba(0, 0, 0, 0.5);
  }

  p {
    font-weight: 500;
  }
}

/* DARK MODE SUPPORT (FUTURE) */
@media (prefers-color-scheme: dark) {
  /* Can be implemented for dark mode */
}

/* ==========================================
   PRINT STYLES
   ========================================== */

@media print {
  body {
    background: white;
  }

  section {
    page-break-inside: avoid;
    box-shadow: none;
  }

  .cta-floating,
  .navbar,
  .scroll-progress,
  .back-to-top {
    display: none;
  }
}

/* ==========================================
   SCROLL PROGRESS BAR
   ========================================== */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #e7c46a);
  z-index: 1100;
  transition: width 0.1s linear;
}

/* ==========================================
   BACK TO TOP BUTTON
   ========================================== */

.back-to-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  color: white;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-smooth);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

/* ==========================================
   ACTIVE NAV LINK
   ========================================== */

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

.nav-link.active {
  color: #e7c46a;
}

/* ==========================================
   GALLERY FILTERS
   ========================================== */

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
  margin-bottom: var(--spacing-xl);
}

.gallery-filter {
  padding: 0.6rem 1.5rem;
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition-base);
  font-family: var(--font-family-sans);
}

.gallery-filter:hover,
.gallery-filter.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.himage img.gallery-hidden {
  display: none;
}

/* ==========================================
   FAQ SECTION
   ========================================== */

.faq-section {
  background: linear-gradient(135deg, #fff9f0, #f7f0dd) !important;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-md);
}

.faq-item {
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all var(--transition-base);
  border-left: 4px solid var(--primary);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.faq-item summary {
  padding: var(--spacing-md) var(--spacing-lg);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color var(--transition-base);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  transition: transform var(--transition-base);
  flex-shrink: 0;
  margin-left: var(--spacing-sm);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item[open] summary {
  color: var(--primary);
  border-bottom: 1px solid rgba(184, 134, 11, 0.15);
}

.faq-item p {
  padding: var(--spacing-md) var(--spacing-lg);
  margin: 0;
  color: var(--text-light);
  line-height: 1.7;
  animation: fadeInDown 0.3s ease-out;
}

/* ==========================================
   ENHANCED FOOTER GRID
   ========================================== */

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: var(--spacing-2xl);
  margin-bottom: var(--spacing-xl);
}

.footer-about h3 {
  color: white;
  font-size: 1.8rem;
  margin-bottom: var(--spacing-md);
}

.footer-about p {
  color: rgba(255, 255, 255, 0.8);
}

.footer-links h4,
.footer-contact-info h4 {
  color: #e7c46a;
  font-size: 1.1rem;
  margin-bottom: var(--spacing-md);
  font-family: var(--font-family-serif);
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: var(--spacing-xs);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: all var(--transition-base);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: white;
  padding-left: 6px;
}

.footer-address {
  color: rgba(255, 255, 255, 0.75) !important;
  font-size: 0.95rem !important;
  line-height: 1.6 !important;
}

.footer-contact-info .footer-contact {
  margin-bottom: var(--spacing-xs);
}

.footer-contact a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
  transition: color var(--transition-base);
}

.footer-contact a:hover {
  color: #ffb347;
  text-decoration: underline;
}

/* ==========================================
   LOCATION ICON
   ========================================== */

.location-icon {
  font-size: 1.2rem;
  margin-right: 0.25rem;
}

/* ==========================================
   HERO PARALLAX (DESKTOP ONLY)
   ========================================== */

@media (min-width: 769px) {
  .hero {
    background-attachment: fixed;
  }
}

/* ==========================================
   SERVICE ICON EMOJI SIZING
   ========================================== */

.service-icon {
  font-family: 'Segoe UI Emoji', 'Apple Color Emoji', 'Noto Color Emoji', sans-serif;
  line-height: 1;
}

/* ==========================================
   STAGGERED CARD REVEAL ON SCROLL
   ========================================== */

.fade-in-section .about-card,
.fade-in-section .service-card,
.fade-in-section .timing-card,
.fade-in-section .testimonial-card,
.fade-in-section .faq-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.fade-in-section.is-visible .about-card,
.fade-in-section.is-visible .service-card,
.fade-in-section.is-visible .timing-card,
.fade-in-section.is-visible .testimonial-card,
.fade-in-section.is-visible .faq-item {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-section.is-visible .about-card:nth-child(1),
.fade-in-section.is-visible .service-card:nth-child(1),
.fade-in-section.is-visible .timing-card:nth-child(1),
.fade-in-section.is-visible .testimonial-card:nth-child(1),
.fade-in-section.is-visible .faq-item:nth-child(1) { transition-delay: 0.05s; }

.fade-in-section.is-visible .about-card:nth-child(2),
.fade-in-section.is-visible .service-card:nth-child(2),
.fade-in-section.is-visible .timing-card:nth-child(2),
.fade-in-section.is-visible .testimonial-card:nth-child(2),
.fade-in-section.is-visible .faq-item:nth-child(2) { transition-delay: 0.1s; }

.fade-in-section.is-visible .about-card:nth-child(3),
.fade-in-section.is-visible .service-card:nth-child(3),
.fade-in-section.is-visible .timing-card:nth-child(3),
.fade-in-section.is-visible .testimonial-card:nth-child(3),
.fade-in-section.is-visible .faq-item:nth-child(3) { transition-delay: 0.15s; }

.fade-in-section.is-visible .service-card:nth-child(4),
.fade-in-section.is-visible .faq-item:nth-child(4) { transition-delay: 0.2s; }

.fade-in-section.is-visible .service-card:nth-child(5),
.fade-in-section.is-visible .faq-item:nth-child(5) { transition-delay: 0.25s; }

.fade-in-section.is-visible .service-card:nth-child(6),
.fade-in-section.is-visible .faq-item:nth-child(6) { transition-delay: 0.3s; }

.fade-in-section.is-visible .service-card:nth-child(7),
.fade-in-section.is-visible .faq-item:nth-child(7) { transition-delay: 0.35s; }

.fade-in-section.is-visible .service-card:nth-child(8),
.fade-in-section.is-visible .faq-item:nth-child(8) { transition-delay: 0.4s; }

/* ==========================================
   RESPONSIVE - NEW COMPONENTS
   ========================================== */

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
  }

  .footer-about {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 5.5rem;
    left: 1rem;
    width: 42px;
    height: 42px;
    font-size: 1.2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

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

  .gallery-filters {
    gap: 0.5rem;
  }

  .gallery-filter {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }

  .faq-item summary {
    font-size: 0.95rem;
    padding: var(--spacing-sm) var(--spacing-md);
  }

  .faq-item p {
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: 0.9rem;
  }

  .scroll-progress {
    height: 2px;
  }
}

@media (max-width: 480px) {
  .gallery-filter {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }

  .footer-about h3 {
    font-size: 1.3rem;
  }

  .back-to-top {
    width: 38px;
    height: 38px;
    font-size: 1rem;
    bottom: 5rem;
  }
}

/* ==========================================
   MOBILE MAP HEIGHT FIX
   ========================================== */

@media (max-width: 768px) {
  .map-container {
    padding-bottom: 80%;
  }
}

@media (max-width: 480px) {
  .map-container {
    padding-bottom: 100%;
  }
}
