/* ==========================================================================
   HOTEL MANNAN — CONTACT PAGE (LUXURY DARK THEME)
   ========================================================================== */

/* Page Hero Banner */
.contact-hero {
  position: relative;
  width: calc(100% - 48px);
  max-width: 1200px;
  margin: 40px auto 10px;
  padding: 60px 24px 40px;
  border-radius: 8px;
  background: linear-gradient(180deg, #120e0c 0%, #090706 100%);
  border: 1px solid rgba(201, 162, 39, 0.25);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
  text-align: center;
  color: #f5efe1;
  overflow: hidden;
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 55% at 50% 0%, rgba(184, 135, 59, 0.28), transparent 70%);
  pointer-events: none;
}

.contact-hero-inner { position: relative; z-index: 1; }

.contact-hero .eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #c9a227;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.contact-hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 44px);
  margin: 14px 0 12px;
  color: #f5efe1;
}

.contact-hero p {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.05rem;
  color: rgba(245, 239, 225, 0.82);
  max-width: 580px;
  margin: 0 auto;
}

/* Quick Info Grid */
.contact-info-grid {
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.contact-info-card {
  background: #14110f;
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: 4px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  border-color: #c9a227;
}

.contact-info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.15);
  color: #c9a227;
  margin-bottom: 8px;
}

.contact-info-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c9a227;
}

.contact-info-value {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: #f5efe1;
  text-decoration: none;
}

a.contact-info-value:hover { color: #e2702b; }

/* Reservation Ticket */
.contact-ticket-wrap {
  max-width: 1200px;
  margin: 70px auto 0;
  padding: 0 24px;
}

.contact-ticket {
  display: grid;
  grid-template-columns: 0.66fr auto 1fr;
  background: #14110f;
  border: 1px solid rgba(201, 162, 39, 0.25);
  border-radius: 6px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
  overflow: hidden;
}

.ticket-stub {
  background: linear-gradient(180deg, #18120e 0%, #0d0a08 100%);
  color: #f5efe1;
  padding: 44px 38px;
  display: flex;
  flex-direction: column;
}

.ticket-stub .eyebrow {
  color: #c9a227;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
}

.ticket-stub h2 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(24px, 2.6vw, 30px);
  margin: 14px 0 16px;
  color: #f5efe1;
}

.ticket-stub-copy {
  font-family: 'Work Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(245, 239, 225, 0.8);
  margin: 0 0 28px;
}

.ticket-stub-facts {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px 0;
  border-top: 1px solid rgba(201, 162, 39, 0.2);
  border-bottom: 1px solid rgba(201, 162, 39, 0.2);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.88rem;
  color: rgba(245, 239, 225, 0.9);
}

.ticket-stub-facts div span {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c9a227;
  margin-bottom: 3px;
}

.ticket-stub-brand {
  margin-top: auto;
  padding-top: 26px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  color: #c9a227;
}

/* Perforation Divider */
.ticket-perf {
  position: relative;
  width: 1px;
  background: repeating-linear-gradient(
    180deg,
    rgba(201, 162, 39, 0.35) 0,
    rgba(201, 162, 39, 0.35) 8px,
    transparent 8px,
    transparent 16px
  );
}

/* Form Section */
.ticket-form {
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #110d0a;
}

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

.form-row label,
.form-row-full {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-row label span,
.form-row-full span {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c9a227;
}

.ticket-form input,
.ticket-form textarea {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.95rem;
  color: #f5efe1;
  background: #1b1511;
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: 4px;
  padding: 12px 14px;
  transition: all 0.3s ease;
}

.ticket-form input:focus,
.ticket-form textarea:focus {
  outline: none;
  border-color: #e2702b;
  background: #221a15;
  box-shadow: 0 0 0 3px rgba(226, 112, 43, 0.2);
}

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

.ticket-form .btn-primary {
  align-self: flex-start;
  background: #d95a12;
  color: #ffffff;
  padding: 12px 28px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ticket-form .btn-primary:hover {
  background: #f26b21;
}

.ticket-form-note {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.85rem;
  color: rgba(245, 239, 225, 0.6);
  margin: 0;
}

/* Directions Section */
.contact-directions {
  max-width: 1200px;
  margin: 60px auto 90px;
  padding: 28px 36px;
  border-radius: 6px;
  background: #14110f;
  border: 1px solid rgba(201, 162, 39, 0.25);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-directions h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  color: #f5efe1;
  margin: 6px 0 0;
}

.contact-directions .btn-outline {
  border: 1px solid #c9a227;
  color: #c9a227;
  padding: 10px 24px;
  text-decoration: none;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  border-radius: 3px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact-directions .btn-outline:hover {
  background: #c9a227;
  color: #0d0a08;
}

/* Responsive Rules */
@media (max-width: 900px) {
  .contact-info-grid { grid-template-columns: repeat(2, 1fr); padding: 0 16px; }
  .contact-ticket { grid-template-columns: 1fr; }
  .ticket-perf {
    width: auto;
    height: 1px;
    background: repeating-linear-gradient(
      90deg,
      rgba(201, 162, 39, 0.35) 0,
      rgba(201, 162, 39, 0.35) 8px,
      transparent 8px,
      transparent 16px
    );
  }
  .ticket-stub, .ticket-form { padding: 34px 24px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .contact-info-grid { grid-template-columns: 1fr; }
}
/* ==========================================================================
   HOTEL MANNAN — GLOBAL BLACK THEME & LIGHT LAVENDER TEXT OVERRIDE
   ========================================================================== */

/* 1. Global Color Variables Override */
:root {
  --charcoal: #050404;
  --charcoal-2: #0e0b10;
  --cream: #E6E6FA !important;          /* Light Lavender primary text */
  --cream-2: #050404 !important;
  --text-dim: #D8BFD8 !important;       /* Soft Lavender/Thistle secondary text */
  --ash: #C8A2C8 !important;            /* Muted Lavender accent */
  --ink: #E6E6FA !important;
  --ink-soft: #D8BFD8 !important;
}

/* 2. Base Dark/Black Background & Lavender Text */
body, 
html {
  background-color: #050404 !important;
  color: #E6E6FA !important;
}

/* Force light lavender color across all textual elements */
h1, h2, h3, h4, h5, h6, 
p, span, li, a, label, 
div, blockquote, figcaption, input, textarea {
  color: #E6E6FA;
}

/* Secondary & description copy in soft lavender */
.subtitle, 
.menu-item-desc, 
.journey-text, 
.mission-text, 
.delivery-text, 
p.quote-text,
.about-hero p,
.gallery-hero p,
.contact-hero p,
.leadership-hero p,
.menu-hero p,
.card-description,
.bts-subtitle,
.intro-text,
.map-address {
  color: #D8BFD8 !important;
}

/* 3. Preserve Background Images with Dark/Black Tint Overlays */
.order-banner-section,
.mannan-grand-footer,
.hero,
.gallery-hero,
.about-hero,
.contact-hero,
.leadership-hero,
.menu-hero {
  background-color: #000000 !important;
}

/* Keep dark black dimming overlays so background photos remain visible */
.order-banner-overlay,
.footer-bg-overlay,
.hero::before,
.about-hero::before,
.gallery-hero::before,
.leadership-hero::before,
.menu-hero::before {
  background: rgba(5, 4, 4, 0.88) !important;
}

/* 4. Cards, Drawers, Lightboxes & Section Containers */
.menu-item,
.testimonial-card,
.pillar-box,
.bts-step,
.value-card,
.contact-info-card,
.footer-center-card,
.philosophy-card,
.info-card,
.ticket,
.leader-card,
.menu-section-block,
.menu-page,
.nav-drawer,
.slide-menu-drawer,
.lightbox,
.gallery-lightbox {
  background: #0d0a0f !important;
  border-color: rgba(200, 162, 200, 0.22) !important;
}

/* 5. Inputs & Forms */
input, textarea {
  background: #140e18 !important;
  border-color: rgba(200, 162, 200, 0.3) !important;
  color: #E6E6FA !important;
}
/* ==========================================================================
   HOTEL MANNAN — AESTHETIC DEEP BLACK & SOLID LIGHT LAVENDER THEME
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..700;1,9..144,300..700&family=IBM+Plex+Mono:wght@400;500;600&family=Work+Sans:wght@300;400;500;600&display=swap');

:root {
  /* Color Palette: Deep Pitch Black & Solid Aesthetic Light Lavender */
  --charcoal: #000000;
  --charcoal-2: #08080a;
  --bg-deep-black: #000000;
  --card-black: #08080a;
  --card-border-lavender: rgba(224, 208, 255, 0.22);

  --lavender-primary: #F0E6FF;   /* Crisp, high-contrast solid light lavender */
  --lavender-secondary: #D8C4F8; /* Soft solid lavender for descriptions */
  --lavender-accent: #C5A3FF;    /* Aesthetic glowing lavender accent */
  --lavender-bright: #E8D5FF;    /* Bright solid headings */
  --lavender-muted: #B39DDB;

  --cream: #F0E6FF !important;
  --cream-2: #000000 !important;
  --text-dim: #D8C4F8 !important;
  --ash: #B39DDB !important;
  --ink: #F0E6FF !important;
  --ink-soft: #D8C4F8 !important;
  --brass: #C5A3FF !important;
  --ember: #B388FF !important;
  --ember-light: #D1C4E9 !important;
}

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

html {
  scroll-behavior: smooth;
  background-color: #000000 !important;
}

body {
  font-family: 'Work Sans', sans-serif !important;
  background-color: #000000 !important;
  color: var(--lavender-primary) !important;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Solid Aesthetic Typography Override */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Fraunces', serif !important;
  font-weight: 700 !important;
  color: var(--lavender-bright) !important;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

p, span, li, a, label, div, blockquote, figcaption {
  color: var(--lavender-primary);
}

/* Secondary / Subtitle text */
.subtitle,
.menu-item-desc,
.journey-text,
.mission-text,
.delivery-text,
p.quote-text,
.about-hero p,
.gallery-hero p,
.contact-hero p,
.leadership-hero p,
.menu-hero p,
.card-description,
.bts-subtitle,
.intro-text,
.map-address,
.footer-address-block p {
  color: var(--lavender-secondary) !important;
  font-weight: 500;
}

.eyebrow, .box-label, .map-detail-label, .contact-info-label {
  font-family: 'IBM Plex Mono', monospace !important;
  font-weight: 700 !important;
  color: var(--lavender-accent) !important;
  letter-spacing: 0.18em !important;
}

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

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

/* ---------- TOP BAR & NAVIGATION ---------- */
.topbar {
  background: #000000 !important;
  border-bottom: 1px solid rgba(197, 163, 255, 0.2) !important;
}

.topbar-hours svg, .topbar-contact svg {
  color: var(--lavender-accent) !important;
}

header, .site-header, .main-navbar {
  background: rgba(0, 0, 0, 0.96) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(197, 163, 255, 0.2) !important;
}

.logo, .brand-title, .navbar-logo {
  font-family: 'Fraunces', serif !important;
  font-weight: 800 !important;
  font-size: 1.4rem;
  color: var(--lavender-bright) !important;
  letter-spacing: 0.05em;
}

.nav-cta, .header-btn-order {
  background: #B388FF !important;
  color: #000000 !important;
  font-weight: 700 !important;
  font-family: 'IBM Plex Mono', monospace !important;
  border-radius: 4px;
  padding: 10px 22px;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(179, 136, 255, 0.3);
}

.nav-cta:hover, .header-btn-order:hover {
  background: #D1C4E9 !important;
  transform: translateY(-2px);
}

/* Sidebar Drawer Navigation */
.nav-links, .nav-drawer, .slide-menu-drawer {
  background: #050507 !important;
  border-right: 1px solid rgba(197, 163, 255, 0.25) !important;
}

.nav-links li, .drawer-exact-menu li {
  border-bottom: 1px solid rgba(197, 163, 255, 0.12) !important;
}

.nav-links a, .drawer-exact-menu a {
  font-family: 'IBM Plex Mono', monospace !important;
  font-weight: 600 !important;
  color: var(--lavender-primary) !important;
}

.nav-links a.active, .drawer-exact-menu li.active a, .diamond-icon {
  color: var(--lavender-accent) !important;
}

/* ---------- SECTIONS & BACKGROUND PRESERVATION ---------- */
section, .mannan-section, .journey-section, .mission-section, .strength-gallery-section, .look-gallery-section, .delivery-partners-section {
  background-color: #000000 !important;
  border-color: rgba(197, 163, 255, 0.18) !important;
}

/* Hero & Banner Sections with Images Overlays */
.hero, .order-banner-section, .mannan-grand-footer, .gallery-hero, .about-hero, .contact-hero, .leadership-hero, .menu-hero {
  background-color: #000000 !important;
}

.order-banner-overlay, .footer-bg-overlay {
  background: rgba(0, 0, 0, 0.88) !important;
}

/* Buttons */
.btn-primary, .btn-order-now {
  background: #B388FF !important;
  color: #000000 !important;
  font-family: 'IBM Plex Mono', monospace !important;
  font-weight: 700 !important;
  border: 1px solid #B388FF !important;
  box-shadow: 0 6px 20px rgba(179, 136, 255, 0.35) !important;
}

.btn-primary:hover, .btn-order-now:hover {
  background: #D1C4E9 !important;
  border-color: #D1C4E9 !important;
  transform: translateY(-2px);
}

.btn-ghost, .btn-clear-filter, .filter-btn {
  border: 1px solid rgba(197, 163, 255, 0.4) !important;
  color: var(--lavender-primary) !important;
  font-family: 'IBM Plex Mono', monospace !important;
  font-weight: 600 !important;
  background: rgba(197, 163, 255, 0.05) !important;
}

.btn-ghost:hover, .btn-clear-filter:hover, .filter-btn.active, .filter-btn:hover {
  background: #B388FF !important;
  color: #000000 !important;
  border-color: #B388FF !important;
}

/* ---------- CARDS & CONTAINERS ---------- */
.philosophy-card,
.info-card,
.ticket,
.testimonial-card,
.strength-card,
.pillar-box,
.bts-step,
.value-card,
.contact-info-card,
.footer-center-card,
.leader-card,
.menu-item,
.partner-badge {
  background: #08080a !important;
  border: 1px solid rgba(197, 163, 255, 0.22) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8) !important;
}

.philosophy-card:hover,
.info-card:hover,
.ticket:hover,
.testimonial-card:hover,
.strength-card:hover,
.pillar-box:hover,
.bts-step:hover,
.value-card:hover,
.contact-info-card:hover,
.leader-card:hover,
.menu-item:hover {
  border-color: rgba(197, 163, 255, 0.6) !important;
  transform: translateY(-4px);
}

/* Form Controls */
input, textarea, select {
  background: #0a0810 !important;
  border: 1px solid rgba(197, 163, 255, 0.3) !important;
  color: var(--lavender-primary) !important;
  font-family: 'Work Sans', sans-serif !important;
  font-size: 0.95rem !important;
}

input:focus, textarea:focus {
  border-color: #B388FF !important;
  outline: none;
}

/* Footer Accent */
.mannan-grand-footer {
  border-top: 1px solid rgba(197, 163, 255, 0.2) !important;
}

.footer-bottom-credit p {
  color: var(--lavender-muted) !important;
}
/* Header मधील MANNAN नाव लपवण्यासाठी */
.site-header .brand-title,
header .brand-title {
  display: none !important;
}
/* ==========================================
   FOOTER LOGO - CLEAN (NO SHADOWS)
   ========================================== */

.footer-card-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 28px;
  padding: 10px 0;
}

.footer-logo-img {
  width: clamp(180px, 45%, 240px) !important;
  max-width: 90% !important;
  height: auto !important;
  object-fit: contain !important;
  display: block !important;
  margin: 0 auto !important;
  
  /* सर्व शॅडो आणि ग्लो बंद केले आहेत */
  filter: none !important;
  box-shadow: none !important;
}
/* ==========================================
   FOOTER LOGO - BIG & PERFECT FIT
   ========================================== */

/* सेंटर बॉक्सची साईझ आणि स्पेसिंग योग्य केली */
.footer-center-card {
  padding: 40px 24px !important;
}

.footer-card-logo {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  margin: 0 auto 20px auto !important;
  width: 100% !important;
}

.footer-logo-img {
  /* लोगोची विड्थ बॉक्सनुसार एकदम मोठी केली */
  width: 280px !important;
  max-width: 85% !important;
  height: auto !important;
  object-fit: contain !important;
  display: block !important;
  margin: 0 auto !important;
  
  /* कुठलीही शॅडो किंवा ग्लो नाही */
  filter: none !important;
  box-shadow: none !important;
}

/* मोबाईल स्क्रीनसाठी ॲडजस्टमेंट */
@media (max-width: 480px) {
  .footer-logo-img {
    width: 220px !important;
    max-width: 90% !important;
  }
}