    /* ========== TAS-STYLE HEADER ========== */
    .tas-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Utility Bar */
    .tas-header__utility {
      background: #1A365E;
      padding: 0;
      transition: all 0.3s ease;
    }

    .tas-header__utility-inner {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 40px;
    }

    .tas-header__utility-left,
    .tas-header__utility-right {
      display: flex;
      align-items: center;
      gap: 0;
    }

    .tas-utility-link {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.5rem 1rem;
      font-size: 0.75rem;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.85);
      text-decoration: none;
      transition: all 0.2s ease;
      border: none;
      background: none;
      cursor: pointer;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .tas-utility-link:hover {
      color: #ffffff;
      background: rgba(255, 255, 255, 0.1);
    }

    .tas-utility-link i {
      font-size: 0.7rem;
    }

    .tas-chevron {
      font-size: 0.6rem;
      transition: transform 0.2s ease;
    }

    /* Utility Dropdown */
    .tas-utility-dropdown {
      position: relative;
    }

    .tas-utility-dropdown-menu {
      position: absolute;
      top: 100%;
      left: 0;
      min-width: 180px;
      background: #1A365E;
      border-top: 2px solid #1A365E;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      transition: all 0.3s ease;
      z-index: 100;
    }

    .tas-utility-dropdown:hover .tas-utility-dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .tas-utility-dropdown:hover .tas-chevron {
      transform: rotate(180deg);
    }

    .tas-utility-dropdown-menu a {
      display: block;
      padding: 0.75rem 1rem;
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.85);
      text-decoration: none;
      transition: all 0.2s ease;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .tas-utility-dropdown-menu a:last-child {
      border-bottom: none;
    }

    .tas-utility-dropdown-menu a:hover {
      background: rgba(255, 255, 255, 0.1);
      color: #ffffff;
      padding-left: 1.25rem;
    }

    /* Main Header - Transparent by default */
    .tas-header__main {
      background: transparent;
      backdrop-filter: none;
      box-shadow: none;
      transition: all 0.4s ease;
    }

    .tas-header__main-inner {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 80px;
      gap: 2rem;
    }

    /* Logo */
    .tas-header__logo {
      display: flex;
      align-items: center;
      gap: 0.875rem;
      text-decoration: none;
      flex-shrink: 0;
    }

    .tas-logo-img {
      height: 50px;
      width: auto;
      transition: height 0.3s ease;
    }

    .tas-logo-text {
      display: flex;
      flex-direction: column;
      line-height: 1.2;
    }

    .tas-logo-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: #1A365E;
      letter-spacing: 0.05em;
    }

    .tas-logo-tagline {
      font-size: 0.65rem;
      font-weight: 500;
      color: #6B7280;
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }

    /* Main Navigation */
    .tas-header__nav {
      display: flex;
      align-items: center;
      gap: 0;
      flex-grow: 1;
      justify-content: center;
    }

    .tas-nav-item {
      position: relative;
    }

    .tas-nav-link {
      display: flex;
      align-items: center;
      gap: 0.375rem;
      padding: 1.75rem 1.25rem;
      font-size: 0.9rem;
      font-weight: 500;
      color: #1A365E;
      text-decoration: none;
      transition: all 0.2s ease;
      position: relative;
    }

    .tas-nav-link::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 1.25rem;
      right: 1.25rem;
      height: 3px;
      background: #D61F31;
      transform: scaleX(0);
      transition: transform 0.3s ease;
    }

    .tas-nav-link:hover {
      color: #D61F31;
    }

    .tas-nav-link:hover::before,
    .tas-nav-dropdown:hover .tas-nav-link::before {
      transform: scaleX(1);
    }

    .tas-nav-chevron {
      font-size: 0.6rem;
      transition: transform 0.2s ease;
      color: #9CA3AF;
    }

    .tas-nav-dropdown:hover .tas-nav-chevron {
      transform: rotate(180deg);
      color: #D61F31;
    }

    /* Mega Menu */
    .tas-mega-menu {
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%) translateY(-10px);
      min-width: 700px;
      background: #ffffff;
      border-radius: 0 0 12px 12px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 100;
      border-top: 3px solid #D61F31;
    }

    .tas-nav-dropdown:hover .tas-mega-menu {
      opacity: 1;
      visibility: visible;
      transform: translateX(-50%) translateY(0);
    }

    .tas-mega-menu__inner {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      padding: 0;
    }

    .tas-mega-menu__column {
      padding: 2rem;
      border-right: 1px solid #f0f0f0;
    }

    .tas-mega-menu__column:last-child {
      border-right: none;
    }

    .tas-mega-menu__title {
      font-family: 'Playfair Display', serif;
      font-size: 0.9rem;
      font-weight: 600;
      color: #1A365E;
      margin-bottom: 1rem;
      padding-bottom: 0.5rem;
      border-bottom: 1px solid #e5e7eb;
    }

    .tas-mega-menu__link {
      display: block;
      padding: 0.5rem 0;
      font-size: 0.875rem;
      color: #4B5563;
      text-decoration: none;
      transition: all 0.2s ease;
    }

    .tas-mega-menu__link:hover {
      color: #D61F31;
      padding-left: 0.5rem;
    }

    /* Mega Menu Featured Card */
    .tas-mega-menu__featured {
      background: #f8f9fa;
      padding: 1.5rem;
    }

    .tas-mega-menu__card {
      border-radius: 8px;
      overflow: hidden;
      background: #ffffff;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    }

    .tas-mega-menu__card img {
      width: 100%;
      height: 120px;
      object-fit: cover;
    }

    .tas-mega-menu__card-content {
      padding: 1rem;
    }

    .tas-mega-menu__card-label {
      font-size: 0.65rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: #1A365E;
    }

    .tas-mega-menu__card-content h5 {
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      color: #1A365E;
      margin: 0.375rem 0 0.5rem;
    }

    .tas-mega-menu__card-content p {
      font-size: 0.8rem;
      color: #6B7280;
      margin: 0 0 0.75rem;
      line-height: 1.5;
    }

    .tas-mega-menu__card-link,
    .tas-mega-menu__card-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.375rem;
      font-size: 0.8rem;
      font-weight: 600;
      color: #D61F31;
      text-decoration: none;
      transition: gap 0.2s ease;
    }

    .tas-mega-menu__card-link:hover,
    .tas-mega-menu__card-btn:hover {
      gap: 0.625rem;
    }

    .tas-mega-menu__card--highlight {
      background: linear-gradient(135deg, #D61F31 0%, #b01828 100%);
      height: 100%;
      display: flex;
      align-items: center;
    }

    .tas-mega-menu__card--highlight .tas-mega-menu__card-content {
      padding: 1.5rem;
    }

    .tas-mega-menu__card--highlight .tas-mega-menu__card-label {
      color: rgba(255, 255, 255, 0.8);
    }

    .tas-mega-menu__card--highlight h5 {
      color: #ffffff;
      font-size: 1.25rem;
    }

    .tas-mega-menu__card--highlight p {
      color: rgba(255, 255, 255, 0.85);
    }

    .tas-mega-menu__card--highlight .tas-mega-menu__card-btn {
      background: #ffffff;
      color: #D61F31;
      padding: 0.625rem 1.25rem;
      border-radius: 50px;
      margin-top: 0.5rem;
    }

    .tas-mega-menu__card--highlight .tas-mega-menu__card-btn:hover {
      background: #f8f9fa;
    }

    /* Header Actions */
    .tas-header__actions {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      flex-shrink: 0;
    }

    .tas-header__btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.625rem 1.25rem;
      font-size: 0.8rem;
      font-weight: 600;
      text-decoration: none;
      border-radius: 50px;
      transition: all 0.3s ease;
    }

    .tas-header__btn--outline {
      color: #ffffff;
      border: none;
      background: linear-gradient(135deg, #1A365E 0%, #0f2340 100%);
      box-shadow: 0 4px 15px rgba(26, 54, 94, 0.3);
    }

    .tas-header__btn--outline:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(26, 54, 94, 0.4);
    }

    .tas-header__btn--outline i {
      color: #ffffff;
    }

    .tas-header__btn--primary {
      background: linear-gradient(135deg, #D61F31 0%, #b01828 100%);
      color: #ffffff;
      box-shadow: 0 4px 15px rgba(214, 31, 49, 0.3);
    }

    .tas-header__btn--primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(214, 31, 49, 0.4);
    }

    /* Mobile Toggle */
    .tas-header__mobile-toggle {
      display: none;
      width: 28px;
      height: 20px;
      position: relative;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0;
    }

    .tas-header__mobile-toggle span {
      position: absolute;
      left: 0;
      width: 100%;
      height: 2px;
      background: #1A365E;
      transition: all 0.3s ease;
      border-radius: 2px;
    }

    .tas-header__mobile-toggle span:nth-child(1) { top: 0; }
    .tas-header__mobile-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
    .tas-header__mobile-toggle span:nth-child(3) { bottom: 0; }

    .tas-header__mobile-toggle.active span:nth-child(1) {
      top: 50%;
      transform: translateY(-50%) rotate(45deg);
    }

    .tas-header__mobile-toggle.active span:nth-child(2) {
      opacity: 0;
    }

    .tas-header__mobile-toggle.active span:nth-child(3) {
      bottom: 50%;
      transform: translateY(50%) rotate(-45deg);
    }

    /* Search Overlay */
    .tas-search-overlay {
      position: fixed;
      inset: 0;
      background: rgba(26, 54, 94, 0.98);
      z-index: 2000;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: all 0.4s ease;
    }

    .tas-search-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    .tas-search-overlay__close {
      position: absolute;
      top: 2rem;
      right: 2rem;
      width: 50px;
      height: 50px;
      border: none;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      color: #ffffff;
      font-size: 1.25rem;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .tas-search-overlay__close:hover {
      background: rgba(255, 255, 255, 0.2);
      transform: rotate(90deg);
    }

    .tas-search-overlay__content {
      text-align: center;
      width: 90%;
      max-width: 600px;
    }

    .tas-search-overlay__content h3 {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      color: #ffffff;
      margin-bottom: 2rem;
    }

    .tas-search-overlay__input-wrap {
      position: relative;
      margin-bottom: 2rem;
    }

    .tas-search-overlay__input-wrap i {
      position: absolute;
      left: 1.5rem;
      top: 50%;
      transform: translateY(-50%);
      color: rgba(255, 255, 255, 0.5);
      font-size: 1.25rem;
    }

    .tas-search-overlay__input {
      width: 100%;
      padding: 1.25rem 1.5rem 1.25rem 3.5rem;
      font-size: 1.125rem;
      border: none;
      border-radius: 60px;
      background: rgba(255, 255, 255, 0.1);
      color: #ffffff;
      outline: none;
      transition: all 0.3s ease;
    }

    .tas-search-overlay__input::placeholder {
      color: rgba(255, 255, 255, 0.5);
    }

    .tas-search-overlay__input:focus {
      background: rgba(255, 255, 255, 0.15);
      box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.3);
    }

    .tas-search-overlay__quick {
      text-align: left;
    }

    .tas-search-overlay__quick span {
      display: block;
      font-size: 0.75rem;
      color: rgba(255, 255, 255, 0.6);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 1rem;
    }

    .tas-search-overlay__tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
    }

    .tas-search-tag {
      padding: 0.5rem 1rem;
      background: rgba(255, 255, 255, 0.1);
      color: #ffffff;
      font-size: 0.8rem;
      text-decoration: none;
      border-radius: 50px;
      transition: all 0.2s ease;
    }

    .tas-search-tag:hover {
      background: #1A365E;
    }

    /* Scrolled State - Solid background */
    .tas-header.scrolled .tas-header__utility {
      height: 0;
      padding: 0;
      overflow: hidden;
      opacity: 0;
    }

    .tas-header.scrolled .tas-header__main {
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(20px);
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    }

    .tas-header.scrolled .tas-header__main-inner {
      height: 70px;
    }

    .tas-header.scrolled .tas-logo-img {
      height: 42px;
    }

    .tas-header.scrolled .tas-nav-link {
      padding-top: 1.5rem;
      padding-bottom: 1.5rem;
    }

    /* Transparent state - adjust colors for visibility on hero */
    .tas-header:not(.scrolled) .tas-logo-name {
      color: #ffffff;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }

    .tas-header:not(.scrolled) .tas-logo-tagline {
      color: rgba(255, 255, 255, 0.85);
    }

    .tas-header:not(.scrolled) .tas-nav-link {
      color: #ffffff;
      text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    }

    .tas-header:not(.scrolled) .tas-nav-link:hover {
      color: #1A365E;
    }

    .tas-header:not(.scrolled) .tas-header__btn--outline {
      color: #ffffff;
      border: none;
      background: linear-gradient(135deg, #1A365E 0%, #0f2340 100%);
      box-shadow: 0 4px 15px rgba(26, 54, 94, 0.3);
    }

    .tas-header:not(.scrolled) .tas-header__btn--outline:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(26, 54, 94, 0.4);
    }

    .tas-header:not(.scrolled) .tas-header__mobile-toggle span {
      background: #ffffff;
    }

    /* Hide old header */
    .site-header {
      display: none !important;
    }

    /* Responsive Header */
    @media (max-width: 1200px) {
      .tas-header__nav {
        display: none;
      }

      .tas-mega-menu {
        min-width: auto;
      }

      .tas-header__mobile-toggle {
        display: block;
      }

      .tas-header__btn--outline span {
        display: none;
      }

      .tas-header__btn--outline {
        padding: 0.625rem;
      }
    }

    @media (max-width: 768px) {
      .tas-header__utility-inner {
        padding: 0 1rem;
      }

      .tas-header__utility-left {
        display: none;
      }

      .tas-header__main-inner {
        padding: 0 1rem;
        height: 70px;
      }

      .tas-logo-tagline {
        display: none;
      }

      .tas-logo-img {
        height: 40px;
      }

      .tas-header__btn--outline {
        display: none;
      }

      .tas-header__btn--primary {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
      }
    }

    /* Landing Modal */
    .landing-modal {
      position: fixed;
      inset: 0;
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(10, 25, 47, 0.9);
      backdrop-filter: blur(10px);
      opacity: 1;
      transition: opacity 0.4s ease;
    }
    .landing-modal.hidden {
      opacity: 0;
      pointer-events: none;
    }
    .modal-container {
      position: relative;
      width: 90%;
      max-width: 520px;
      background: white;
      border-radius: 1rem;
      overflow: hidden;
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
      animation: modalSlideIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }
    @keyframes modalSlideIn {
      from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
      }
      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }
    .modal-close {
      position: absolute;
      top: 0.75rem;
      right: 0.75rem;
      width: 32px;
      height: 32px;
      background: rgba(0, 0, 0, 0.5);
      border: none;
      border-radius: 50%;
      cursor: pointer;
      z-index: 10;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      color: white;
      transition: all 0.3s ease;
    }
    .modal-close:hover {
      background: var(--color-red, #C41E3A);
    }

    /* Modal Carousel */
    .modal-carousel-wrapper {
      position: relative;
      overflow: hidden;
    }
    .modal-carousel-track {
      display: flex;
      transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: grab;
      user-select: none;
    }
    .modal-carousel-track:active {
      cursor: grabbing;
    }
    .modal-carousel-track img {
      pointer-events: none;
      -webkit-user-drag: none;
    }
    .modal-carousel-slide {
      width: 100%;
      min-width: 100%;
      flex: 0 0 100%;
      overflow: hidden;
    }
    .modal-slide-image {
      position: relative;
      height: 240px;
      overflow: hidden;
    }
    .modal-slide-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
      transition: transform 0.6s ease;
    }
    .modal-carousel-slide:hover .modal-slide-image img {
      transform: scale(1.05);
    }
    .modal-slide-image::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 80px;
      background: linear-gradient(to top, white, transparent);
    }
    .modal-slide-content {
      padding: 1.5rem 2rem 1rem;
      text-align: center;
    }
    .modal-slide-badge {
      display: inline-block;
      padding: 0.4rem 0.875rem;
      background: var(--color-gold, #1A365E);
      color: white;
      font-size: 0.7rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      border-radius: 2rem;
      margin-bottom: 0.75rem;
    }
    .modal-slide-content h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      color: var(--color-navy, #0a192f);
      margin-bottom: 0.5rem;
      line-height: 1.3;
    }
    .modal-slide-content p {
      color: #666;
      margin-bottom: 1.25rem;
      line-height: 1.6;
      font-size: 0.9rem;
    }
    .modal-cta-group {
      display: flex;
      gap: 0.75rem;
      justify-content: center;
      flex-wrap: wrap;
    }
    .modal-cta {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.7rem 1.25rem;
      border-radius: 50px;
      font-weight: 600;
      font-size: 0.875rem;
      text-decoration: none;
      transition: all 0.3s ease;
      cursor: pointer;
    }
    .modal-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    }
    .modal-cta:active {
      transform: translateY(0);
    }
    .modal-cta-primary {
      background: var(--color-red, #C41E3A);
      color: white;
    }
    .modal-cta-primary:hover {
      background: #a01830;
      box-shadow: 0 4px 15px rgba(196, 30, 58, 0.4);
    }
    .modal-cta-secondary {
      background: var(--color-navy, #0a192f);
      color: white;
    }
    .modal-cta-secondary:hover {
      background: #1a2f4f;
      box-shadow: 0 4px 15px rgba(26, 54, 94, 0.4);
    }

    /* Carousel Dots */
    .modal-carousel-dots {
      display: flex;
      justify-content: center;
      gap: 0.5rem;
      padding: 1rem 0 1.25rem;
    }
    .modal-carousel-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #ddd;
      border: none;
      cursor: pointer;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .modal-carousel-dot:hover {
      background: #bbb;
      transform: scale(1.2);
    }
    .modal-carousel-dot.active {
      background: var(--color-red, #C41E3A);
      width: 28px;
      border-radius: 4px;
    }

    /* Carousel Navigation Arrows */
    .modal-carousel-nav {
      position: absolute;
      top: 120px;
      transform: translateY(-50%);
      width: 36px;
      height: 36px;
      background: rgba(255, 255, 255, 0.95);
      border: none;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.85rem;
      color: var(--color-navy, #1A365E);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      transition: all 0.3s ease;
      z-index: 10;
    }
    .modal-carousel-nav:hover {
      background: var(--color-red, #C41E3A);
      color: white;
      transform: translateY(-50%) scale(1.15);
      box-shadow: 0 6px 20px rgba(196, 30, 58, 0.4);
    }
    .modal-carousel-nav:active {
      transform: translateY(-50%) scale(0.95);
    }
    .modal-carousel-prev {
      left: 0.625rem;
    }
    .modal-carousel-next {
      right: 0.625rem;
    }

    /* Modal state management - use active class */
    .landing-modal {
      opacity: 0;
      pointer-events: none;
    }
    .landing-modal.active {
      opacity: 1;
      pointer-events: auto;
    }
    .landing-modal.hidden {
      opacity: 0;
      pointer-events: none;
    }

    /* ========== WHITE THEME OVERRIDES ========== */
    /* Make everything white/seamless background */
    body {
      background: #ffffff !important;
    }

    /* Hero Section - White overlay for seamless look */
    .hero {
      background: #ffffff;
    }
    .hero-overlay {
      background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%) !important;
    }
    .hero-media {
      opacity: 0.15;
    }
    .hero-content {
      color: var(--color-navy);
    }
    .hero-title {
      color: var(--color-navy) !important;
    }
    .hero-title .accent {
      color: var(--color-red) !important;
    }
    .hero-subtitle {
      color: var(--text-secondary) !important;
    }
    .hero-tag {
      color: var(--color-gold) !important;
    }
    .scroll-indicator {
      display: none;
    }

    /* All Sections - Clean white */
    .section,
    section {
      background: #ffffff !important;
    }
    .bg-white,
    .bg-off-white,
    .bg-light,
    .bg-dark,
    .bg-navy {
      background: #ffffff !important;
    }

    /* Section Headers */
    .section-tag {
      color: var(--color-gold) !important;
    }
    .section-title {
      color: var(--color-navy) !important;
    }
    .section-title .accent {
      color: var(--color-red) !important;
    }

    /* Feature Cards - Light border instead of shadows */
    .feature-card {
      background: #ffffff;
      border: 1px solid #f0f0f0;
      box-shadow: none;
    }
    .feature-card:hover {
      border-color: var(--color-navy);
    }
    .feature-icon {
      color: var(--color-navy);
    }

    /* ========== IMAGINE SECTION NIS STYLE ========== */
    .imagine-section-nis {
      background: #ffffff !important;
      position: relative;
      overflow: hidden;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0;
    }

    /* Decorative brush strokes */
    .imagine-section-nis::before {
      content: '';
      position: absolute;
      top: 0;
      left: -10%;
      width: 60%;
      height: 100%;
      background: linear-gradient(135deg, rgba(26,54,94,0.03) 0%, transparent 60%);
      pointer-events: none;
      z-index: 0;
    }

    .imagine-section-nis::after {
      content: '';
      position: absolute;
      bottom: -5%;
      right: -5%;
      width: 50%;
      height: 40%;
      background: radial-gradient(ellipse at bottom right, rgba(214,31,49,0.05) 0%, transparent 70%);
      pointer-events: none;
      z-index: 0;
    }

    /* Floating AWS Icons */
    .imagine-floating-icons {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      overflow: hidden;
    }

    .imagine-float-icon {
      position: absolute;
      opacity: 0.25;
      animation: imagineFloat 20s ease-in-out infinite;
      filter: saturate(0.7);
    }

    .imagine-float-icon img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .imagine-float-icon:nth-child(1) { width: 100px; top: 5%;  left: 2%;  animation-delay: 0s;    animation-duration: 24s; }
    .imagine-float-icon:nth-child(2) { width: 80px;  top: 12%; right: 4%; animation-delay: -4s;   animation-duration: 20s; }
    .imagine-float-icon:nth-child(3) { width: 70px;  top: 60%; left: 4%;  animation-delay: -8s;   animation-duration: 26s; }
    .imagine-float-icon:nth-child(4) { width: 90px;  top: 75%; right: 6%; animation-delay: -12s;  animation-duration: 22s; }
    .imagine-float-icon:nth-child(5) { width: 65px;  top: 35%; left: 1%;  animation-delay: -6s;   animation-duration: 28s; }
    .imagine-float-icon:nth-child(6) { width: 75px;  top: 85%; left: 8%;  animation-delay: -10s;  animation-duration: 25s; }
    .imagine-float-icon:nth-child(7) { width: 85px;  top: 8%;  right: 12%; animation-delay: -3s;  animation-duration: 21s; }
    .imagine-float-icon:nth-child(8) { width: 70px;  top: 50%; right: 2%; animation-delay: -16s;  animation-duration: 27s; }

    .imagine-float-icon:nth-child(odd) {
      animation-name: imagineFloatAlt;
    }

    @keyframes imagineFloat {
      0%, 100% { transform: translateY(0) rotate(0deg); }
      50%      { transform: translateY(-20px) rotate(5deg); }
    }

    @keyframes imagineFloatAlt {
      0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
      50%      { transform: translateY(-15px) rotate(-4deg) scale(1.05); }
    }

    /* ========== SHARED SECTION FLOATING ICONS ========== */
    .section-float-icons {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      overflow: hidden;
    }

    .section-float-icons .sf-icon {
      position: absolute;
      opacity: 0.18;
      filter: saturate(0.65);
    }

    .section-float-icons .sf-icon img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    /* 6-icon layout — positions & animations */
    .section-float-icons .sf-icon:nth-child(1) { width: 90px;  top: 6%;  left: 3%;   animation: imagineFloat    22s ease-in-out infinite 0s; }
    .section-float-icons .sf-icon:nth-child(2) { width: 75px;  top: 14%; right: 5%;  animation: imagineFloatAlt 19s ease-in-out infinite -3s; }
    .section-float-icons .sf-icon:nth-child(3) { width: 65px;  top: 55%; left: 2%;   animation: imagineFloat    25s ease-in-out infinite -7s; }
    .section-float-icons .sf-icon:nth-child(4) { width: 80px;  top: 70%; right: 4%;  animation: imagineFloatAlt 21s ease-in-out infinite -11s; }
    .section-float-icons .sf-icon:nth-child(5) { width: 60px;  top: 35%; right: 8%;  animation: imagineFloat    27s ease-in-out infinite -5s; }
    .section-float-icons .sf-icon:nth-child(6) { width: 70px;  top: 85%; left: 6%;   animation: imagineFloatAlt 23s ease-in-out infinite -14s; }

    /* Dark-bg variant — lighter icons */
    .section-float-icons--light .sf-icon {
      opacity: 0.10;
      filter: saturate(0.4) brightness(3);
    }

    @media (max-width: 768px) {
      .imagine-float-icon { transform: scale(0.6); }
      .section-float-icons .sf-icon { opacity: 0.12; transform: scale(0.65); }
      .section-float-icons--light .sf-icon { opacity: 0.06; }
    }

    /* Main Layout - Full Page 3 Columns */
    .imagine-layout {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      gap: 2.5rem;
      width: 100%;
      max-width: 1600px;
      margin: 0 auto;
      padding: 3rem 2rem;
      align-items: center;
      position: relative;
      z-index: 1;
      min-height: 100vh;
    }

    /* LEFT COLUMN - Text Content */
    .imagine-left {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding-right: 2rem;
    }

    .imagine-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(6rem, 12vw, 10rem);
      font-weight: 400;
      font-style: italic;
      color: var(--color-navy);
      line-height: 0.85;
      margin-bottom: 2rem;
      text-shadow: none;
      transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .imagine-title:hover {
      transform: translateX(10px);
    }

    .imagine-headline {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(1.6rem, 2.5vw, 2.2rem);
      font-weight: 700;
      color: var(--color-navy);
      line-height: 1.3;
      margin-bottom: 1.5rem;
      transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .imagine-text {
      font-size: 1.05rem;
      color: var(--color-navy);
      opacity: 0.9;
      line-height: 1.8;
      margin-bottom: 2rem;
      max-width: 450px;
      transition: opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .imagine-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      padding: 1.1rem 2.5rem;
      background: var(--color-navy);
      color: white;
      font-size: 1rem;
      font-weight: 600;
      border-radius: 50px;
      transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
                  background 0.4s cubic-bezier(0.23, 1, 0.32, 1),
                  box-shadow 0.5s cubic-bezier(0.23, 1, 0.32, 1);
      text-decoration: none;
      box-shadow: 0 6px 20px rgba(26,54,94,0.3);
      width: fit-content;
    }

    .imagine-btn:hover {
      background: #0f2440;
      transform: translateY(-5px) scale(1.02);
      box-shadow: 0 15px 40px rgba(26,54,94,0.45);
    }

    .imagine-btn:active {
      transform: translateY(-2px) scale(0.98);
    }

    .imagine-btn i {
      transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .imagine-btn:hover i {
      transform: translateX(6px);
    }

    /* CENTER COLUMN - Main Video Card */
    .imagine-center {
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 0;
    }

    /* Speech Bubble - Buttery Animation */
    .imagine-speech-bubble {
      position: absolute;
      top: -70px;
      left: 50%;
      transform: translateX(-50%) rotate(-2deg);
      background: #ffffff;
      padding: 1rem 1.5rem;
      min-width: 220px;
      text-align: center;
      z-index: 20;
      border-radius: 6px;
      box-shadow: 0 6px 25px rgba(0,0,0,0.12);
      animation: floatBubble 4s ease-in-out infinite;
      transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
                  box-shadow 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .imagine-speech-bubble:hover {
      transform: translateX(-50%) rotate(0deg) scale(1.05);
      box-shadow: 0 10px 35px rgba(0,0,0,0.18);
    }

    @keyframes floatBubble {
      0%, 100% { transform: translateX(-50%) rotate(-2deg) translateY(0); }
      50% { transform: translateX(-50%) rotate(-1deg) translateY(-8px); }
    }

    .imagine-speech-bubble::after {
      content: '';
      position: absolute;
      bottom: -12px;
      left: 50%;
      transform: translateX(-50%);
      width: 0;
      height: 0;
      border-left: 10px solid transparent;
      border-right: 10px solid transparent;
      border-top: 14px solid #ffffff;
    }

    .speech-text {
      font-size: 1rem;
      font-weight: 600;
      color: var(--color-navy);
      display: block;
      transition: opacity 0.4s cubic-bezier(0.23, 1, 0.32, 1),
                  transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    }

    /* Main Video Card - Smooth Buttery Animations */
    .imagine-main-card {
      position: relative;
      width: 400px;
      height: 560px;
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 30px 70px rgba(0,0,0,0.3);
      transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1),
                  box-shadow 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .imagine-main-card:hover {
      transform: translateY(-12px) scale(1.02);
      box-shadow: 0 50px 100px rgba(0,0,0,0.4);
    }

    .imagine-main-card video,
    .imagine-main-card .imagine-placeholder-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .imagine-main-card:hover video,
    .imagine-main-card:hover .imagine-placeholder-img {
      transform: scale(1.05);
    }

    /* Play/Pause Button — premium, bottom-right, show on hover */
    .main-play-btn {
      position: absolute;
      bottom: 5.5rem;
      right: 1rem;
      width: 44px;
      height: 44px;
      background: rgba(0, 0, 0, 0.45);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 5;
      opacity: 0;
      transform: scale(0.85);
      transition: opacity 0.35s ease, transform 0.35s ease, background 0.25s ease;
    }

    .imagine-main-card:hover .main-play-btn {
      opacity: 1;
      transform: scale(1);
    }

    .main-play-btn i {
      color: rgba(255, 255, 255, 0.9);
      font-size: 0.95rem;
      margin-left: 0;
      transition: color 0.2s ease;
    }

    .main-play-btn:hover {
      background: rgba(0, 0, 0, 0.65);
      transform: scale(1.08);
    }

    .main-play-btn:hover i {
      color: #fff;
    }

    /* Main Card Overlay */
    .main-card-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 2rem;
      background: linear-gradient(to top,
        rgba(0,0,0,0.85) 0%,
        rgba(0,0,0,0.4) 70%,
        transparent 100%);
      z-index: 2;
    }

    .main-card-name {
      font-size: 1.5rem;
      font-weight: 700;
      color: #ffffff;
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }

    .main-card-grade {
      font-size: 0.95rem;
      color: rgba(255,255,255,0.9);
      margin-top: 0.35rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .grade-dash {
      color: #D61F31;
      font-weight: bold;
      font-size: 1.3rem;
    }

    /* Progress Indicator */
    .imagine-progress {
      display: flex;
      gap: 12px;
      margin-top: 2rem;
      z-index: 10;
    }

    .imagine-progress .progress-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(26,54,94,0.3);
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .imagine-progress .progress-dot:hover {
      background: rgba(26,54,94,0.5);
    }

    .imagine-progress .progress-dot.active {
      background: var(--color-navy);
      transform: scale(1.3);
    }

    /* Navigation Arrows - Buttery Smooth */
    .imagine-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 60px;
      height: 60px;
      background: rgba(255,255,255,0.95);
      border: none;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 10;
      color: var(--color-navy);
      font-size: 1.5rem;
      transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
                  background 0.4s cubic-bezier(0.23, 1, 0.32, 1),
                  color 0.4s cubic-bezier(0.23, 1, 0.32, 1),
                  box-shadow 0.5s cubic-bezier(0.23, 1, 0.32, 1);
      box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    }

    .imagine-arrow:hover {
      background: var(--color-navy);
      color: #ffffff;
      transform: translateY(-50%) scale(1.15);
      box-shadow: 0 12px 40px rgba(26,54,94,0.35);
    }

    .imagine-arrow:active {
      transform: translateY(-50%) scale(0.95);
    }

    .imagine-arrow-prev {
      left: -70px;
    }

    .imagine-arrow-prev:hover {
      transform: translateY(-50%) scale(1.15) translateX(-5px);
    }

    .imagine-arrow-next {
      right: -70px;
    }

    .imagine-arrow-next:hover {
      transform: translateY(-50%) scale(1.15) translateX(5px);
    }

    /* RIGHT COLUMN - Statement + Preview Cards */
    .imagine-right {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      padding-left: 1rem;
    }

    .imagine-statement {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(1.5rem, 2.2vw, 2rem);
      font-weight: 700;
      color: var(--color-navy);
      line-height: 1.4;
      text-align: left;
      margin-bottom: 3rem;
      transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .imagine-statement .highlight {
      color: #D61F31;
      text-shadow: none;
      transition: color 0.4s ease;
    }

    /* Preview Cards Container */
    .imagine-previews {
      display: flex;
      gap: 1.5rem;
      justify-content: flex-start;
    }

    /* Preview Card - Buttery Smooth */
    .preview-card {
      position: relative;
      width: 200px;
      height: 300px;
      border-radius: 14px;
      overflow: hidden;
      cursor: pointer;
      box-shadow: 0 20px 50px rgba(0,0,0,0.25);
      transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1),
                  box-shadow 0.6s cubic-bezier(0.23, 1, 0.32, 1),
                  opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .preview-card:nth-child(2) {
      opacity: 0.7;
    }

    .preview-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg,
        transparent 50%,
        rgba(0,0,0,0.75) 100%);
      z-index: 1;
      transition: background 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .preview-card:hover::before {
      background: linear-gradient(180deg,
        transparent 30%,
        rgba(0,0,0,0.65) 100%);
    }

    .preview-card:hover {
      transform: translateY(-15px) scale(1.03);
      box-shadow: 0 35px 70px rgba(0,0,0,0.35);
    }

    .preview-card:nth-child(2):hover {
      opacity: 1;
    }

    .preview-card video,
    .preview-card .imagine-placeholder-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .preview-card:hover video,
    .preview-card:hover .imagine-placeholder-img {
      transform: scale(1.1);
    }

    .preview-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 1.5rem;
      z-index: 3;
      transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .preview-card:hover .preview-overlay {
      transform: translateY(-5px);
    }

    .preview-name {
      font-size: 1.2rem;
      font-weight: 700;
      color: #ffffff;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .preview-card:hover .preview-name {
      transform: translateY(-3px);
    }

    /* Responsive - Full Page */
    @media (max-width: 1400px) {
      .imagine-layout {
        gap: 3rem;
        padding: 3rem;
      }
      .imagine-main-card {
        width: 440px;
        height: 600px;
      }
      .imagine-arrow-prev {
        left: -70px;
      }
      .imagine-arrow-next {
        right: -70px;
      }
      .preview-card {
        width: 180px;
        height: 270px;
      }
    }

    @media (max-width: 1200px) {
      .imagine-layout {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        padding: 2rem;
      }
      .imagine-left {
        grid-column: 1;
        grid-row: 1;
        padding-right: 1rem;
      }
      .imagine-center {
        grid-column: 2;
        grid-row: 1;
        justify-content: center;
      }
      .imagine-right {
        display: none;
      }
      .imagine-arrow-prev {
        left: -60px;
      }
      .imagine-arrow-next {
        right: -60px;
      }
      .imagine-main-card {
        width: 400px;
        height: 560px;
      }
      .imagine-title {
        font-size: clamp(4rem, 10vw, 7rem);
      }
    }

    @media (max-width: 900px) {
      .imagine-section-nis {
        min-height: auto;
        padding: 3rem 0;
      }
      .imagine-layout {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        padding: 2rem;
        min-height: auto;
      }
      .imagine-left {
        text-align: center;
        padding: 0;
        grid-column: auto;
        grid-row: auto;
      }
      .imagine-text {
        display: none;
      }
      .imagine-btn {
        margin: 0 auto;
      }
      .imagine-center {
        grid-column: auto;
        grid-row: auto;
        justify-content: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
      }
      .imagine-speech-bubble {
        top: -60px;
      }
      .imagine-center {
        margin-top: 1.5rem;
      }
      .imagine-main-card {
        width: min(300px, 80vw);
        height: 420px;
        margin: 0 auto;
      }
      .imagine-arrow {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
      }
      .imagine-arrow-prev {
        left: -25px;
      }
      .imagine-arrow-next {
        right: -25px;
      }
      .imagine-title {
        font-size: clamp(3rem, 12vw, 4.5rem);
        margin-bottom: 1rem;
      }
      .imagine-headline {
        font-size: clamp(1.2rem, 4vw, 1.6rem);
      }
      .imagine-progress {
        margin-top: 1.5rem;
      }
      .main-play-btn {
        width: 40px;
        height: 40px;
        bottom: 5rem;
      }
    }

    @media (max-width: 480px) {
      .imagine-section-nis {
        min-height: auto;
        padding: 2rem 0;
      }
      .imagine-layout {
        padding: 1rem;
        gap: 1.5rem;
        min-height: auto;
      }
      .imagine-title {
        font-size: clamp(2.5rem, 14vw, 3.5rem);
        margin-bottom: 0.75rem;
      }
      .imagine-headline {
        font-size: 1.15rem;
      }
      .imagine-btn {
        padding: 0.9rem 2rem;
        font-size: 0.9rem;
      }
      .imagine-speech-bubble {
        top: -40px;
        min-width: 160px;
        padding: 0.6rem 0.85rem;
      }
      .speech-text {
        font-size: 0.8rem;
      }
      .imagine-main-card {
        width: min(260px, 85vw);
        height: 360px;
      }
      .main-play-btn {
        width: 36px;
        height: 36px;
        bottom: 4rem;
        right: 0.75rem;
      }
      .main-play-btn i {
        font-size: 0.85rem;
      }
      .imagine-arrow {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
      }
      .imagine-arrow-prev {
        left: -10px;
      }
      .imagine-arrow-next {
        right: -10px;
      }
      .imagine-float-icon {
        opacity: 0.15;
      }
    }

    /* Fast Facts */
    .fast-facts-section {
      background: linear-gradient(135deg, #1A365E 0%, #0f2744 100%) !important;
    }
    .fast-facts-title {
      color: white !important;
    }
    .fast-fact-card {
      background: transparent;
      border: none;
    }
    .fast-fact-number {
      color: white;
    }

    /* ========== STACKED CARDS SCROLL SECTION ========== */
    .stacked-cards-section {
      background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%) !important;
      min-height: 100vh;
      padding: 0;
      position: relative;
    }

    .stacked-cards-header {
      max-width: 1024px;
      margin: 0 auto;
      padding: 6rem 2rem 4rem;
      text-align: center;
      color: #1a365d;
    }

    .stacked-tagline {
      font-size: 0.875rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.3em;
      color: #D61F31;
      margin-bottom: 1.5rem;
    }

    .stacked-heading {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 400;
      color: #1a365d;
      line-height: 1.2;
      margin-bottom: 1.5rem;
    }

    .stacked-heading span {
      color: #D61F31;
      font-style: italic;
    }

    .stacked-subheading {
      font-size: 1.1rem;
      color: #64748b;
      max-width: 600px;
      margin: 0 auto;
      line-height: 1.7;
    }

    .stacked-cards-container {
      position: relative;
      padding-bottom: 15vh;
    }

    .stacked-card {
      position: sticky;
      top: 80px;
      width: 90%;
      max-width: 1100px;
      margin: 0 auto 2.5rem;
      background: #ffffff;
      border-radius: 20px;
      overflow: clip;
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 420px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
      transform-origin: center top;
      will-change: transform, opacity;
      transition: box-shadow 0.3s ease;
    }

    /* Fallback for browsers that don't support overflow: clip (Safari < 16) */
    @supports not (overflow: clip) {
      .stacked-card {
        overflow: visible;
      }
      .stacked-card-content {
        overflow: hidden;
      }
    }

    .stacked-card:hover {
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
    }

    /* Alternate card layout */
    .stacked-card:nth-child(even) {
      grid-template-columns: 1fr 1fr;
    }

    .stacked-card:nth-child(even) .stacked-card-image {
      order: -1;
    }

    .stacked-card-content {
      padding: 3rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .stacked-card-tagline {
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      color: #1A365E;
      margin-bottom: 1rem;
    }

    .stacked-card-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.75rem, 3vw, 2.5rem);
      font-weight: 600;
      color: #1A365E;
      margin-bottom: 1.25rem;
      line-height: 1.2;
    }

    .stacked-card-description {
      font-size: 1rem;
      color: #4a5568;
      line-height: 1.8;
      margin-bottom: 2rem;
    }

    .stacked-card-stats {
      display: flex;
      gap: 3rem;
      padding-top: 1.5rem;
      border-top: 1px solid #e2e8f0;
    }

    .stacked-stat {
      display: flex;
      flex-direction: column;
    }

    .stacked-stat-number {
      font-family: 'Playfair Display', serif;
      font-size: 2.5rem;
      font-weight: 700;
      color: #D61F31;
      line-height: 1;
    }

    .stacked-stat-label {
      font-size: 0.85rem;
      color: #64748b;
      margin-top: 0.5rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .stacked-card-image {
      position: relative;
      overflow: hidden;
      background: linear-gradient(135deg, #1a365e 0%, #2d4a7c 50%, #1e3a5f 100%);
    }

    /* Card-specific gradient backgrounds */
    .stacked-card[data-index="0"] .stacked-card-image {
      background: linear-gradient(135deg, #1a365e 0%, #2563eb 50%, #1e40af 100%);
    }
    .stacked-card[data-index="1"] .stacked-card-image {
      background: linear-gradient(135deg, #7c2d12 0%, #c2410c 50%, #ea580c 100%);
    }
    .stacked-card[data-index="2"] .stacked-card-image {
      background: linear-gradient(135deg, #065f46 0%, #059669 50%, #10b981 100%);
    }
    .stacked-card[data-index="3"] .stacked-card-image {
      background: linear-gradient(135deg, #581c87 0%, #7c3aed 50%, #8b5cf6 100%);
    }

    .stacked-card-icon {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 2;
    }

    .stacked-card-icon svg {
      width: 120px;
      height: 120px;
      color: rgba(255, 255, 255, 0.9);
      filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
    }

    .stacked-card-pattern {
      position: absolute;
      inset: 0;
      opacity: 0.1;
      background-image:
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.15) 0%, transparent 30%);
    }

    .stacked-card:hover .stacked-card-icon svg {
      transform: scale(1.1);
      transition: transform 0.4s ease;
    }

    .stacked-card-image-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(26, 54, 94, 0.1) 0%, rgba(26, 54, 94, 0.3) 100%);
      pointer-events: none;
    }

    /* Card specific accent colors */
    .stacked-card[data-index="0"] .stacked-card-tagline { color: #D61F31; }
    .stacked-card[data-index="1"] .stacked-card-tagline { color: #1A365E; }
    .stacked-card[data-index="2"] .stacked-card-tagline { color: #5BC0BE; }
    .stacked-card[data-index="3"] .stacked-card-tagline { color: #9B8BB8; }

    .stacked-card[data-index="0"] .stacked-stat-number { color: #D61F31; }
    .stacked-card[data-index="1"] .stacked-stat-number { color: #1A365E; }
    .stacked-card[data-index="2"] .stacked-stat-number { color: #5BC0BE; }
    .stacked-card[data-index="3"] .stacked-stat-number { color: #9B8BB8; }

    /* Responsive - Tablet */
    @media (max-width: 900px) {
      .stacked-cards-header {
        padding: 4rem 1.5rem 3rem;
      }

      .stacked-cards-container {
        padding-bottom: 10vh;
      }

      .stacked-card,
      .stacked-card:nth-child(even) {
        grid-template-columns: 1fr;
        min-height: auto;
        width: 92%;
        top: 60px;
        margin-bottom: 2rem;
      }

      .stacked-card:nth-child(even) .stacked-card-image {
        order: 0;
      }

      .stacked-card-image {
        height: 200px;
      }

      .stacked-card-content {
        padding: 2rem;
      }

      .stacked-card-stats {
        gap: 2rem;
      }

      .stacked-stat-number {
        font-size: 2rem;
      }
    }

    /* Responsive - Mobile */
    @media (max-width: 640px) {
      .stacked-cards-header {
        padding: 3rem 1.25rem 2rem;
      }

      .stacked-subheading {
        font-size: 0.95rem;
      }

      .stacked-cards-container {
        padding-bottom: 8vh;
      }

      .stacked-card,
      .stacked-card:nth-child(even) {
        width: 92%;
        top: 50px;
        margin-bottom: 1.5rem;
        border-radius: 16px;
      }

      .stacked-card-content {
        padding: 1.5rem;
      }

      .stacked-card-image {
        height: 170px;
      }

      .stacked-card-icon svg {
        width: 64px;
        height: 64px;
      }

      .stacked-card-description {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1.25rem;
      }

      .stacked-card-stats {
        gap: 1.5rem;
      }

      .stacked-stat-number {
        font-size: 1.75rem;
      }
    }

    /* Responsive - Small mobile */
    @media (max-width: 400px) {
      .stacked-cards-header {
        padding: 2.5rem 1rem 1.5rem;
      }

      .stacked-card,
      .stacked-card:nth-child(even) {
        width: 95%;
        top: 40px;
        margin-bottom: 1.25rem;
        border-radius: 12px;
      }

      .stacked-card-content {
        padding: 1.25rem;
      }

      .stacked-card-image {
        height: 140px;
      }

      .stacked-card-icon svg {
        width: 50px;
        height: 50px;
      }

      .stacked-card-title {
        font-size: 1.35rem;
      }

      .stacked-card-description {
        font-size: 0.85rem;
      }

      .stacked-stat-number {
        font-size: 1.5rem;
      }
    }

    /* Programs/Image Cards */
    .image-card-overlay {
      background: linear-gradient(to top, rgba(26, 54, 94, 0.9), transparent) !important;
    }

    /* Gallery/Marquee */
    .marquee {
      background: #ffffff !important;
    }
    .gallery-item {
      border-radius: 12px;
      overflow: hidden;
    }

    /* Testimonial */
    .testimonial {
      background: #ffffff;
      border: 1px solid #f0f0f0;
    }
    .testimonial-quote {
      color: var(--color-navy);
    }

    /* CTA Section - Keep branded but lighter */
    #admissions.section-lg.bg-dark {
      background: linear-gradient(135deg, var(--color-navy) 0%, #2a4a7a 100%) !important;
    }

    /* Footer - Keep dark for contrast */
    .footer {
      background: var(--color-navy) !important;
    }

    /* Buttons on white background */
    .btn-outline {
      border-color: var(--color-navy) !important;
      color: var(--color-navy) !important;
    }
    .btn-outline:hover {
      background: var(--color-navy) !important;
      color: white !important;
    }

    /* Header - Clean white */
    .site-header {
      background: rgba(255,255,255,0.98) !important;
      backdrop-filter: blur(10px);
    }
    .site-header.scrolled {
      box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    }
    .nav-link {
      color: var(--color-navy) !important;
    }
    .logo-text {
      color: var(--color-navy) !important;
    }

    /* Hide scroll progress for cleaner look */
    .scroll-progress {
      display: none;
    }

    /* Chatbot */
    .chatbot-toggle {
      background: var(--color-navy);
    }

    /* ========== TAS STYLE HERO ========== */
    .tas-hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      background: linear-gradient(135deg, #0f1f33 0%, #1A365E 50%, #0f1f33 100%);
    }
    .tas-hero-media {
      position: absolute;
      inset: 0;
      z-index: 0;
    }
    .tas-hero-media video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 1; /* Full opacity for clear video */
    }
    .tas-hero-overlay {
      position: absolute;
      inset: 0;
      /* Top: dark for menu visibility, rest is transparent */
      background:
        linear-gradient(to bottom,
          rgba(15,31,51,0.5) 0%,      /* Dark at top for nav visibility */
          rgba(15,31,51,0.15) 15%,    /* Fade to light */
          transparent 25%,             /* Clear - video visible */
          transparent 100%             /* Transparent at bottom - divider will handle transition */
        );
      z-index: 1;
    }
    .tas-hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      max-width: 900px;
      padding: 2rem;
    }
    .tas-hero-logo {
      width: 120px;
      height: auto;
      margin: 0 auto 2rem;
      filter: drop-shadow(0 4px 20px rgba(0,0,0,0.3));
      animation: logoFloat 3s ease-in-out infinite;
    }
    @keyframes logoFloat {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-8px); }
    }
    .tas-hero-tagline {
      font-size: 1.5rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      color: #ffffff;
      margin-bottom: 1.5rem;
      text-shadow: 0 2px 15px rgba(0,0,0,0.5);
      background: linear-gradient(135deg, #D61F31 0%, #1A365E 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      padding: 0.5rem 1.5rem;
      border: 2px solid #1A365E;
      border-radius: 50px;
      display: inline-block;
      position: relative;
      animation: taglinePulse 2s ease-in-out infinite;
    }
    @keyframes taglinePulse {
      0%, 100% { box-shadow: 0 0 20px rgba(201, 162, 39, 0.3); }
      50% { box-shadow: 0 0 30px rgba(201, 162, 39, 0.6); }
    }
    .tas-hero-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(3rem, 8vw, 5.5rem);
      font-weight: 700;
      color: #ffffff;
      line-height: 1.1;
      margin-bottom: 1.5rem;
      text-shadow: 0 4px 30px rgba(0,0,0,0.4);
    }
    .tas-hero-title span {
      color: #D61F31;
      display: inline-block;
      position: relative;
    }
    .tas-hero-title span::after {
      content: '';
      position: absolute;
      bottom: 0.1em;
      left: 0;
      right: 0;
      height: 4px;
      /* background: #1A365E; */
      border-radius: 2px;
    }
    .tas-hero-subtitle {
      font-size: 1.25rem;
      line-height: 1.9;
      color: rgba(255,255,255,0.9);
      max-width: 700px;
      margin: 0 auto 3rem;
      text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    }
    .tas-hero-cta {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }
    .tas-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 1.1rem 2.5rem;
      font-size: 1rem;
      font-weight: 600;
      border-radius: 50px;
      text-decoration: none;
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }
    .tas-btn-primary {
      background: linear-gradient(135deg, #D61F31 0%, #b01828 100%);
      color: white;
      box-shadow: 0 4px 20px rgba(214, 31, 49, 0.4);
    }
    .tas-btn-primary:hover {
      background: linear-gradient(135deg, #e02a3c 0%, #c01830 100%);
      transform: translateY(-3px);
      box-shadow: 0 8px 30px rgba(214, 31, 49, 0.5);
    }
    .tas-btn-outline {
      background: transparent;
      color: #ffffff;
      border: 2px solid rgba(255,255,255,0.5);
    }
    .tas-btn-outline:hover {
      background: rgba(255,255,255,0.1);
      border-color: #ffffff;
      transform: translateY(-3px);
    }
    .tas-scroll-hint {
      position: absolute;
      bottom: 3rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      text-align: center;
    }
    .tas-scroll-hint span {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: rgba(255,255,255,0.6);
      display: block;
      margin-bottom: 0.75rem;
    }
    .tas-scroll-line {
      width: 2px;
      height: 50px;
      background: linear-gradient(to bottom, rgba(255,255,255,0.8), transparent);
      margin: 0 auto;
      animation: scrollPulse 2s ease-in-out infinite;
    }
    @keyframes scrollPulse {
      0%, 100% { opacity: 0.4; height: 50px; }
      50% { opacity: 1; height: 60px; }
    }

    /* TAS Hero Responsive */
    @media (max-width: 768px) {
      .tas-hero {
        min-height: 100vh;
      }
      .tas-hero-content {
        padding: 1.5rem;
      }
      .tas-hero-subtitle {
        font-size: 1.05rem;
        max-width: 100%;
        margin-bottom: 2rem;
      }
      .tas-hero-tagline {
        font-size: 1.1rem;
        padding: 0.4rem 1rem;
        letter-spacing: 0.1em;
      }
      .tas-btn {
        padding: 0.9rem 1.75rem;
        font-size: 0.875rem;
      }
      .tas-hero-logo {
        width: 80px;
        margin-bottom: 1.5rem;
      }
      .tas-scroll-hint {
        bottom: 1.5rem;
      }
    }

    @media (max-width: 480px) {
      .tas-hero-content {
        padding: 1rem;
      }
      .tas-hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.7;
      }
      .tas-hero-tagline {
        font-size: 0.9rem;
      }
      .tas-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
      }
      .tas-hero-cta {
        flex-direction: column;
        align-items: center;
      }
    }

    /* ========== ANIMATED SVG BACKGROUND ========== */
    .animated-bg {
      position: absolute;
      inset: 0;
      overflow: hidden;
      pointer-events: none;
      z-index: 0;
    }

    .animated-bg-icon {
      position: absolute;
      opacity: 0.25;
      animation: floatIcon 20s ease-in-out infinite;
      filter: saturate(0.7);
    }

    .animated-bg-icon img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      mix-blend-mode: multiply;
    }

    .animated-bg-icon:nth-child(1) { width: 120px; top: 8%; left: 3%; animation-delay: 0s; animation-duration: 25s; }
    .animated-bg-icon:nth-child(2) { width: 100px; top: 15%; right: 8%; animation-delay: -5s; animation-duration: 22s; }
    .animated-bg-icon:nth-child(3) { width: 140px; top: 45%; left: 5%; animation-delay: -10s; animation-duration: 28s; }
    .animated-bg-icon:nth-child(4) { width: 110px; top: 65%; right: 3%; animation-delay: -15s; animation-duration: 24s; }
    .animated-bg-icon:nth-child(5) { width: 90px; top: 28%; left: 12%; animation-delay: -8s; animation-duration: 20s; }
    .animated-bg-icon:nth-child(6) { width: 130px; top: 78%; left: 2%; animation-delay: -12s; animation-duration: 26s; }
    .animated-bg-icon:nth-child(7) { width: 85px; top: 12%; right: 2%; animation-delay: -3s; animation-duration: 23s; }
    .animated-bg-icon:nth-child(8) { width: 115px; top: 55%; right: 5%; animation-delay: -18s; animation-duration: 27s; }
    .animated-bg-icon:nth-child(9) { width: 95px; top: 38%; left: 1%; animation-delay: -7s; animation-duration: 21s; }
    .animated-bg-icon:nth-child(10) { width: 125px; top: 88%; right: 10%; animation-delay: -14s; animation-duration: 29s; }

    @keyframes floatIcon {
      0%, 100% {
        transform: translateY(0) rotate(0deg);
      }
      25% {
        transform: translateY(-30px) rotate(8deg);
      }
      50% {
        transform: translateY(-15px) rotate(-5deg);
      }
      75% {
        transform: translateY(-40px) rotate(5deg);
      }
    }

    /* Alternate animation for variety */
    .animated-bg-icon:nth-child(odd) {
      animation-name: floatIconAlt;
    }

    @keyframes floatIconAlt {
      0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
      }
      33% {
        transform: translateY(-25px) rotate(-8deg) scale(1.08);
      }
      66% {
        transform: translateY(-45px) rotate(8deg) scale(0.92);
      }
    }

    /* ========== TAS STYLE VALUES SECTION ========== */
    .tas-values-section {
      padding: 8rem 2rem;
      background: #ffffff;
      position: relative;
      overflow: hidden;
    }
    .tas-values-container {
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }
    .tas-values-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: start;
    }
    @media (max-width: 1024px) {
      .tas-values-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
      }
    }
    .tas-values-left {
      position: relative;
      height: 450px;
      overflow: hidden;
    }
    .tas-values-right {
      position: sticky;
      top: 100px;
      height: 450px;
      width: 100%;
      max-width: 100%;
      margin-left: auto;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(26, 54, 94, 0.15);
      background: #f0f0f0;
    }
    @media (max-width: 1024px) {
      .tas-values-left {
        height: auto;
        overflow: visible;
      }
      .tas-values-right {
        position: relative;
        top: 0;
        height: 450px;
        max-width: 100%;
        order: -1;
      }
    }
    @media (max-width: 768px) {
      .tas-values-section {
        padding: 5rem 1.5rem;
      }
      .tas-values-right {
        height: 350px;
      }
    }
    @media (max-width: 480px) {
      .tas-values-section {
        padding: 3.5rem 1rem;
      }
      .tas-values-right {
        height: 280px;
      }
    }
    .tas-values-image-slider {
      position: relative;
      width: 100%;
      height: 100%;
    }
    .tas-values-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      transform: translateX(100%);
      transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .tas-values-image.active {
      opacity: 1;
      transform: translateX(0);
    }
    .tas-values-image.prev {
      opacity: 0;
      transform: translateX(-100%);
    }
    .tas-values-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .tas-values-image-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 2rem;
      background: linear-gradient(to top, rgba(26, 54, 94, 0.9), transparent);
      color: white;
    }
    .tas-values-image-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
    }
    .tas-values-image-desc {
      font-size: 0.9rem;
      opacity: 0.9;
      line-height: 1.6;
    }
    .tas-values-header {
      text-align: center;
      margin-bottom: 4rem;
    }
    .tas-section-label {
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.25em;
      color: #1A365E;
      display: inline-block;
      margin-bottom: 1rem;
      padding: 0.5rem 1.25rem;
      background: rgba(201, 162, 39, 0.1);
      border-radius: 50px;
    }
    .tas-values-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.5rem, 5vw, 4rem);
      color: #1A365E;
      font-weight: 700;
    }
    .tas-values-title span {
      color: #D61F31;
      position: relative;
    }
    .tas-values-accordion {
      border-top: 2px solid #1A365E;
    }
    .tas-value-item {
      border-bottom: 1px solid #e5e7eb;
      background: #ffffff;
      transition: all 0.3s ease;
    }
    .tas-value-item:hover {
      background: #fafbfc;
    }
    .tas-value-item.active {
      background: linear-gradient(135deg, rgba(26,54,94,0.03) 0%, rgba(214,31,49,0.02) 100%);
    }
    .tas-value-header {
      display: flex;
      align-items: center;
      padding: 0.75rem 1rem;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .tas-value-header:hover {
      padding-left: 1.25rem;
    }
    .tas-value-number {
      font-size: 1rem;
      font-weight: 700;
      color: #1A365E;
      width: 60px;
      flex-shrink: 0;
      font-family: 'Playfair Display', serif;
    }
    .tas-value-icon {
      width: 50px;
      height: 50px;
      margin-right: 0.75rem;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, rgba(26,54,94,0.05) 0%, rgba(201,162,39,0.08) 100%);
      border-radius: 12px;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      overflow: visible;
    }
    .tas-value-icon svg {
      width: 30px;
      height: 30px;
    }
    .tas-value-item:hover .tas-value-icon {
      transform: scale(1.08);
      background: linear-gradient(135deg, rgba(26,54,94,0.08) 0%, rgba(201,162,39,0.12) 100%);
    }
    .tas-value-item.active .tas-value-icon {
      background: linear-gradient(135deg, #1A365E 0%, #2d4a73 100%);
      box-shadow: 0 10px 30px rgba(26,54,94,0.35);
    }
    .tas-value-item.active .tas-value-icon svg path,
    .tas-value-item.active .tas-value-icon svg circle,
    .tas-value-item.active .tas-value-icon svg line {
      stroke: #ffffff;
    }
    .tas-value-item.active .tas-value-icon svg .icon-dot {
      fill: #1A365E;
    }
    @media (max-width: 768px) {
      .tas-value-icon {
        width: 50px;
        height: 50px;
        margin-right: 0.75rem;
        border-radius: 10px;
      }
      .tas-value-icon svg {
        width: 28px;
        height: 28px;
      }
    }
    .tas-value-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.25rem;
      color: #1A365E;
      flex-grow: 1;
      margin: 0;
      font-weight: 600;
    }
    .tas-value-toggle {
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #D61F31;
      background: rgba(214,31,49,0.08);
      border-radius: 50%;
      transition: all 0.3s ease;
    }
    .tas-value-item.active .tas-value-toggle {
      transform: rotate(45deg);
      background: #D61F31;
      color: white;
    }
    .tas-value-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .tas-value-item.active .tas-value-content {
      max-height: 120px;
      padding: 0 1rem 0.75rem 60px;
    }
    .tas-value-content p {
      color: #4a5568;
      line-height: 1.6;
      font-size: 0.9rem;
    }

    /* ========== JIS GRADUATES/ALUMNI CAROUSEL ========== */
    .jis-graduates-section {
      padding: 4rem 0;
      background: #ffffff;
      overflow: hidden;
      position: relative;
    }
    .jis-graduates-header {
      text-align: center;
      margin-bottom: 3rem;
      padding: 0 2rem;
      position: relative;
      z-index: 1;
    }
    .jis-graduates-carousel-wrapper {
      position: relative;
      z-index: 1;
    }
    .jis-graduates-label {
      display: inline-block;
      font-size: 0.85rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: #C82035;
      margin-bottom: 1rem;
    }
    .jis-graduates-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 4vw, 2.75rem);
      color: #1A365E;
      margin: 0;
    }
    .jis-graduates-title span {
      color: #C82035;
    }
    .jis-graduates-carousel-wrapper {
      position: relative;
      width: 100%;
      padding: 0 2rem;
      overflow: hidden;
    }
    .jis-graduates-carousel {
      display: flex;
      gap: 1.25rem;
      transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .jis-graduate-card {
      flex: 0 0 calc(20% - 1rem);
      min-width: 220px;
      height: 380px;
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      cursor: pointer;
    }
    @media (max-width: 1400px) {
      .jis-graduate-card {
        flex: 0 0 calc(25% - 1rem);
      }
    }
    @media (max-width: 1100px) {
      .jis-graduate-card {
        flex: 0 0 calc(33.333% - 1rem);
      }
    }
    @media (max-width: 768px) {
      .jis-graduate-card {
        flex: 0 0 calc(50% - 0.75rem);
        height: 320px;
      }
      .jis-graduates-carousel-wrapper {
        padding: 0 40px;
      }
    }
    @media (max-width: 500px) {
      .jis-graduate-card {
        flex: 0 0 100%;
        height: 400px;
      }
    }
    .jis-graduate-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .jis-graduate-card:hover img {
      transform: scale(1.05);
    }
    .jis-graduate-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 40%, transparent 60%);
      transition: background 0.4s ease;
    }
    .jis-graduate-card:hover .jis-graduate-overlay {
      background: linear-gradient(to top, rgba(26,54,94,0.9) 0%, rgba(26,54,94,0.4) 50%, rgba(26,54,94,0.1) 70%);
    }
    .jis-graduate-content {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 1.5rem;
      color: white;
      text-align: center;
      transform: translateY(10px);
      transition: transform 0.4s ease;
    }
    .jis-graduate-card:hover .jis-graduate-content {
      transform: translateY(0);
    }
    .jis-graduate-class {
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--color-red, #D61F31);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 0.5rem;
    }
    .jis-graduate-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.25rem;
      font-weight: 700;
      margin: 0 0 0.25rem;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .jis-graduate-line {
      width: 40px;
      height: 3px;
      background: #C82035;
      margin: 0.75rem auto 0;
      transition: width 0.3s ease;
    }
    .jis-graduate-card:hover .jis-graduate-line {
      width: 60px;
    }
    /* Graduates Carousel Navigation - Positioned between cards */
    .jis-graduates-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 50px;
      height: 50px;
      border: none;
      background: #C82035;
      color: white;
      border-radius: 50%;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      z-index: 10;
      box-shadow: 0 4px 15px rgba(200, 32, 53, 0.3);
    }
    .jis-graduates-arrow:hover {
      background: #a01a2c;
      transform: translateY(-50%) scale(1.1);
    }
    /* Position between 1st and 2nd card (left arrow) - calc: 1 card width + half gap */
    .jis-graduates-arrow.prev {
      left: calc((100% - 120px) / 5 + 10px - 25px); /* 1 card + half gap - half button */
    }
    /* Position between last and second-to-last card (right arrow) */
    .jis-graduates-arrow.next {
      right: calc((100% - 120px) / 5 + 10px - 25px);
    }
    @media (max-width: 1400px) {
      .jis-graduates-arrow.prev {
        left: calc((100% - 120px) / 4 + 10px - 25px);
      }
      .jis-graduates-arrow.next {
        right: calc((100% - 120px) / 4 + 10px - 25px);
      }
    }
    @media (max-width: 1100px) {
      .jis-graduates-arrow.prev {
        left: calc((100% - 120px) / 3 + 10px - 25px);
      }
      .jis-graduates-arrow.next {
        right: calc((100% - 120px) / 3 + 10px - 25px);
      }
    }
    @media (max-width: 768px) {
      .jis-graduates-arrow {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
      }
      .jis-graduates-arrow.prev {
        left: calc((100% - 80px) / 2 + 10px - 20px);
      }
      .jis-graduates-arrow.next {
        right: calc((100% - 80px) / 2 + 10px - 20px);
      }
    }
    @media (max-width: 500px) {
      .jis-graduates-arrow.prev {
        left: 10px;
      }
      .jis-graduates-arrow.next {
        right: 10px;
      }
    }

    /* ========== JIS STYLE STATS CARDS SECTION ========== */
    .jis-stats-section {
      position: relative;
      padding: 4rem 0;
      background: #1A365E;
      margin: 4rem 0;
    }
    .jis-stats-frame {
      position: relative;
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 2rem;
    }
    .jis-stats-frame::before {
      content: '';
      position: absolute;
      top: -20px;
      left: 2rem;
      right: 2rem;
      height: 20px;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 20'%3E%3Cpath d='M0 10 Q25 0 50 10 T100 10' stroke='rgba(255,255,255,0.15)' fill='none' stroke-width='1'/%3E%3C/svg%3E") repeat-x;
      background-size: 100px 20px;
    }
    /* Carousel wrapper */
    .jis-stats-carousel-wrapper {
      position: relative;
      overflow: hidden;
      padding: 0 60px; /* Space for arrows */
    }
    .jis-stats-carousel {
      display: flex;
      gap: 1rem; /* Space between cards */
      transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .jis-stats-card {
      position: relative;
      min-width: calc(25% - 0.75rem); /* Account for gap */
      height: 420px;
      overflow: hidden;
      cursor: pointer;
      flex-shrink: 0;
      border-radius: 12px; /* Rounded corners */
    }
    @media (max-width: 1200px) {
      .jis-stats-card {
        min-width: calc(33.333% - 0.67rem);
      }
    }
    @media (max-width: 900px) {
      .jis-stats-card {
        min-width: calc(50% - 0.5rem);
        height: 350px;
      }
      .jis-stats-carousel-wrapper {
        padding: 0 50px;
      }
    }
    @media (max-width: 600px) {
      .jis-stats-card {
        min-width: 100%;
        height: 320px;
      }
      .jis-stats-carousel-wrapper {
        padding: 0 40px;
      }
    }
    .jis-stats-card-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
      filter: blur(0);
    }
    .jis-stats-card:hover .jis-stats-card-bg {
      transform: scale(1.08);
      filter: blur(3px);
    }
    .jis-stats-card-bg {
      border-radius: 12px; /* Match card border-radius */
    }
    .jis-stats-card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0) 100%);
      transition: background 0.4s ease;
      border-radius: 12px; /* Match card border-radius */
    }
    .jis-stats-card:hover .jis-stats-card-overlay {
      background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 60%, rgba(0,0,0,0.3) 100%);
    }
    .jis-stats-card-content {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 2rem;
      color: white;
      transform: translateY(0);
      transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .jis-stats-card:hover .jis-stats-card-content {
      transform: translateY(-20px);
    }
    .jis-stats-number {
      font-family: 'Playfair Display', serif;
      font-size: clamp(3rem, 6vw, 4.5rem);
      font-weight: 700;
      line-height: 1;
      margin-bottom: 0.25rem;
      text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    }
    .jis-stats-label {
      font-size: 1.1rem;
      font-weight: 500;
      text-transform: capitalize;
      opacity: 0.95;
      margin-bottom: 0;
      transition: margin-bottom 0.4s ease;
    }
    .jis-stats-card:hover .jis-stats-label {
      margin-bottom: 0.75rem;
    }
    .jis-stats-desc {
      font-size: 0.9rem;
      line-height: 1.5;
      opacity: 0;
      max-height: 0;
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .jis-stats-card:hover .jis-stats-desc {
      opacity: 0.85;
      max-height: 100px;
    }
    .jis-stats-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: white;
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 500;
      margin-top: 0.75rem;
      opacity: 0;
      transform: translateY(10px);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
    }
    .jis-stats-card:hover .jis-stats-link {
      opacity: 1;
      transform: translateY(0);
    }
    .jis-stats-link:hover {
      text-decoration: underline;
    }
    /* Carousel Navigation - Arrow Buttons on Sides */
    .jis-stats-nav {
      display: none; /* Hide centered nav, use side arrows instead */
    }
    .jis-stats-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 45px;
      height: 45px;
      border: 2px solid rgba(255,255,255,0.5);
      background: rgba(26, 54, 94, 0.8);
      color: white;
      border-radius: 50%;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      z-index: 10;
      box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    }
    .jis-stats-arrow:hover {
      background: rgba(26, 54, 94, 1);
      border-color: white;
      transform: translateY(-50%) scale(1.1);
    }
    .jis-stats-arrow:active {
      transform: translateY(-50%) scale(0.95);
    }
    .jis-stats-arrow.prev {
      left: 5px;
    }
    .jis-stats-arrow.next {
      right: 5px;
    }
    @media (max-width: 600px) {
      .jis-stats-arrow {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
      }
    }
    /* Progress dots */
    .jis-stats-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 1.5rem;
    }
    .jis-stats-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(255,255,255,0.3);
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .jis-stats-dot.active {
      background: white;
      transform: scale(1.2);
    }
    .jis-stats-dot:hover {
      background: rgba(255,255,255,0.6);
    }

    /* ========== TAS STYLE DIVISIONS SECTION ========== */
    .tas-divisions-section {
      padding: 8rem 2rem;
      background: #ffffff;
      position: relative;
      overflow: hidden;
    }
    .tas-divisions-container {
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }
    .tas-divisions-header {
      text-align: center;
      margin-bottom: 4rem;
    }
    .tas-divisions-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.5rem, 5vw, 4rem);
      color: #1A365E;
      font-weight: 700;
      margin-bottom: 1rem;
    }
    .tas-divisions-title span {
      color: #D61F31;
    }
    .tas-divisions-subtitle {
      font-size: 1.1875rem;
      color: #4a5568;
      max-width: 650px;
      margin: 0 auto;
      line-height: 1.8;
    }
    .tas-divisions-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2.5rem;
    }
    @media (max-width: 900px) {
      .tas-divisions-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
      }
    }
    .tas-division-card {
      background: #ffffff;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 10px 40px rgba(26,54,94,0.08);
      transition: all 0.4s ease;
      border: 1px solid rgba(26,54,94,0.06);
    }
    .tas-division-card:hover {
      transform: translateY(-12px);
      box-shadow: 0 25px 60px rgba(26,54,94,0.15);
    }
    .tas-division-image {
      position: relative;
      height: 220px;
      overflow: hidden;
    }
    .tas-division-image::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(26,54,94,0.4), transparent 50%);
    }
    .tas-division-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }
    .tas-division-card:hover .tas-division-image img {
      transform: scale(1.08);
    }
    .tas-division-badge {
      position: absolute;
      top: 1rem;
      left: 1rem;
      padding: 0.5rem 1rem;
      background: linear-gradient(135deg, #1A365E 0%, #2a4a7a 100%);
      color: white;
      font-size: 0.8rem;
      font-weight: 700;
      border-radius: 50px;
      z-index: 2;
      letter-spacing: 0.02em;
    }
    .tas-division-content {
      padding: 2rem;
    }
    .tas-division-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.625rem;
      color: #1A365E;
      margin-bottom: 0.35rem;
      font-weight: 700;
    }
    .tas-division-grades {
      font-size: 0.9rem;
      color: #1A365E;
      font-weight: 700;
      margin-bottom: 1rem;
      letter-spacing: 0.02em;
    }
    .tas-division-desc {
      font-size: 1rem;
      color: #4a5568;
      line-height: 1.7;
      margin-bottom: 1.5rem;
    }
    .tas-division-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.9375rem;
      font-weight: 700;
      color: #D61F31;
      text-decoration: none;
      transition: all 0.3s ease;
      padding: 0.5rem 0;
    }
    .tas-division-link:hover {
      gap: 0.875rem;
      color: #b01828;
    }

    /* Hide old hero styles */
    .hero {
      display: none !important;
    }

    /* ========== PARALLAX HERO SECTION ========== */
    .parallax-hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      background: #ffffff !important;
    }

    /* Hero Section Divider - Bold Diagonal Sweep */
    .hero-section-divider {
      position: absolute;
      left: 0;
      width: 100%;
      height: 200px;
      z-index: 10;
      pointer-events: none;
    }

    .hero-section-divider--top {
      top: 0;
    }

    .hero-section-divider--bottom {
      bottom: 0;
    }

    .hero-section-divider svg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: block;
    }

    @media (max-width: 768px) {
      .hero-section-divider {
        height: 140px;
      }
    }

    /* Parallax floating elements container */
    .parallax-elements {
      position: absolute;
      inset: 0;
      pointer-events: none;
      overflow: hidden;
    }

    .parallax-element {
      position: absolute;
      will-change: transform;
      transition: transform 0.1s ease-out;
    }

    /* Feature images as parallax elements */
    .parallax-hexagon {
      filter: drop-shadow(0 10px 30px rgba(26, 54, 94, 0.15));
    }

    .parallax-hexagon img {
      width: 100%;
      height: auto;
      max-width: 140px;
      border-radius: 12px;
    }

    /* Abstract decorative elements */
    .parallax-circle {
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(26, 54, 94, 0.06) 0%, rgba(26, 54, 94, 0.02) 100%);
      border: 1px solid rgba(26, 54, 94, 0.08);
    }

    .parallax-circle.large {
      width: 180px;
      height: 180px;
    }

    .parallax-circle.medium {
      width: 100px;
      height: 100px;
    }

    .parallax-circle.small {
      width: 50px;
      height: 50px;
    }

    .parallax-circle.red {
      background: linear-gradient(135deg, rgba(214, 31, 49, 0.08) 0%, rgba(214, 31, 49, 0.02) 100%);
      border-color: rgba(214, 31, 49, 0.06);
    }

    .parallax-circle.gold {
      background: linear-gradient(135deg, rgba(201, 162, 39, 0.1) 0%, rgba(201, 162, 39, 0.03) 100%);
      border-color: rgba(201, 162, 39, 0.08);
    }

    /* Animated dotted line connectors */
    .parallax-dotted-line {
      position: absolute;
      height: 2px;
      background: transparent;
      overflow: visible;
      opacity: 0;
      transition: opacity 0.8s ease;
    }

    .parallax-dotted-line.visible {
      opacity: 1;
    }

    .parallax-dotted-line::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: linear-gradient(to right, rgba(26, 54, 94, 0.25) 50%, transparent 50%);
      background-size: 12px 2px;
      animation: dotFlow 1.5s linear infinite;
    }

    .parallax-dotted-line.gold::before {
      background-image: linear-gradient(to right, rgba(201, 162, 39, 0.4) 50%, transparent 50%);
    }

    .parallax-dotted-line.red::before {
      background-image: linear-gradient(to right, rgba(214, 31, 49, 0.3) 50%, transparent 50%);
    }

    /* Animated dot endpoints */
    .parallax-dotted-line::after {
      content: '';
      position: absolute;
      right: -6px;
      top: 50%;
      transform: translateY(-50%);
      width: 12px;
      height: 12px;
      background: rgba(26, 54, 94, 0.15);
      border: 2px solid rgba(26, 54, 94, 0.3);
      border-radius: 50%;
      animation: pulse 2s ease-in-out infinite;
    }

    .parallax-dotted-line.gold::after {
      background: rgba(201, 162, 39, 0.2);
      border-color: rgba(201, 162, 39, 0.4);
    }

    .parallax-dotted-line.red::after {
      background: rgba(214, 31, 49, 0.15);
      border-color: rgba(214, 31, 49, 0.3);
    }

    @keyframes dotFlow {
      0% { background-position: 0 0; }
      100% { background-position: 24px 0; }
    }

    @keyframes pulse {
      0%, 100% { transform: translateY(-50%) scale(1); opacity: 1; }
      50% { transform: translateY(-50%) scale(1.3); opacity: 0.6; }
    }

    /* Different line lengths */
    .parallax-dotted-line.short { width: 80px; }
    .parallax-dotted-line.medium { width: 150px; }
    .parallax-dotted-line.long { width: 220px; }
    .parallax-dotted-line.extra-long { width: 300px; }

    /* Draw-line animation with clip-path */
    .parallax-dotted-line::before {
      clip-path: inset(0 100% 0 0);
      transition: clip-path 1s ease-out;
    }

    .parallax-dotted-line.visible::before {
      clip-path: inset(0 0 0 0);
    }

    /* Start dot at the beginning of line */
    .parallax-dotted-line .start-dot {
      position: absolute;
      left: -6px;
      top: 50%;
      transform: translateY(-50%);
      width: 8px;
      height: 8px;
      background: rgba(26, 54, 94, 0.3);
      border-radius: 50%;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .parallax-dotted-line.visible .start-dot {
      opacity: 1;
    }

    .parallax-dotted-line.gold .start-dot {
      background: rgba(201, 162, 39, 0.4);
    }

    .parallax-dotted-line.red .start-dot {
      background: rgba(214, 31, 49, 0.3);
    }

    /* School element icons */
    .parallax-icon {
      width: 120px;
      height: 120px;
    }

    .parallax-icon img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      opacity: 0.85;
      transition: all 0.4s ease;
      mix-blend-mode: multiply;
    }

    .parallax-icon.gold img {
      opacity: 0.9;
    }

    .parallax-icon.gold .colorful-icon {
      opacity: 0.45;
    }

    .parallax-icon:hover .colorful-icon {
      opacity: 0.7;
      transform: scale(1.15);
    }

    /* Sun element from feature-2 */
    .parallax-sun {
      width: 80px;
      height: 80px;
      background: linear-gradient(135deg, rgba(201, 162, 39, 0.15) 0%, rgba(201, 162, 39, 0.08) 100%);
      border-radius: 50%;
      opacity: 0.5;
    }

    /* Specific element positions and sizes */
    .pe-1 { top: 8%; left: 5%; }
    .pe-2 { top: 12%; right: 8%; }
    .pe-3 { top: 35%; left: 2%; }
    .pe-4 { top: 55%; right: 3%; }
    .pe-5 { top: 75%; left: 8%; }
    .pe-6 { top: 18%; left: 20%; }
    .pe-7 { top: 45%; right: 10%; }
    .pe-8 { top: 82%; right: 12%; }
    .pe-9 { top: 28%; right: 18%; }
    .pe-10 { top: 68%; left: 15%; }
    .pe-11 { top: 22%; left: 75%; }
    .pe-12 { top: 50%; left: 5%; }

    /* Main content */
    .parallax-hero-content {
      position: relative;
      z-index: 10;
      text-align: center;
      padding: 2rem;
      max-width: 900px;
      color: #1A365E;
    }

    .parallax-hero-label {
      font-size: 0.875rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.3em;
      color: #D61F31;
      margin-bottom: 1.5rem;
      opacity: 0;
      transform: translateY(30px);
      animation: fadeInUp 0.8s ease forwards 0.2s;
    }

    .parallax-hero-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.5rem, 6vw, 5rem);
      font-weight: 700;
      line-height: 1.1;
      margin-bottom: 1.5rem;
      color: #1A365E;
      opacity: 0;
      transform: translateY(30px);
      animation: fadeInUp 0.8s ease forwards 0.4s;
    }

    .parallax-hero-title span {
      color: #D61F31;
    }

    .parallax-hero-desc {
      font-size: 1.25rem;
      line-height: 1.8;
      opacity: 0;
      max-width: 600px;
      margin: 0 auto 2rem;
      color: #4B5563;
      transform: translateY(30px);
      animation: fadeInUp 0.8s ease forwards 0.6s;
    }

    .parallax-hero-cta {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      padding: 1rem 2.5rem;
      background: linear-gradient(135deg, #D61F31 0%, #b01828 100%);
      color: white;
      text-decoration: none;
      border-radius: 50px;
      font-weight: 600;
      font-size: 1.1rem;
      opacity: 0;
      transform: translateY(30px);
      animation: fadeInUp 0.8s ease forwards 0.8s;
      transition: all 0.3s ease;
    }

    .parallax-hero-cta:hover {
      transform: translateY(-3px) !important;
      box-shadow: 0 15px 40px rgba(214, 31, 49, 0.4);
    }

    @keyframes fadeInUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Scroll indicator */
    .scroll-indicator {
      position: absolute;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      color: #1A365E;
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      animation: bounce 2s infinite;
    }

    .scroll-indicator i {
      font-size: 1.5rem;
    }

    @keyframes bounce {
      0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
      40% { transform: translateX(-50%) translateY(-10px); }
      60% { transform: translateX(-50%) translateY(-5px); }
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .parallax-hexagon img {
        max-width: 80px;
      }
      .parallax-circle.large {
        width: 150px;
        height: 150px;
      }
      .parallax-circle.medium {
        width: 80px;
        height: 80px;
      }
      .parallax-icon {
        width: 80px;
        height: 80px;
      }
      .parallax-sun {
        width: 80px;
        height: 80px;
      }
    }

    /* ========== GRAYSCALE PILLARS CAROUSEL ========== */
    .pillars-carousel-section {
      background: #0a1628;
      padding: 0;
      overflow: hidden;
      position: relative;
    }

    .pillars-carousel-track {
      display: flex;
      animation: pillarsScroll 30s linear infinite;
      width: fit-content;
    }

    .pillars-carousel-track:hover {
      animation-play-state: paused;
    }

    @keyframes pillarsScroll {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    }

    .pillar-slide {
      flex-shrink: 0;
      width: 25vw;
      min-width: 300px;
      height: 80vh;
      min-height: 500px;
      position: relative;
      overflow: hidden;
      cursor: pointer;
    }

    .pillar-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: grayscale(100%);
      transition: filter 0.5s ease, transform 0.5s ease;
    }

    .pillar-slide:hover img {
      filter: grayscale(0%);
      transform: scale(1.05);
    }

    .pillar-slide-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(10, 22, 40, 0.9) 0%, rgba(10, 22, 40, 0.3) 50%, transparent 100%);
      pointer-events: none;
    }

    .pillar-slide-title {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%) rotate(-90deg);
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.5rem, 3vw, 2.5rem);
      font-weight: 700;
      color: #1A365E;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      white-space: nowrap;
      text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
      transition: color 0.3s ease, transform 0.3s ease;
    }

    .pillar-slide:hover .pillar-slide-title {
      color: #ffffff;
      transform: translate(-50%, -50%) rotate(-90deg) scale(1.05);
    }

    @media (max-width: 768px) {
      .pillar-slide {
        width: 50vw;
        min-width: 200px;
        height: 60vh;
        min-height: 400px;
      }
      .pillar-slide-title {
        font-size: 1.2rem;
      }
    }

    /* ========== HORIZONTAL SCROLL TRIGGER SECTION ========== */
    .horizontal-scroll-section {
      position: relative;
      width: 100%;
      height: 100vh;
      overflow: hidden;
      background: #0a1628;
    }

    .horizontal-scroll-track {
      display: flex;
      flex-wrap: nowrap;
      height: 100vh;
      width: fit-content;
      will-change: transform;
    }

    .horizontal-panel {
      flex-shrink: 0;
      width: 100vw;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .horizontal-panel-inner {
      position: relative;
      z-index: 2;
      max-width: 900px;
      padding: 0 4rem;
      width: 100%;
      color: white;
    }

    /* Panel video background */
    .panel-video-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }

    /* Panel overlay for background images/videos */
    .panel-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(26,54,94,0.85) 0%, rgba(10,22,40,0.9) 100%);
      z-index: 1;
    }

    /* Panel content styles */
    .panel-label {
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.25em;
      color: rgba(255,255,255,0.7);
      margin-bottom: 1.25rem;
      display: block;
    }

    .panel-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 700;
      line-height: 1.1;
      margin-bottom: 1.25rem;
      color: white;
    }

    .panel-title span {
      color: #D61F31;
      font-style: italic;
    }

    .panel-description {
      font-size: 1.1rem;
      line-height: 1.75;
      max-width: 550px;
      margin-bottom: 2rem;
      color: rgba(255,255,255,0.85);
    }

    .panel-cta {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.9rem 2rem;
      background: #D61F31;
      color: white;
      text-decoration: none;
      border-radius: 50px;
      font-weight: 600;
      font-size: 0.9rem;
      letter-spacing: 0.02em;
      transition: all 0.3s ease;
      box-shadow: 0 4px 20px rgba(214, 31, 49, 0.3);
    }

    .panel-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(214, 31, 49, 0.45);
    }

    .panel-cta i {
      font-size: 0.8rem;
      transition: transform 0.3s ease;
    }

    .panel-cta:hover i {
      transform: translateX(3px);
    }

    /* Stats row */
    .panel-stats {
      display: flex;
      gap: 2.5rem;
      margin-top: 2.5rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(255,255,255,0.15);
    }

    .panel-stat {
      text-align: left;
    }

    .panel-stat-number {
      font-family: 'Playfair Display', serif;
      font-size: 2.75rem;
      font-weight: 700;
      color: #ffffff;
      line-height: 1;
    }

    .panel-stat-label {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      margin-top: 0.35rem;
      color: rgba(255,255,255,0.6);
      font-weight: 500;
    }

    /* Scroll progress indicator */
    .horizontal-progress {
      position: fixed;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 0.5rem;
      z-index: 100;
      opacity: 0;
      transition: opacity 0.3s ease;
      pointer-events: none;
      background: rgba(0,0,0,0.3);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      padding: 0.5rem 0.75rem;
      border-radius: 50px;
    }

    .horizontal-progress.visible {
      opacity: 1;
      pointer-events: auto;
    }

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

    .progress-dot:hover {
      background: rgba(255,255,255,0.6);
    }

    .progress-dot.active {
      background: #ffffff;
      width: 24px;
      border-radius: 10px;
    }

    /* Panel decorative elements */
    .decoration-circle {
      display: none;
    }

    /* ===== Tablet ===== */
    @media (max-width: 1024px) {
      .horizontal-panel-inner {
        padding: 0 2.5rem;
        max-width: 700px;
      }

      .panel-stats {
        gap: 2rem;
      }
    }

    /* ===== MOBILE: Vertical stacked panels ===== */
    @media (max-width: 768px) {
      .horizontal-scroll-section {
        height: auto !important;
        overflow: visible !important;
        background: #0f1d32;
      }

      .horizontal-scroll-track {
        flex-direction: column !important;
        width: 100% !important;
        height: auto !important;
        transform: none !important;
        gap: 0;
      }

      .horizontal-panel {
        width: 100% !important;
        min-width: 100% !important;
        height: auto !important;
        min-height: auto;
        align-items: flex-start;
      }

      .horizontal-panel-inner {
        padding: 3.5rem 1.5rem;
      }

      .panel-video-bg {
        position: absolute;
        inset: 0;
      }

      .horizontal-progress {
        display: none;
      }

      .panel-label {
        font-size: 0.7rem;
        letter-spacing: 0.2em;
        margin-bottom: 0.75rem;
        color: rgba(255,255,255,0.6);
      }

      .panel-title {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
        margin-bottom: 1rem;
      }

      .panel-description {
        font-size: 0.92rem;
        line-height: 1.65;
        margin-bottom: 1.5rem;
        color: rgba(255,255,255,0.8);
      }

      .panel-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1.25rem;
        margin-top: 1.75rem;
        padding-top: 1.5rem;
        justify-content: flex-start;
      }

      .panel-stat {
        text-align: center;
        flex: 0 0 auto;
      }

      .panel-stat-number {
        font-size: 2rem;
        color: #ffffff;
      }

      .panel-stat-label {
        font-size: 0.65rem;
        letter-spacing: 0.1em;
      }

      .panel-cta {
        padding: 0.8rem 1.75rem;
        font-size: 0.8rem;
        margin-top: 0.5rem;
      }
    }

    @media (max-width: 480px) {
      .horizontal-panel-inner {
        padding: 3rem 1.25rem;
      }

      .panel-title {
        font-size: clamp(1.5rem, 6.5vw, 2rem);
      }

      .panel-stats {
        gap: 1rem;
      }

      .panel-stat-number {
        font-size: 1.75rem;
      }

      .panel-cta {
        width: 100%;
        justify-content: center;
        padding: 0.85rem 1.5rem;
      }
    }

    /* ========== FLIP CARD STATS SECTION ========== */
    .fast-facts-section {
      background: linear-gradient(135deg, #1A365E 0%, #0f2744 100%) !important;
    }

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

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

    @media (max-width: 640px) {
      .fast-facts-grid-new {
        grid-template-columns: 1fr;
      }
    }

    /* Flip Card Container */
    .fast-fact-card {
      perspective: 1000px;
      height: 280px;
      background: transparent !important;
      border: none !important;
      padding: 0 !important;
    }

    .flip-card-inner {
      position: relative;
      width: 100%;
      height: 100%;
      transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      transform-style: preserve-3d;
    }

    .fast-fact-card:hover .flip-card-inner {
      transform: rotateY(180deg);
    }

    .flip-card-front,
    .flip-card-back {
      position: absolute;
      width: 100%;
      height: 100%;
      backface-visibility: hidden;
      border-radius: 16px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 2rem;
      text-align: center;
    }

    .flip-card-front {
      background: linear-gradient(145deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
      border: 1px solid rgba(255,255,255,0.1);
    }

    /* Removed colored top border from cards */

    .flip-card-back {
      background: rgba(255, 255, 255, 0.12);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      transform: rotateY(180deg);
    }

    .flip-card-front .fast-fact-icon {
      width: 100px;
      height: 100px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
      padding: 10px;
    }

    .flip-card-front .fast-fact-icon img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      mix-blend-mode: screen;
    }

    .flip-card-front .fast-fact-icon i {
      font-size: 2rem;
      color: rgba(255, 255, 255, 0.6);
    }

    .flip-card-front .fast-fact-number {
      font-family: 'Playfair Display', serif;
      font-size: 3.5rem;
      font-weight: 700;
      color: white !important;
      line-height: 1;
      margin-bottom: 0.75rem;
    }

    .flip-card-front .fast-fact-number .plus {
      color: var(--color-red, #D61F31);
      font-size: 0.6em;
    }

    .flip-card-front .fast-fact-label {
      font-size: 0.95rem;
      color: rgba(255,255,255,0.7) !important;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.15em;
    }

    /* Back of card */
    .flip-card-back .back-icon {
      width: 70px;
      height: 70px;
      margin-bottom: 1rem;
      opacity: 0.5;
      color: white;
    }

    .flip-card-back .back-icon img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      mix-blend-mode: screen;
    }

    .flip-card-back .back-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 0.75rem;
    }

    .flip-card-back .back-description {
      font-size: 0.95rem;
      color: rgba(255, 255, 255, 0.8);
      line-height: 1.6;
    }

    .flip-card-back .back-cta {
      margin-top: 1.5rem;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.75rem 1.5rem;
      background: rgba(255, 255, 255, 0.2);
      border: 1px solid rgba(255, 255, 255, 0.3);
      color: white;
      text-decoration: none;
      border-radius: 50px;
      font-size: 0.875rem;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .flip-card-back .back-cta:hover {
      background: rgba(255, 255, 255, 0.3);
      transform: scale(1.05);
    }

    /* ========== FLOATING SIDE CTA ========== */
    .side-cta {
      position: fixed;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      z-index: 999;
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .side-cta__btn {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1.75rem 1rem;
      background: #1A365E;
      color: #ffffff;
      text-decoration: none;
      cursor: pointer;
      border: none;
      min-height: 140px;
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .side-cta__btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      height: 100%;
      background: #1A365E;
      transform: scaleY(0);
      transform-origin: bottom;
      transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .side-cta__btn::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(201, 162, 39, 0.15), transparent);
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .side-cta__btn:hover::before {
      transform: scaleY(1);
      transform-origin: top;
    }

    .side-cta__btn:hover::after {
      opacity: 1;
    }

    .side-cta__btn span {
      position: relative;
      z-index: 2;
      writing-mode: vertical-lr;
      text-orientation: mixed;
      font-size: 0.7rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .side-cta__btn:first-child {
      border-radius: 12px 0 0 0;
    }

    .side-cta__btn:last-child {
      border-radius: 0 0 0 12px;
    }

    .side-cta__btn:hover {
      padding-left: 1.25rem;
      box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
    }

    .side-cta__btn:hover span {
      letter-spacing: 0.25em;
      text-shadow: 0 0 20px rgba(201, 162, 39, 0.5);
    }

    /* Visit Button - Red */
    .side-cta__btn--visit {
      background: linear-gradient(180deg, #D61F31 0%, #b01828 100%);
      color: #ffffff;
      box-shadow: 0 4px 15px rgba(214, 31, 49, 0.3);
    }

    .side-cta__btn--visit::before {
      background: #ffffff;
    }

    .side-cta__btn--visit::after {
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
    }

    .side-cta__btn--visit:hover {
      background: linear-gradient(180deg, #e04050 0%, #D61F31 100%);
      box-shadow: 0 6px 20px rgba(214, 31, 49, 0.4);
    }

    .side-cta__btn--visit:hover span {
      text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    }

    /* Highlights Button - Navy */
    .side-cta__btn--highlights {
      background: linear-gradient(180deg, #1A365E 0%, #0f2340 100%);
      color: #ffffff;
    }

    .side-cta__btn--highlights:hover {
      background: linear-gradient(180deg, #2a4a7a 0%, #1A365E 100%);
    }

    /* Hide on mobile */
    @media (max-width: 768px) {
      .side-cta {
        display: none;
      }
    }

    /* ========== REDESIGNED SLIDE-IN MODAL ========== */
    .slide-modal-overlay {
      position: fixed;
      inset: 0;
      z-index: 10000;
      background: rgba(0, 0, 0, 0);
      backdrop-filter: blur(0px);
      visibility: hidden;
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .slide-modal-overlay.active {
      background: rgba(0, 0, 0, 0.5);
      backdrop-filter: blur(8px);
      visibility: visible;
    }

    .slide-modal {
      position: fixed;
      top: 0;
      right: 0;
      width: 100%;
      max-width: 520px;
      height: 100vh;
      background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
      z-index: 10001;
      transform: translateX(100%);
      opacity: 0;
      transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      box-shadow: -10px 0 50px rgba(0, 0, 0, 0.15);
    }

    .slide-modal.active {
      transform: translateX(0);
      opacity: 1;
    }

    /* Hero Image Section */
    .smodal-hero {
      position: relative;
      height: 280px;
      flex-shrink: 0;
      overflow: hidden;
    }

    .smodal-hero__img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 8s ease;
    }

    .slide-modal.active .smodal-hero__img {
      transform: scale(1.1);
    }

    .smodal-hero__overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(26, 54, 94, 0.4) 0%, rgba(26, 54, 94, 0.9) 100%);
    }

    .smodal-hero__content {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 2rem;
      z-index: 2;
    }

    .smodal-hero__badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.5rem 1rem;
      background: rgba(255, 255, 255, 0.2);
      border: 1px solid rgba(255, 255, 255, 0.4);
      border-radius: 100px;
      font-size: 0.7rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: #ffffff;
      margin-bottom: 1rem;
      backdrop-filter: blur(10px);
    }

    .smodal-hero__badge i {
      font-size: 0.75rem;
    }

    .smodal-hero__title {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      font-weight: 700;
      color: #ffffff;
      margin: 0 0 0.5rem 0;
      line-height: 1.2;
    }

    .smodal-hero__subtitle {
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.7);
      margin: 0;
      line-height: 1.5;
    }

    /* Close Button */
    .smodal-close {
      position: absolute;
      top: 1.25rem;
      right: 1.25rem;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.3);
      color: #ffffff;
      font-size: 1rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      z-index: 10;
    }

    .smodal-close:hover {
      background: #D61F31;
      border-color: #D61F31;
      transform: rotate(90deg) scale(1.1);
    }

    /* Scrollable Content */
    .smodal-body {
      flex: 1;
      overflow-y: auto;
      padding: 1.5rem 2rem 2rem;
    }

    .smodal-body::-webkit-scrollbar {
      width: 4px;
    }

    .smodal-body::-webkit-scrollbar-track {
      background: transparent;
    }

    .smodal-body::-webkit-scrollbar-thumb {
      background: rgba(26, 54, 94, 0.3);
      border-radius: 4px;
    }

    /* Section Animations */
    .smodal-section {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.5s ease, transform 0.5s ease;
      margin-bottom: 1.75rem;
    }

    .slide-modal.active .smodal-section:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }
    .slide-modal.active .smodal-section:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }
    .slide-modal.active .smodal-section:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.4s; }
    .slide-modal.active .smodal-section:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.5s; }

    .smodal-section__label {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-size: 0.7rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: #1A365E;
      margin-bottom: 1rem;
    }

    .smodal-section__label::after {
      content: '';
      flex: 1;
      height: 1px;
      background: linear-gradient(90deg, rgba(26, 54, 94, 0.3), transparent);
    }

    /* Feature Cards */
    .smodal-features {
      display: grid;
      gap: 0.75rem;
    }

    .smodal-feature {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      padding: 1.25rem;
      background: #ffffff;
      border: 1px solid #e2e8f0;
      border-radius: 16px;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    }

    .smodal-feature::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      height: 100%;
      background: linear-gradient(180deg, #D61F31, #1A365E);
      transform: scaleY(0);
      transform-origin: bottom;
      transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .smodal-feature:hover {
      background: #ffffff;
      border-color: rgba(26, 54, 94, 0.3);
      transform: translateX(6px);
      box-shadow: 0 8px 25px rgba(26, 54, 94, 0.12);
    }

    .smodal-feature:hover::before {
      transform: scaleY(1);
    }

    .smodal-feature__icon {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }

    .smodal-feature__icon--svg {
      background: linear-gradient(135deg, #1A365E 0%, #2a4a7a 100%);
      width: 56px;
      height: 56px;
    }

    .smodal-feature__icon--svg svg {
      width: 42px;
      height: 42px;
    }

    .smodal-feature:hover .smodal-feature__icon {
      background: linear-gradient(135deg, #1A365E, #2d4a73);
      border-color: transparent;
    }

    .smodal-feature:hover .smodal-feature__icon--svg {
      background: linear-gradient(135deg, #1A365E, #D61F31);
    }

    .smodal-feature:hover .smodal-feature__icon--svg svg path,
    .smodal-feature:hover .smodal-feature__icon--svg svg circle,
    .smodal-feature:hover .smodal-feature__icon--svg svg rect {
      stroke: #ffffff;
    }

    .smodal-feature:hover .smodal-feature__icon--svg svg circle[fill="#1A365E"] {
      fill: #1A365E;
    }

    .smodal-feature__icon i {
      font-size: 1.2rem;
      color: #1A365E;
      transition: all 0.3s ease;
    }

    .smodal-feature:hover .smodal-feature__icon {
      background: linear-gradient(135deg, #1A365E 0%, #2a4a7a 100%);
      transform: scale(1.05);
    }

    .smodal-feature:hover .smodal-feature__icon i {
      color: #ffffff;
    }

    .smodal-feature__content {
      flex: 1;
    }

    .smodal-feature__title {
      font-size: 0.95rem;
      font-weight: 600;
      color: #1A365E;
      margin: 0 0 0.35rem 0;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .smodal-feature__title .arrow {
      font-size: 0.75rem;
      opacity: 0;
      transform: translateX(-5px);
      transition: all 0.3s ease;
      color: #1A365E;
    }

    .smodal-feature:hover .smodal-feature__title .arrow {
      opacity: 1;
      transform: translateX(0);
    }

    .smodal-feature__desc {
      font-size: 0.8rem;
      color: #64748b;
      margin: 0;
      line-height: 1.5;
    }

    /* Stats Grid */
    .smodal-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0.75rem;
    }

    .smodal-stat {
      text-align: center;
      padding: 1.5rem 1rem;
      background: #ffffff;
      border: 1px solid #e2e8f0;
      border-radius: 16px;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    }

    .smodal-stat:hover {
      background: #1A365E;
      border-color: #1A365E;
      transform: translateY(-4px);
      box-shadow: 0 10px 30px rgba(26, 54, 94, 0.2);
    }

    .smodal-stat__number {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      font-weight: 700;
      color: #D61F31;
      line-height: 1;
      transition: color 0.3s ease;
    }

    .smodal-stat:hover .smodal-stat__number {
      color: #ffffff;
    }

    .smodal-stat__label {
      font-size: 0.7rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: #64748b;
      margin-top: 0.5rem;
      transition: color 0.3s ease;
    }

    .smodal-stat:hover .smodal-stat__label {
      color: rgba(255, 255, 255, 0.8);
    }

    /* CTA Buttons */
    .smodal-ctas {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .smodal-cta {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.75rem;
      padding: 1rem 1.5rem;
      border-radius: 12px;
      font-size: 0.85rem;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
      cursor: pointer;
      border: none;
      position: relative;
      overflow: hidden;
    }

    .smodal-cta--primary {
      background: linear-gradient(135deg, #D61F31 0%, #b01828 100%);
      color: #ffffff;
      box-shadow: 0 4px 15px rgba(214, 31, 49, 0.3);
      padding: 1.1rem 1.75rem;
      font-size: 0.9rem;
    }

    .smodal-cta--primary::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
      transition: left 0.5s ease;
    }

    .smodal-cta--primary:hover::before {
      left: 100%;
    }

    .smodal-cta--primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 35px rgba(214, 31, 49, 0.4);
    }

    .smodal-cta--secondary {
      background: #ffffff;
      border: 2px solid #1A365E;
      color: #1A365E;
      font-weight: 600;
    }

    .smodal-cta--secondary:hover {
      background: #1A365E;
      border-color: #1A365E;
      color: #ffffff;
    }

    .smodal-cta i {
      transition: transform 0.3s ease;
    }

    .smodal-cta:hover i {
      transform: translateX(3px);
    }

    /* Highlight Pills */
    .smodal-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
    }

    .smodal-pill {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.7rem 1.2rem;
      background: #ffffff;
      border: 1px solid #e2e8f0;
      border-radius: 100px;
      font-size: 0.8rem;
      font-weight: 600;
      color: #1A365E;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    }

    .smodal-pill:hover {
      background: linear-gradient(135deg, #1A365E 0%, #2a4a7a 100%);
      border-color: #1A365E;
      color: #ffffff;
      transform: translateY(-2px);
      box-shadow: 0 6px 15px rgba(26, 54, 94, 0.2);
    }

    .smodal-pill i {
      font-size: 0.75rem;
      color: #D61F31;
      transition: color 0.3s ease;
    }

    .smodal-pill:hover i {
      color: #ffffff;
    }

    /* Contact Info */
    .smodal-contact {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1.25rem 1.5rem;
      background: #ffffff;
      border: 1px solid #e2e8f0;
      border-radius: 16px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
      transition: all 0.3s ease;
    }

    .smodal-contact:hover {
      border-color: #1A365E;
      box-shadow: 0 6px 20px rgba(26, 54, 94, 0.1);
    }

    .smodal-contact__icon {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: linear-gradient(135deg, #1A365E, #2a4a7a);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .smodal-contact__icon i {
      font-size: 1rem;
      color: #ffffff;
    }

    .smodal-contact__text {
      flex: 1;
    }

    .smodal-contact__label {
      font-size: 0.7rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: #64748b;
      margin-bottom: 0.25rem;
    }

    .smodal-contact__value {
      font-size: 1rem;
      font-weight: 600;
      color: #1A365E;
    }

    @media (max-width: 768px) {
      .smodal-body {
        padding: 1.5rem;
      }
      .smodal-hero {
        height: 250px;
      }
    }

    @media (max-width: 480px) {
      .slide-modal {
        max-width: 100%;
      }

      .smodal-hero {
        height: 220px;
      }

      .smodal-hero__title {
        font-size: 1.5rem;
      }

      .smodal-body {
        padding: 1.25rem 1.5rem 1.5rem;
      }

      .smodal-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
      }

      .smodal-stat {
        padding: 1rem 0.5rem;
      }

      .smodal-stat__number {
        font-size: 1.35rem;
      }
    }
    /* Campus Map Section */
    .campus-map-section {
      background: var(--color-off-white, #f8f9fa);
      position: relative;
      overflow: hidden;
      padding: 5rem 0;
    }

    .campus-map-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: 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='%231A365E' fill-opacity='0.03'%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;
    }

    .campus-map-container {
      display: grid;
      grid-template-columns: 1fr 280px;
      gap: 2rem;
      align-items: start;
    }

    @media (max-width: 1024px) {
      .campus-map-container {
        grid-template-columns: 1fr;
      }
    }

    /* Map Wrapper */
    .campus-map__wrapper {
      position: relative;
      border-radius: 1rem;
      overflow: hidden;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
      background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 25%, #a5d6a7 50%, #81c784 75%, #66bb6a 100%);
      aspect-ratio: 16 / 10;
    }

    /* Schematic Map Background Pattern */
    .campus-map__wrapper::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.3) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.3) 1px, transparent 1px),
        linear-gradient(90deg, transparent 45%, rgba(180,180,180,0.4) 45%, rgba(180,180,180,0.4) 55%, transparent 55%),
        linear-gradient(transparent 40%, rgba(180,180,180,0.4) 40%, rgba(180,180,180,0.4) 45%, transparent 45%);
      background-size: 50px 50px, 50px 50px, 100% 100%, 100% 100%;
      opacity: 0.6;
    }

    /* Building blocks representation */
    .campus-map__wrapper::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        radial-gradient(ellipse 80px 60px at 20% 25%, rgba(26, 54, 94, 0.2) 0%, transparent 70%),
        radial-gradient(ellipse 100px 70px at 45% 35%, rgba(26, 54, 94, 0.2) 0%, transparent 70%),
        radial-gradient(ellipse 120px 80px at 75% 70%, rgba(26, 54, 94, 0.2) 0%, transparent 70%),
        radial-gradient(ellipse 90px 65px at 70% 20%, rgba(26, 54, 94, 0.2) 0%, transparent 70%),
        radial-gradient(ellipse 85px 60px at 30% 55%, rgba(26, 54, 94, 0.2) 0%, transparent 70%),
        radial-gradient(ellipse 95px 70px at 40% 80%, rgba(26, 54, 94, 0.2) 0%, transparent 70%);
      pointer-events: none;
    }

    .campus-map__image {
      display: none;
    }

    .campus-map__title-overlay {
      position: absolute;
      top: 1rem;
      left: 1rem;
      background: rgba(26, 54, 94, 0.9);
      color: white;
      padding: 0.5rem 1rem;
      border-radius: 0.5rem;
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      z-index: 5;
      backdrop-filter: blur(10px);
    }

    .campus-map__compass {
      position: absolute;
      top: 1rem;
      right: 1rem;
      width: 50px;
      height: 50px;
      background: rgba(255,255,255,0.9);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--color-navy, #1A365E);
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      z-index: 5;
    }

    /* Location Markers */
    .campus-map__marker {
      position: absolute;
      top: var(--marker-top);
      left: var(--marker-left);
      transform: translate(-50%, -50%);
      z-index: 10;
      background: none;
      border: none;
      padding: 0;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.25rem;
    }

    .campus-map__marker-icon {
      width: 48px;
      height: 48px;
      background: var(--color-navy, #1A365E);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 15px rgba(26, 54, 94, 0.4);
      transition: all 0.3s ease;
      position: relative;
      z-index: 2;
    }

    .campus-map__marker-icon img {
      width: 24px;
      height: 24px;
      filter: brightness(0) invert(1);
    }

    .campus-map__marker-label {
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--color-charcoal, #1F2937);
      background: var(--color-white, #fff);
      padding: 0.25rem 0.5rem;
      border-radius: 0.25rem;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      white-space: nowrap;
      opacity: 0;
      transform: translateY(-5px);
      transition: all 0.3s ease;
      pointer-events: none;
    }

    .campus-map__marker-pulse {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 48px;
      height: 48px;
      background: var(--color-navy, #1A365E);
      border-radius: 50%;
      opacity: 0;
      z-index: 1;
      animation: markerPulse 2s infinite;
    }

    @keyframes markerPulse {
      0% { transform: translate(-50%, -50%) scale(1); opacity: 0.4; }
      100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
    }

    .campus-map__marker:hover .campus-map__marker-icon,
    .campus-map__marker:focus .campus-map__marker-icon {
      background: var(--color-red, #D61F31);
      transform: scale(1.15);
      box-shadow: 0 6px 25px rgba(214, 31, 49, 0.5);
    }

    .campus-map__marker:hover .campus-map__marker-label,
    .campus-map__marker:focus .campus-map__marker-label {
      opacity: 1;
      transform: translateY(0);
    }

    .campus-map__marker:focus { outline: none; }

    .campus-map__marker:focus .campus-map__marker-icon {
      box-shadow: 0 0 0 3px var(--color-gold, #1A365E), 0 6px 25px rgba(214, 31, 49, 0.5);
    }

    .campus-map__marker.active .campus-map__marker-icon {
      background: var(--color-gold, #1A365E);
    }

    /* Legend Sidebar */
    .campus-map__legend {
      background: var(--color-white, #fff);
      border-radius: 1rem;
      padding: 1.5rem;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
      position: sticky;
      top: 120px;
    }

    .campus-map__legend-title {
      font-size: 1rem;
      font-weight: 700;
      color: var(--color-charcoal, #1F2937);
      margin-bottom: 1rem;
      padding-bottom: 0.75rem;
      border-bottom: 1px solid #e5e7eb;
    }

    .campus-map__legend-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .campus-map__legend-item {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.75rem 1rem;
      background: var(--color-off-white, #f8f9fa);
      border: 1px solid transparent;
      border-radius: 0.5rem;
      cursor: pointer;
      transition: all 0.3s ease;
      width: 100%;
      text-align: left;
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--color-charcoal, #1F2937);
    }

    .campus-map__legend-item:hover,
    .campus-map__legend-item:focus {
      background: var(--color-navy, #1A365E);
      color: var(--color-white, #fff);
      border-color: var(--color-navy, #1A365E);
    }

    .campus-map__legend-item:hover .campus-map__legend-icon,
    .campus-map__legend-item:focus .campus-map__legend-icon {
      filter: brightness(0) invert(1);
    }

    .campus-map__legend-icon {
      width: 24px;
      height: 24px;
      transition: filter 0.3s ease;
    }

    @media (max-width: 1024px) {
      .campus-map__legend {
        position: static;
        margin-top: 1.5rem;
      }
      .campus-map__legend-list {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.75rem;
      }
      .campus-map__legend-item {
        flex: 0 0 auto;
        padding: 0.5rem 1rem;
      }
    }

    @media (max-width: 768px) {
      .campus-map__marker-icon {
        width: 36px;
        height: 36px;
      }
      .campus-map__marker-icon img {
        width: 18px;
        height: 18px;
      }
      .campus-map__marker-pulse {
        width: 36px;
        height: 36px;
      }
    }

    @media (max-width: 480px) {
      .campus-map-section {
        padding: 3rem 0;
      }
      .campus-map__marker-icon {
        width: 28px;
        height: 28px;
      }
      .campus-map__marker-icon img {
        width: 14px;
        height: 14px;
      }
      .campus-map__marker-label {
        display: none;
      }
    }

    /* Campus Map Modal */
    .campus-map-modal {
      position: fixed;
      inset: 0;
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 2rem;
      opacity: 0;
      visibility: hidden;
      transition: all 0.4s ease;
    }

    .campus-map-modal.active {
      opacity: 1;
      visibility: visible;
    }

    .campus-map-modal__backdrop {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.7);
      backdrop-filter: blur(8px);
    }

    .campus-map-modal__content {
      position: relative;
      background: var(--color-white, #fff);
      border-radius: 1rem;
      max-width: 500px;
      width: 100%;
      max-height: 85vh;
      overflow: hidden;
      transform: scale(0.95) translateY(20px);
      transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    }

    .campus-map-modal.active .campus-map-modal__content {
      transform: scale(1) translateY(0);
    }

    .campus-map-modal__close {
      position: absolute;
      top: 1rem;
      right: 1rem;
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.9);
      border: none;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      color: var(--color-charcoal, #1F2937);
      transition: all 0.3s ease;
      z-index: 10;
      backdrop-filter: blur(10px);
    }

    .campus-map-modal__close:hover {
      background: var(--color-red, #D61F31);
      color: var(--color-white, #fff);
      transform: rotate(90deg);
    }

    .campus-map-modal__hero {
      position: relative;
      height: 200px;
      overflow: hidden;
    }

    .campus-map-modal__image {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .campus-map-modal__hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(26, 54, 94, 0.2) 0%, rgba(26, 54, 94, 0.9) 100%);
    }

    .campus-map-modal__hero-content {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 1.5rem;
      z-index: 2;
    }

    .campus-map-modal__badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.4rem 0.8rem;
      background: rgba(201, 162, 39, 0.2);
      border: 1px solid rgba(201, 162, 39, 0.4);
      border-radius: 2rem;
      font-size: 0.7rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--color-gold, #1A365E);
      margin-bottom: 0.75rem;
      backdrop-filter: blur(10px);
    }

    .campus-map-modal__title {
      font-family: 'Playfair Display', serif;
      font-size: 1.75rem;
      font-weight: 700;
      color: var(--color-white, #fff);
      margin: 0;
      line-height: 1.2;
    }

    .campus-map-modal__body {
      padding: 1.5rem;
      overflow-y: auto;
      max-height: calc(85vh - 200px);
    }

    .campus-map-modal__description {
      font-size: 0.9375rem;
      color: #666;
      line-height: 1.7;
      margin-bottom: 1.5rem;
    }

    .campus-map-modal__features {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0.75rem;
      margin-bottom: 1.5rem;
    }

    .campus-map-modal__feature {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.8125rem;
      color: var(--color-charcoal, #1F2937);
    }

    .campus-map-modal__feature i {
      width: 28px;
      height: 28px;
      background: #f0f4f8;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.75rem;
      color: var(--color-navy, #1A365E);
    }

    .campus-map-modal__info {
      background: var(--color-off-white, #f8f9fa);
      border-radius: 0.75rem;
      padding: 1rem;
      margin-bottom: 1.5rem;
    }

    .campus-map-modal__info-item {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.5rem 0;
      font-size: 0.875rem;
      color: #666;
    }

    .campus-map-modal__info-item:not(:last-child) {
      border-bottom: 1px solid #e5e7eb;
    }

    .campus-map-modal__info-item i {
      width: 20px;
      color: var(--color-navy, #1A365E);
    }

    .campus-map-modal__cta {
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 0.5rem;
      padding: 1rem 2rem;
      background: var(--color-navy, #1A365E);
      color: white;
      border-radius: 0.5rem;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .campus-map-modal__cta:hover {
      background: var(--color-red, #D61F31);
      transform: translateY(-2px);
    }

    @media (max-width: 640px) {
      .campus-map-modal {
        padding: 0;
        align-items: flex-end;
      }
      .campus-map-modal__content {
        max-width: 100%;
        max-height: 90vh;
        border-radius: 1.5rem 1.5rem 0 0;
      }
      .campus-map-modal__hero {
        height: 160px;
      }
      .campus-map-modal__features {
        grid-template-columns: 1fr;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .campus-map__marker-pulse {
        animation: none;
      }
      .campus-map-modal,
      .campus-map-modal__content {
        transition: opacity 0.01ms;
      }
    }
    /* ========== MODERN FOOTER STYLES ========== */
    .footer-modern {
      position: relative;
      background: #1a2a42;
      color: #fff;
      margin-top: 60px;
    }

    /* Footer Container */
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 5%;
    }

    /* Main Footer - 4 Column Grid */
    .footer-main {
      display: grid;
      grid-template-columns: 1.3fr 0.8fr 1fr 1.2fr;
      gap: 3rem;
      padding: 4rem 0 3rem;
    }

    @media (max-width: 1024px) {
      .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
      }
    }

    @media (max-width: 600px) {
      .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
      }
    }

    /* Scroll Reveal Animations */
    [data-scroll-reveal] [data-reveal] {
      opacity: 0;
      transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }

    [data-scroll-reveal].revealed [data-reveal="up"] {
      animation: revealFromUp 0.6s ease forwards;
    }

    [data-scroll-reveal].revealed [data-reveal="up"][data-delay="1"] {
      animation-delay: 0.1s;
    }

    [data-scroll-reveal].revealed [data-reveal="up"][data-delay="2"] {
      animation-delay: 0.2s;
    }

    [data-scroll-reveal].revealed [data-reveal="up"][data-delay="3"] {
      animation-delay: 0.3s;
    }

    @keyframes revealFromUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Brand Column */
    .footer-brand-col {
      padding-right: 1rem;
    }

    .footer-brand-header {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 1.25rem;
    }

    @media (max-width: 600px) {
      .footer-brand-header {
        justify-content: center;
      }
    }

    .footer-logo-icon {
      width: 220px;
      height: auto;
      object-fit: contain;
      border-radius: 8px;
    }

    .footer-brand-name {
      display: flex;
      flex-direction: column;
      line-height: 1.2;
    }

    .footer-brand-name span {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      font-weight: 600;
      color: #fff;
    }

    .footer-brand-desc {
      color: rgba(255, 255, 255, 0.6);
      font-size: 0.875rem;
      line-height: 1.7;
      margin: 0;
    }

    /* Footer Columns */
    .footer-col h4 {
      font-size: 0.9rem;
      font-weight: 600;
      color: #fff;
      margin: 0 0 1.25rem 0;
      padding-bottom: 0.75rem;
      border-bottom: 2px solid #b61929;
      display: inline-block;
    }

    .footer-col ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-col ul li {
      margin-bottom: 0.75rem;
    }

    .footer-col ul li a {
      color: rgba(255, 255, 255, 0.65);
      font-size: 0.9rem;
      text-decoration: none;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: flex-start;
      gap: 0.75rem;
    }

    .footer-col ul li a:hover {
      color: #fff;
    }

    /* Contact Info with Icons */
    .contact-info li {
      margin-bottom: 1rem;
    }

    .contact-info li a {
      align-items: flex-start;
    }

    .contact-info li a i {
      color: #b61929;
      font-size: 0.85rem;
      width: 18px;
      flex-shrink: 0;
      margin-top: 3px;
    }

    .contact-info li a span {
      line-height: 1.5;
    }

    .contact-info li a:hover i {
      transform: scale(1.1);
    }

    /* Newsletter Column */
    .footer-newsletter-col h4 {
      border-bottom-color: #b61929;
    }

    .newsletter-desc {
      color: rgba(255, 255, 255, 0.6);
      font-size: 0.875rem;
      line-height: 1.6;
      margin: 0 0 1.25rem 0;
    }

    .newsletter-form {
      display: flex;
      gap: 0;
      margin-bottom: 1.5rem;
    }

    .newsletter-form input {
      flex: 1;
      padding: 0.875rem 1rem;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-right: none;
      border-radius: 6px 0 0 6px;
      color: #fff;
      font-size: 0.875rem;
      outline: none;
      transition: all 0.3s ease;
    }

    .newsletter-form input::placeholder {
      color: rgba(255, 255, 255, 0.4);
    }

    .newsletter-form input:focus {
      background: rgba(255, 255, 255, 0.12);
      border-color: rgba(255, 255, 255, 0.2);
    }

    .newsletter-form button {
      padding: 0.875rem 1.25rem;
      background: #b61929;
      border: none;
      border-radius: 0 6px 6px 0;
      color: #fff;
      font-size: 0.9rem;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .newsletter-form button:hover {
      background: #3a6ae8;
    }

    /* Footer Social Section */
    .footer-social-section {
      margin-top: 1rem;
    }

    .social-label {
      display: block;
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      color: rgba(255, 255, 255, 0.5);
      margin-bottom: 0.75rem;
      text-transform: uppercase;
    }

    .social-icons {
      display: flex;
      gap: 0.5rem;
    }

    @media (max-width: 600px) {
      .social-icons {
        justify-content: center;
      }
    }

    .social-icon {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255, 255, 255, 0.1);
      color: #fff;
      font-size: 0.85rem;
      transition: all 0.3s ease;
    }

    .social-icon:hover {
      background: #b61929;
      transform: translateY(-3px);
    }

    /* Footer Bottom */
    .footer-bottom {
      background: rgba(0, 0, 0, 0.2);
      border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-bottom-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 1.25rem 5%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
    }

    @media (max-width: 700px) {
      .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
      }
    }

    .footer-bottom p {
      color: rgba(255, 255, 255, 0.5);
      font-size: 0.8rem;
      margin: 0;
    }

    /* Footer Legal Links */
    .footer-legal-links {
      display: flex;
      gap: 1.5rem;
    }

    @media (max-width: 700px) {
      .footer-legal-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
      }
    }

    .footer-legal-links a {
      color: rgba(255, 255, 255, 0.5);
      font-size: 0.8rem;
      text-decoration: none;
      transition: color 0.3s ease;
    }

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


/* ========== GLOBAL SMALL SCREEN OVERRIDES (360px and below) ========== */
    @media (max-width: 360px) {
      .tas-values-section,
      .stacked-cards-header,
      .panel-journey-item {
        padding-left: 1rem;
        padding-right: 1rem;
      }

      .imagine-layout {
        padding: 0.75rem;
      }

      .decoration-circle {
        width: 200px;
        height: 200px;
      }

      .decoration-circle.large {
        width: 300px;
        height: 300px;
      }

      .imagine-main-card {
        width: min(280px, 88vw);
        height: 400px;
      }

      .preview-card {
        width: 140px;
        height: 210px;
      }
    }

/* clip-path removed — shield uses SVG mask in HTML */