/* ============================================================
   OM SHIV HOTEL - PREMIUM DESIGN SYSTEM
   Colors derived from logo: Deep Blue, Orange/Amber, Red
   ============================================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* --- CSS Variables --- */
:root {
  --deep-blue: #1a3a6b;
  --royal-blue: #2555a0;
  --sky-blue: #4a8ed4;
  --orange: #e8961e;
  --amber: #f0a830;
  --red: #c82828;
  --charcoal: #1a1a2e;
  --dark: #0f0f1a;
  --cream: #faf8f5;
  --off-white: #f2efe9;
  --warm-gray: #8a8578;
  --light-gray: #e8e4dc;
  --white: #ffffff;

  --font-heading: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  --shadow-sm: 0 2px 8px rgba(26, 58, 107, 0.08);
  --shadow-md: 0 8px 30px rgba(26, 58, 107, 0.12);
  --shadow-lg: 0 20px 60px rgba(26, 58, 107, 0.15);
  --shadow-xl: 0 30px 80px rgba(26, 58, 107, 0.2);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  overflow-x: hidden;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

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


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

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(50px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  0% { opacity: 0; transform: translateX(-50px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  0% { opacity: 0; transform: translateX(50px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes scaleIn {
  0% { opacity: 0; transform: scale(0.85); }
  100% { opacity: 1; transform: scale(1); }
}

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

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

@keyframes floatReverse {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(20px) rotate(-2deg); }
}

@keyframes rotateSlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

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

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

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes drawLine {
  0% { width: 0; }
  100% { width: 80px; }
}

@keyframes heroZoom {
  0% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

@keyframes bounceArrow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* Scroll reveal classes */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }


/* ============================================================
   NAVBAR
   ============================================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  animation: slideDown 0.8s ease-out;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: var(--shadow-md);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 55px;
  width: auto;
  transition: height 0.3s ease;
}

.navbar.scrolled .logo {
  height: 42px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  padding: 8px 16px;
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 60%;
}

.nav-links a:hover {
  color: var(--orange);
}

.btn-nav {
  background: var(--deep-blue) !important;
  color: var(--white) !important;
  padding: 10px 28px !important;
  border-radius: 4px !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  border: 2px solid var(--deep-blue) !important;
  transition: all 0.3s ease !important;
}

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

.btn-nav:hover {
  background: transparent !important;
  color: var(--deep-blue) !important;
  border-color: var(--deep-blue) !important;
}

.navbar:not(.scrolled) .btn-nav:hover {
  color: var(--white) !important;
  border-color: var(--white) !important;
  background: transparent !important;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.navbar.scrolled .menu-toggle span {
  background: var(--charcoal);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


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

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: heroZoom 12s ease-out forwards;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 15, 26, 0.7) 0%,
    rgba(15, 15, 26, 0.55) 40%,
    rgba(15, 15, 26, 0.75) 100%
  );
  z-index: 1;
}

.hero-corner {
  position: absolute;
  width: 80px;
  height: 80px;
  z-index: 2;
}

.hero-corner--tl {
  top: 40px;
  left: 40px;
  border-top: 2px solid rgba(232, 150, 30, 0.4);
  border-left: 2px solid rgba(232, 150, 30, 0.4);
}

.hero-corner--br {
  bottom: 40px;
  right: 40px;
  border-bottom: 2px solid rgba(232, 150, 30, 0.4);
  border-right: 2px solid rgba(232, 150, 30, 0.4);
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 850px;
  padding: 0 24px;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 24px;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
  animation: fadeIn 1s ease-out 0.5s both;
}

.hero-divider-line {
  width: 60px;
  height: 1px;
  background: var(--orange);
}

.hero-divider-diamond {
  width: 10px;
  height: 10px;
  border: 1.5px solid var(--orange);
  transform: rotate(45deg);
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 28px;
  animation: fadeInUp 1s ease-out 0.6s both;
  text-wrap: balance;
}

.hero h1 em {
  font-style: italic;
  color: var(--orange);
}

.hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  animation: fadeInUp 1s ease-out 0.9s both;
}

.btn-primary {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--deep-blue);
  color: var(--white);
  padding: 16px 40px;
  border: 2px solid var(--deep-blue);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background: var(--royal-blue);
  border-color: var(--royal-blue);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(26, 58, 107, 0.3);
}

.btn-outline {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: transparent;
  color: var(--white);
  padding: 16px 40px;
  border: 2px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.4s ease;
}

.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  animation: fadeIn 1s ease-out 1.5s both;
}

.scroll-indicator span {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 1.5px solid rgba(255,255,255,0.5);
  border-bottom: 1.5px solid rgba(255,255,255,0.5);
  transform: rotate(45deg);
  animation: bounceArrow 2s ease-in-out infinite;
}


/* ============================================================
   MARQUEE STRIP
   ============================================================ */

.marquee-section {
  background: var(--deep-blue);
  padding: 16px 0;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: inline-flex;
  animation: marquee 25s linear infinite;
  width: max-content;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 32px;
  white-space: nowrap;
}

.marquee-item span {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.marquee-diamond {
  width: 6px;
  height: 6px;
  background: var(--orange);
  transform: rotate(45deg);
  flex-shrink: 0;
}


/* ============================================================
   SECTION TITLE SYSTEM
   ============================================================ */

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 20px;
  text-wrap: balance;
}

.section-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 auto;
}

.section-line::before,
.section-line::after {
  content: '';
  width: 50px;
  height: 1px;
  background: var(--orange);
}

.section-line-diamond {
  width: 8px;
  height: 8px;
  border: 1.5px solid var(--orange);
  transform: rotate(45deg);
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--warm-gray);
  max-width: 550px;
  margin: 20px auto 0;
  line-height: 1.7;
}


/* ============================================================
   FEATURES SECTION
   ============================================================ */

.features-section {
  padding: 120px 0;
  background: var(--cream);
  position: relative;
}

/* Decorative background circle */
.features-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(26, 58, 107, 0.06);
  border-radius: 50%;
  pointer-events: none;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  background: var(--white);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--deep-blue), var(--orange));
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover::before {
  width: 100%;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--light-gray);
}

.feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--off-white);
  margin-bottom: 24px;
  transition: all 0.4s ease;
  position: relative;
}

.feature-icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 1px solid transparent;
  transition: border-color 0.4s ease;
}

.feature-card:hover .feature-icon {
  background: var(--deep-blue);
}

.feature-card:hover .feature-icon::after {
  border-color: var(--deep-blue);
}

.feature-icon i {
  font-size: 1.3rem;
  color: var(--deep-blue);
  transition: all 0.4s ease;
}

.feature-card:hover .feature-icon i {
  color: var(--white);
  transform: scale(1.1);
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.feature-card:hover h3 {
  color: var(--deep-blue);
}

.feature-card p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--warm-gray);
  line-height: 1.7;
}

.feature-card .feature-number {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(26, 58, 107, 0.05);
  line-height: 1;
}


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

.about-section {
  padding: 120px 0;
  background: var(--white);
  overflow: hidden;
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images-wrap {
  position: relative;
  height: 550px;
}

.about-img-main {
  width: 75%;
  height: 420px;
  object-fit: cover;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-lg);
}

.about-img-overlay {
  width: 55%;
  height: 300px;
  object-fit: cover;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 3;
  border: 6px solid var(--white);
  box-shadow: var(--shadow-md);
}

/* Decorative frame behind images */
.about-frame {
  position: absolute;
  top: 30px;
  left: 30px;
  width: 75%;
  height: 420px;
  /*border: 2px solid var(--orange);*/
  z-index: 1;
  opacity: 0.3;
}

/* Floating stat card */
.about-stat-card {
  position: absolute;
  bottom: 80px;
  left: -20px;
  background: var(--deep-blue);
  color: var(--white);
  padding: 24px 32px;
  z-index: 4;
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: float 6s ease-in-out infinite;
}

.about-stat-card .stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--orange);
  line-height: 1;
}

.about-stat-card .stat-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 4px;
  opacity: 0.8;
}

/* Rotating decorative circle */
.about-deco-circle {
  position: absolute;
  top: -40px;
  right: 10%;
  width: 180px;
  height: 180px;
  border: 1px dashed rgba(26, 58, 107, 0.1);
  border-radius: 50%;
  animation: rotateSlow 25s linear infinite;
  z-index: 1;
}

.about-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 24px;
}

.about-text h2 span {
  color: var(--deep-blue);
}

.about-text > p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--warm-gray);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-amenities-title {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-amenities-title::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--orange);
}

.about-amenities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 36px;
}

.about-amenities li {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-amenities li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--orange);
  transform: rotate(45deg);
  flex-shrink: 0;
}


/* ============================================================
   ROOMS SECTION
   ============================================================ */

.rooms-section {
  padding: 120px 0;
  background: var(--off-white);
  position: relative;
}

.rooms-section::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 200px;
  height: 200px;
  border: 1px solid rgba(26, 58, 107, 0.04);
  pointer-events: none;
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.room-card {
  background: var(--white);
  overflow: hidden;
  position: relative;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  group: room;
}

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

.room-img-wrap {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.room-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.room-card:hover .room-img-wrap img {
  transform: scale(1.08);
}

.room-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--deep-blue);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  z-index: 2;
}

.room-card-body {
  padding: 32px 28px;
}

.room-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.room-card-body p {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--warm-gray);
  line-height: 1.7;
  margin-bottom: 20px;
}

.room-features {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--light-gray);
}

.room-features span {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--warm-gray);
  display: flex;
  align-items: center;
  gap: 6px;
}

.room-features i {
  color: var(--deep-blue);
  font-size: 0.85rem;
}

.room-link {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--deep-blue);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.room-link:hover {
  color: var(--orange);
  gap: 14px;
}

.room-link i {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.room-link:hover i {
  transform: translateX(4px);
}


.contact-section {
  padding: 40px 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

/* Large decorative background shapes */
.contact-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(232, 150, 30, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.contact-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 100px;
  height: 100px;
  border: 1px solid rgba(37, 85, 160, 0.08);
  transform: rotate(45deg);
  pointer-events: none;
}

.contact-inner {
  text-align: center;
  position: relative;
  z-index: 2;
}

.contact-inner .section-label {
  color: var(--orange);
}

.contact-inner .section-title {
  color: var(--white);
}

.contact-inner .section-line::before,
.contact-inner .section-line::after {
  background: var(--orange);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 48px 0;
}

.contact-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 10px;
  text-align: center;
  transition: all 0.4s ease;
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(232, 150, 30, 0.2);
  transform: translateY(-4px);
}

.contact-card i {
  font-size: 1.8rem;
  color: var(--orange);
  margin-bottom: 16px;
  display: block;
}

.contact-card h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 8px;
}

.contact-card p {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

.contact-card a {
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.3s ease;
}

.contact-card a:hover {
  color: var(--orange);
}

.btn-cta {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--orange);
  color: var(--white);
  padding: 18px 56px;
  border: 2px solid var(--orange);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  margin-top: 16px;
}

.btn-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s ease;
}

.btn-cta:hover::before {
  left: 100%;
}

.btn-cta:hover {
  background: transparent;
  color: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(232, 150, 30, 0.25);
}


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

.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.6);
  padding: 80px 0 0;
}

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

.footer-brand .logo-footer {
  height: 70px;
  margin-bottom: 16px;
  
  opacity: 0.9;
}

.footer-brand p {
  font-family: var(--font-body);
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  max-width: 280px;
}

.footer h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--orange);
}

.footer-links a {
  display: block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  padding: 6px 0;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--orange);
  padding-left: 8px;
}

.footer-contact-list p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-contact-list i {
  color: var(--orange);
  width: 18px;
  text-align: center;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding: 28px 0;
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.08em;
}


/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */

@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-images-wrap {
    height: 450px;
    max-width: 500px;
  }

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

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 240px 240px;
  }

  .gallery-item:first-child {
    grid-row: auto;
  }

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

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

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 40px;
    gap: 0;
    box-shadow: var(--shadow-xl);
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

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

  .nav-links a {
    color: var(--charcoal) !important;
    padding: 14px 0;
    font-size: 0.9rem;
    width: 100%;
    border-bottom: 1px solid var(--light-gray);
  }

  .btn-nav {
    margin-top: 16px;
    text-align: center;
    width: 100%;
  }

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

  .room-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .gallery-item {
    height: 240px;
  }

  .contact-cards {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 48px auto;
  }

  .hero-btns {
    flex-direction: column;
    gap: 14px;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    text-align: center;
    max-width: 280px;
  }

  .about-images-wrap {
    height: 380px;
  }

  .about-amenities {
    grid-template-columns: 1fr;
  }

  .hero-shape-1,
  .hero-shape-2,
  .hero-shape-3 {
    display: none;
  }

  .hero-corner {
    width: 40px;
    height: 40px;
  }

  .hero-corner--tl {
    top: 20px;
    left: 20px;
  }

  .hero-corner--br {
    bottom: 20px;
    right: 20px;
  }

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

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .about-images-wrap {
    height: 320px;
  }

  .about-img-main {
    width: 85%;
    height: 320px;
  }

  .about-img-overlay {
    width: 55%;
    height: 200px;
  }

  .about-stat-card {
    left: 0;
    bottom: 40px;
    padding: 18px 24px;
  }

  .feature-card {
    padding: 36px 24px;
  }

  .logo {
    height: 42px;
  }
}

/* ============================================================
   ABOUT US PAGE - OM SHIV HOTEL
   Extends main style.css
   ============================================================ */
/* ============================================================
   ABOUT US PAGE - OM SHIV HOTEL
   Modern Design with Photo Gallery + Video Support
   ============================================================ */


/* ============================================================
   PAGE BANNER / INNER HERO
   ============================================================ */
.page-banner {
  position: relative;
  height: 60vh;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
}
.page-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: heroZoom 15s ease-out forwards;
}
.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 20, 0.7) 0%,
    rgba(10, 10, 20, 0.5) 40%,
    rgba(10, 10, 20, 0.8) 100%
  );
  z-index: 1;
}
.page-banner-content {
  position: relative;
  z-index: 3;
  text-align: center;
}
.page-banner-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 18px;
  animation: fadeInUp 1s ease-out 0.3s both;
}
.page-banner-content h1 em {
  font-style: italic;
  color: var(--orange);
}
.page-banner-desc {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  max-width: 540px;
  margin: 0 auto 22px;
  line-height: 1.7;
  animation: fadeInUp 1s ease-out 0.45s both;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  animation: fadeInUp 1s ease-out 0.6s both;
}
.breadcrumb a {
  color: var(--orange);
  transition: color 0.3s ease;
}
.breadcrumb a:hover {
  color: var(--white);
}
.breadcrumb-sep {
  width: 24px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}
.page-banner .hero-corner--tl { top: 30px; left: 30px; }
.page-banner .hero-corner--br { bottom: 30px; right: 30px; }


/* ============================================================
   ABOUT US PAGE - OM SHIV HOTEL
   Modern Design with Photo Gallery + Video Support
   ============================================================ */


/* ============================================================
   PAGE BANNER / INNER HERO
   ============================================================ */
.page-banner {
  position: relative;
  height: 60vh;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
}
.page-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: heroZoom 15s ease-out forwards;
}
.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 20, 0.7) 0%,
    rgba(10, 10, 20, 0.5) 40%,
    rgba(10, 10, 20, 0.8) 100%
  );
  z-index: 1;
}
.page-banner-content {
  position: relative;
  z-index: 3;
  text-align: center;
}
.page-banner-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 18px;
  animation: fadeInUp 1s ease-out 0.3s both;
}
.page-banner-content h1 em {
  font-style: italic;
  color: var(--orange);
}
.page-banner-desc {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  max-width: 540px;
  margin: 0 auto 22px;
  line-height: 1.7;
  animation: fadeInUp 1s ease-out 0.45s both;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  animation: fadeInUp 1s ease-out 0.6s both;
}
.breadcrumb a {
  color: var(--orange);
  transition: color 0.3s ease;
}
.breadcrumb a:hover {
  color: var(--white);
}
.breadcrumb-sep {
  width: 24px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}
.page-banner .hero-corner--tl { top: 30px; left: 30px; }
.page-banner .hero-corner--br { bottom: 30px; right: 30px; }


/* ============================================================
   WELCOME / OUR STORY - Magazine Layout
   ============================================================ */
.story-section {
  padding: 120px 0;
  background: var(--white);
  overflow: hidden;
}
.story-section .section-title em {
  font-style: italic;
  color: var(--deep-blue);
}

/* --- 3 Images Row - Staggered Heights --- */
.story-images-row {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 60px;
  margin-bottom: 60px;
}
.story-img-col {
  flex: 1;
  position: relative;
}
.story-img-col--tall {
  flex: 1.1;
}
.story-img-wrap {
  position: relative;
  overflow: hidden;
  height: 340px;
}
.story-img-col--tall .story-img-wrap {
  height: 400px;
}
.story-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.story-img-wrap:hover img {
  transform: scale(1.06);
}
.story-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,10,20,0.35) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.story-img-wrap:hover .story-img-overlay {
  opacity: 1;
}
.story-img-frame {
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255,255,255,0);
  pointer-events: none;
  transition: border-color 0.5s ease;
  z-index: 2;
}
.story-img-wrap:hover .story-img-frame {
  border-color: rgba(255,255,255,0.35);
}

/* Badge between images */
.story-badge {
  position: absolute;
  bottom: -28px;
  right: -14px;
  z-index: 5;
}
.story-badge-inner {
  width: 110px;
  height: 110px;
  background: var(--deep-blue);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 35px rgba(26,58,107,0.35);
  animation: float 5s ease-in-out infinite;
}
.story-badge-inner .badge-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}
.story-badge-inner .badge-label {
  font-family: var(--font-body);
  font-size: 0.5rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-top: 3px;
}

/* --- Lead Quote --- */
.story-quote {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  max-width: 860px;
  margin: 0 auto 50px;
  padding: 36px 40px;
  background: var(--cream);
  border-left: 4px solid var(--orange);
  position: relative;
}
.story-quote-icon {
  flex-shrink: 0;
  color: var(--orange);
  font-size: 1.6rem;
  opacity: 0.35;
  margin-top: 2px;
}
.story-quote p {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 500;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.8;
  margin: 0;
}

/* --- 2-Column Content --- */
.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.story-col p {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--warm-gray);
  line-height: 1.95;
  margin-bottom: 16px;
}
.story-col p:last-child {
  margin-bottom: 0;
}

/* --- Highlights Bar (horizontal chips) --- */
.story-highlights-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Desktop: 3 per row */
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto 44px;
}

/* Tablet */
@media (max-width: 992px) {
  .story-highlights-bar {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .story-highlights-bar {
    grid-template-columns: 1fr; /* Mobile: 1 per row */
  }
}


.highlight-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: var(--cream);
  border: 1px solid var(--light-gray);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--charcoal);
  transition: all 0.35s ease;
  cursor: default;
}
.highlight-chip i {
  width: 30px;
  height: 30px;
  min-width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--deep-blue);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.62rem;
  transition: all 0.35s ease;
}
.highlight-chip:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.07);
}
.highlight-chip:hover i {
  background: var(--orange);
}

/* --- CTA Button centered --- */
.story-cta {
  text-align: center;
}
.story-cta .btn-primary i {
  margin-left: 8px;
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}
.story-cta .btn-primary:hover i {
  transform: translateX(4px);
}


/* ============================================================
   VIDEO SECTION - Cinematic Video Showcase
   ============================================================ */
.video-section {
  padding: 120px 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.video-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(232,150,30,0.04);
  border-radius: 50%;
  pointer-events: none;
}
.video-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 450px;
  height: 450px;
  border: 1px solid rgba(26,58,107,0.06);
  border-radius: 50%;
  pointer-events: none;
}
.video-inner {
  position: relative;
  z-index: 2;
}
.video-header {
  text-align: center;
  margin-bottom: 60px;
}
.video-header .section-label {
  color: var(--orange);
}
.video-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
}
.video-header p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}
.video-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.video-frame {
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(232,150,30,0.2);
  pointer-events: none;
  z-index: 2;
}
/* Play button overlay for self-hosted video */
.video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10,10,20,0.35);
  cursor: pointer;
  z-index: 3;
  transition: all 0.4s ease;
}
.video-play-overlay:hover {
  background: rgba(10,10,20,0.2);
}
.video-play-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}
.video-play-btn {
  width: 90px;
  height: 90px;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  position: relative;
}
.video-play-btn::before {
  content: '';
  position: absolute;
  inset: -12px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  animation: pulse-ring 2s ease-out infinite;
}
.video-play-overlay:hover .video-play-btn {
  background: var(--orange);
  border-color: var(--orange);
  transform: scale(1.08);
}
.video-play-btn i {
  color: var(--white);
  font-size: 2rem;
  margin-left: 5px;
}

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}


/* ============================================================
   GALLERY SECTION
   ============================================================ */

.gallery-section {
  padding: 120px 0;
  background: var(--cream);
  position: relative;
}

.gallery-grid {
 display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-auto-rows: 260px;
  gap: 20px;

}
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 220px;
  }

  .gallery-item:first-child {
    grid-row: auto;   /* Remove big first image on tablet */
  }
  
}

@media (max-width: 576px) {
  .gallery-section {
    padding: 70px 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
    gap: 25px;   
  }

  .gallery-item:first-child {
    grid-row: auto;
  }
  .gallery-item {
    margin-bottom: 10px; /* optional extra spacing */
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item:first-child {
  grid-row: 1 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15, 15, 26, 0.7) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 28px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 500;
}

/* Border frame on hover */
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0);
  transition: all 0.5s ease;
  pointer-events: none;
}

.gallery-item:hover::after {
  border-color: rgba(255, 255, 255, 0.4);
}


/* ============================================================
   PHOTO GALLERY - Masonry / Bento Grid
   ============================================================ */
.photo-section {
  padding: 120px 0;
  background: var(--cream);
  overflow: hidden;
}
.photo-section1 {
 padding-top: 5px;
    padding-right: 0;
    padding-bottom: 40px;
    padding-left: 0;
  background: var(--cream);
  overflow: hidden;
}
.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 280px 280px;
  gap: 16px;
  margin-top: 60px;
}
.photo-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.photo-item img {
  width: 200%;
  height: 200%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.photo-item:hover img {
  transform: scale(1.08);
}
.photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,10,20,0.7) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.photo-item:hover .photo-overlay {
  opacity: 1;
}
.photo-inner-frame {
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255,255,255,0);
  transition: all 0.5s ease;
  pointer-events: none;
  z-index: 2;
}
.photo-item:hover .photo-inner-frame {
  border-color: rgba(255,255,255,0.25);
}
.photo-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 3;
  transform: translateY(12px);
  opacity: 0;
  transition: all 0.4s ease 0.1s;
}
.photo-item:hover .photo-label {
  transform: translateY(0);
  opacity: 1;
}
.photo-label span {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
}
.photo-label small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: 2px;
}

/* Bento sizes */
.photo-item--wide {
  grid-column: span 2;
}
.photo-item--tall {
  grid-row: span 2;
}


/* ============================================================
   MISSION / VISION / VALUES - Modern Cards
   ============================================================ */
.mvv-section {
  padding: 120px 0;
  background: var(--white);
}
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.mvv-card {
  background: var(--cream);
  padding: 52px 36px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid var(--light-gray);
}
.mvv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--deep-blue), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.mvv-card:hover::before {
  transform: scaleX(1);
}
.mvv-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  background: var(--white);
}
.mvv-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--light-gray);
  border-radius: 50%;
  margin-bottom: 28px;
  transition: all 0.4s ease;
}
.mvv-card:hover .mvv-icon {
  background: var(--deep-blue);
  border-color: var(--deep-blue);
}
.mvv-icon i {
  font-size: 1.5rem;
  color: var(--deep-blue);
  transition: all 0.4s ease;
}
.mvv-card:hover .mvv-icon i {
  color: var(--white);
}
.mvv-card h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.mvv-card p {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--warm-gray);
  line-height: 1.85;
}


/* ============================================================
   WHY CHOOSE US - Parallax + Content
   ============================================================ */
.why-section {
  position: relative;
  padding: 140px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.why-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 10, 20, 0.9), rgba(26, 58, 107, 0.82));
}
.why-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-text {
  color: var(--white);
}
.why-text .section-label {
  text-align: left;
}
.why-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 28px;
}
.why-text > p {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.85;
  margin-bottom: 18px;
}
.why-list {
  margin-top: 30px;
}
.why-list-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}
.why-list-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(232, 150, 30, 0.35);
  transition: all 0.3s ease;
}
.why-list-item:hover .why-list-icon {
  background: var(--orange);
  border-color: var(--orange);
}
.why-list-icon i {
  color: var(--orange);
  font-size: 1rem;
  transition: all 0.3s ease;
}
.why-list-item:hover .why-list-icon i {
  color: var(--white);
}
.why-list-text h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.why-list-text p {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
}
.why-img {
  position: relative;
  overflow: hidden;
  height: 500px;
}
.why-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.why-img-frame {
  position: absolute;
  inset: 12px;
  border: 2px solid rgba(232, 150, 30, 0.25);
  pointer-events: none;
}


/* ============================================================
   TIMELINE / MILESTONES
   ============================================================ */
.timeline-section {
  padding: 120px 0;
  background: var(--cream);
  overflow: hidden;
}
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: var(--light-gray);
}
.timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 60px;
  position: relative;
}
.timeline-item:last-child {
  margin-bottom: 0;
}
.timeline-item:nth-child(odd) {
  flex-direction: row;
}
.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}
.timeline-content {
  width: calc(50% - 40px);
  padding: 36px;
  background: var(--white);
  border: 1px solid var(--light-gray);
  position: relative;
  transition: all 0.4s ease;
}
.timeline-content:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
  transform: translateY(-4px);
}
.timeline-dot {
  position: absolute;
  left: 50%;
  top: 36px;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background: var(--orange);
  border: 3px solid var(--white);
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 0 4px var(--light-gray);
}
.timeline-year {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}
.timeline-content h4 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.timeline-content p {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--warm-gray);
  line-height: 1.8;
}


/* ============================================================
   TEAM SECTION
   ============================================================ */
.team-section {
  padding: 120px 0;
  background: var(--white);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.team-card {
  text-align: center;
  transition: all 0.4s ease;
}
.team-card:hover {
  transform: translateY(-8px);
}
.team-img-wrap {
  position: relative;
  overflow: hidden;
  height: 330px;
  margin-bottom: 24px;
}
.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.team-card:hover .team-img-wrap img {
  transform: scale(1.06);
}
.team-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 10, 20, 0.6) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.team-card:hover .team-img-overlay {
  opacity: 1;
}
.team-img-frame {
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255, 255, 255, 0);
  transition: all 0.5s ease;
  pointer-events: none;
}
.team-card:hover .team-img-frame {
  border-color: rgba(255, 255, 255, 0.3);
}
.team-social {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  display: flex;
  gap: 10px;
  opacity: 0;
  transition: all 0.4s ease 0.1s;
}
.team-card:hover .team-social {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.team-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--deep-blue);
  font-size: 0.85rem;
  transition: all 0.3s ease;
}
.team-social a:hover {
  background: var(--orange);
  color: var(--white);
}
.team-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.team-card .team-role {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
}


/* ============================================================
   CTA SECTION
   ============================================================ */
.about-cta {
  padding: 100px 0;
  background: var(--charcoal);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-cta::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(232, 150, 30, 0.05);
  border-radius: 50%;
  pointer-events: none;
}
.about-cta::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(26, 58, 107, 0.06);
  border-radius: 50%;
  pointer-events: none;
}
.about-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}
.about-cta-inner .section-label {
  color: var(--orange);
}
.about-cta-inner h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}
.about-cta-inner p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.85;
  margin-bottom: 36px;
}
.about-cta-inner .section-line::before,
.about-cta-inner .section-line::after {
  background: var(--orange);
}
.about-cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.btn-cta-outline {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: transparent;
  color: var(--white);
  padding: 16px 42px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.4s ease;
}
.btn-cta-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}


/* ============================================================
   RESPONSIVE - ABOUT PAGE
   ============================================================ */
@media (max-width: 1100px) {
  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 260px 260px 260px;
  }
  .photo-item--wide {
    grid-column: span 2;
  }
  .photo-item--tall {
    grid-row: span 1;
  }
}

@media (max-width: 992px) {
  .story-content,
  .why-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .story-images-row {
    gap: 14px;
  }
  .story-img-wrap {
    height: 280px;
  }
  .story-img-col--tall .story-img-wrap {
    height: 320px;
  }
  .story-badge-inner {
    width: 90px;
    height: 90px;
  }
  .story-badge-inner .badge-number {
    font-size: 1.8rem;
  }
  .story-quote {
    padding: 28px 30px;
  }
  .mvv-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .timeline::before {
    left: 24px;
  }
  .timeline-item,
  .timeline-item:nth-child(even) {
    flex-direction: row;
    padding-left: 60px;
  }
  .timeline-content {
    width: 100%;
  }
  .timeline-dot {
    left: 24px;
  }
  .why-section {
    background-attachment: scroll;
  }
}

@media (max-width: 768px) {
  .page-banner {
    height: 50vh;
    min-height: 340px;
  }
  .page-banner-content h1 {
    font-size: 2rem;
  }
  .story-section,
  .video-section,
  .photo-section,
  .mvv-section,
  .why-section,
  .timeline-section,
  .team-section {
    padding: 80px 0;
  }
  .story-images-row {
    flex-direction: column;
    gap: 16px;
  }
  .story-img-wrap,
  .story-img-col--tall .story-img-wrap {
    height: 260px;
  }
  .story-badge {
    right: 10px;
    bottom: -22px;
  }
  .story-badge-inner {
    width: 80px;
    height: 80px;
  }
  .story-badge-inner .badge-number {
    font-size: 1.5rem;
  }
  .story-quote {
    padding: 24px;
    gap: 16px;
    flex-direction: column;
    text-align: center;
    border-left: none;
    border-top: 4px solid var(--orange);
  }
  .story-quote p {
    font-size: 1.05rem;
  }

  .highlight-chip {
    padding: 10px 16px;
    font-size: 0.78rem;
  }
  .why-img {
    height: 350px;
  }
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 340px;
    margin: 0 auto;
  }
  .team-img-wrap {
    height: 360px;
  }
  .about-cta-btns {
    flex-direction: column;
    gap: 14px;
  }
  .about-cta-btns a {
    width: 100%;
    text-align: center;
    max-width: 280px;
  }
  .photo-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .photo-item,
  .photo-item--wide {
    grid-column: span 1;
    height: 250px;
  }
  .video-play-btn {
    width: 70px;
    height: 70px;
  }
  .video-play-btn i {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .story-img-wrap,
  .story-img-col--tall .story-img-wrap {
    height: 220px;
  }
  .story-badge-inner {
    width: 70px;
    height: 70px;
  }
  .story-badge-inner .badge-number {
    font-size: 1.3rem;
  }
  .story-badge-inner .badge-label {
    font-size: 0.42rem;
  }
  .highlight-chip {
    width: 100%;
    justify-content: flex-start;
  }
  .page-banner .hero-corner {
    width: 30px;
    height: 30px;
  }
  .page-banner .hero-corner--tl { top: 16px; left: 16px; }
  .page-banner .hero-corner--br { bottom: 16px; right: 16px; }
}

.gallery-view-more {
  text-align: center;
  margin-top: 40px;
}

.gallery-view-more .btn-primary {
  display: inline-block;
  padding: 14px 36px;
  font-size: 14px;
  
  
  position: relative;
  overflow: hidden;
}
.about-video-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 2;
}

.contact-section-page {
    padding: 80px 5%;
    background: #f9f9f9;
    
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-header p {
    color: #777;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Contact Info */
.contact-info {
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-info h3 {
    margin-bottom: 25px;
}

.info-box {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.info-box i {
    font-size: 20px;
    color: #e8961e;
    margin-right: 15px;
    margin-top: 5px;
}

.info-box h4 {
    margin: 0;
    font-size: 16px;
}

.info-box p {
    margin: 5px 0 0;
    color: #666;
}

/* Contact Form */
.contact-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-form h3 {
    margin-bottom: 25px;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.form-row input {
    flex: 1;
}

input, textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
     font-family: inherit !important;
}

input:focus, textarea:focus {
    border-color: #c8a165;
}

input::placeholder,
textarea::placeholder {
    font-family: inherit !important;
}

/* Responsive */
@media (max-width: 991px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .form-row {
        flex-direction: column;
    }
}


/* ===== BOOKING MODAL ===== */
.booking-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.booking-content {
  background: #fff;
  width: 95%;
  max-width: 420px;
  padding: 35px;
  border-radius: 12px;
  position: relative;
  animation: fadeInUp 0.4s ease;
}

.booking-content h3 {
  text-align: center;
  margin-bottom: 20px;
}

.booking-content input {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.close-modal {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
}

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


/* ===== ROOM DROPDOWN ===== */
.booking-content select {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  background: #fff;
  color: #333;
  outline: none;
  transition: all 0.3s ease;
  appearance: none;           /* Remove default arrow */
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* Custom arrow */
.booking-content {
  position: relative;
}

.booking-content select {
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23999' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
}

/* Hover */
.booking-content select:hover {
  border-color: #c19b76;
}

/* Focus */
.booking-content select:focus {
  border-color: #c19b76;
  box-shadow: 0 0 0 3px rgba(193, 155, 118, 0.15);
}

/* Option styling (limited support) */
.booking-content select option {
  padding: 10px;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
}

