/* ==========================================================================
   IIM MUMBAI - INTERNATIONAL RELATIONS WEBSITE STYLESHEET
   ========================================================================== */

/* --- CSS Variables & Design Tokens --- */
:root {
  --color-navy-dark: #121832;
  --color-navy-hero: #161e3d;
  --color-navy-nav: #141c3a;
  --color-navy-card: #182142;

  --color-terracotta: #b84227;
  --color-terracotta-hover: #9e361e;
  --color-terracotta-light: #fbeee9;

  --color-gold-accent: #d48332;
  --color-gold-light: #e59d48;

  --color-bg-page: #ffffff;
  --color-bg-cream: #f4efe7;
  --color-bg-card: #ffffff;

  --color-text-dark: #121624;
  --color-text-muted: #555e70;
  --color-text-light: #f3f5fa;
  --color-text-subtle: #838ea3;

  --border-light: #e6dfd3;
  --border-card: #e4ddd1;
  --border-dark: #2a3458;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Cinzel', serif;

  --container-width: 1200px;
  --transition-smooth: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-sans);
  color: var(--color-text-dark);
  background-color: var(--color-bg-page);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* --- Typography Utilities --- */
.section-tag {
  color: var(--color-terracotta);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.15rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-text-dark);
  letter-spacing: -0.015em;
  max-width: 820px;
  margin-bottom: 2.5rem;
}

/* --- Button Styles --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.82rem 1.65rem;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-align: center;
  line-height: 1;
}

.btn-primary {
  background-color: var(--color-terracotta);
  color: #ffffff;
  border: 1px solid var(--color-terracotta);
}

.btn-primary:hover {
  background-color: var(--color-terracotta-hover);
  border-color: var(--color-terracotta-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(184, 66, 39, 0.25);
}

.btn-outline {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  background-color: var(--color-navy-nav);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0.75rem clamp(1.5rem, 3.5vw, 4rem);
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.header-logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.brand-logo:hover .header-logo-img {
  opacity: 0.95;
  transform: scale(1.02);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.nav-link {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 500;
  position: relative;
  padding: 0.35rem 0;
}

.nav-link:hover {
  color: #ffffff;
}

.nav-link.active {
  color: var(--color-gold-light);
  font-weight: 600;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-gold-light);
  border-radius: 1px;
}

/* Mobile Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle .bar {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #ffffff;
  margin: 5px 0;
  transition: var(--transition-smooth);
}

.mobile-drawer {
  display: none;
  background-color: var(--color-navy-dark);
  padding: 1.5rem 2rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-drawer.open {
  display: block;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  font-weight: 500;
  display: block;
  padding: 0.4rem 0;
}

.mobile-nav-link.active {
  color: var(--color-gold-light);
  font-weight: 600;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  background-color: var(--color-navy-hero);
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
}

.hero-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  max-width: 100vw;
  margin: 0;
  padding: 0;
  height: calc(100vh - 70px)
}

.hero-content-pane {
  display: flex;
  align-items: center;
  padding: 1.25rem 2.5rem 1.25rem clamp(1.5rem, 4.5vw, 4.5rem);
  background-color: var(--color-navy-hero);
}

.hero-content-inner {
  max-width: 520px;
}

.hero-tag {
  color: var(--color-gold-light);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 2.7vw, 2.25rem);
  font-weight: 600;
  line-height: 1.15;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 0.65rem;
}

.hero-description {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.82rem, 1vw, 0.88rem);
  line-height: 1.45;
  margin-bottom: 1.2rem;
  font-weight: 300;
  max-width: 450px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.hero-image-pane {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  display: block;
}

.image-overlay-gradient {
  display: none;
}

/* ==========================================================================
   Stats / Metrics Strip
   ========================================================================== */
.stats-ribbon {
  background-color: var(--color-bg-cream);
  padding: 2.75rem 0;
  border-bottom: 1px solid var(--border-light);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
}

.stat-card {
  padding: 0 1.25rem;
}

.stat-value {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--color-navy-dark);
  line-height: 1.1;
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}

.stat-value.stat-highlight {
  color: var(--color-terracotta);
}

.stat-label {
  font-size: 0.76rem;
  color: var(--color-text-muted);
  font-weight: 500;
  line-height: 1.35;
}

.stat-divider {
  width: 1px;
  height: 52px;
  background-color: rgba(0, 0, 0, 0.12);
}

/* ==========================================================================
   About The Institute Section
   ========================================================================== */
.about-section {
  padding: 5.5rem 0 4.5rem;
  background-color: #ffffff;
}

/* ==========================================================================
   About The Institute Section
   ========================================================================== */
.about-section {
  padding: 5rem 0 4.5rem;
  background-color: #ffffff;
}

.about-header-block {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.about-header-text {
  flex: 1;
  min-width: 320px;
}

.about-accreditation-logos {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  padding-bottom: 0.5rem;
}

.accreditation-logo {
  height: 52px;
  max-height: 60px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.accreditation-logo:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.about-main-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.2vw, 2.65rem);
  font-weight: 600;
  line-height: 1.2;
  color: #12182d;
  letter-spacing: -0.015em;
  max-width: 850px;
  margin-bottom: 0.85rem;
}

.title-accent-bar {
  width: 44px;
  height: 3px;
  background-color: var(--color-terracotta);
  border-radius: 2px;
  margin-top: 0.85rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 3.25rem;
  align-items: start;
}

.about-image-wrapper {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(18, 24, 45, 0.09);
  background-color: #f1ede6;
}

.about-campus-img {
  width: 100%;
  height: auto;
  min-height: 380px;
  max-height: 460px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.about-image-wrapper:hover .about-campus-img {
  transform: scale(1.02);
}

.campus-location-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: rgba(14, 20, 36, 0.88);
  backdrop-filter: blur(10px);
  padding: 0.65rem 1.15rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.pin-icon-wrap svg {
  width: 18px;
  height: 18px;
  stroke: #ffffff;
  display: block;
}

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

.location-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.location-subtitle {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.75);
}

.about-text-content {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.about-paragraph {
  color: #384254;
  font-size: 0.915rem;
  line-height: 1.62;
  font-weight: 400;
}

.about-paragraph strong {
  color: #12182d;
  font-weight: 600;
}

/* Feature Highlights Strip */
.about-highlights-strip {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1.15fr;
  align-items: center;
  margin-top: 3.5rem;
  padding-top: 2.25rem;
  border-top: 1px solid #e7e0d3;
}

.about-highlight-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 1rem;
}

.about-highlight-item:first-child {
  padding-left: 0;
}

.highlight-icon {
  color: #2b3b64;
  margin-bottom: 0.65rem;
}

.highlight-icon svg {
  width: 26px;
  height: 26px;
  stroke: #2b3b64;
  display: block;
}

.highlight-val {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: #151d36;
  line-height: 1.15;
  margin-bottom: 0.2rem;
}

.highlight-lbl {
  font-size: 0.76rem;
  color: #647087;
  font-weight: 500;
}

.highlight-separator {
  width: 1px;
  height: 48px;
  background-color: #e5ded2;
}

/* ==========================================================================
   Why Partner With Us Section
   ========================================================================== */
.why-partner-section {
  padding: 3.5rem 0 4rem;
  background-color: #ffffff;
}

.partner-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border-card);
  border-radius: 2px;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.partner-card {
  padding: 2.25rem 2rem;
  border-right: 1px solid var(--border-card);
  transition: var(--transition-smooth);
}

.partner-card:last-child {
  border-right: none;
}

.partner-card:hover {
  background-color: #fdfbf7;
}

.card-category {
  color: var(--color-terracotta);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 0.65rem;
}

.card-heading {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-navy-dark);
  margin-bottom: 0.85rem;
  line-height: 1.3;
}

.card-description {
  color: var(--color-text-muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

/* ==========================================================================
   Quick Links Section
   ========================================================================== */
.quick-links-section {
  padding: 2.5rem 0 5.5rem;
  background-color: #ffffff;
}

.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border-card);
  border-radius: 2px;
  overflow: hidden;
}

.quick-link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.35rem 1.65rem;
  border-right: 1px solid var(--border-card);
  background-color: #ffffff;
  color: var(--color-navy-dark);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.quick-link-card:last-child {
  border-right: none;
}

.quick-link-arrow {
  color: var(--color-terracotta);
  font-size: 1.1rem;
  transition: transform 0.25s ease;
}

.quick-link-card:hover {
  background-color: #fbf7ef;
  color: var(--color-terracotta);
}

.quick-link-card:hover .quick-link-arrow {
  transform: translateX(4px);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background-color: #10162a;
  color: rgba(255, 255, 255, 0.7);
  padding: 4.5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3.5rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.brand-col {
  max-width: 540px;
}

.contact-col {
  min-width: 220px;
}

.brand-col .institute-name {
  color: #ffffff;
  font-size: 1.25rem;
}

.brand-col .sub-name {
  color: var(--color-gold-light);
  display: block;
  margin-top: 0.15rem;
}

.footer-tagline {
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 1.25rem 0;
  color: rgba(255, 255, 255, 0.65);
}

.footer-address {
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
}

.footer-heading {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  font-family: var(--font-sans);
  letter-spacing: 0.02em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer-links a:hover {
  color: var(--color-gold-light);
  padding-left: 3px;
}

.contact-item {
  font-size: 0.84rem;
  margin-bottom: 0.6rem;
  color: rgba(255, 255, 255, 0.75);
}

.contact-item strong {
  color: #ffffff;
}

.social-icons {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
}

.social-btn:hover {
  background-color: var(--color-terracotta);
  color: #ffffff;
  transform: translateY(-2px);
}

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

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer-legal-links a:hover {
  color: #ffffff;
}

/* ==========================================================================
   Modal Dialog
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(10, 15, 30, 0.75);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 1.5rem;
}

.modal-backdrop.active {
  display: flex;
}

.modal-card {
  background-color: #ffffff;
  border-radius: 4px;
  width: 100%;
  max-width: 500px;
  padding: 2.25rem;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  animation: modalFadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(15px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #8892a4;
  cursor: pointer;
  line-height: 1;
}

.modal-close-btn:hover {
  color: var(--color-navy-dark);
}

.modal-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-terracotta);
  margin-bottom: 0.5rem;
}

.modal-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-navy-dark);
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.modal-subtitle {
  font-size: 0.84rem;
  color: var(--color-text-muted);
  line-height: 1.45;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.15rem;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: #2b3345;
  margin-bottom: 0.35rem;
}

.form-group input {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--border-card);
  border-radius: 3px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--color-text-dark);
  outline: none;
  transition: border-color 0.2s ease;
}

.form-group input:focus {
  border-color: var(--color-terracotta);
  box-shadow: 0 0 0 3px rgba(184, 66, 39, 0.12);
}

.modal-success-msg {
  display: none;
  margin-top: 1rem;
  padding: 0.85rem;
  background-color: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
  border-radius: 3px;
  font-size: 0.85rem;
  text-align: center;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.4rem;
  }

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

  .stat-divider {
    display: none;
  }

  .partner-cards-grid {
    grid-template-columns: 1fr;
  }

  .partner-card {
    border-right: none;
    border-bottom: 1px solid var(--border-card);
  }

  .partner-card:last-child {
    border-bottom: none;
  }

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

  .quick-link-card:nth-child(2) {
    border-right: none;
  }

  .quick-link-card:nth-child(1),
  .quick-link-card:nth-child(2) {
    border-bottom: 1px solid var(--border-card);
  }

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

@media (max-width: 868px) {
  .main-nav {
    display: none;
  }

  .header-logo-img {
    height: 44px;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .hero-split-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-content-pane {
    padding: 1.75rem 1.25rem;
  }

  .hero-image-pane {
    height: 220px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-highlights-strip {
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem 1rem;
  }

  .highlight-separator {
    display: none;
  }

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

@media (max-width: 580px) {
  .hero-title {
    font-size: 1.75rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .about-highlights-strip {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

  .quick-links-grid {
    grid-template-columns: 1fr;
  }

  .quick-link-card {
    border-right: none;
    border-bottom: 1px solid var(--border-card);
  }

  .quick-link-card:last-child {
    border-bottom: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ==========================================================================
   Programmes Page - Editorial List Style
   ========================================================================== */
.page-hero-banner {
  background-color: var(--color-navy-hero);
  padding: 3.5rem 0 3.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.breadcrumb-trail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
}

.breadcrumb-trail a {
  color: var(--color-gold-light);
}

.breadcrumb-trail .current {
  color: #ffffff;
  font-weight: 600;
}

.page-hero-tag {
  color: var(--color-gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}

.page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 600;
  line-height: 1.18;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 0.95rem;
  max-width: 800px;
}

.page-hero-desc {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
  line-height: 1.6;
  max-width: 740px;
  font-weight: 300;
}

.programmes-page-content {
  background-color: #faf7f2;
  padding: 5rem 0 7rem;
  min-height: calc(100vh - 350px);
  display: flex;
  align-items: center;
}

.programmes-list-container {
  max-width: 1240px;
  width: 100%;
}

.programmes-referral-card {
  background-color: #ffffff;
  border: 1px solid #e7dfd2;
  border-radius: 12px;
  padding: 4rem 3rem;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 10px 30px rgba(18, 24, 50, 0.04);
}

.referral-icon-box {
  width: 76px;
  height: 76px;
  background-color: var(--color-terracotta-light);
  color: var(--color-terracotta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.referral-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 2.5vw, 2.3rem);
  font-weight: 600;
  color: var(--color-navy-dark);
  margin-bottom: 1.25rem;
  line-height: 1.25;
}

.referral-text {
  font-size: 1.05rem;
  color: #555e70;
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto 2.25rem;
}

.referral-btn-wrapper {
  display: flex;
  justify-content: center;
}

.referral-btn-wrapper .btn {
  padding: 0.95rem 2.25rem;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 768px) {
  .programmes-referral-card {
    padding: 2.5rem 1.5rem;
  }
}

/* ==========================================================================
   Exchange Page Specific Styles
   ========================================================================== */
.exchange-pillars-strip {
  background-color: var(--color-bg-cream);
  padding: 3rem 0;
  border-bottom: 1px solid var(--border-light);
}

.exchange-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.pillar-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.pillar-icon {
  width: 38px;
  height: 38px;
  color: var(--color-terracotta);
  margin-bottom: 0.85rem;
}

.pillar-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--color-terracotta);
}

.pillar-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-navy-dark);
  margin-bottom: 0.35rem;
  line-height: 1.25;
}

.pillar-desc {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* Inbound Mobility Information Cards & Grid */
.inbound-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.75rem;
}

.inbound-info-card {
  background-color: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: 8px;
  padding: 2.25rem 2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
}

.info-card-tag {
  color: var(--color-terracotta);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}

.info-card-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-navy-dark);
  margin-bottom: 1.15rem;
  line-height: 1.25;
}

.info-detail-group {
  margin-bottom: 1.1rem;
}

.info-detail-group:last-child {
  margin-bottom: 0;
}

.detail-label {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--color-navy-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.25rem;
}

.detail-text {
  font-size: 0.88rem;
  color: #4b5568;
  line-height: 1.58;
  margin-bottom: 0.65rem;
}

.info-highlight-callout {
  background-color: #f7f4ee;
  border-left: 3px solid var(--color-terracotta);
  padding: 0.75rem 1rem;
  border-radius: 4px;
  font-size: 0.84rem;
  color: var(--color-navy-dark);
  font-weight: 500;
  margin-top: 0.5rem;
}

.inbound-check-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.inbound-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.86rem;
  color: #4b5568;
  line-height: 1.45;
}

.inbound-check-list .chk-icon {
  color: var(--color-terracotta);
  font-weight: bold;
  font-size: 0.95rem;
  flex-shrink: 0;
  line-height: 1.2;
}

.mt-auto {
  margin-top: auto;
  padding-top: 1rem;
}

/* Inbound Grading Container & Matrix Table */
.inbound-grading-container {
  background-color: #fcfbf9;
  border: 1px solid var(--border-card);
  border-radius: 8px;
  padding: 2.75rem 2.5rem;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3rem;
  align-items: center;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.02);
}

.grading-block-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-navy-dark);
  margin-bottom: 0.85rem;
}

.grading-footnote {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: #647087;
  font-style: italic;
}

.grading-matrix-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  font-size: 0.86rem;
  background-color: #ffffff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.grading-matrix-table th,
.grading-matrix-table td {
  border: 1px solid #e2dacd;
  padding: 0.65rem 0.5rem;
}

.grading-matrix-table th {
  background-color: #f7f3ec;
  font-weight: 600;
  color: var(--color-navy-dark);
  text-align: left;
  padding-left: 0.85rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  width: 120px;
}

.grading-matrix-table td {
  color: #333d4e;
}

.table-spacer-row td {
  background-color: #faf7f2;
  height: 8px;
  padding: 0;
  border-left: none;
  border-right: none;
}

/* Exchange Section Blocks */
.exchange-section-block {
  padding: 5.5rem 0 4.5rem;
  background-color: #ffffff;
}

.exchange-content-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: start;
}

.exchange-content-split.reverse-split {
  grid-template-columns: 0.8fr 1.2fr;
}

.exchange-intro-p {
  font-size: 1.05rem;
  color: #2b3345;
  line-height: 1.65;
  margin-bottom: 2rem;
  font-weight: 400;
}

.exchange-feature-points {
  display: flex;
  flex-direction: column;
  gap: 1.65rem;
  margin-bottom: 2.5rem;
}

.f-point {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.f-point-num {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-terracotta);
  line-height: 1;
  padding-top: 0.15rem;
}

.f-point-content h4 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--color-navy-dark);
  margin-bottom: 0.3rem;
}

.f-point-content p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.exchange-cta-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Sidebar Card */
.exchange-sidebar-card {
  background-color: #fcfbf9;
  border: 1px solid var(--border-card);
  border-radius: 8px;
  padding: 2.25rem 2rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
}

.sidebar-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-terracotta);
  margin-bottom: 0.45rem;
}

.sidebar-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-navy-dark);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-card);
}

.factsheet-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.factsheet-list li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.fact-lbl {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #7b8699;
  letter-spacing: 0.04em;
}

.fact-val {
  font-size: 0.88rem;
  color: var(--color-text-dark);
  font-weight: 600;
  line-height: 1.4;
}

/* Academic Terms Grid */
.exchange-terms-section {
  padding: 5rem 0;
  background-color: #faf7f2;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.section-subtitle-desc {
  font-size: 0.95rem;
  color: #555e70;
  line-height: 1.6;
  max-width: 820px;
  margin-bottom: 2.25rem;
}

.terms-tri-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.term-detail-card {
  background-color: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: 8px;
  padding: 2.25rem 2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
  position: relative;
  transition: var(--transition-smooth);
}

.term-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(18, 24, 45, 0.07);
}

.term-tag-top {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-terracotta);
  margin-bottom: 0.45rem;
}

.term-name {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--color-navy-dark);
  margin-bottom: 0.45rem;
}

.term-date-range {
  font-size: 0.88rem;
  color: #647087;
  font-weight: 600;
}

.term-timeline-box {
  background-color: #f9f6f0;
  padding: 1rem;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.timeline-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

.t-key {
  color: #647087;
  font-weight: 500;
}

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

.term-summary-text {
  font-size: 0.86rem;
  color: #4a5468;
  line-height: 1.55;
}

/* Outbound Section */
.outbound-section {
  padding: 5.5rem 0 4.5rem;
  background-color: #ffffff;
}

/* FAQ Section */
.exchange-faq-section {
  padding: 5rem 0 5.5rem;
  background-color: #faf7f2;
  border-top: 1px solid var(--border-light);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.faq-card {
  background-color: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.02);
}

.faq-q {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-navy-dark);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.faq-a {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .exchange-pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .inbound-info-grid,
  .inbound-grading-container {
    grid-template-columns: 1fr;
  }
  
  .exchange-content-split,
  .exchange-content-split.reverse-split {
    grid-template-columns: 1fr;
  }
  
  .terms-tri-grid {
    grid-template-columns: 1fr;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 580px) {
  .exchange-pillars-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Partner Institutions Page Specific Styles
   ========================================================================== */
.partners-stats-strip {
  background-color: var(--color-bg-cream);
  padding: 3rem 0;
  border-bottom: 1px solid var(--border-light);
}

.partners-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.p-stat-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.p-stat-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-terracotta);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.p-stat-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #4b5568;
  line-height: 1.4;
}

/* World Map Section (Clean & Simple with Dynamic Pins) */
.partners-map-section {
  background-color: #faf7f2;
  padding: 3rem 0 1.5rem;
}

.map-wrapper-frame {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(18, 24, 45, 0.12);
  background: #0b1126;
  border: 1px solid #dfd6c7;
}

.pure-interactive-map {
  position: relative;
  width: 100%;
  aspect-ratio: 2000 / 857;
  min-height: 480px;
  background: #0b1126;
  overflow: hidden;
}

.map-vector-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

/* Pins Layer */
.map-pins-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
}

/* Individual Pin */
.map-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
}

.map-pin .pin-dot {
  width: 11px;
  height: 11px;
  background: #b84227;
  border: 2px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(184, 66, 39, 0.9), 0 2px 4px rgba(0, 0, 0, 0.5);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.2s ease, box-shadow 0.2s ease;
}

.map-pin .pin-beacon {
  position: absolute;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(184, 66, 39, 0.35);
  animation: beaconPulse 2.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
  pointer-events: none;
}

@keyframes beaconPulse {
  0% {
    transform: scale(0.4);
    opacity: 1;
  }
  100% {
    transform: scale(2.0);
    opacity: 0;
  }
}

/* Hub Marker (IIM Mumbai) */
.map-pin.pin-hub .pin-dot {
  width: 15px;
  height: 15px;
  background: #d48332;
  border: 2.5px solid #ffffff;
  box-shadow: 0 0 14px rgba(212, 131, 50, 0.95), 0 2px 6px rgba(0, 0, 0, 0.6);
}

.map-pin.pin-hub .pin-beacon {
  width: 36px;
  height: 36px;
  background: rgba(212, 131, 50, 0.4);
  animation: hubBeaconPulse 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
}

@keyframes hubBeaconPulse {
  0% {
    transform: scale(0.3);
    opacity: 1;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

/* Pin Hover Effect */
.map-pin:hover .pin-dot {
  transform: scale(1.6);
  background: #e59d48;
  box-shadow: 0 0 16px rgba(229, 157, 72, 1), 0 3px 6px rgba(0, 0, 0, 0.7);
}

.map-pin:hover {
  z-index: 25;
}

/* Tooltip on Hover: University Name and Country */
.pin-label {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background: rgba(11, 17, 38, 0.94);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  padding: 0.35rem 0.65rem;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.45);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  z-index: 30;
}

.pin-label-name {
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.25;
}

.pin-label-country {
  font-size: 0.65rem;
  color: #d48332;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.map-pin.pin-hub .pin-label-country {
  color: #48bb78;
}

/* Tooltip display on hover */
.map-pin:hover .pin-label {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Downward positioning for northern hemisphere pins */
.map-pin[data-align="bottom"] .pin-label {
  bottom: auto;
  top: calc(100% + 8px);
  transform: translateX(-50%) translateY(-4px);
}

.map-pin[data-align="bottom"]:hover .pin-label {
  transform: translateX(-50%) translateY(0);
}

/* Right-aligned positioning */
.map-pin[data-align-x="right"] .pin-label {
  left: auto;
  right: 0;
  transform: translateY(4px);
}

.map-pin[data-align-x="right"]:hover .pin-label {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .pure-interactive-map {
    min-height: 360px;
  }
}

/* Matrix Directory & Filter Section */
.partners-matrix-section {
  padding: 2rem 0 6rem;
  background-color: #faf7f2;
}

.partners-filter-pills {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-bottom: 2.25rem;
}

.region-pill-btn {
  background-color: #ffffff;
  border: 1px solid #dfd6c7;
  color: #4b5568;
  padding: 0.55rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.region-pill-btn:hover {
  background-color: #f5eee2;
  color: var(--color-navy-dark);
}

.region-pill-btn.active {
  background-color: var(--color-navy-hero);
  color: #ffffff;
  border-color: var(--color-navy-hero);
}

/* 4-Column Table Matrix Grid */
.partners-table-matrix {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #dfd6c7;
  border-left: 1px solid #dfd6c7;
  background-color: #ffffff;
  margin-bottom: 4.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
}

.matrix-cell {
  padding: 1.5rem 1.35rem;
  border-right: 1px solid #dfd6c7;
  border-bottom: 1px solid #dfd6c7;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 95px;
  transition: background-color 0.2s ease;
}

.matrix-cell:hover {
  background-color: #fffcf8;
}

.matrix-cell.hidden {
  display: none;
}

.matrix-cell.matrix-cell-empty {
  background-color: #dfd7c8;
  border-right: 1px solid #dfd6c7;
  border-bottom: 1px solid #dfd6c7;
}

.matrix-cell.matrix-cell-empty:hover {
  background-color: #dfd7c8;
}

.cell-logo-wrap {
  margin-bottom: 0.85rem;
  height: 38px;
  display: flex;
  align-items: center;
}

.cell-partner-logo {
  max-height: 45px;
  max-width: 140px;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
}

.cell-country {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-terracotta);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.45rem;
  font-family: var(--font-sans);
}

.cell-university {
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--color-navy-dark);
  line-height: 1.32;
}

/* Partnership Cooperation Modes */
.partnership-modes-section {
  padding: 3rem 0 4rem;
  border-top: 1px solid var(--border-light);
  margin-top: 2rem;
}

.cooperation-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.cooperation-card {
  background-color: #ffffff;
  border: 1px solid #e8e0d3;
  border-radius: 8px;
  padding: 2rem 1.75rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.coop-num {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-terracotta);
  margin-bottom: 0.65rem;
}

.coop-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-navy-dark);
  margin-bottom: 0.65rem;
  line-height: 1.3;
}

.coop-desc {
  font-size: 0.84rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* Become a Partner CTA Card */
.become-partner-card {
  background: linear-gradient(135deg, #161e3d 0%, #0e1426 100%);
  border-radius: 8px;
  padding: 3.5rem 3rem;
  color: #ffffff;
  margin-top: 2rem;
  box-shadow: 0 8px 32px rgba(18, 24, 45, 0.12);
}

.card-inner-tag {
  color: var(--color-gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}

.become-partner-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.85rem;
}

.become-partner-desc {
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  max-width: 820px;
  margin-bottom: 2rem;
  font-weight: 300;
}

.become-partner-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .partners-stats-grid,
  .cooperation-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 640px) {
  .partners-stats-grid,
  .cooperation-grid,
  .partners-table-matrix {
    grid-template-columns: 1fr;
  }
  
  .become-partner-card {
    padding: 2.5rem 1.75rem;
  }
}

/* ==========================================================================
   Campus Life Page Specific Styles
   ========================================================================== */

/* Placeholder styling for images to be populated by user */
.placeholder-img {
  background-color: #ede7dc;
  min-height: 140px;
  display: block;
  width: 100%;
  object-fit: cover;
  border-radius: 6px;
  position: relative;
}

/* Vlogs Showcase Banner */
.campus-vlogs-section {
  padding: 3.5rem 0 2rem;
  background-color: #faf7f2;
}

.vlogs-banner-card {
  background-color: #e5e0f0;
  border-radius: 12px;
  padding: 3rem 2.75rem;
  box-shadow: 0 4px 20px rgba(75, 60, 115, 0.06);
}

.vlogs-header {
  max-width: 860px;
  margin-bottom: 2rem;
}

.vlogs-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: #3b3a6d;
  margin-bottom: 0.75rem;
}

.vlogs-subtitle {
  font-size: 0.95rem;
  color: #4a4870;
  line-height: 1.6;
}

.vlogs-showcase-split {
  display: grid;
  grid-template-columns: 1.25fr 1.75fr;
  gap: 2rem;
  align-items: start;
}

/* 16:9 Landscape Featured Tour Video */
.featured-tour-box {
  display: flex;
  flex-direction: column;
}

.video-ratio-16-9 {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  background-color: #000000;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.video-meta-bar {
  margin-top: 0.85rem;
}

.video-tag-pill {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--color-terracotta);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}

.video-meta-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: #3b3a6d;
}

/* 9:16 Vertical Shorts Grid */
.shorts-portrait-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.short-card-item {
  display: flex;
  flex-direction: column;
}

.video-ratio-9-16 {
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 8px;
  overflow: hidden;
  background-color: #000000;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.vlog-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.short-label-badge {
  font-size: 0.78rem;
  font-weight: 700;
  color: #3b3a6d;
  margin-top: 0.5rem;
  text-align: center;
}

@media (max-width: 1024px) {
  .vlogs-showcase-split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .shorts-portrait-grid {
    grid-template-columns: 1fr;
    max-width: 280px;
    margin: 0 auto;
  }
}

/* Instagram Reels Spotlight Strip */
.instagram-reels-strip {
  margin-top: 3.5rem;
  padding-top: 2.75rem;
  border-top: 1px solid rgba(75, 60, 115, 0.15);
}

.reels-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.reels-main-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: #3b3a6d;
  margin-top: 0.35rem;
}

.instagram-follow-btn {
  background-color: #ffffff;
  color: #c13584;
  border: 1px solid #dfd4ea;
  font-size: 0.84rem;
  font-weight: 700;
  padding: 0.5rem 1.15rem;
  border-radius: 6px;
  transition: var(--transition-smooth);
}

.instagram-follow-btn:hover {
  background-color: #c13584;
  color: #ffffff;
  border-color: #c13584;
}

.instagram-reels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.instagram-reel-card {
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
  border: 1px solid #ded5eb;
  min-height: 480px;
}

.instagram-iframe {
  width: 100%;
  height: 480px;
  border: none;
  display: block;
}

@media (max-width: 900px) {
  .instagram-reels-grid {
    grid-template-columns: 1fr;
  }
}

/* Facilities Section */
.campus-facilities-section {
  padding: 5rem 0;
  background-color: #ffffff;
}

.section-title-large {
  font-family: var(--font-serif);
  font-size: 2.35rem;
  font-weight: 700;
  color: #3b3a6d;
  margin-bottom: 2.75rem;
}

.facilities-layout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.facility-item-block {
  margin-bottom: 2rem;
}

.facility-item-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 600;
  color: #3b3a6d;
  margin-bottom: 0.65rem;
}

.facility-item-text {
  font-size: 0.92rem;
  color: #4b5568;
  line-height: 1.62;
  margin-bottom: 0.65rem;
}

.facility-bullet-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 0.5rem;
}

.facility-bullet-list li {
  font-size: 0.9rem;
  color: #4b5568;
  line-height: 1.55;
  position: relative;
  padding-left: 1.2rem;
}

.facility-bullet-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-terracotta);
  font-size: 1.2rem;
  line-height: 1;
}

.library-hours-box {
  background-color: #faf7f2;
  border: 1px solid var(--border-card);
  border-radius: 6px;
  padding: 1.25rem 1.35rem;
  margin-top: 1rem;
}

.hours-label {
  display: block;
  font-size: 0.84rem;
  color: var(--color-navy-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.88rem;
  color: #4b5568;
}

.hours-list span {
  color: #647087;
}

.facilities-photos-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

.facility-photo-box {
  border-radius: 8px;
  overflow: hidden;
  background-color: #ede7dc;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  height: 180px;
}

.facility-photo-box.full-span {
  grid-column: span 2;
  height: 200px;
}

.facility-photo-box.large-box {
  margin-top: 2rem;
  height: 240px;
}

.facility-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.facility-photo-box:hover .facility-img {
  transform: scale(1.03);
}

/* Food & Accommodation Section */
.food-accommodation-section {
  padding: 5rem 0;
  background-color: #faf7f2;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.food-accom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.life-detail-card {
  background-color: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: 8px;
  padding: 2.75rem 2.25rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.02);
}

.detail-card-badge {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-terracotta);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.45rem;
}

.life-card-title {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 700;
  color: #3b3a6d;
  margin-bottom: 1.15rem;
}

.life-card-desc {
  font-size: 0.92rem;
  color: #4b5568;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.meal-plan-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.m-tag {
  background-color: #f7f3eb;
  border: 1px solid #dfd7c8;
  color: var(--color-navy-dark);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 4px;
}

.accom-bullet-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.accom-bullet-list li {
  font-size: 0.9rem;
  color: #4b5568;
  line-height: 1.6;
  position: relative;
  padding-left: 1.25rem;
}

.accom-bullet-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-terracotta);
  font-size: 1.3rem;
  line-height: 1;
}

/* Culture & Festivals Section */
.campus-culture-section {
  padding: 5.5rem 0 6.5rem;
  background-color: #ffffff;
}

.culture-split-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: start;
}

.culture-main-title {
  font-family: var(--font-serif);
  font-size: 2.35rem;
  font-weight: 700;
  color: #3b3a6d;
  margin-bottom: 1.75rem;
}

.culture-pillars-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  margin-bottom: 2.25rem;
}

.c-pillar-box {
  background: linear-gradient(135deg, #1b2346 0%, #293466 100%);
  color: #ffffff;
  padding: 1.5rem 1rem;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.9rem;
  box-shadow: 0 6px 18px rgba(22, 30, 61, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.c-pillar-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(22, 30, 61, 0.24);
}

.c-pillar-icon-box {
  width: 84px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.c-pillar-img {
  width: 100%;
  height: 100%;
  max-width: 64px;
  max-height: 64px;
  object-fit: contain;
  display: block;
}

.c-pillar-name {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #ffffff;
  line-height: 1.3;
}

.culture-narrative p {
  font-size: 0.94rem;
  color: #4b5568;
  line-height: 1.68;
  margin-bottom: 1.25rem;
}

.culture-photo-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

.culture-photos-side {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.culture-photo-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.c-photo-item {
  position: relative;
  height: 190px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #ede7dc;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.c-photo-large {
  position: relative;
  height: 210px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #ede7dc;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.culture-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.c-photo-item:hover .culture-img,
.c-photo-large:hover .culture-img {
  transform: scale(1.04);
}

.culture-card-overlay {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background-color: rgba(20, 28, 58, 0.85);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}

/* Abhisanskaran & Campus Traditions Strip */
.abhisanskaran-traditions-strip {
  margin-top: 4.5rem;
  padding-top: 3.5rem;
  border-top: 1px solid var(--border-light);
}

.traditions-strip-title {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 700;
  color: #3b3a6d;
  margin-bottom: 2rem;
}

.traditions-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.35rem;
}

.tradition-photo-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background-color: #ede7dc;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  height: 240px;
}

.tradition-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.tradition-photo-card:hover .tradition-img {
  transform: scale(1.04);
}

.tradition-caption {
  position: absolute;
  bottom: 8px;
  left: 8px;
  right: 8px;
  background-color: rgba(20, 28, 58, 0.85);
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}

@media (max-width: 1024px) {
  .facilities-layout-grid,
  .food-accom-grid,
  .culture-split-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .culture-pillars-strip {
    grid-template-columns: 1fr;
  }

  .c-pillar-box:nth-child(3) {
    grid-column: span 1;
  }

  .culture-photo-stack,
  .culture-photo-duo {
    grid-template-columns: 1fr;
  }

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

/* ==========================================================================
   Image Lightbox Modal (Expandable on Click)
   ========================================================================== */

.facility-photo-box,
.c-photo-item,
.c-photo-large,
.tradition-photo-card,
.facility-img,
.culture-img,
.tradition-img {
  cursor: zoom-in;
}

.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(10, 14, 30, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 1.5rem;
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-wrapper {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-modal.active .lightbox-wrapper {
  transform: scale(1);
}

.lightbox-img {
  max-width: 90vw;
  max-height: 78vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.lightbox-caption {
  margin-top: 1rem;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
  background: rgba(22, 30, 61, 0.85);
  padding: 0.5rem 1.25rem;
  border-radius: 20px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  max-width: 80vw;
}

.lightbox-close-btn {
  position: absolute;
  top: -2.75rem;
  right: -0.5rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.lightbox-close-btn:hover {
  background: var(--color-terracotta);
  border-color: var(--color-terracotta);
  transform: rotate(90deg);
}

@media (max-width: 640px) {
  .lightbox-close-btn {
    top: -3rem;
    right: 0;
  }
}

/* ==========================================================================
   Know Mumbai Page Specific Styles
   ========================================================================== */

/* Mumbai Stats Ribbon */
.mumbai-stats-ribbon {
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-light);
  padding: 2.25rem 0;
}

.mumbai-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.m-stat-card {
  display: flex;
  flex-direction: column;
  border-left: 3px solid var(--color-terracotta);
  padding-left: 1.25rem;
}

.m-stat-val {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-navy-dark);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.m-stat-label {
  font-size: 0.82rem;
  color: #5a667d;
  line-height: 1.45;
  font-weight: 500;
}

/* About Mumbai Section */
.about-mumbai-section {
  padding: 5.5rem 0;
  background-color: #faf7f2;
}

.about-mumbai-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: start;
}

.about-mumbai-title {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-navy-dark);
  margin-bottom: 1.5rem;
}

.about-mumbai-text p {
  font-size: 0.94rem;
  color: #4b5568;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.about-mumbai-text .lead-para {
  font-size: 1.05rem;
  font-weight: 500;
  color: #2b334d;
  line-height: 1.65;
}

.about-mumbai-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mumbai-pillar-card {
  background-color: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: 10px;
  padding: 1.4rem 1.35rem;
  display: flex;
  gap: 1.15rem;
  align-items: flex-start;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.02);
  transition: transform 0.25s ease;
}

.mumbai-pillar-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.pillar-icon-badge {
  font-size: 1.6rem;
  background-color: #f7f3eb;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pillar-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-navy-dark);
  margin-bottom: 0.35rem;
}

.pillar-text {
  font-size: 0.86rem;
  color: #5a667d;
  line-height: 1.5;
}

/* Must-Visit Places Section */
.must-visit-section {
  padding: 5.5rem 0;
  background-color: #ffffff;
}

.places-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.75rem;
}

.place-card {
  background-color: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.place-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.07);
}

.place-img-box {
  position: relative;
  height: 210px;
  background-color: #ede7dc;
  overflow: hidden;
  cursor: zoom-in;
}

.place-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

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

.place-cat-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: rgba(22, 30, 61, 0.88);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
  backdrop-filter: blur(4px);
  letter-spacing: 0.02em;
}

.place-card-body {
  padding: 1.65rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.place-title {
  font-family: var(--font-serif);
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--color-navy-dark);
  margin-bottom: 0.65rem;
  line-height: 1.35;
}

.place-desc {
  font-size: 0.88rem;
  color: #4b5568;
  line-height: 1.58;
  margin-bottom: 1.25rem;
  flex: 1;
}

.place-meta {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  border-top: 1px solid var(--border-light);
  padding-top: 0.85rem;
  font-size: 0.78rem;
  color: #647087;
  font-weight: 500;
}

/* What to Do / Experiences Section */
.what-to-do-section {
  padding: 5.5rem 0;
  background-color: #faf7f2;
  border-top: 1px solid var(--border-light);
}

.experiences-matrix-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.75rem;
}

.exp-card {
  background-color: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.exp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.07);
}

.exp-img-box {
  position: relative;
  height: 200px;
  background-color: #ede7dc;
  overflow: hidden;
  cursor: zoom-in;
}

.exp-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

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

.exp-number-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(135deg, var(--color-terracotta) 0%, #d48332 100%);
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.exp-card-body {
  padding: 1.65rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.exp-title {
  font-family: var(--font-serif);
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--color-navy-dark);
  margin-bottom: 0.65rem;
  line-height: 1.35;
}

.exp-desc {
  font-size: 0.89rem;
  color: #4b5568;
  line-height: 1.62;
  margin-bottom: 1.4rem;
  flex: 1;
}

.exp-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.exp-tag-list span {
  background-color: #f7f3eb;
  border: 1px solid #e2dacd;
  color: var(--color-navy-dark);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}

/* Survival Guide Card */
.mumbai-survival-guide-section {
  padding: 5rem 0 6.5rem;
  background-color: #ffffff;
}

.survival-guide-card {
  background: linear-gradient(135deg, #1b2346 0%, #293466 100%);
  color: #ffffff;
  border-radius: 14px;
  padding: 3.5rem 3rem;
  box-shadow: 0 8px 30px rgba(22, 30, 61, 0.16);
}

.survival-header {
  max-width: 800px;
  margin-bottom: 2.75rem;
}

.survival-header .detail-card-badge {
  color: #e59d48;
}

.survival-title {
  font-family: var(--font-serif);
  font-size: 2.15rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0.4rem 0 0.65rem;
}

.survival-subtitle {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.survival-tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.tip-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 1.75rem 1.5rem;
}

.tip-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.65rem;
}

.tip-text {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
}

.tip-text strong {
  color: #ffffff;
}

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

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

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

  .survival-tips-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .mumbai-stats-grid,
  .places-grid,
  .experiences-matrix-grid {
    grid-template-columns: 1fr;
  }

  .survival-guide-card {
    padding: 2.5rem 1.5rem;
  }
}

/* ==========================================================================
   Brochure Page Specific Styles
   ========================================================================== */

.brochure-showcase-section {
  padding: 6.5rem 0 5.5rem;
  background-color: #fcf9f4;
  border-bottom: 1px solid #eee8df;
}

.brochure-split-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 5rem;
  align-items: center;
}

.brochure-cover-box {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18);
  background-color: #ede7dc;
  cursor: zoom-in;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.brochure-cover-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.22);
}

.brochure-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brochure-desktop-tag {
  color: var(--color-terracotta);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 1.25rem;
}

.brochure-mobile-tag {
  display: none;
}

.brochure-hero-title {
  font-family: var(--font-serif);
  font-size: 2.65rem;
  font-weight: 700;
  color: var(--color-navy-dark);
  line-height: 1.22;
  margin-bottom: 1.25rem;
}

.brochure-hero-desc {
  font-size: 1.05rem;
  color: #55627a;
  line-height: 1.68;
  margin-bottom: 2.25rem;
  max-width: 620px;
}

.brochure-btn-group {
  display: flex;
  gap: 1.15rem;
  align-items: center;
  margin-bottom: 2.75rem;
}

.brochure-btn-group .btn {
  padding: 0.85rem 1.65rem;
  font-size: 0.92rem;
}

.brochure-btn-group .btn-outline {
  border: 1px solid #c9bfaf;
  color: #2b334d;
  background-color: transparent;
}

.brochure-btn-group .btn-outline:hover {
  background-color: #ffffff;
  border-color: var(--color-navy-dark);
}

.brochure-divider {
  border-top: 1px solid #e5ded3;
  margin-bottom: 2.25rem;
  width: 100%;
}

.brochure-meta-ribbon {
  display: flex;
  gap: 3.5rem;
  align-items: flex-start;
}

.b-meta-item {
  display: flex;
  flex-direction: column;
}

.b-meta-val {
  font-family: var(--font-serif);
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--color-navy-dark);
  margin-bottom: 0.2rem;
}

.b-meta-label {
  font-size: 0.8rem;
  color: #718096;
  font-weight: 500;
}

/* Table of Contents Section */
.brochure-toc-section {
  padding: 5.5rem 0;
  background-color: #ffffff;
}

.toc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.75rem;
}

.toc-card {
  background-color: #fbf9f5;
  border: 1px solid #ebe4d8;
  border-radius: 10px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.toc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  background-color: #ffffff;
}

.toc-chapter-num {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-terracotta);
  line-height: 1;
  margin-bottom: 0.85rem;
}

.toc-card-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-navy-dark);
  margin-bottom: 0.65rem;
  line-height: 1.35;
}

.toc-card-desc {
  font-size: 0.88rem;
  color: #55627a;
  line-height: 1.6;
}

/* Digital Preview Section */
.digital-preview-section {
  padding: 5rem 0 6.5rem;
  background-color: #faf7f2;
  border-top: 1px solid var(--border-light);
}

.digital-preview-box {
  background-color: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: 14px;
  padding: 3.5rem 3rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.digital-preview-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.digital-preview-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-navy-dark);
  margin-top: 0.35rem;
}

.digital-sheet-wrapper {
  background: #2a3352;
  border-radius: 10px;
  padding: 2.5rem;
  display: flex;
  justify-content: center;
}

.digital-sheet {
  background: #ffffff;
  width: 100%;
  max-width: 680px;
  min-height: 380px;
  border-radius: 6px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
  padding: 2.5rem 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sheet-page-top {
  display: flex;
  justify-content: space-between;
  border-bottom: 2px solid #141c3a;
  padding-bottom: 0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: #141c3a;
  letter-spacing: 0.04em;
}

.sheet-headline {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: #141c3a;
  margin: 1.75rem 0 0.85rem;
}

.sheet-para {
  font-size: 0.92rem;
  color: #4a5568;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.sheet-quick-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  background: #f7f4ed;
  padding: 1rem 1.25rem;
  border-radius: 6px;
}

.s-fact {
  font-size: 0.82rem;
  color: #2d3748;
}

.sheet-footer-line {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #e2e8f0;
  padding-top: 0.85rem;
  font-size: 0.72rem;
  color: #718096;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .brochure-split-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .brochure-cover-box {
    max-width: 380px;
    margin: 0 auto;
  }

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

@media (max-width: 640px) {
  .brochure-desktop-tag {
    display: none;
  }

  .brochure-mobile-tag {
    display: block;
    margin-bottom: 1rem;
  }

  .brochure-hero-title {
    font-size: 2.1rem;
  }

  .brochure-meta-ribbon {
    gap: 2rem;
  }

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

  .digital-preview-box {
    padding: 2rem 1.25rem;
  }

  .sheet-quick-facts {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Contact Page Specific Styles (Matching Exact Screenshot media_1788282498356)
   ========================================================================== */

.contact-page-body {
  background-color: #fbf9f5;
}

.contact-showcase-main {
  padding: 3.5rem 0 6rem;
}

.contact-page-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Section Tags & Headings */
.irc-sec-tag {
  color: #b35338;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.irc-sec-heading {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 700;
  color: #1f2937;
  letter-spacing: -0.01em;
  margin-bottom: 2.25rem;
}

/* Top Block: Faculty Cards Row */
.faculty-cards-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

.faculty-compact-card {
  background: #ffffff;
  border: 1px solid #e8e2d8;
  border-radius: 10px;
  padding: 1.75rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.75rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.faculty-compact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.faculty-avatar-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #ede8df;
  flex-shrink: 0;
  border: 3px solid #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.avatar-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.faculty-text-meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex-grow: 1;
}

.faculty-display-name {
  font-size: 1.28rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
}

.faculty-display-role {
  font-size: 0.88rem;
  font-weight: 600;
  color: #b35338;
  margin: 0 0 0.4rem 0;
  line-height: 1.35;
}

/* Faculty Action Links */
.faculty-quick-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.35rem;
}

.f-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #4b5563;
  background-color: #f6f2ea;
  border: 1px solid #e5ded2;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.f-link-btn:hover {
  background-color: #b35338;
  border-color: #b35338;
  color: #ffffff;
  transform: translateY(-1px);
}

.f-linkedin-btn:hover {
  background-color: #0077b5;
  border-color: #0077b5;
  color: #ffffff;
}

.f-email-btn:hover {
  background-color: #1e3a8a;
  border-color: #1e3a8a;
  color: #ffffff;
}

.f-icon {
  flex-shrink: 0;
}

/* Student Committee Section */
.student-committee-block {
  margin-top: 4.25rem;
}

.student-sec-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.student-sec-hint {
  font-size: 0.8rem;
  color: #8c857b;
  font-weight: 500;
}

.student-circles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.25rem 1.5rem;
  align-items: start;
  margin-top: 1.5rem;
}

.student-circle-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.student-avatar-wrap {
  width: 136px;
  height: 136px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #ede8df;
  border: 3px solid #ffffff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  margin-bottom: 0.85rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  display: block;
  cursor: pointer;
}

.student-avatar-wrap:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.student-circle-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Hover overlay on student portraits */
.avatar-hover-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 119, 181, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
  border-radius: 50%;
}

.student-avatar-wrap:hover .avatar-hover-overlay {
  opacity: 1;
}

.overlay-in-icon {
  transform: scale(0.85);
  transition: transform 0.2s ease;
}

.student-avatar-wrap:hover .overlay-in-icon {
  transform: scale(1.1);
}

.student-circle-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #23272f;
  line-height: 1.35;
  text-decoration: none;
  transition: color 0.2s ease;
}

.student-circle-name:hover {
  color: #b35338;
  text-decoration: underline;
}

/* PGPEx Subtitle Badge */
.pgpex-subtitle-badge {
  display: inline-block;
  background-color: #fcf1ed;
  color: #b35338;
  border: 1px solid #fed7aa;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 1px 8px;
  border-radius: 10px;
  margin-top: 0.35rem;
}

/* Contact & Location Section */
.contact-location-block {
  margin-top: 4.5rem;
}

.contact-location-split-box {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  border: 1px solid #e4ddd2;
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
  margin-top: 1.25rem;
}

.contact-details-col {
  padding: 2.75rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.contact-meta-row {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.c-meta-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: #8c857b;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.c-meta-val-link {
  font-size: 0.96rem;
  font-weight: 600;
  color: #1f2937;
  text-decoration: none;
  transition: color 0.2s ease;
}

.c-meta-val-link:hover {
  color: #b35338;
  text-decoration: underline;
}

.c-meta-val-text {
  font-size: 0.96rem;
  font-weight: 600;
  color: #1f2937;
  line-height: 1.45;
  margin: 0;
}

.contact-map-pane {
  background-color: #faf6ee;
  border-left: 1px solid #e4ddd2;
  position: relative;
  min-height: 350px;
  overflow: hidden;
}

.contact-map-pane iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
  display: block;
  border: 0;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .student-circles-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 1.5rem;
  }

  .faculty-cards-row {
    grid-template-columns: 1fr;
  }

  .contact-location-split-box {
    grid-template-columns: 1fr;
  }

  .contact-map-pane {
    border-left: none;
    border-top: 1px solid #e4ddd2;
    min-height: 220px;
  }
}

@media (max-width: 640px) {
  .irc-sec-heading {
    font-size: 2rem;
  }

  .student-circles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1rem;
  }

  .student-avatar-wrap {
    width: 120px;
    height: 120px;
  }

  .contact-details-col {
    padding: 2rem 1.5rem;
  }
}