:root {
      --maroon: #1B365D;
      --maroon-dark: #112544;
      --maroon-deep: #0B1930;
      --gold: #48CAE4;
      --gold-light: #7DD3FC;
      --gold-pale: #E0F7FA;
      --cream: #F8FAFC;
      --warm-white: #FFFFFF;
      --text-dark: #1E293B;
      --text-mid: #334155;
      --text-light: #64748B;
      --teal: #1A535C;
      --teal-light: #F1F5F9;
      --border: rgba(27, 54, 93, 0.12);
      --shadow-sm: 0 2px 8px rgba(27, 54, 93, 0.05);
      --shadow-md: 0 8px 24px rgba(27, 54, 93, 0.08);
      --shadow-lg: 0 16px 48px rgba(27, 54, 93, 0.12);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--cream);
      color: var(--text-dark);
      overflow-x: hidden;
    }

    /* ═══ TOPBAR ═══ */
    .topbar {
      background: var(--cream);
      color: var(--text-mid);
      font-size: 12px;
      padding: 6px 0;
      letter-spacing: 0.03em;
      border-bottom: 1px solid var(--border);
    }

    .topbar .tb-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 24px;
    }

    .topbar a {
      color: var(--maroon);
      text-decoration: none;
    }

    .topbar span {
      margin: 0 12px;
      opacity: 0.6;
    }

    .tb-right {
      display: flex;
      align-items: center;
      gap: 0;
      opacity: 1 !important;
    }

    /* Language Selector */
    .lang-selector {
      position: relative;
      display: inline-block;
    }

    .lang-btn {
      background: none;
      border: 1px solid var(--border);
      color: var(--maroon);
      font-size: 12px;
      padding: 3px 10px;
      border-radius: 4px;
      cursor: pointer;
      font-family: 'DM Sans', sans-serif;
      display: flex;
      align-items: center;
      gap: 4px;
      transition: all 0.2s;
    }

    .lang-btn:hover {
      background: rgba(27, 54, 93, 0.04);
      border-color: var(--maroon);
    }

    .lang-btn .arrow {
      font-size: 8px;
      opacity: 0.6;
      margin: 0 !important;
    }

    .lang-dropdown {
      display: none;
      position: absolute;
      top: 100%;
      right: 0;
      background: var(--warm-white);
      border: 1px solid var(--border);
      border-top: 2px solid var(--maroon);
      border-radius: 0 0 8px 8px;
      min-width: 160px;
      z-index: 999;
      box-shadow: var(--shadow-sm);
      padding: 4px 0;
    }

    .lang-dropdown.show {
      display: block;
    }

    .lang-dropdown a {
      display: block;
      padding: 8px 14px;
      font-size: 12px;
      color: var(--text-mid);
      text-decoration: none;
      transition: all 0.15s;
      margin: 0;
    }

    .lang-dropdown a:hover {
      background: rgba(27, 54, 93, 0.04);
      color: var(--maroon);
    }

    .tb-vt-btn,
    .tb-login-btn {
      font-weight: 500;
      transition: all 0.2s;
    }

    .tb-vt-btn:hover,
    .tb-login-btn:hover {
      color: var(--maroon-dark) !important;
    }

    /* Login Modal */
    .login-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.6);
      z-index: 9999;
      backdrop-filter: blur(6px);
      justify-content: center;
      align-items: center;
    }

    .login-overlay.show {
      display: flex;
    }

    .login-modal {
      background: white;
      border-radius: 16px;
      width: 420px;
      max-width: 90vw;
      padding: 40px 36px;
      position: relative;
      box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
      animation: modalIn 0.3s ease;
    }

    @keyframes modalIn {
      from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
      }

      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    .login-modal .close-modal {
      position: absolute;
      top: 14px;
      right: 14px;
      background: none;
      border: none;
      font-size: 22px;
      cursor: pointer;
      color: var(--text-light);
      width: 32px;
      height: 32px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s;
    }

    .login-modal .close-modal:hover {
      background: var(--cream);
      color: var(--maroon);
    }

    .login-modal h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 28px;
      color: var(--maroon-dark);
      margin-bottom: 6px;
    }

    .login-modal .login-subtitle {
      font-size: 13px;
      color: var(--text-light);
      margin-bottom: 24px;
    }

    .login-modal .login-tabs {
      display: flex;
      gap: 0;
      margin-bottom: 24px;
      border-bottom: 2px solid var(--border);
    }

    .login-modal .login-tab {
      flex: 1;
      padding: 10px;
      text-align: center;
      font-size: 13px;
      font-weight: 600;
      color: var(--text-light);
      cursor: pointer;
      background: none;
      border: none;
      font-family: 'DM Sans', sans-serif;
      transition: all 0.2s;
      border-bottom: 2px solid transparent;
      margin-bottom: -2px;
    }

    .login-modal .login-tab.active {
      color: var(--maroon);
      border-bottom-color: var(--maroon);
    }

    /* Virtual Tour Modal */
    .vt-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.85);
      z-index: 9999;
      justify-content: center;
      align-items: center;
    }

    .vt-overlay.show {
      display: flex;
    }

    .vt-modal {
      background: white;
      border-radius: 16px;
      width: 900px;
      max-width: 92vw;
      max-height: 85vh;
      overflow: hidden;
      position: relative;
      box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
      animation: modalIn 0.3s ease;
    }

    .vt-modal .close-modal {
      position: absolute;
      top: 14px;
      right: 14px;
      background: rgba(255, 255, 255, 0.9);
      border: none;
      font-size: 20px;
      cursor: pointer;
      color: var(--text-dark);
      width: 36px;
      height: 36px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 10;
      transition: all 0.2s;
    }

    .vt-modal .vt-header {
      background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
      padding: 24px 28px;
      color: white;
    }

    .vt-modal .vt-header h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 26px;
    }

    .vt-modal .vt-header p {
      font-size: 13px;
      opacity: 0.7;
      margin-top: 4px;
    }

    .vt-body {
      padding: 24px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      max-height: 60vh;
      overflow-y: auto;
    }

    .vt-spot {
      border-radius: 12px;
      overflow: hidden;
      cursor: pointer;
      transition: all 0.3s;
      border: 1px solid var(--border);
    }

    .vt-spot:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-md);
    }

    .vt-spot img {
      width: 100%;
      height: 140px;
      object-fit: cover;
    }

    .vt-spot .vt-spot-info {
      padding: 12px;
    }

    .vt-spot .vt-spot-info h5 {
      font-size: 14px;
      color: var(--maroon-dark);
      margin-bottom: 3px;
    }

    .vt-spot .vt-spot-info p {
      font-size: 11px;
      color: var(--text-light);
    }

    /* ═══ HEADER ═══ */
    header {
      background: var(--warm-white);
      border-bottom: 1px solid var(--border);
      position: relative;
      z-index: 100;
      box-shadow: var(--shadow-sm);
    }

    /* Nav sticks right below header */
    .header-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 20px;
      padding: 14px 24px;
    }

    .logo-emblem {
      width: 72px;
      height: 72px;
      flex-shrink: 0;
      background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 3px solid var(--gold);
      position: relative;
      box-shadow: 0 4px 16px rgba(123, 28, 42, 0.3);
    }

    .logo-emblem svg {
      width: 42px;
      height: 42px;
    }

    .logo-text {
      flex: 1;
    }

    .logo-text h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 21px;
      font-weight: 700;
      color: var(--maroon);
      line-height: 1.2;
      letter-spacing: 0.01em;
    }

    .logo-text p {
      font-size: 11.5px;
      color: var(--text-light);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-top: 2px;
    }

    .logo-text .est {
      font-size: 11px;
      color: var(--gold);
      font-weight: 500;
    }

    /* ═══ NAV ═══ */
    nav {
      background: var(--warm-white);
      position: sticky;
      top: 0;
      z-index: 99;
      border-bottom: 1px solid var(--border);
    }

    .nav-inner {
      max-width: 1200px;
      width: 100%;
      margin: 0 auto !important;
      display: flex !important;
      justify-content: center !important;
      align-items: center;
      padding: 0;
      height: 100%;
    }

    /* Top-level nav items */
    .nav-item {
      position: relative;
    }

    .nav-item>a,
    .nav-item>span {
      color: var(--text-dark);
      text-decoration: none;
      font-size: 13.5px;
      font-weight: 500;
      padding: 14px 15px;
      display: flex;
      align-items: center;
      gap: 5px;
      letter-spacing: 0.02em;
      transition: all 0.2s;
      cursor: pointer;
      white-space: nowrap;
      user-select: none;
    }

    .nav-item>a:hover,
    .nav-item>span:hover,
    .nav-item>a.active,
    .nav-item:hover>span {
      color: var(--maroon);
      background: rgba(27, 54, 93, 0.04);
    }

    .nav-item>a.active::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 15px;
      right: 15px;
      height: 2px;
      background: var(--maroon);
      border-radius: 2px 2px 0 0;
    }

    /* Dropdown arrow */
    .nav-item .arrow {
      font-size: 9px;
      opacity: 0.7;
      transition: transform 0.2s;
      display: inline-block;
    }

    .nav-item:hover .arrow {
      transform: rotate(180deg);
    }

    /* Dropdown panel */
    .dropdown {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background: var(--warm-white);
      border: 1px solid var(--border);
      border-top: 2px solid var(--maroon);
      min-width: 230px;
      border-radius: 0 0 8px 8px;
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
      z-index: 200;
      padding: 6px 0;
    }

    .nav-item:hover .dropdown {
      display: block;
    }

    .dropdown a {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 18px;
      color: var(--text-mid);
      text-decoration: none;
      font-size: 13px;
      transition: all 0.15s;
      border-bottom: 1px solid var(--border);
    }

    .dropdown a:last-child {
      border-bottom: none;
    }

    .dropdown a:hover {
      background: rgba(27, 54, 93, 0.03);
      color: var(--maroon);
      padding-left: 24px;
    }

    .dropdown a .di {
      font-size: 14px;
      width: 18px;
      text-align: center;
      flex-shrink: 0;
    }

    .dropdown .dd-header {
      padding: 8px 18px 4px;
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--text-light);
      font-weight: 600;
      border-bottom: 1px solid var(--border);
      margin-bottom: 4px;
    }

    /* Mega dropdown */
    .dropdown.mega {
      min-width: 480px;
      display: none;
      grid-template-columns: 1fr 1fr;
      gap: 0;
    }

    .nav-item:hover .dropdown.mega {
      display: grid;
    }

    .mega-col {
      padding: 10px 0;
    }

    .mega-col:first-child {
      border-right: 1px solid var(--border);
    }

    .nav-cta-wrap {
      margin-left: auto;
      display: flex;
      align-items: center;
    }

    .nav-cta {
      background: var(--maroon) !important;
      color: white !important;
      border-radius: 4px;
      font-weight: 600 !important;
      padding: 8px 18px !important;
      font-size: 13px !important;
      margin: 7px 0 !important;
      gap: 0 !important;
      white-space: nowrap;
    }

    .nav-cta:hover {
      background: var(--maroon-dark) !important;
    }

    /* ═══ SLIDER ═══ */
    .hero-slider {
      position: relative;
      width: 100%;
      height: 520px;
      overflow: hidden;
      background: var(--maroon-deep);
    }

    .slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 0.9s ease;
      display: flex;
      align-items: center;
    }

    .slide.active {
      opacity: 1;
      z-index: 1;
    }

    .slide-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
    }

    .slide-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, transparent 40%);
    }

    .slide-content {
      position: relative;
      z-index: 2;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 60px;
      width: 100%;
    }

    .slide-tag {
      display: inline-block;
      background: var(--gold);
      color: var(--maroon-deep);
      font-size: 11px;
      font-weight: 700;
      padding: 4px 14px;
      border-radius: 20px;
      text-transform: uppercase;
      letter-spacing: 0.09em;
      margin-bottom: 18px;
    }

    .slide-content h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 50px;
      font-weight: 700;
      color: white;
      line-height: 1.1;
      max-width: 620px;
      margin-bottom: 16px;
      text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
    }

    .slide-content h2 em {
      color: var(--gold-light);
      font-style: italic;
      font-weight: 300;
    }

    .slide-content p {
      font-size: 16px;
      color: rgba(255, 255, 255, 0.95);
      max-width: 520px;
      line-height: 1.7;
      margin-bottom: 28px;
      text-shadow: 1px 1px 6px rgba(0,0,0,0.8);
    }

    .slide-btns {
      display: flex;
      gap: 14px;
    }

    .slide-btn-primary {
      background: var(--maroon);
      color: white;
      padding: 13px 30px;
      border-radius: 4px;
      font-size: 13.5px;
      font-weight: 600;
      text-decoration: none;
      letter-spacing: 0.03em;
      transition: all 0.2s;
      border: 2px solid var(--maroon);
    }

    .slide-btn-primary:hover {
      background: var(--maroon-dark);
      transform: translateY(-1px);
    }

    .slide-btn-outline {
      background: transparent;
      color: rgba(255, 255, 255, 0.9);
      padding: 13px 30px;
      border-radius: 4px;
      font-size: 13.5px;
      font-weight: 500;
      text-decoration: none;
      letter-spacing: 0.03em;
      border: 1.5px solid rgba(255, 255, 255, 0.35);
      transition: all 0.2s;
    }

    .slide-btn-outline:hover {
      border-color: rgba(255, 255, 255, 0.75);
      background: rgba(255, 255, 255, 0.07);
    }

    /* Slider nav arrows */
    .slider-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10;
      background: rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: white;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      transition: all 0.2s;
      backdrop-filter: blur(4px);
    }

    .slider-arrow:hover {
      background: var(--gold);
      color: var(--maroon-deep);
      border-color: var(--gold);
    }

    .slider-prev {
      left: 20px;
    }

    .slider-next {
      right: 20px;
    }

    /* Dots */
    .slider-dots {
      position: absolute;
      bottom: 22px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 10;
      display: flex;
      gap: 10px;
      align-items: center;
    }

    .dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.35);
      cursor: pointer;
      transition: all 0.3s;
      border: none;
      padding: 0;
    }

    .dot.active {
      background: var(--gold);
      width: 28px;
      border-radius: 4px;
    }

    /* Slide counter */
    .slide-counter {
      position: absolute;
      bottom: 22px;
      right: 24px;
      z-index: 10;
      font-size: 12px;
      color: rgba(255, 255, 255, 0.5);
      font-family: 'Cormorant Garamond', serif;
      font-size: 16px;
    }

    .slide-counter span {
      color: var(--gold);
      font-weight: 700;
    }

    /* Slide thumbnail strip */
    .slide-thumbs {
      position: absolute;
      right: 24px;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .thumb {
      width: 60px;
      height: 44px;
      border-radius: 6px;
      cursor: pointer;
      overflow: hidden;
      border: 2px solid rgba(255, 255, 255, 0.2);
      transition: border-color 0.2s;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
    }

    .thumb.active {
      border-color: var(--gold);
    }

    .thumb:hover {
      border-color: rgba(255, 255, 255, 0.6);
    }

    /* ═══ HERO ═══ */
    .hero {
      background: linear-gradient(135deg, var(--maroon-deep) 0%, var(--maroon) 50%, #2563A8 100%);
      min-height: 580px;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        radial-gradient(ellipse 80% 60% at 70% 50%, rgba(59, 141, 214, 0.08) 0%, transparent 70%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      pointer-events: none;
    }

    .hero-deco {
      position: absolute;
      right: -60px;
      top: -60px;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      border: 80px solid rgba(59, 141, 214, 0.06);
      pointer-events: none;
    }

    .hero-deco2 {
      position: absolute;
      right: 100px;
      bottom: -100px;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      border: 50px solid rgba(59, 141, 214, 0.04);
      pointer-events: none;
    }

    .hero-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 80px 24px;
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .hero-content {}

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(59, 141, 214, 0.15);
      border: 1px solid rgba(59, 141, 214, 0.3);
      color: var(--gold-light);
      font-size: 11px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 6px 14px;
      border-radius: 20px;
      margin-bottom: 24px;
      font-weight: 500;
    }

    .hero-content h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 52px;
      font-weight: 700;
      color: white;
      line-height: 1.1;
      margin-bottom: 12px;
    }

    .hero-content h2 em {
      font-style: italic;
      color: var(--gold-light);
      font-weight: 300;
    }

    .hero-subtitle {
      font-size: 16px;
      color: rgba(255, 255, 255, 0.7);
      line-height: 1.7;
      margin-bottom: 32px;
    }

    .hero-btns {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .btn-primary {
      background: var(--maroon);
      color: white;
      padding: 14px 32px;
      border-radius: 4px;
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      display: inline-block;
      letter-spacing: 0.03em;
      transition: all 0.2s;
      border: 2px solid var(--maroon);
    }

    .btn-primary:hover {
      background: var(--maroon-dark);
      transform: translateY(-1px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    }

    .btn-outline {
      background: transparent;
      color: rgba(255, 255, 255, 0.9);
      padding: 14px 32px;
      border-radius: 4px;
      font-size: 14px;
      font-weight: 500;
      text-decoration: none;
      display: inline-block;
      border: 1.5px solid rgba(255, 255, 255, 0.3);
      transition: all 0.2s;
    }

    .btn-outline:hover {
      border-color: rgba(255, 255, 255, 0.7);
      background: rgba(255, 255, 255, 0.06);
    }

    .hero-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 44px;
    }

    .hero-stat {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 8px;
      padding: 18px 16px;
      text-align: center;
    }

    .hero-stat .num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 36px;
      font-weight: 700;
      color: var(--gold-light);
      line-height: 1;
    }

    .hero-stat .lbl {
      font-size: 11px;
      color: rgba(255, 255, 255, 0.55);
      text-transform: uppercase;
      letter-spacing: 0.07em;
      margin-top: 6px;
    }

    .hero-visual {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .hero-card {
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 12px;
      padding: 22px 24px;
      backdrop-filter: blur(10px);
    }

    .hero-card h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 18px;
      color: var(--gold-light);
      margin-bottom: 10px;
    }

    .hero-card p {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.65);
      line-height: 1.6;
    }

    .hero-card .tag {
      display: inline-block;
      background: rgba(59, 141, 214, 0.2);
      color: var(--gold-light);
      font-size: 10px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 3px 10px;
      border-radius: 12px;
      margin-right: 6px;
      margin-top: 10px;
    }

    /* ═══ MARQUEE ═══ */
    .marquee-bar {
      background: var(--gold);
      padding: 10px 0;
      overflow: hidden;
    }

    .marquee-inner {
      display: flex;
      gap: 60px;
      animation: marquee 30s linear infinite;
      white-space: nowrap;
    }

    .marquee-item {
      font-size: 12.5px;
      font-weight: 600;
      color: var(--maroon-deep);
      letter-spacing: 0.05em;
      text-transform: uppercase;
      flex-shrink: 0;
    }

    .marquee-item::before {
      content: '✦';
      margin-right: 12px;
      opacity: 0.6;
    }

    @keyframes marquee {
      from {
        transform: translateX(0);
      }

      to {
        transform: translateX(-50%);
      }
    }

    /* ═══ SECTIONS ═══ */
    .section {
      padding: 80px 0;
    }

    .section-alt {
      background: var(--warm-white);
    }

    .section-dark {
      background: var(--maroon-deep);
    }

    .section-teal {
      background: var(--teal);
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .section-header {
      text-align: center;
      margin-bottom: 56px;
    }

    .section-tag {
      display: inline-block;
      background: var(--gold-pale);
      color: var(--maroon);
      font-size: 11px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 5px 16px;
      border-radius: 20px;
      font-weight: 600;
      margin-bottom: 16px;
      border: 1px solid rgba(27, 79, 138, 0.15);
    }

    .section-header h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 42px;
      font-weight: 700;
      color: var(--maroon-dark);
      line-height: 1.15;
    }

    .section-header p {
      font-size: 16px;
      color: var(--text-light);
      max-width: 560px;
      margin: 14px auto 0;
      line-height: 1.7;
    }

    .section-divider {
      width: 60px;
      height: 3px;
      background: linear-gradient(90deg, var(--gold), var(--gold-light));
      margin: 16px auto 0;
      border-radius: 2px;
    }

    /* ═══ ABOUT ═══ */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }

    .about-image {
      position: relative;
    }

    .about-img-main {
      width: 100%;
      aspect-ratio: 4/3;
      background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dark) 100%);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      box-shadow: var(--shadow-lg);
    }

    .building-svg {
      width: 80%;
      opacity: 0.9;
    }

    .about-badge-float {
      position: absolute;
      bottom: -20px;
      right: -20px;
      background: var(--gold);
      color: var(--maroon-deep);
      padding: 20px 24px;
      border-radius: 10px;
      text-align: center;
      box-shadow: var(--shadow-md);
    }

    .about-badge-float .big {
      font-size: 36px;
      font-weight: 700;
      line-height: 1;
      font-family: 'Cormorant Garamond', serif;
    }

    .about-badge-float .sm {
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-top: 4px;
    }

    .about-content {}

    .about-content h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 38px;
      font-weight: 700;
      color: var(--maroon-dark);
      line-height: 1.2;
      margin-bottom: 20px;
    }

    .about-content h2 em {
      color: var(--gold);
      font-style: italic;
    }

    .about-content p {
      font-size: 15px;
      color: var(--text-light);
      line-height: 1.8;
      margin-bottom: 16px;
    }

    .about-features {
      list-style: none;
      margin-top: 28px;
    }

    .about-features li {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 12px 0;
      border-bottom: 1px solid var(--border);
      font-size: 14px;
      color: var(--text-mid);
    }

    .about-features li:last-child {
      border-bottom: none;
    }

    .feat-icon {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      background: var(--gold-pale);
      color: var(--maroon);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 16px;
    }

    /* ═══ PROGRAMS ═══ */
    .programs-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .prog-card {
      background: white;
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 32px 28px;
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow-sm);
    }

    .prog-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--maroon), var(--gold));
    }

    .prog-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }

    .prog-icon {
      width: 56px;
      height: 56px;
      border-radius: 12px;
      background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      font-size: 24px;
    }

    .prog-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-weight: 700;
      color: var(--maroon-dark);
      margin-bottom: 8px;
    }

    .prog-card .duration {
      font-size: 12px;
      color: var(--gold);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 14px;
    }

    .prog-card p {
      font-size: 13.5px;
      color: var(--text-light);
      line-height: 1.7;
    }

    .prog-card .seats {
      margin-top: 20px;
      padding-top: 16px;
      border-top: 1px solid var(--border);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .prog-card .seats span {
      font-size: 12.5px;
      color: var(--text-light);
    }

    .prog-card .seats strong {
      color: var(--maroon);
      font-size: 14px;
    }

    .learn-more {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--maroon);
      font-size: 13px;
      font-weight: 500;
      text-decoration: none;
      margin-top: 12px;
      transition: gap 0.2s;
    }

    .learn-more:hover {
      gap: 10px;
    }

    /* ═══ FACILITIES ═══ */
    .facilities-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-bottom: 20px;
    }

    .fac-card {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 12px;
      padding: 28px 22px;
      text-align: center;
      transition: all 0.3s;
    }

    .fac-card:hover {
      background: rgba(255, 255, 255, 0.1);
      transform: translateY(-3px);
    }

    .fac-icon {
      font-size: 36px;
      margin-bottom: 14px;
    }

    .fac-card h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 17px;
      color: var(--gold-light);
      margin-bottom: 8px;
    }

    .fac-card p {
      font-size: 12.5px;
      color: rgba(255, 255, 255, 0.55);
      line-height: 1.6;
    }

    /* ═══ DEPARTMENTS ═══ */
    .dept-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }

    .dept-item {
      background: white;
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 22px 18px;
      display: flex;
      align-items: center;
      gap: 14px;
      transition: all 0.2s;
      box-shadow: var(--shadow-sm);
    }

    .dept-item:hover {
      border-color: var(--maroon);
      box-shadow: 0 4px 20px rgba(27, 79, 138, 0.12);
    }

    .dept-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 28px;
      font-weight: 700;
      color: rgba(27, 79, 138, 0.12);
      line-height: 1;
      flex-shrink: 0;
    }

    .dept-info h4 {
      font-size: 13.5px;
      font-weight: 600;
      color: var(--text-dark);
      margin-bottom: 3px;
    }

    .dept-info p {
      font-size: 11.5px;
      color: var(--text-light);
    }

    /* ═══ FACULTY ═══ */
    .faculty-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    .faculty-card {
      background: white;
      border: 1px solid var(--border);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: all 0.3s;
    }

    .faculty-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }

    .faculty-avatar {
      height: 180px;
      background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Cormorant Garamond', serif;
      font-size: 52px;
      font-weight: 700;
      color: rgba(255, 255, 255, 0.4);
      position: relative;
    }

    .faculty-avatar .initials {
      font-size: 52px;
      color: rgba(255, 255, 255, 0.7);
      line-height: 1;
    }

    .faculty-info {
      padding: 20px;
    }

    .faculty-info h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 18px;
      font-weight: 700;
      color: var(--maroon-dark);
      margin-bottom: 4px;
    }

    .faculty-info .designation {
      font-size: 12.5px;
      color: var(--gold);
      font-weight: 500;
      margin-bottom: 8px;
    }

    .faculty-info .dept {
      font-size: 12px;
      color: var(--text-light);
    }

    .faculty-info .exp {
      margin-top: 12px;
      padding-top: 12px;
      border-top: 1px solid var(--border);
      font-size: 12px;
      color: var(--text-light);
    }

    .faculty-info .exp strong {
      color: var(--maroon);
    }

    /* ═══ ADMISSIONS ═══ */
    .admissions-wrapper {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: start;
    }

    .admission-steps {}

    .admission-steps h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 30px;
      color: var(--maroon-dark);
      margin-bottom: 32px;
    }

    .step {
      display: flex;
      gap: 20px;
      margin-bottom: 28px;
    }

    .step-num {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
      color: white;
      font-size: 16px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .step-content h4 {
      font-size: 15px;
      font-weight: 600;
      color: var(--text-dark);
      margin-bottom: 6px;
    }

    .step-content p {
      font-size: 13.5px;
      color: var(--text-light);
      line-height: 1.6;
    }

    .admission-form {
      background: white;
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 36px 32px;
      box-shadow: var(--shadow-md);
    }

    .admission-form h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 26px;
      color: var(--maroon-dark);
      margin-bottom: 24px;
    }

    .form-row {
      margin-bottom: 18px;
    }

    .form-row label {
      display: block;
      font-size: 12.5px;
      font-weight: 500;
      color: var(--text-mid);
      margin-bottom: 6px;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .form-row input,
    .form-row select,
    .form-row textarea {
      width: 100%;
      padding: 11px 14px;
      border: 1.5px solid var(--border);
      border-radius: 6px;
      font-size: 14px;
      font-family: 'DM Sans', sans-serif;
      color: var(--text-dark);
      background: var(--cream);
      transition: border-color 0.2s;
      outline: none;
    }

    .form-row input:focus,
    .form-row select:focus,
    .form-row textarea:focus {
      border-color: var(--maroon);
      background: white;
    }

    .form-grid-2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .btn-submit {
      width: 100%;
      padding: 14px;
      background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
      color: white;
      border: none;
      border-radius: 6px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      font-family: 'DM Sans', sans-serif;
      letter-spacing: 0.03em;
      margin-top: 8px;
      transition: all 0.2s;
    }

    .btn-submit:hover {
      opacity: 0.9;
      transform: translateY(-1px);
      box-shadow: 0 8px 24px rgba(27, 79, 138, 0.3);
    }

    /* ═══ NEWS ═══ */
    .news-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 24px;
    }

    .news-card {
      background: white;
      border: 1px solid var(--border);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: all 0.3s;
    }

    .news-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-md);
    }

    .news-img {
      height: 180px;
      background: linear-gradient(135deg, var(--maroon), var(--gold));
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .news-card.featured .news-img {
      height: 240px;
    }

    .news-img .cat-badge {
      position: absolute;
      top: 14px;
      left: 14px;
      background: var(--maroon);
      color: white;
      font-size: 11px;
      font-weight: 600;
      padding: 4px 12px;
      border-radius: 20px;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .news-body {
      padding: 22px;
    }

    .news-date {
      font-size: 11.5px;
      color: var(--text-light);
      margin-bottom: 8px;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .news-body h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 19px;
      font-weight: 700;
      color: var(--maroon-dark);
      line-height: 1.3;
      margin-bottom: 10px;
    }

    .news-body p {
      font-size: 13.5px;
      color: var(--text-light);
      line-height: 1.6;
    }

    /* ═══ TESTIMONIALS ═══ */
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .test-card {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 14px;
      padding: 32px 28px;
    }

    .test-stars {
      color: var(--gold-light);
      font-size: 14px;
      margin-bottom: 16px;
      letter-spacing: 3px;
    }

    .test-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: 18px;
      font-style: italic;
      color: rgba(255, 255, 255, 0.85);
      line-height: 1.6;
      margin-bottom: 24px;
    }

    .test-author {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .test-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--maroon);
      border: 2px solid var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      font-weight: 700;
      color: var(--gold-light);
      flex-shrink: 0;
    }

    .test-author h5 {
      font-size: 14px;
      color: white;
      margin-bottom: 3px;
    }

    .test-author p {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.5);
    }

    /* ═══ ACCREDITATION ═══ */
    .accred-strip {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 48px;
      flex-wrap: wrap;
    }

    .accred-item {
      text-align: center;
      opacity: 0.7;
      transition: opacity 0.2s;
    }

    .accred-item:hover {
      opacity: 1;
    }

    .accred-logo {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: white;
      border: 2px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 10px;
      font-weight: 700;
      color: var(--maroon);
      font-size: 13px;
      text-align: center;
      padding: 8px;
      line-height: 1.2;
    }

    .accred-item p {
      font-size: 11.5px;
      color: var(--text-light);
    }

    /* ═══ CONTACT ═══ */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 48px;
    }

    .contact-info {}

    .contact-info h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 32px;
      color: var(--maroon-dark);
      margin-bottom: 28px;
    }

    .contact-item {
      display: flex;
      gap: 16px;
      margin-bottom: 24px;
    }

    .contact-icon {
      width: 44px;
      height: 44px;
      border-radius: 10px;
      background: var(--gold-pale);
      color: var(--maroon);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      flex-shrink: 0;
    }

    .contact-item h4 {
      font-size: 13px;
      font-weight: 600;
      color: var(--text-mid);
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-bottom: 4px;
    }

    .contact-item p {
      font-size: 14px;
      color: var(--text-dark);
      line-height: 1.6;
    }

    .map-container {
      background: var(--gold-pale);
      border-radius: 14px;
      overflow: hidden;
      border: 1px solid var(--border);
      height: 380px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .map-placeholder {
      text-align: center;
      color: var(--maroon);
    }

    .map-placeholder .map-icon {
      font-size: 56px;
      margin-bottom: 16px;
    }

    .map-placeholder h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      color: var(--maroon);
      margin-bottom: 8px;
    }

    .map-placeholder p {
      font-size: 13.5px;
      color: var(--text-light);
    }

    /* ═══ FOOTER ═══ */
    footer {
      background: var(--warm-white);
      color: var(--text-mid);
    }

    .footer-main {
      padding: 64px 0 48px;
      border-bottom: 1px solid var(--border);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
    }

    .footer-brand {}

    .footer-logo-area {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 18px;
    }

    .footer-emblem {
      width: 54px;
      height: 54px;
      border-radius: 50%;
      background: var(--cream);
      border: 2px solid var(--maroon);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      color: var(--maroon);
    }

    .footer-logo-text h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 16px;
      color: var(--maroon-dark);
      line-height: 1.3;
    }

    .footer-logo-text p {
      font-size: 11px;
      color: var(--text-light);
      margin-top: 2px;
    }

    .footer-brand p {
      font-size: 13.5px;
      line-height: 1.7;
      margin-bottom: 20px;
    }

    .social-links {
      display: flex;
      gap: 10px;
    }

    .social-link {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      background: var(--cream);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-mid);
      text-decoration: none;
      font-size: 14px;
      font-weight: 700;
      transition: all 0.2s;
    }

    .social-link:hover {
      background: var(--maroon);
      color: white;
    }

    .footer-col h4 {
      color: var(--maroon-dark);
      font-size: 13.5px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 20px;
    }

    .footer-col ul {
      list-style: none;
    }

    .footer-col ul li {
      margin-bottom: 10px;
    }

    .footer-col ul li a {
      color: var(--text-mid);
      text-decoration: none;
      font-size: 13.5px;
      transition: color 0.2s;
    }

    .footer-col ul li a:hover {
      color: var(--maroon);
    }

    .footer-bottom {
      padding: 20px 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .footer-bottom p {
      font-size: 12.5px;
    }

    .footer-bottom a {
      color: var(--maroon);
      text-decoration: none;
    }

    /* ═══ FLOATING CTA ═══ */
    .floating-cta {
      position: fixed;
      bottom: 32px;
      right: 32px;
      z-index: 200;
      display: flex;
      flex-direction: column;
      gap: 10px;
      align-items: flex-end;
    }

    .float-btn {
      background: var(--maroon);
      color: white;
      border: none;
      padding: 12px 22px;
      border-radius: 28px;
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      font-family: 'DM Sans', sans-serif;
      box-shadow: 0 6px 24px rgba(27, 79, 138, 0.4);
      display: flex;
      align-items: center;
      gap: 8px;
      transition: all 0.2s;
      text-decoration: none;
    }

    .float-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 32px rgba(27, 79, 138, 0.5);
    }

    .float-btn.gold {
      background: var(--gold);
      color: var(--maroon-deep);
    }

    /* ═══ NOTICE BOARD ═══ */
    .notice-board {
      background: white;
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 28px 24px;
      box-shadow: var(--shadow-sm);
    }

    .notice-board h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      color: var(--maroon-dark);
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .notice-item {
      padding: 12px 0;
      border-bottom: 1px dashed var(--border);
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }

    .notice-item:last-child {
      border-bottom: none;
    }

    .notice-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--maroon);
      flex-shrink: 0;
      margin-top: 5px;
    }

    .notice-dot.gold {
      background: var(--gold);
    }

    .notice-text h5 {
      font-size: 13.5px;
      font-weight: 500;
      color: var(--text-dark);
      margin-bottom: 3px;
      line-height: 1.4;
    }

    .notice-text p {
      font-size: 11.5px;
      color: var(--text-light);
    }

    /* ═══ GALLERY GRID ═══ */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-template-rows: 200px 200px;
      gap: 14px;
    }

    .gallery-item {
      border-radius: 10px;
      overflow: hidden;
      background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
      /* gallery base */
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 36px;
      transition: all 0.3s;
      cursor: pointer;
      position: relative;
    }

    .gallery-item:hover {
      transform: scale(1.02);
      box-shadow: var(--shadow-md);
    }

    .gallery-item:nth-child(1) {
      grid-column: 1/3;
      background: linear-gradient(135deg, #0E2F5A, #1B4F8A);
    }

    .gallery-item:nth-child(2) {
      background: linear-gradient(135deg, #1B4060, #2a6090);
    }

    .gallery-item:nth-child(3) {
      background: linear-gradient(135deg, #14506B, #1E7E9E);
    }

    .gallery-item:nth-child(4) {
      background: linear-gradient(135deg, #1A3A6B, #2858A0);
    }

    .gallery-item:nth-child(5) {
      background: linear-gradient(135deg, #1B2D5A, #2A4580);
    }

    .gallery-item .gallery-label {
      position: absolute;
      bottom: 12px;
      left: 12px;
      background: rgba(0, 0, 0, 0.5);
      color: white;
      font-size: 11px;
      font-weight: 500;
      padding: 4px 10px;
      border-radius: 12px;
      backdrop-filter: blur(4px);
    }

    /* ═══ UTILITY ═══ */
    .highlight-gold {
      color: var(--gold);
    }

    .text-center {
      text-align: center;
    }

    .mt-4 {
      margin-top: 16px;
    }

    .mb-0 {
      margin-bottom: 0;
    }

    
/* Mobile Toggle Hidden by default */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--maroon);
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
}
.mobile-menu-toggle:hover {
  background: rgba(27, 54, 93, 0.05);
}

@media (max-width: 900px) {
      .hero-inner {
        grid-template-columns: 1fr;
      }

      .about-grid {
        grid-template-columns: 1fr;
      }

      .programs-grid {
        grid-template-columns: 1fr;
      }

      .facilities-grid {
        grid-template-columns: 1fr 1fr;
      }

      .dept-grid {
        grid-template-columns: 1fr 1fr;
      }

      .faculty-grid {
        grid-template-columns: 1fr 1fr;
      }

      .news-grid {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .testimonials-grid {
        grid-template-columns: 1fr;
      }

      .gallery-grid {
        grid-template-columns: 1fr 1fr;
      }

      .gallery-item:nth-child(1) {
        grid-column: 1/3;
      }

      

      .hero-content h2 {
        font-size: 34px;
      }

      .floating-cta {
        bottom: 16px;
        right: 16px;
      }
    
      /* ═══ MOBILE RESPONSIVE FIXES ═══ */
      /* Global Grid Fix for all inline-styled PHP pages */
      div[style*="display: grid"],
      div[style*="display:grid"],
      div[style*="grid-template-columns"] {
          grid-template-columns: 1fr !important;
          gap: 20px !important;
      }

      /* Fix topbar */
      .tb-inner {
          flex-direction: column;
          gap: 10px;
          text-align: center;
      }
      .tb-inner > span:first-child {
          display: none; /* Hide address on mobile topbar */
      }
      
      /* Fix Header */
      .header-inner {
          flex-wrap: wrap;
      }
      .logo-emblem {
          width: 50px !important;
          height: 50px !important;
      }
      .logo-emblem img {
          width: 32px !important;
          height: 32px !important;
      }
      .logo-text h1 {
          font-size: 16px !important;
      }
      .logo-text p, .logo-text .est {
          font-size: 10px !important;
      }
      .header-actions {
          display: none !important; /* Hide apply buttons on mobile header to save space */
      }
      .mobile-menu-toggle {
          display: block !important;
          margin-left: auto;
      }

      /* Mobile Navigation Drawer */
      nav#mobile-nav {
          display: block !important;
          position: fixed;
          top: 0;
          left: -300px;
          width: 280px;
          height: 100vh;
          background: white;
          z-index: 9999;
          box-shadow: 10px 0 30px rgba(0,0,0,0.1);
          overflow-y: auto;
          transition: left 0.3s ease;
          padding-top: 20px;
      }
      nav#mobile-nav.show {
          left: 0;
      }
      .nav-inner {
          flex-direction: column;
          align-items: flex-start !important;
          justify-content: flex-start !important;
          height: auto !important;
          padding: 20px !important;
      }
      .nav-item {
          width: 100%;
          border-bottom: 1px solid #f1f5f9;
      }
      .nav-item > a, .nav-item > span {
          width: 100%;
          justify-content: space-between;
          padding: 15px 0 !important;
      }
      
      /* Dropdowns as accordions */
      .nav-item:hover .dropdown {
          display: none; /* Disable hover on mobile */
      }
      .nav-item.open-mobile .dropdown {
          display: block; /* We would need JS for this, but for now we just show them static or let them click */
      }
      
      /* Actually, on mobile, let's just make dropdowns display relatively when parent is hovered/clicked */
      .nav-item:focus-within .dropdown,
      .nav-item:active .dropdown {
          display: block;
      }
      
      .dropdown {
          position: static !important;
          width: 100% !important;
          box-shadow: none !important;
          border: none !important;
          border-left: 2px solid var(--maroon) !important;
          border-radius: 0 !important;
          padding-left: 10px !important;
          display: none; /* Hidden by default */
      }
      .nav-item:hover .dropdown {
          display: block;
      }
      .dropdown.mega {
          display: none;
          grid-template-columns: 1fr !important;
      }
      .nav-item:hover .dropdown.mega {
          display: grid;
      }
      .mega-col:first-child {
          border-right: none !important;
          border-bottom: 1px solid #eee;
      }

}

/* ═══ FLOATING ACTIONS ═══ */
.floating-actions {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px;
  z-index: 9999;
}

.float-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  border-radius: 50px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.float-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
  color: white;
}

.call-btn {
  background: #1B365D; /* Maroon */
}

.call-btn:hover {
  background: #112544;
}

.apply-btn {
  background: #48CAE4; /* Gold */
  color: #0B1930;
}

.apply-btn:hover {
  background: #7DD3FC;
  color: #0B1930;
}

.float-btn .icon {
  font-size: 18px;
}