/* ==========================================================================
   Sunrise Residency - Premium Boys Hostel Design System & Styles
   ========================================================================== */

:root {
  /* Brand Palette */
  --primary: #FF6B35;
  --primary-hover: #E8590C;
  --primary-light: #FFF0EB;
  --primary-glow: rgba(255, 107, 53, 0.28);
  
  --secondary: #FB8500;
  --accent: #FFB703;
  --dark-navy: #0F172A;
  --slate-dark: #1E293B;
  --slate-medium: #334155;
  --slate-light: #64748B;
  --slate-border: #E2E8F0;
  --slate-bg: #F8FAFC;
  --pure-white: #FFFFFF;
  
  --success: #10B981;
  --success-bg: #ECFDF5;
  --whatsapp: #25D366;
  --whatsapp-hover: #1EBE5D;
  --whatsapp-glow: rgba(37, 211, 102, 0.3);

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 6px 16px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 12px 32px rgba(15, 23, 42, 0.12);
  --shadow-xl: 0 20px 48px rgba(15, 23, 42, 0.16);
  --shadow-glow: 0 8px 24px var(--primary-glow);
  
  /* Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--slate-dark);
  background-color: var(--pure-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
}

/* Containers & Helpers */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 90px 0;
  position: relative;
}

.bg-light {
  background-color: var(--slate-bg);
}

.text-center { text-align: center; }
.text-primary { color: var(--primary) !important; }
.text-success { color: var(--success) !important; }
.text-warning { color: var(--secondary) !important; }
.text-danger { color: #EF4444 !important; }
.text-white { color: var(--pure-white) !important; }
.text-gray { color: var(--slate-light) !important; }
.max-w-2xl { max-width: 48rem; }
.max-w-3xl { max-width: 56rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Section Header Typography */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.35rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--dark-navy);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--slate-light);
  line-height: 1.7;
}

/* ==========================================================================
   Buttons & Badges
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 13px 26px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn-sm {
  padding: 9px 18px;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

.btn-block {
  width: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--pure-white);
  box-shadow: 0 4px 14px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--primary-glow);
}

.btn-whatsapp {
  background-color: var(--whatsapp);
  color: var(--pure-white);
  box-shadow: 0 4px 14px var(--whatsapp-glow);
}

.btn-whatsapp:hover {
  background-color: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--whatsapp-glow);
}

.btn-outline {
  border-color: var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-outline:hover {
  background-color: var(--primary-light);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--pure-white);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--dark-navy);
  color: var(--pure-white);
}

.shadow-glow {
  box-shadow: var(--shadow-glow);
}

/* ==========================================================================
   Announcement Bar & Header
   ========================================================================== */
.top-announcement {
  background: var(--dark-navy);
  color: #E2E8F0;
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.announcement-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.announcement-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.badge-pulse {
  background: rgba(255, 107, 53, 0.2);
  color: var(--accent);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.badge-pulse i {
  color: #22C55E;
  font-size: 0.65rem;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.7; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.7; }
}

.announcement-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.announcement-link {
  color: #CBD5E1;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.announcement-link:hover {
  color: var(--pure-white);
}

.announcement-link.wa-link {
  color: #4ADE80;
}

/* Header & Nav */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 1000;
  border-bottom: 1px solid var(--slate-border);
  transition: var(--transition);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

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

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--pure-white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 12px var(--primary-glow);
}

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

.brand-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: 1px;
  color: var(--dark-navy);
  line-height: 1.1;
}

.brand-sub {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--slate-light);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

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

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--slate-medium);
  position: relative;
  padding: 6px 0;
}

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

.nav-link:hover, .nav-link.active {
  color: var(--primary);
}

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

.nav-cta-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 100%;
  height: 3px;
  background: var(--dark-navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.88) 0%, rgba(30, 41, 59, 0.82) 100%), url('../images/exterior.jpg') center/cover no-repeat;
  color: var(--pure-white);
  padding: 80px 0 110px 0;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 107, 53, 0.25);
  border: 1px solid rgba(255, 107, 53, 0.5);
  backdrop-filter: blur(8px);
  padding: 7px 18px;
  border-radius: var(--radius-full);
  color: var(--accent);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 22px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.1rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.gradient-text {
  background: linear-gradient(135deg, #FFA94D 0%, #FF6B35 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #E2E8F0;
  margin-bottom: 34px;
  max-width: 38rem;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 30px;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stat-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.stat-info h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--pure-white);
  line-height: 1.1;
}

.stat-info p {
  font-size: 0.78rem;
  color: #94A3B8;
}

/* Hero Quick Inquiry Card */
.hero-card-wrapper {
  display: flex;
  justify-content: center;
}

.quick-inquiry-card {
  background: var(--pure-white);
  color: var(--slate-dark);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  width: 100%;
  max-width: 440px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.inquiry-header h3 {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--dark-navy);
  margin-bottom: 4px;
}

.inquiry-header p {
  font-size: 0.88rem;
  color: var(--slate-light);
  margin-bottom: 22px;
}

.inquiry-form .form-group {
  margin-bottom: 16px;
}

.inquiry-form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--slate-medium);
  margin-bottom: 6px;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--slate-border);
  border-radius: var(--radius-sm);
  background: #F8FAFC;
  color: var(--dark-navy);
  transition: var(--transition);
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--pure-white);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

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

.form-secure-note {
  font-size: 0.76rem;
  color: var(--slate-light);
  text-align: center;
  margin-top: 12px;
}

/* ==========================================================================
   Highlight Strip
   ========================================================================= */
.highlight-strip {
  background: var(--dark-navy);
  color: var(--pure-white);
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.strip-items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow-x: auto;
  gap: 20px;
  padding: 4px 0;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
}

.strip-divider {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-img-main {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  object-fit: cover;
}

.about-floating-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--pure-white);
  padding: 18px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--slate-border);
}

.badge-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.about-floating-badge h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark-navy);
  line-height: 1.1;
}

.about-floating-badge p {
  font-size: 0.8rem;
  color: var(--slate-light);
}

.about-subtext {
  font-size: 1rem;
  color: var(--slate-medium);
  margin-top: 14px;
  margin-bottom: 28px;
}

.about-feature-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 34px;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.feat-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--success-bg);
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-feature-item strong {
  display: block;
  font-family: var(--font-heading);
  color: var(--dark-navy);
  font-size: 1.05rem;
}

.about-feature-item p {
  font-size: 0.9rem;
  color: var(--slate-light);
}

.about-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ==========================================================================
   Rooms & Fee Estimator Section
   ========================================================================== */
.room-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
  margin-bottom: 64px;
}

.room-card {
  background: var(--pure-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--slate-border);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.room-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(255, 107, 53, 0.4);
}

.room-card.featured {
  border: 2px solid var(--primary);
  box-shadow: 0 16px 36px var(--primary-glow);
}

.featured-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--primary);
  color: var(--pure-white);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  z-index: 3;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.room-img-box {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.room-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.room-card:hover .room-img-box img {
  transform: scale(1.05);
}

.room-type-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  color: var(--pure-white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
}

.room-body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.room-header-row {
  margin-bottom: 12px;
}

.room-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--dark-navy);
  line-height: 1.2;
}

.room-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-top: 6px;
}

.room-price .currency {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
}

.room-price .amount {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--dark-navy);
}

.room-price .period {
  font-size: 0.85rem;
  color: var(--slate-light);
  margin-left: 4px;
}

.room-desc {
  font-size: 0.92rem;
  color: var(--slate-medium);
  margin-bottom: 20px;
  line-height: 1.5;
}

.room-amenities-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  flex-grow: 1;
}

.room-amenities-list li {
  font-size: 0.88rem;
  color: var(--slate-medium);
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Interactive Calculator Box */
.calculator-box {
  background: var(--pure-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 36px;
  border: 1px solid var(--slate-border);
}

.calculator-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--slate-border);
}

.calc-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.calculator-header h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark-navy);
}

.calculator-header p {
  color: var(--slate-light);
  font-size: 0.92rem;
}

.calculator-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 36px;
  align-items: center;
}

.control-group {
  margin-bottom: 22px;
}

.control-group label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--slate-dark);
  margin-bottom: 10px;
}

.segmented-control {
  display: flex;
  background: var(--slate-bg);
  padding: 4px;
  border-radius: var(--radius-md);
  border: 1px solid var(--slate-border);
  gap: 4px;
}

.segment-btn {
  flex: 1;
  padding: 10px 14px;
  border: none;
  background: transparent;
  color: var(--slate-medium);
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.segment-btn.active {
  background: var(--pure-white);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
  font-weight: 700;
}

.calc-summary-card {
  background: var(--slate-bg);
  border: 1px solid var(--slate-border);
  border-radius: var(--radius-md);
  padding: 26px;
}

.calc-summary-card h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark-navy);
  margin-bottom: 16px;
}

.breakdown-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
}

.breakdown-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.92rem;
  color: var(--slate-medium);
}

.breakdown-item .item-val {
  font-weight: 700;
  color: var(--dark-navy);
}

.breakdown-divider {
  height: 1px;
  background: var(--slate-border);
  margin: 6px 0;
}

.breakdown-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
}

.total-label {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--dark-navy);
}

.total-sub {
  font-size: 0.78rem;
  color: var(--slate-light);
}

.total-amount {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.85rem;
  color: var(--primary);
}

.total-amount small {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--slate-light);
}

/* ==========================================================================
   Amenities Section
   ========================================================================== */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.amenity-card {
  background: var(--pure-white);
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--slate-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.amenity-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 107, 53, 0.3);
}

.amenity-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.bg-orange-soft { background: #FFF4ED; color: #EA580C; }
.bg-blue-soft { background: #EFF6FF; color: #2563EB; }
.bg-amber-soft { background: #FEF3C7; color: #D97706; }
.bg-emerald-soft { background: #ECFDF5; color: #059669; }
.bg-purple-soft { background: #F3E8FF; color: #7C3AED; }
.bg-rose-soft { background: #FFE4E6; color: #E11D48; }
.bg-indigo-soft { background: #EEF2FF; color: #4F46E5; }
.bg-teal-soft { background: #CCFBF1; color: #0D9488; }

.amenity-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 10px;
}

.amenity-card p {
  font-size: 0.9rem;
  color: var(--slate-light);
  line-height: 1.6;
}

/* ==========================================================================
   Mess & Food Menu Section
   ========================================================================== */
.mess-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: center;
}

.mess-pills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
  margin-bottom: 30px;
}

.mess-pill {
  background: var(--pure-white);
  border: 1px solid var(--slate-border);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-sm);
}

.mess-timings-card {
  background: var(--pure-white);
  border-left: 4px solid var(--primary);
  padding: 20px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
}

.mess-timings-card h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dark-navy);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.timing-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--slate-medium);
  margin-bottom: 6px;
}

/* Interactive Mess Menu Box */
.menu-box {
  background: var(--pure-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--slate-border);
}

.menu-header h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark-navy);
}

.menu-header p {
  font-size: 0.88rem;
  color: var(--slate-light);
  margin-bottom: 20px;
}

.day-tabs-scroll {
  overflow-x: auto;
  padding-bottom: 8px;
  margin-bottom: 20px;
}

.day-tabs {
  display: flex;
  gap: 8px;
  min-width: max-content;
}

.day-tab {
  padding: 8px 18px;
  border: 1px solid var(--slate-border);
  background: var(--slate-bg);
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--slate-medium);
  cursor: pointer;
  transition: var(--transition);
}

.day-tab.active {
  background: var(--primary);
  color: var(--pure-white);
  border-color: var(--primary);
  box-shadow: 0 4px 12px var(--primary-glow);
}

.menu-meal-card {
  background: var(--slate-bg);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border-left: 3px solid var(--primary);
  transition: var(--transition);
}

.menu-meal-card:hover {
  background: #FFF8F5;
  border-left-color: var(--secondary);
}

.meal-badge {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}

.meal-items-text {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--slate-dark);
}

/* ==========================================================================
   Photo Gallery Section
   ========================================================================== */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 36px;
  margin-bottom: 36px;
}

.filter-btn {
  padding: 9px 22px;
  background: var(--slate-bg);
  border: 1px solid var(--slate-border);
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--slate-medium);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
  background: var(--dark-navy);
  color: var(--pure-white);
  border-color: var(--dark-navy);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 300px;
  cursor: pointer;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: var(--pure-white);
  transition: var(--transition);
}

.gallery-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  background: var(--primary);
  padding: 3px 10px;
  border-radius: var(--radius-sm);
  align-self: flex-start;
  margin-bottom: 8px;
}

.gallery-overlay h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.zoom-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  opacity: 0;
  transform: scale(0.8);
  transition: var(--transition);
}

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

.gallery-item:hover .zoom-icon {
  opacity: 1;
  transform: scale(1);
}

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox-modal.open {
  display: flex;
}

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(8px);
}

.lightbox-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  width: 100%;
  text-align: center;
}

.lightbox-container img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
}

.lightbox-caption {
  color: var(--pure-white);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-top: 14px;
}

.lightbox-close {
  position: absolute;
  top: -46px;
  right: 0;
  background: transparent;
  border: none;
  color: var(--pure-white);
  font-size: 2.2rem;
  cursor: pointer;
}

/* ==========================================================================
   Location & Proximity Section
   ========================================================================== */
.location-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}

.address-box-card {
  background: var(--pure-white);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  gap: 16px;
  border: 1px solid var(--slate-border);
  box-shadow: var(--shadow-sm);
  margin-top: 24px;
  margin-bottom: 24px;
}

.address-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.address-details h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark-navy);
  margin-bottom: 4px;
}

.address-details p {
  font-size: 0.92rem;
  color: var(--slate-medium);
}

.address-details .contact-line {
  margin-top: 6px;
  color: var(--primary);
}

.proximity-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 30px;
}

.prox-item {
  background: var(--pure-white);
  border: 1px solid var(--slate-border);
  border-radius: var(--radius-sm);
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.prox-icon {
  width: 38px;
  height: 38px;
  background: #F1F5F9;
  color: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.prox-detail strong {
  display: block;
  font-size: 0.9rem;
  color: var(--dark-navy);
  line-height: 1.2;
}

.prox-detail span {
  font-size: 0.78rem;
  color: var(--slate-light);
}

.location-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Map Card */
.map-card-container {
  background: var(--pure-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--slate-border);
}

.map-header {
  padding: 14px 20px;
  background: var(--dark-navy);
  color: var(--pure-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.map-live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22C55E;
  animation: pulse 1.5s infinite;
}

.map-iframe-wrapper {
  height: 360px;
  width: 100%;
}

.map-footer-banner {
  padding: 16px 20px;
  background: #F8FAFC;
  border-top: 1px solid var(--slate-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.banner-text {
  font-size: 0.85rem;
  color: var(--slate-medium);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.testimonial-card {
  background: var(--pure-white);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  border: 1px solid var(--slate-border);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

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

.stars-row {
  color: #F59E0B;
  display: flex;
  gap: 4px;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.quote {
  font-size: 0.96rem;
  color: var(--slate-dark);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
  font-style: italic;
}

.author-row {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--slate-border);
  padding-top: 16px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.author-meta h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark-navy);
  line-height: 1.2;
}

.author-meta p {
  font-size: 0.8rem;
  color: var(--slate-light);
}

/* ==========================================================================
   FAQ Accordion Section
   ========================================================================== */
.faq-accordion {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--pure-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--slate-border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark-navy);
  cursor: pointer;
  transition: var(--transition);
}

.faq-icon {
  font-size: 0.9rem;
  color: var(--slate-light);
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out, padding 0.3s ease;
  background: #FCFDFF;
  padding: 0 24px;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--slate-medium);
  line-height: 1.7;
  padding-bottom: 20px;
}

.faq-item.active {
  border-color: rgba(255, 107, 53, 0.4);
  box-shadow: var(--shadow-md);
}

.faq-item.active .faq-question {
  color: var(--primary);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 10px 24px;
}

/* ==========================================================================
   Booking & Admission Section
   ========================================================================== */
.booking-section {
  background: linear-gradient(135deg, var(--dark-navy) 0%, #172554 100%);
  color: var(--pure-white);
}

.booking-card-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 48px;
  align-items: center;
}

.badge-accent {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 107, 53, 0.25);
  color: var(--accent);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.booking-info-panel h2 {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.booking-info-panel p {
  font-size: 1.05rem;
  color: #CBD5E1;
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-direct-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.direct-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  color: var(--pure-white);
  transition: var(--transition);
}

.direct-item:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateX(6px);
}

.d-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 107, 53, 0.2);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.d-icon.whatsapp-icon {
  background: rgba(37, 211, 102, 0.2);
  color: #4ADE80;
}

.direct-item span {
  display: block;
  font-size: 0.78rem;
  color: #94A3B8;
}

.direct-item strong {
  font-family: var(--font-heading);
  font-size: 1.05rem;
}

.booking-form-panel {
  background: var(--pure-white);
  color: var(--slate-dark);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.form-title-box h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark-navy);
  margin-bottom: 4px;
}

.form-title-box p {
  font-size: 0.88rem;
  color: var(--slate-light);
  margin-bottom: 24px;
}

#mainBookingForm .form-group {
  margin-bottom: 18px;
}

#mainBookingForm label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate-medium);
  margin-bottom: 6px;
}

#mainBookingForm input,
#mainBookingForm select,
#mainBookingForm textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--slate-border);
  border-radius: var(--radius-sm);
  background: #F8FAFC;
  color: var(--dark-navy);
  transition: var(--transition);
}

#mainBookingForm input:focus,
#mainBookingForm select:focus,
#mainBookingForm textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--pure-white);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

.form-disclaimer {
  font-size: 0.78rem;
  color: var(--slate-light);
  text-align: center;
  margin-top: 14px;
}

/* ==========================================================================
   Floating Actions & Sticky Mobile Bar
   ========================================================================== */
.floating-actions {
  position: fixed;
  bottom: 30px;
  right: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 999;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--pure-white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  position: relative;
  transition: var(--transition);
}

.float-wa {
  background-color: var(--whatsapp);
}

.float-wa:hover {
  background-color: var(--whatsapp-hover);
  transform: scale(1.1);
}

.float-call {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.float-call:hover {
  transform: scale(1.1);
}

.float-tooltip {
  position: absolute;
  right: 68px;
  background: var(--dark-navy);
  color: var(--pure-white);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.float-btn:hover .float-tooltip {
  opacity: 1;
  transform: translateX(-4px);
}

/* Mobile Sticky Bottom Bar */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--pure-white);
  border-top: 1px solid var(--slate-border);
  padding: 10px 16px;
  z-index: 998;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
}

.bottom-bar-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: var(--radius-sm);
  text-align: center;
}

.bottom-bar-btn.btn-call {
  background: #F1F5F9;
  color: var(--dark-navy);
}

.bottom-bar-btn.btn-wa {
  background: var(--whatsapp);
  color: var(--pure-white);
}

.bottom-bar-btn.btn-book {
  background: var(--primary);
  color: var(--pure-white);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--dark-navy);
  color: #94A3B8;
  padding: 70px 0 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--pure-white);
  margin-bottom: 20px;
}

.footer-about {
  font-size: 0.92rem;
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 22px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--pure-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}

.footer-socials a:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

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

.footer-links a {
  font-size: 0.92rem;
  color: #94A3B8;
  transition: var(--transition);
}

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

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-info p {
  font-size: 0.92rem;
  display: flex;
  gap: 10px;
  line-height: 1.5;
}

.footer-contact-info a {
  color: var(--pure-white);
}

.footer-contact-info a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 12px;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1080px) {
  .hero-container,
  .about-grid,
  .calculator-grid,
  .mess-wrapper,
  .location-grid,
  .booking-card-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

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

@media (max-width: 768px) {
  .top-announcement {
    display: none;
  }

  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--pure-white);
    flex-direction: column;
    padding: 30px 24px;
    box-shadow: var(--shadow-xl);
    border-bottom: 1px solid var(--slate-border);
    clip-path: circle(0% at top right);
    transition: clip-path 0.4s ease-in-out;
  }

  .nav-menu.open {
    clip-path: circle(150% at top right);
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    gap: 16px;
    text-align: center;
  }

  .nav-cta-group {
    flex-direction: column;
    width: 100%;
    margin-top: 16px;
  }

  .nav-cta-group .btn {
    width: 100%;
  }

  .menu-toggle {
    display: flex;
  }

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

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

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

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

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

  .room-grid,
  .gallery-grid,
  .testimonials-grid,
  .footer-grid,
  .amenities-grid {
    grid-template-columns: 1fr;
  }

  .form-row,
  .proximity-cards,
  .mess-pills {
    grid-template-columns: 1fr;
  }

  .mobile-bottom-bar {
    display: flex;
    gap: 8px;
  }

  .floating-actions {
    bottom: 80px;
    right: 18px;
  }

  .about-floating-badge {
    position: static;
    margin-top: 16px;
  }
}
