/* ============================================
   CALISTA RESORT - Shared Stylesheet
   ============================================ */

@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;1,600&family=Lato:wght@300;400;700;900&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ---- CSS Variables ---- */
:root {
  --gold: #C49A27;
  --gold-light: #D4A832;
  --gold-dark: #9B7D1E;
  --footer-bg: #9B7D1E;
  --header-bg: #1a1a1a;
  --cream-bg: #F5F0E8;
  --cream-light: #FAF7F2;
  --white: #ffffff;
  --dark-text: #1C1C1C;
  --gray-text: #666666;
  --light-gray: #f8f8f8;
  --border: #e0ddd6;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Lato', sans-serif;
  --font-nav: 'Montserrat', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--dark-text);
  background: var(--white);
  font-size: 15px;
  line-height: 1.7;
}

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

ul { list-style: none; }

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

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

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

/* ============================================
   HEADER
   ============================================ */
header {
  background: var(--header-bg);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  position: relative;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--white);
}

.logo-emblem {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 36px;
  height: 36px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 14px;
}

.logo-text-main {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}

.logo-text-sub {
  font-family: var(--font-nav);
  font-size: 9px;
  letter-spacing: 4px;
  color: #aaa;
  text-transform: uppercase;
  margin-top: 3px;
  font-weight: 400;
}

.logo-by {
  font-family: var(--font-nav);
  font-size: 9px;
  letter-spacing: 2px;
  color: #999;
  text-transform: uppercase;
  margin: 0 8px;
}

.logo-mavenco {
  font-family: var(--font-serif);
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--white);
  text-transform: uppercase;
  font-weight: 400;
}

.header-social {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 14px;
}

.header-social a {
  color: var(--white);
  font-size: 16px;
  transition: color 0.3s;
}

.header-social a:hover {
  color: var(--gold);
}

/* ---- Hamburger Button ---- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  flex-shrink: 0;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

/* Hamburger stays as 3 bars — X is handled by nav-close-btn inside nav */
.hamburger.active span:nth-child(1) {
  transform: none;
}

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

.hamburger.active span:nth-child(3) {
  transform: none;
}

/* Hide hamburger when nav is open (close btn handles it) */
.hamburger.active {
  opacity: 0;
  pointer-events: none;
}

/* ---- Navigation ---- */
nav.main-nav {
  background: var(--header-bg);
  border-top: 1px solid #2e2e2e;
}

nav.main-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0;
}

nav.main-nav ul li a {
  display: block;
  padding: 14px 22px;
  font-family: var(--font-nav);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #cccccc;
  font-weight: 500;
  transition: color 0.3s;
  white-space: nowrap;
}

nav.main-nav ul li a:hover,
nav.main-nav ul li a.active {
  color: var(--gold);
}

/* Nav close button (hidden on desktop) */
.nav-close-btn {
  display: none;
  background: none;
  border: none;
  color: #cccccc;
  font-size: 22px;
  cursor: pointer;
  position: absolute;
  top: 14px;
  right: 16px;
  padding: 4px 8px;
  transition: color 0.3s;
  z-index: 1002;
}

.nav-close-btn:hover {
  color: var(--gold);
}

/* Nav social links (hidden on desktop, shown in mobile drawer) */
.nav-social {
  display: none;
  gap: 16px;
  padding: 20px 20px 24px;
  border-top: 1px solid #2e2e2e;
  margin-top: auto;
}

.nav-social a {
  color: #cccccc;
  font-size: 18px;
  transition: color 0.3s;
}

.nav-social a:hover {
  color: var(--gold);
}

/* ---- Nav Overlay ---- */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 998;
  cursor: pointer;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.nav-overlay.open {
  display: block;
}

/* ============================================
   HERO SECTIONS
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
}

.hero-label {
  font-family: var(--font-nav);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 500;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Home hero is taller */
.hero-home {
  height: 100vh;
  min-height: 600px;
}

/* Placeholder hero background (replace with actual images) */
.hero-placeholder {
  background: linear-gradient(135deg, #1a120a 0%, #2a1e10 40%, #1a1a1a 100%);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: 14px 36px;
  font-family: var(--font-nav);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.btn-gold:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-outline-dark {
  display: inline-block;
  background: transparent;
  color: var(--dark-text);
  padding: 13px 34px;
  font-family: var(--font-nav);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  border: 1.5px solid var(--dark-text);
  cursor: pointer;
  transition: all 0.3s;
}

.btn-outline-dark:hover {
  background: var(--dark-text);
  color: var(--white);
}

.btn-outline-white {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 12px 32px;
  font-family: var(--font-nav);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  border: 1.5px solid var(--white);
  cursor: pointer;
  transition: all 0.3s;
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--dark-text);
}

.btn-outline-gold {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  padding: 12px 32px;
  font-family: var(--font-nav);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  border: 1.5px solid var(--gold);
  cursor: pointer;
  transition: all 0.3s;
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--dark-text);
  margin-bottom: 14px;
}

.section-header p {
  font-size: 14px;
  color: var(--gray-text);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.section-label {
  font-family: var(--font-nav);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 600;
}

/* ============================================
   PHOTO PLACEHOLDER
   ============================================ */
.photo-placeholder {
  background: linear-gradient(135deg, #d4c8b4 0%, #c8bba0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 12px;
  font-family: var(--font-nav);
  letter-spacing: 1px;
  text-transform: uppercase;
  overflow: hidden;
}

.photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--footer-bg);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding: 64px 80px 48px;
}

.footer-brand .logo-text-main {
  color: var(--white);
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  margin: 16px 0 24px;
  line-height: 1.7;
  max-width: 260px;
}

.footer-col h4 {
  font-family: var(--font-nav);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: capitalize;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-contact-item .icon {
  color: rgba(255,255,255,0.9);
  margin-top: 2px;
  font-size: 14px;
  min-width: 16px;
}

.footer-contact-item span {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 13px;
  transition: all 0.3s;
}

.footer-social a:hover {
  background: var(--white);
  color: var(--gold-dark);
}

/* Footer accordion (mobile toggle elements — hidden on desktop) */
.footer-col-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-acc-icon {
  display: none;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.footer-col.acc-open .footer-acc-icon {
  transform: rotate(180deg);
}

.footer-col-body {
  /* always visible on desktop */
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding: 18px 80px;
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.5px;
}

/* ============================================
   HOME PAGE
   ============================================ */

/* Hero Slider dots */
.slider-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.3s;
}

.slider-dot.active {
  background: var(--white);
}

/* Floating side button */
.hero-side-btn {
  position: absolute;
  right: 0;
  top: 50%;
  background: var(--gold);
  color: var(--white);
  writing-mode: vertical-lr;
  text-orientation: mixed;
  transform: translateY(-50%) rotate(180deg);
  padding: 20px 10px;
  font-family: var(--font-nav);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  z-index: 3;
}

/* Luxury intro section */
.luxury-intro {
  padding: 80px 0;
  background: var(--white);
}

.luxury-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.luxury-intro h2 {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 300;
  font-style: italic;
  color: var(--dark-text);
  line-height: 1.2;
}

.luxury-intro h2 strong {
  font-weight: 600;
  font-style: normal;
}

.luxury-intro p {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.9;
}

/* Room & Amenities home section */
.rooms-section-home {
  padding: 80px 0;
  background: var(--cream-light);
}

.rooms-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.room-card {
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
}

.room-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.room-card-img {
  height: 220px;
  background: linear-gradient(135deg, #c8bba0 0%, #b8a888 100%);
  overflow: hidden;
}

.room-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-card-body {
  padding: 20px;
}

.room-card-body h3 {
  font-family: var(--font-nav);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 8px;
}

.room-card-body .room-detail {
  font-size: 12px;
  color: var(--gray-text);
  margin-bottom: 4px;
}

.room-card-body .room-detail span {
  color: var(--dark-text);
  font-weight: 600;
}

.room-card-actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

/* Amenities gold box */
.amenities-gold-box {
  background: var(--gold);
  color: var(--white);
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.amenities-gold-box h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 400;
}

.amenities-gold-box ul li {
  font-size: 13px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  gap: 8px;
}

.amenities-gold-box ul li::before {
  content: '—';
  color: rgba(255,255,255,0.6);
}

.amenities-gold-box .btn-outline-white {
  margin-top: 24px;
  align-self: flex-start;
  font-size: 10px;
  padding: 10px 24px;
}

/* Venues home section */
.venues-section-home {
  padding: 80px 0;
  background: var(--white);
}

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

.venue-card {
  background: var(--white);
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.venue-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.13);
}

.venue-card-img {
  height: 240px;
  background: linear-gradient(135deg, #2a1a0a 0%, #1a1a1a 100%);
  overflow: hidden;
}

.venue-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.venue-card-body {
  padding: 24px;
}

.venue-card-body h3 {
  font-family: var(--font-nav);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 12px;
}

.venue-detail {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--gray-text);
  margin-bottom: 6px;
}

.venue-detail i {
  color: var(--gold);
  font-size: 13px;
}

.venue-detail strong {
  color: var(--dark-text);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.venue-detail-value {
  font-size: 12px;
  color: var(--gray-text);
}

.venue-card-body .btn-outline-dark {
  margin-top: 18px;
  font-size: 10px;
  padding: 10px 28px;
}

/* Venue card button row — both buttons same height & aligned */
.venue-card-body [style*="display:flex"] {
  align-items: stretch;
}

.venue-card-body [style*="display:flex"] a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-top: 0 !important;
}

/* Business dark section */
.business-section {
  background: var(--header-bg);
  padding: 80px 0;
}

.business-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.business-content h2 {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.business-content p {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 24px;
}

.business-services {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.business-service-item h4 {
  font-family: var(--font-nav);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.business-service-item p {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

.business-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.business-img {
  height: 160px;
  background: linear-gradient(135deg, #2a1a0a 0%, #3a2a1a 100%);
  overflow: hidden;
}

.business-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Gallery section */
.gallery-section {
  padding: 80px 0;
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 36px;
}

.gallery-item {
  height: 180px;
  background: linear-gradient(135deg, #c8bba0 0%, #b8a888 100%);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

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

/* Testimonial */
.testimonial-section {
  padding: 80px 0;
  background: var(--cream-light);
  text-align: center;
}

.testimonial-quote-icon {
  font-size: 80px;
  color: var(--gold);
  font-family: Georgia, serif;
  line-height: 0.6;
  margin-bottom: 32px;
  display: block;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: italic;
  color: var(--dark-text);
  max-width: 720px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c8bba0 0%, #b8a888 100%);
  overflow: hidden;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-name {
  font-family: var(--font-nav);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: left;
}

.testimonial-role {
  font-size: 12px;
  color: var(--gray-text);
  text-align: left;
}

/* Downloads section */
.downloads-section {
  padding: 80px 0;
  background: var(--white);
}

.downloads-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.download-card {
  border: 1px solid var(--border);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.3s;
}

.download-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.download-icon {
  width: 48px;
  height: 48px;
  background: var(--cream-bg);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 20px;
  margin-bottom: 18px;
}

.download-card h3 {
  font-family: var(--font-nav);
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: capitalize;
}

.download-card p {
  font-size: 12px;
  color: var(--gray-text);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.download-link {
  font-family: var(--font-nav);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s;
}

.download-link:hover {
  gap: 10px;
}

/* Event planning dark section */
.event-plan-section{
   padding:70px 0;   /* pehle 100 tha */
}

.event-plan-inner{
   position:relative;
   z-index:2;
   max-width:950px; /* controlled width */
   margin:auto;
   padding:0 20px;
   text-align:center;
}

.event-plan-form{
   display:grid;
   grid-template-columns:1fr 1fr;
   gap:18px;
   margin-top:25px;
}

.event-plan-form input,
.event-plan-form textarea{
   background:rgba(255,255,255,.08);
   border:1px solid rgba(196,154,39,.7);
   padding:10px 16px; /* pehle 14 */
   height:58px;       /* fix height */
   font-size:15px;
}

.event-plan-form textarea{
   min-height:130px;
   height:130px;
}

.event-plan-form .full-width{
   grid-column:1/-1;
}

.event-plan-form input::placeholder,
.event-plan-form textarea::placeholder {
  color: rgba(255,255,255,0.5);
}

.event-plan-form .full-width {
  grid-column: 1 / -1;
}

.event-plan-form textarea {
  resize: vertical;
  min-height: 80px;
}

/* ============================================
   ROOMS & AMENITIES PAGE
   ============================================ */
.page-section {
  padding: 80px 0;
}

.page-section.bg-cream {
  background: var(--cream-bg);
}

.page-section.bg-light {
  background: var(--cream-light);
}

.room-categories-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.room-category-card {
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  overflow: hidden;
}

.room-category-img {
  height: 260px;
  background: linear-gradient(135deg, #c8bba0 0%, #b8a888 100%);
  overflow: hidden;
}

.room-category-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-category-body {
  padding: 28px;
}

.room-category-body h3 {
  font-family: var(--font-nav);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 16px;
}

.room-spec {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--gray-text);
  margin-bottom: 6px;
}

.room-spec i {
  color: var(--gold);
  font-size: 13px;
}

.room-spec strong {
  color: var(--dark-text);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  min-width: 60px;
}

/* Room photo grid + amenities */
.room-gallery-amenities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.room-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.room-photo-item {
  height: 180px;
  background: linear-gradient(135deg, #c8bba0 0%, #b8a888 100%);
  overflow: hidden;
}

.room-photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Why choose us */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
  text-align: center;
}

.why-choose-item .icon-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--white);
  font-size: 24px;
}

.why-choose-item h4 {
  font-family: var(--font-nav);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
}

.why-choose-item p {
  font-size: 12px;
  color: var(--gray-text);
  line-height: 1.7;
}

/* ============================================
   CORPORATE MEETING & EVENT PAGE
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.service-card {
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  text-align: center;
  transition: box-shadow 0.3s;
}

.service-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}

.service-card-img {
  height: 200px;
  background: linear-gradient(135deg, #2a1a0a 0%, #3a2a1a 100%);
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card-body {
  padding: 20px;
  font-family: var(--font-nav);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
}

/* Premium facilities */
.facilities-section {
  padding: 80px 0;
  background: var(--white);
}

.facilities-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.facilities-content h2 {
  font-family: var(--font-serif);
  font-size: 36px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 28px;
}

.facility-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.facility-item .icon {
  width: 40px;
  height: 40px;
  background: var(--cream-bg);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
}

.facility-item h4 {
  font-family: var(--font-nav);
  font-size: 13px;
  font-weight: 600;
}

.facilities-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.facility-img {
  height: 180px;
  background: linear-gradient(135deg, #c8bba0 0%, #b8a888 100%);
  overflow: hidden;
}

.facility-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Corporate Fun Day */
.fun-day-section {
  padding: 80px 0;
  background: var(--cream-light);
}

.fun-day-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.fun-day-img {
  height: 360px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a1a0a 100%);
  overflow: hidden;
}

.fun-day-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fun-day-content h2 {
  font-family: var(--font-serif);
  font-size: 34px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 20px;
}

.fun-day-content p {
  font-size: 13px;
  color: var(--gray-text);
  line-height: 1.8;
  margin-bottom: 24px;
}

.fun-day-list {
  margin-bottom: 24px;
}

.fun-day-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--dark-text);
  margin-bottom: 10px;
}

.fun-day-list li i {
  color: var(--gold);
  font-size: 14px;
}

.fun-day-highlight {
  background: var(--gold);
  color: var(--white);
  padding: 16px 20px;
  font-size: 12px;
  line-height: 1.6;
  font-style: italic;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  text-align: center;
  background: var(--white);
}

.cta-section h2 {
  font-family: var(--font-serif);
  font-size: 38px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 14px;
  color: var(--gray-text);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

/* ============================================
   WEDDING CELEBRATION PAGE
   ============================================ */
.love-section {
  padding: 80px 0;
  background: var(--white);
}

.love-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.love-img {
  height: 420px;
  background: linear-gradient(135deg, #2a1a0a 0%, #1a1a1a 100%);
  overflow: hidden;
  border: 4px solid var(--cream-bg);
  box-shadow: 8px 8px 0 var(--cream-bg);
}

.love-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.love-content h2 {
  font-family: var(--font-serif);
  font-size: 36px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 24px;
}

.love-content p {
  font-size: 13px;
  color: var(--gray-text);
  line-height: 1.9;
  margin-bottom: 16px;
}

/* Premium celebrations */
.premium-celebrations {
  padding: 80px 0;
  background: var(--white);
}

.celebrations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.celebration-card {
  background: var(--white);
  text-align: center;
}

.celebration-card-img {
  height: 200px;
  background: linear-gradient(135deg, #c8bba0 0%, #b8a888 100%);
  overflow: hidden;
  margin-bottom: 20px;
}

.celebration-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.celebration-card h3 {
  font-family: var(--font-nav);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
}

.celebration-card p {
  font-size: 12px;
  color: var(--gray-text);
  line-height: 1.7;
  padding: 0 8px;
}

/* ============================================
   VENUES PAGE
   ============================================ */
.venues-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
}

.resort-details-card {
  background: var(--cream-light);
  padding: 36px;
}

.resort-details-card h3 {
  font-family: var(--font-nav);
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 28px;
}

.contact-detail-item {
  margin-bottom: 24px;
}

.contact-detail-item .detail-label {
  font-family: var(--font-nav);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  font-weight: 600;
}

.contact-detail-item .icon {
  color: var(--gold);
  margin-right: 8px;
  font-size: 15px;
}

.contact-detail-item p {
  font-size: 13px;
  color: var(--dark-text);
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.resort-img {
  height: 200px;
  background: linear-gradient(135deg, #c8bba0 0%, #b8a888 100%);
  margin-top: 28px;
  overflow: hidden;
}

.resort-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Enquiry Form */
.enquiry-form-section h2 {
  font-family: var(--font-serif);
  font-size: 36px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 8px;
}

.enquiry-form-section p.subtitle {
  font-size: 13px;
  color: var(--gray-text);
  margin-bottom: 36px;
  line-height: 1.7;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-family: var(--font-nav);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--dark-text);
}

.form-group label .required {
  color: var(--gold);
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid var(--border);
  padding: 14px 16px;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--dark-text);
  outline: none;
  transition: border-color 0.3s;
  background: var(--white);
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #bbb;
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.submit-btn-full {
  width: 100%;
  background: var(--gold);
  color: var(--white);
  border: none;
  padding: 18px;
  font-family: var(--font-nav);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 8px;
}

.submit-btn-full:hover {
  background: var(--gold-dark);
}

/* ============================================
   THANK YOU PAGE
   ============================================ */
.thankyou-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 36px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
}

.thankyou-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 48px;
}

.checkmark-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--cream-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.checkmark-circle i {
  font-size: 32px;
  color: var(--gold);
}

.thankyou-card h2 {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 500;
  color: var(--dark-text);
  line-height: 1.2;
  margin-bottom: 16px;
  max-width: 400px;
}

.thankyou-card > p {
  font-size: 13px;
  color: var(--gray-text);
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 420px;
}

.status-badges {
  display: flex;
  gap: 12px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.status-badge {
  border: 1px solid var(--border);
  padding: 12px 18px;
  flex: 1;
  min-width: 120px;
}

.status-badge .badge-label {
  font-family: var(--font-nav);
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-bottom: 4px;
}

.status-badge .badge-value {
  font-family: var(--font-nav);
  font-size: 12px;
  font-weight: 700;
  color: var(--dark-text);
}

.thankyou-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 28px 0;
}

.thankyou-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.thankyou-step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.thankyou-step:last-child {
  border-bottom: none;
}

.step-icon {
  width: 44px;
  height: 44px;
  background: var(--cream-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
}

.step-content h4 {
  font-family: var(--font-nav);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 4px;
}

.step-content p {
  font-size: 12px;
  color: var(--gray-text);
  line-height: 1.6;
}

.thankyou-actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

/* Right column boxes */
.thankyou-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.enquiry-summary-box {
  border: 1px solid var(--border);
  padding: 28px;
}

.enquiry-summary-box h3 {
  font-family: var(--font-nav);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.summary-row:last-child {
  border-bottom: none;
}

.summary-label {
  font-family: var(--font-nav);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-text);
}

.summary-value {
  font-family: var(--font-nav);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--dark-text);
}

.assistance-box {
  border: 1px solid var(--border);
  padding: 28px;
}

.assistance-box h3 {
  font-family: var(--font-nav);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 20px;
}

.assistance-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 13px;
}

.assistance-item i {
  color: var(--gold);
  font-size: 14px;
  margin-top: 2px;
}

.team-prep-box {
  background: var(--gold);
  color: var(--white);
  padding: 28px;
}

.team-prep-box h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 14px;
  line-height: 1.3;
}

.team-prep-box p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
}

/* ============================================
   DIVIDERS & UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }

.section-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 16px auto 0;
}

/* ============================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================ */
@media (max-width: 1024px) {

  /* Header */
  .header-social { display: none; }
  .hamburger { display: flex; }
  .header-top { padding: 14px 56px 14px 20px; justify-content: flex-start; }

  /* Nav — full-width overlay */
  nav.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #111111;
    z-index: 1000;
    overflow-y: auto;
    padding-top: 70px;
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  }

  nav.main-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  nav.main-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0;
    width: 100%;
    flex: unset;
  }

  nav.main-nav ul li {
    width: 100%;
    text-align: center;
  }

  nav.main-nav ul li a {
    padding: 18px 24px;
    font-size: 12px;
    letter-spacing: 3px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: block;
    text-align: center;
    width: 100%;
  }

  /* Close button — top right corner, clearly visible */
  .nav-close-btn {
    display: block;
    position: fixed;
    top: 18px;
    right: 18px;
    z-index: 1001;
    font-size: 24px;
    color: #ffffff;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    line-height: 1;
  }

  .nav-social {
    display: flex;
    margin-top: 28px;
    gap: 24px;
  }

  /* Footer */
  .footer-main { grid-template-columns: 1fr 1fr; gap: 36px; padding: 48px 40px; }
  .footer-bottom { padding: 16px 40px; }

  /* Grids */
  .luxury-intro-inner { gap: 48px; }
  .luxury-intro h2 { font-size: 40px; }
  .rooms-cards-grid { grid-template-columns: 1fr 1fr; }
  .venues-grid { grid-template-columns: 1fr 1fr; }
  .celebrations-grid { grid-template-columns: 1fr 1fr; }
  .why-choose-grid { grid-template-columns: 1fr 1fr; }
  .downloads-grid { grid-template-columns: 1fr 1fr; }
  .business-inner { gap: 40px; }
  .business-content h2 { font-size: 32px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .venues-page-grid { grid-template-columns: 1fr 1fr; }
  .section-header h2 { font-size: 30px; }
  .hero h1 { font-size: 38px; }

  /* Contact */
  .contact-layout { grid-template-columns: 1fr; gap: 32px; padding: 60px 24px; }

  /* Thank you */
  .thankyou-layout { grid-template-columns: 1fr; }
}

/* ============================================
   RESPONSIVE — MOBILE (≤ 767px)
   ============================================ */
@media (max-width: 767px) {

  /* Base */
  body { font-size: 14px; }
  .container { padding: 0 16px; }
  .container-wide { padding: 0 16px; }

  /* Header */
  .header-top { padding: 12px 52px 12px 16px; }
  .logo-text-main { font-size: 17px; letter-spacing: 2px; }
  .logo-text-sub { font-size: 8px; letter-spacing: 2.5px; }
  .logo-by { display: none; }
  .logo-mavenco { display: none; }
  .logo-icon { width: 30px; height: 30px; font-size: 12px; }

  /* Hero */
  .hero { height: 300px; }
  .hero-home { height: 70vh; min-height: 480px; }
  .hero h1 { font-size: 28px; letter-spacing: 2px; }
  .hero-label { font-size: 10px; letter-spacing: 2.5px; }
  .hero-subtitle { font-size: 13px; }
  .hero-side-btn { display: none; }
  .slider-dots { bottom: 20px; }

  /* Section headings */
  .section-header { margin-bottom: 32px; }
  .section-header h2 { font-size: 24px; letter-spacing: 2px; }
  .section-header p { font-size: 13px; }

  /* Page sections */
  .page-section { padding: 52px 0; }

  /* Luxury intro */
  .luxury-intro { padding: 52px 0; }
  .luxury-intro-inner { grid-template-columns: 1fr; gap: 20px; }
  .luxury-intro-content { text-align: center !important; }
  .luxury-intro h2 { font-size: 28px; text-align: center; }
  .luxury-intro p { text-align: center; }

  /* Rooms */
  .rooms-section-home { padding: 52px 0; }
  .rooms-cards-grid { grid-template-columns: 1fr; }
  .room-card-img { height: 200px; }
  .room-card-actions { flex-direction: column; }
  .room-card-actions .btn-gold,
  .room-card-actions .btn-outline-dark { width: 100%; text-align: center; padding: 12px; }

  /* Room categories */
  .room-categories-grid { grid-template-columns: 1fr; margin-top: 28px; }
  .room-gallery-amenities { grid-template-columns: 1fr; }
  .room-photo-grid { grid-template-columns: 1fr 1fr; }
  .room-photo-item { height: 140px; }
  .why-choose-grid { grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 28px; }

  /* Venues */
  .venues-section-home { padding: 52px 0; }
  .venues-grid { grid-template-columns: 1fr; }
  .venue-card-img { height: 200px; }
  .venue-card-body { padding: 20px 16px; }
  .venue-card-body .btn-outline-dark {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    margin-top: 16px !important;
    padding: 12px 16px !important;
    box-sizing: border-box !important;
  }
  .venue-card-body h3 { font-size: 15px !important; }
  .venues-page-grid { grid-template-columns: 1fr; }

  /* Business section */
  .business-section { padding: 52px 0; }
  .business-inner { grid-template-columns: 1fr; gap: 28px; }
  .business-content h2 { font-size: 26px; letter-spacing: 1.5px; text-align: center !important; }
  .business-content > p { text-align: center !important; }
  .business-services { text-align: left !important; }
  .business-service-item { text-align: left !important; }
  .business-service-item h4 { text-align: left !important; }
  .business-service-item p { text-align: left !important; }
  .business-content .btn-gold { display: block; text-align: center; }
  .business-images { grid-template-columns: 1fr 1fr; }
  .business-img { height: 130px; }

  /* Gallery */
  .gallery-section { padding: 52px 0; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 6px; }
  .gallery-item { height: 140px; }

  /* Testimonial */
  .testimonial-section { padding: 52px 0; }
  .testimonial-text { font-size: 17px; }
  .testimonial-quote-icon { font-size: 56px; margin-bottom: 20px; }

  /* Downloads */
  .downloads-section { padding: 52px 0; }
  .downloads-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 24px; }

  /* Event plan form */
  .event-plan-section { padding: 60px 0; }
  .event-plan-inner h2 { font-size: 26px; }
  .event-plan-form { grid-template-columns: 1fr; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; margin-top: 28px; }

  /* Facilities */
  .facilities-section { padding: 52px 0; }
  .facilities-inner { grid-template-columns: 1fr; gap: 32px; }
  .facilities-content h2 { font-size: 26px; }
  .facilities-images { grid-template-columns: 1fr 1fr; }
  .facility-img { height: 140px; }

  /* Fun day */
  .fun-day-section { padding: 52px 0; }
  .fun-day-inner { grid-template-columns: 1fr; gap: 28px; }
  .fun-day-img { height: 240px; }
  .fun-day-content h2 { font-size: 26px; }

  /* CTA */
  .cta-section { padding: 52px 0; }
  .cta-section h2 { font-size: 26px; }

  /* Celebrations */
  .celebrations-grid { grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
  .celebration-card-img { height: 160px; }

  /* Love section */
  .love-section { padding: 36px 0 24px; }
  .love-inner { grid-template-columns: 1fr; gap: 20px; }
  .love-img { height: 260px; box-shadow: 4px 4px 0 var(--cream-bg); }
  .love-content { text-align: center !important; }
  .love-content h2 { font-size: 26px; text-align: center !important; }
  .love-content p { text-align: center !important; }

  /* Contact */
  .contact-layout { padding: 40px 16px; }
  .resort-details-card { padding: 24px 20px; }
  .contact-detail-item { margin-bottom: 20px; }
  .contact-phone-group {
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
  }
  .contact-phone-group a,
  .contact-phone-group span {
    display: block !important;
  }
  .form-row { grid-template-columns: 1fr; }
  .enquiry-form-section h2 { 
    font-size: 22px !important;
    letter-spacing: 2px !important;
  }
  .enquiry-form-section p.subtitle {
    margin-bottom: 24px !important;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 15px !important;
    padding: 14px 14px !important;
  }

  /* Thank you */
  .thankyou-layout { padding: 32px 16px; gap: 20px; }
  .thankyou-card { padding: 28px 20px; }
  .thankyou-card h2 { font-size: 26px; }
  .thankyou-actions { flex-direction: column; }
  .thankyou-actions .btn-gold,
  .thankyou-actions .btn-outline-dark { text-align: center; }

  /* Buttons */
  .btn-gold { padding: 13px 28px; }
  .btn-outline-dark { padding: 12px 28px; }
  .btn-outline-white { padding: 12px 28px; }

  /* Footer accordion */
  .footer-main {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 36px 20px 0;
  }

  /* Footer mobile — no accordion (handled in 767px block below) */
  .footer-acc-icon { display: none !important; }

  .footer-bottom { padding: 16px 20px; }

  /* Social footer items spacing in accordion */
  .footer-col ul li { margin-bottom: 12px; }
  .footer-contact-item { margin-bottom: 14px; }
}

/* ============================================
   RESPONSIVE — SMALL MOBILE (≤ 380px)
   ============================================ */
@media (max-width: 380px) {
  .hero-home { height: 60vh; min-height: 400px; }
  .hero h1 { font-size: 22px; }
  .logo-text-main { font-size: 15px; }
  .logo-icon { width: 26px; height: 26px; font-size: 10px; }
  .section-header h2 { font-size: 20px; }
  .why-choose-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .celebrations-grid { grid-template-columns: 1fr; }
  .room-photo-grid { grid-template-columns: 1fr; }
  .room-photo-item { height: 160px; }
  .business-images { grid-template-columns: 1fr; }
  .business-img { height: 160px; }
  .facilities-images { grid-template-columns: 1fr; }
  .status-badges { flex-direction: column; }
  .thankyou-card { padding: 20px 16px; }
}

/* Footer credit */
.footer-credit {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  margin-top: 4px;
  letter-spacing: 0.3px;
}
.footer-credit a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-credit a:hover { color: var(--gold); }

/* ============================================
   HOME HERO SLIDESHOW
   ============================================ */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
  pointer-events: none;
}
.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.hero-slide .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-slide .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.52);
}
.hero-slide .hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  max-width: 800px;
  padding: 0 24px;
  z-index: 2;
  opacity: 0;
  transform: translate(-50%, -44%);
  transition: opacity 0.7s ease 0.3s, transform 0.7s ease 0.3s;
}
.hero-slide.active .hero-content {
  opacity: 1;
  transform: translate(-50%, -50%);
}
/* Arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s, border-color 0.3s;
  backdrop-filter: blur(4px);
}
.hero-arrow:hover {
  background: rgba(196,154,39,0.7);
  border-color: var(--gold);
}
.hero-prev { left: 32px; }
.hero-next { right: 32px; }
.slider-dot { cursor: pointer; width: 10px; height: 10px; }
.slider-dot.active { background: var(--gold); width: 28px; border-radius: 5px; }

@media (max-width: 767px) {
  .hero-arrow { width: 40px; height: 40px; font-size: 13px; }
  .hero-prev { left: 12px; }
  .hero-next { right: 12px; }
}

/* ===== FOOTER — CLEAN FINAL VERSION ===== */

/* Logo in footer */
.footer-brand .logo {
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    margin-bottom: 20px !important;
    transform: none !important;
}

.footer-brand .logo img {
    width: 240px !important;
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
}

/* Desktop layout: 4-column flex row */
@media (min-width: 768px) {
    .footer-main {
        display: flex !important;
        flex-wrap: nowrap !important;
        justify-content: space-between !important;
        align-items: flex-start !important;
        gap: 40px !important;
        padding: 56px 80px 40px !important;
    }

    .footer-brand {
        width: 28% !important;
        flex-shrink: 0 !important;
    }

    .footer-col {
        width: auto !important;
        flex: 1 !important;
        min-width: 0 !important;
    }

    .footer-col h4 {
        font-size: 14px !important;
        font-weight: 700 !important;
        margin-bottom: 18px !important;
    }

    .footer-col ul li a,
    .footer-contact-item span {
        font-size: 13px !important;
        line-height: 1.7 !important;
    }

    /* Hide accordion arrow on desktop */
    .footer-acc-icon {
        display: none !important;
        visibility: hidden !important;
        width: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* All footer-col-body visible on desktop */
    .footer-col-body {
        display: block !important;
    }
}

/* Footer logo mobile size fix */
@media (max-width: 767px) {
    .footer-brand .logo img {
        width: 200px !important;
        max-width: 100% !important;
    }
}

/* Mobile layout: simple stacked — NO accordion, all links visible */
@media (max-width: 767px) {
    .footer-main {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 32px 20px !important;
        padding: 36px 20px 24px !important;
    }

    /* Brand takes full width on top — center aligned */
    .footer-brand {
        grid-column: 1 / -1 !important;
        width: 100% !important;
        padding-bottom: 24px !important;
        border-bottom: 1px solid rgba(255,255,255,0.15) !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .footer-brand .logo {
        justify-content: center !important;
    }

    .footer-brand .logo img {
        width: 200px !important;
    }

    .footer-tagline {
        text-align: center !important;
        max-width: 100% !important;
    }

    .footer-brand .btn-outline-white,
    .footer-brand a.btn-outline-white {
        align-self: center !important;
        text-align: center !important;
    }

    .footer-col {
        width: 100% !important;
    }

    /* Contact col — full width at bottom */
    .footer-col-contact {
        grid-column: 1 / -1 !important;
        border-top: 1px solid rgba(255,255,255,0.1) !important;
        padding-top: 24px !important;
    }

    /* No accordion — col-head just a heading */
    .footer-col-head {
        cursor: default !important;
        padding: 0 !important;
        margin-bottom: 14px !important;
        pointer-events: none !important;
    }

    .footer-col h4 {
        font-size: 12px !important;
        letter-spacing: 1.5px !important;
        margin-bottom: 0 !important;
    }

    /* Arrow icon completely hidden */
    .footer-acc-icon {
        display: none !important;
        visibility: hidden !important;
    }

    /* ALL links always visible */
    .footer-col-body {
        display: block !important;
        padding: 0 !important;
    }

    .footer-col ul li {
        margin-bottom: 10px !important;
    }

    .footer-col ul li a {
        font-size: 13px !important;
        line-height: 1.6 !important;
    }

    .footer-contact-item {
        margin-bottom: 12px !important;
    }

    .footer-contact-item span,
    .footer-contact-item a {
        font-size: 13px !important;
        line-height: 1.6 !important;
    }

    .footer-tagline {
        max-width: 100% !important;
        font-size: 13px !important;
    }

    .footer-bottom {
        padding: 16px 20px !important;
        font-size: 12px !important;
    }
}

/* ===== PLAN YOUR DREAM EVENT FINAL CLEAN ===== */

.event-plan-section{
    position:relative;
    padding:70px 0 !important;
    background:url("images/contact-form.jpg") center/cover no-repeat !important;
    overflow:hidden;
}

.event-plan-section::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
}

.event-plan-inner{
    position:relative;
    z-index:2;
    max-width:900px;
    margin:auto;
    padding:0 20px;
    text-align:center;
}

.event-plan-inner h2{
    font-size:42px;
    color:#fff;
    margin-bottom:15px;
}

.event-plan-inner p{
    color:rgba(255,255,255,.85);
    margin-bottom:25px;
}

.event-plan-form{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
    margin-top:25px;
}

.event-plan-form input,
.event-plan-form textarea{
    width:100%;
    height:55px;
    padding:10px 16px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(196,154,39,.6);
    color:#fff;
    font-size:15px;
}

.event-plan-form textarea{
    grid-column:1/-1;
    min-height:120px;
    height:120px;
    resize:none;
}

.full-width{
    grid-column:1/-1;
}

.event-plan-form button{
    padding:14px 35px;
}

@media(max-width:767px){
    .event-plan-form{
        grid-template-columns:1fr;
    }

    .event-plan-form textarea,
    .full-width{
        grid-column:auto;
    }

    .event-plan-inner h2{
        font-size:30px;
    }
}

/* ============================================
   COMPREHENSIVE MOBILE FIX — ALL PAGES
   ============================================ */

/* ── 1. HEADER LOGO: mobile pe overflow fix ── */
/* Desktop pe 350px theek hai — sirf mobile pe reduce karo */
@media (max-width: 1024px) {
  .header-top .logo img,
  header .logo img {
    max-width: 220px !important;
    width: 220px !important;
    height: auto !important;
  }
}

@media (max-width: 767px) {
  .header-top .logo img,
  header .logo img {
    max-width: 200px !important;
    width: 200px !important;
  }
}

@media (max-width: 380px) {
  .header-top .logo img,
  header .logo img {
    max-width: 140px !important;
    width: 140px !important;
  }
}

/* ── 2. HEADER-TOP: logo left-aligned on mobile ── */
@media (max-width: 1024px) {
  .header-top .logo {
    flex: 1 !important;
    justify-content: flex-start !important;
  }
}

/* ── 3. ROOMS HOME GRID: 3 columns → 1 column on mobile ── */
/* Index.html pe inline style hai, !important se override */
@media (max-width: 767px) {
  .rooms-home-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .amenities-gold-box {
    width: 100% !important;
  }
}

/* ── 4. HERO: text better on small screens ── */
@media (max-width: 767px) {
  .hero-content {
    padding: 0 20px !important;
    text-align: center !important;
  }

  .hero-subtitle {
    font-size: 13px !important;
    margin: 0 auto !important;
  }

  .hero h1 {
    font-size: 26px !important;
    letter-spacing: 1.5px !important;
  }

  .hero-label {
    font-size: 10px !important;
    letter-spacing: 2px !important;
  }
}

/* ── 5. TESTIMONIAL AVATAR: large image fix ── */
.testimonial-avatar {
  width: 56px !important;
  height: 56px !important;
  overflow: hidden !important;
  border-radius: 50% !important;
  flex-shrink: 0 !important;
}

.testimonial-avatar img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: top !important;
}

/* ── 6. BUSINESS SECTION images: 2-col → 1-col on very small ── */
@media (max-width: 380px) {
  .business-images {
    grid-template-columns: 1fr !important;
  }

  .business-img {
    height: 180px !important;
  }
}

/* ── 7. GALLERY: single column on very small screens ── */
@media (max-width: 380px) {
  .gallery-grid {
    grid-template-columns: 1fr !important;
  }

  .gallery-item {
    height: 200px !important;
  }
}

/* ── 8. DOWNLOADS GRID: mobile fix ── */
@media (max-width: 767px) {
  .downloads-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ── 9. CORPORATE MEETING page: services grid ── */
@media (max-width: 767px) {
  .services-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .service-card {
    padding: 28px 20px !important;
  }
}

/* ── 10. VENUE PAGES: specs 4-col → 2-col → 1-col ── */
@media (max-width: 767px) {
  .venue-specs-inner {
    grid-template-columns: 1fr 1fr !important;
  }

  .venue-ideal-grid {
    grid-template-columns: 1fr 1fr !important;
  }

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

  .venue-photo-strip {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto !important;
  }

  .venue-photo-strip .photo-main {
    grid-row: auto !important;
  }

  .venue-photo-strip img {
    height: 220px !important;
  }

  .other-venues-grid {
    grid-template-columns: 1fr !important;
  }

  .venue-intro-inner {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
}

/* ── 11. FAQ PAGE: sidebar layout fix ── */
@media (max-width: 767px) {
  .faq-layout {
    grid-template-columns: 1fr !important;
  }

  .faq-sidebar {
    position: static !important;
    margin-bottom: 32px !important;
  }
}

/* ── 12. BLOG POST: article sidebar fix ── */
@media (max-width: 767px) {
  .article-layout {
    grid-template-columns: 1fr !important;
  }

  .article-sidebar {
    position: static !important;
  }
}

/* ── 13. CONTACT LAYOUT ── */
@media (max-width: 767px) {
  .contact-layout {
    grid-template-columns: 1fr !important;
    padding: 36px 16px !important;
    gap: 28px !important;
  }

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

  .resort-img img {
    width: 100% !important;
    height: 220px !important;
    object-fit: cover !important;
  }
}

/* ── 14. GENERAL: prevent any horizontal overflow ── */
@media (max-width: 767px) {
  body {
    overflow-x: hidden !important;
  }

  img {
    max-width: 100% !important;
  }

  section, .container, .container-wide {
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }
}

/* ── 15. BUTTONS: full width on mobile for CTAs ── */
@media (max-width: 767px) {
  .cta-section .btn-gold,
  .love-content .btn-gold,
  .business-content .btn-gold {
    display: inline-block !important;
    width: auto !important;
    min-width: 180px !important;
  }
}

