html, body {
    margin: 0;
    padding: 0;
}
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            /* Official GCRN Branding - Oxford Blue */
            --oxford-blue: #002247;
            --oxford-blue-light: #003366;
            --oxford-blue-dark: #001530;
            
            /* Authentic Railway Palette */
            --cream: #FFFFD8;
            --warm-white: #FAF9F6;
            --light-grey: #E8E8E8;
            --mid-grey: #999999;
            --dark-grey: #4A4A4A;
            --charcoal: #2A2A2A;
            --pure-white: #FFFFFF;
            
            /* Signal colours (sparingly) */
            --signal-red: #C1272D;
            --heritage-green: #2D5016;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background-color: var(--warm-white);
            color: var(--charcoal);
            line-height: 1.6;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* ========================================
           HEADER & NAVIGATION
        ======================================== */

        #header-container {
            position: sticky;
            top: 0;
            z-index: 100;
        }

        /* Alert Banner - Simple & Classic */
        .alert-banner {
            background: var(--oxford-blue);
            color: white;
            text-align: center;
            padding: 14px 20px;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0.5px;
            overflow: hidden;
            white-space: nowrap;
            position: relative;
            height: 48px;
            display: flex;
            align-items: center;
        }

        .alert-banner::before {
            content: '🚂 Flying Scotsman & Tornado visiting March 2026 - Book your tickets now!          🚂 Flying Scotsman & Tornado visiting March 2026 - Book your tickets now!          ';
            position: absolute;
            white-space: nowrap;
            animation: scroll-left 30s linear infinite;
        }

        @keyframes scroll-left {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* Top Navigation Bar */
        .top-nav {
            background-color: var(--oxford-blue);
            padding: 12px 0;
        }

        .top-nav-content {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 40px;
        }

        .contact-info, .social-links {
            display: flex;
            gap: 12px;
        }

        .contact-info a, .social-links a {
            color: white;
            text-decoration: none;
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s;
            background-color: rgba(255,255,255,0.1);
            font-size: 16px;
        }

        .contact-info a:hover, .social-links a:hover {
            background-color: rgba(255,255,255,0.25);
            transform: translateY(-2px);
        }

        /* Main Header - Clean & Professional */
        header {
            background: white;
            border-bottom: 4px solid var(--oxford-blue);
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }

        .header-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 20px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 30px;
        }
        

        /* Logo */
        .nav-logo-link {
            text-decoration: none;
            flex-shrink: 0;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .nav-logo img {
            height: 60px;
            width: auto;
        }

        .nav-logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1.1;
        }

        .nav-logo-title {
            color: var(--charcoal);
            font-family: 'Inter', sans-serif;
            font-size: 20px;
            font-weight: 800;
            letter-spacing: -0.5px;
            display: flex;
            flex-direction: column;
            line-height: 1;
        }
        
        .logo-line-1 {
            font-size: 18px;
        }
        
        .logo-line-2 {
            font-size: 20px;
        }

        .nav-logo-subtitle {
            color: var(--oxford-blue);
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            font-weight: 600;
        }

        /* Navigation - Clean Pills */
        .desktop-nav {
            display: flex;
            gap: 8px;
            align-items: center;
        }
        
        .mobile-nav {
            display: none;
        }

        nav a {
            padding: 12px 20px;
            text-decoration: none;
            color: var(--charcoal);
            font-size: 14px;
            font-weight: 600;
            border-radius: 24px;
            transition: all 0.3s;
            border: 2px solid transparent;
            letter-spacing: 0.3px;
        }

        nav a:hover {
            background-color: var(--oxford-blue);
            color: white;
            border-color: var(--oxford-blue);
        }

        .btn-book {
            background: var(--oxford-blue);
            color: white;
            border: 2px solid var(--oxford-blue);
            font-weight: 700;
        }

        .btn-book:hover {
            background: var(--oxford-blue-dark);
            border-color: var(--oxford-blue-dark);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,34,71,0.25);
        }

        /* Dropdown Navigation */
        .nav-dropdown {
            position: relative;
            display: inline-block;
        }

        .nav-dropdown > a::after {
            content: ' ▼';
            font-size: 9px;
            margin-left: 4px;
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            min-width: 280px;
            border-radius: 12px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.15);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s;
            z-index: 1000;
            margin-top: 10px;
            border: 2px solid var(--oxford-blue);
        }

        .nav-dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-menu a {
            display: block;
            padding: 14px 20px;
            color: var(--charcoal);
            font-size: 14px;
            font-weight: 600;
            border-radius: 0;
            border: none;
            border-bottom: 1px solid var(--light-grey);
        }

        .dropdown-menu a:first-child {
            border-radius: 10px 10px 0 0;
        }

        .dropdown-menu a:last-child {
            border-bottom: none;
            border-radius: 0 0 10px 10px;
        }

        .dropdown-menu a:hover {
            background-color: var(--oxford-blue);
            color: white;
            padding-left: 28px;
        }

        /* Hamburger Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 10px;
            z-index: 1000;
        }

        .hamburger span {
            width: 30px;
            height: 3px;
            background-color: var(--oxford-blue);
            margin: 4px 0;
            transition: all 0.3s;
            border-radius: 2px;
        }

        /* ========================================
           HERO SECTION - Classic Railway Style
        ======================================== */

        .hero {
            color: white;
            padding: 140px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
            background: var(--oxford-blue);
        }

        .hero-carousel {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
        }

        .hero-slide.active {
            opacity: 1;
        }

        .hero-slide::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                to bottom,
                rgba(0,0,0,0.3),
                rgba(0,0,0,0.5)
            );
        }

        .hero-content {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .hero h2 {
            font-family: 'Inter', sans-serif;
            font-size: 56px;
            margin-bottom: 24px;
            font-weight: 900;
            text-shadow: 0 4px 12px rgba(0,0,0,0.4);
            letter-spacing: -1.5px;
            line-height: 1.1;
        }

        .hero p {
            font-size: 20px;
            margin-bottom: 40px;
            text-shadow: 0 2px 8px rgba(0,0,0,0.3);
            line-height: 1.7;
            font-weight: 400;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .hero-btn {
            padding: 16px 36px;
            font-size: 16px;
            font-weight: 700;
            border-radius: 30px;
            text-decoration: none;
            transition: all 0.3s;
            border: 3px solid;
            letter-spacing: 0.5px;
        }

        .hero-btn.primary {
            background-color: white;
            color: var(--oxford-blue);
            border-color: white;
        }

        .hero-btn.primary:hover {
            background-color: var(--oxford-blue);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.3);
        }

        .hero-btn.secondary {
            background-color: transparent;
            color: white;
            border-color: white;
        }

        .hero-btn.secondary:hover {
            background-color: white;
            color: var(--oxford-blue);
            transform: translateY(-3px);
        }

        /* Carousel Indicators */
        .carousel-indicators {
            position: absolute;
            bottom: 3rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 10;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            border: 2px solid rgba(255, 255, 255, 0.8);
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 0;
        }

        .indicator:hover {
            background: rgba(255, 255, 255, 0.6);
        }

        .indicator.active {
            background: white;
            width: 32px;
            border-radius: 6px;
        }

        /* ========================================
           QUICK INFO - RIBBON STYLE
        ======================================== */

        .quick-info {
            background: white;
            padding: 0;
            border-top: 4px solid var(--oxford-blue);
            border-bottom: 4px solid var(--oxford-blue);
        }

        .quick-info-content {
            width: 100%;
        }

        .info-ribbon {
            display: flex;
            flex-wrap: wrap;
            align-items: stretch;
            background: var(--oxford-blue);
            color: white;
        }

        .ribbon-item {
            flex: 1 1 0;
            min-width: 200px;
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 30px 25px;
            transition: all 0.3s;
        }

        .ribbon-item:hover {
            background: var(--oxford-blue-light);
        }

        .ribbon-number {
            font-size: 40px;
            font-weight: 900;
            color: rgba(255,255,255,0.3);
            flex-shrink: 0;
            width: 60px;
            text-align: center;
            font-family: 'Inter', sans-serif;
            line-height: 1;
        }

        .ribbon-text {
            flex: 1;
        }

        .ribbon-title {
            font-size: 14px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 6px;
        }

        .ribbon-detail {
            font-size: 13px;
            font-weight: 400;
            opacity: 0.9;
            line-height: 1.4;
        }

        .ribbon-divider {
            width: 2px;
            background: rgba(255,255,255,0.2);
            flex-shrink: 0;
        }

        /* ========================================
           INTRODUCTION SECTION - FLOWING LAYOUT
        ======================================== */

        .introduction {
            background: var(--warm-white);
            padding: 100px 40px;
            position: relative;
            overflow: hidden;
        }

        .introduction::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 300px;
            height: 2px;
            background: var(--oxford-blue);
        }

        .introduction-content {
            max-width: 1100px;
            margin: 0 auto;
        }

        .intro-header {
            text-align: center;
            margin-bottom: 70px;
        }

        .route-badge {
            display: inline-block;
            background: transparent;
            color: var(--oxford-blue);
            padding: 10px 30px;
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 3px;
            text-transform: uppercase;
            border: 2px solid var(--oxford-blue);
            border-left: 6px solid var(--oxford-blue);
            border-right: 6px solid var(--oxford-blue);
            margin-bottom: 30px;
        }

        .intro-header h2 {
            font-size: 56px;
            color: var(--oxford-blue);
            margin-bottom: 20px;
            font-weight: 900;
            letter-spacing: -1.5px;
            text-transform: uppercase;
        }

        .title-underline {
            width: 120px;
            height: 4px;
            background: var(--oxford-blue);
            margin: 0 auto 25px;
        }

        .intro-header .subtitle {
            font-size: 20px;
            color: var(--dark-grey);
            font-weight: 500;
            font-style: italic;
            max-width: 700px;
            margin: 0 auto;
        }

        .introduction-columns {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            margin-bottom: 70px;
            position: relative;
        }

        .introduction-columns::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(
                to bottom,
                transparent,
                var(--oxford-blue) 20%,
                var(--oxford-blue) 80%,
                transparent
            );
            transform: translateX(-50%);
        }

        .intro-text-block {
            position: relative;
        }

        .text-marker {
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--oxford-blue);
            margin-bottom: 20px;
            padding-bottom: 12px;
            border-bottom: 2px solid var(--oxford-blue);
            display: inline-block;
        }

        .intro-text-block p {
            font-size: 17px;
            line-height: 1.9;
            color: var(--charcoal);
        }

        /* Route Statistics */
        .route-stats {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 50px;
            padding: 50px 40px;
            background: white;
            border: 3px solid var(--oxford-blue);
            border-left: 8px solid var(--oxford-blue);
            border-right: 8px solid var(--oxford-blue);
            box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 56px;
            font-weight: 900;
            color: var(--oxford-blue);
            line-height: 1;
            margin-bottom: 10px;
            font-family: 'Inter', sans-serif;
        }

        .stat-label {
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--dark-grey);
        }

        .stat-divider {
            width: 2px;
            height: 60px;
            background: var(--oxford-blue);
        }

        /* ========================================
           EXPERIENCES SECTION - VINTAGE RAILWAY STYLE
        ======================================== */

        .experiences-section {
            background: linear-gradient(to bottom, #f5f3f0, #e8e6e3);
            padding: 100px 40px;
            border-top: 3px solid var(--oxford-blue);
            border-bottom: 3px solid var(--oxford-blue);
            position: relative;
        }

        .experiences-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                repeating-linear-gradient(
                    0deg,
                    transparent,
                    transparent 2px,
                    rgba(0,34,71,0.02) 2px,
                    rgba(0,34,71,0.02) 4px
                );
            pointer-events: none;
        }

        .experiences-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .experiences-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .vintage-badge {
            display: inline-block;
            background: var(--oxford-blue);
            color: white;
            padding: 8px 24px;
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 2px;
            text-transform: uppercase;
            border: 3px solid var(--oxford-blue);
            outline: 2px solid white;
            outline-offset: -6px;
            margin-bottom: 20px;
        }

        .experiences-header h2 {
            font-size: 52px;
            color: var(--oxford-blue);
            margin-bottom: 12px;
            font-weight: 900;
            letter-spacing: -1.5px;
            text-transform: uppercase;
        }

        .experiences-subtitle {
            font-size: 18px;
            color: var(--dark-grey);
            font-weight: 500;
            font-style: italic;
        }

        .experiences-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-top: 50px;
        }

        /* Featured Experience - Vintage Frame Style */
        .featured-experience {
            background: white;
            padding: 8px;
            border: 4px solid var(--oxford-blue);
            box-shadow: 
                0 8px 24px rgba(0,0,0,0.15),
                inset 0 0 0 8px white,
                inset 0 0 0 12px var(--oxford-blue);
        }

        .vintage-frame {
            padding: 50px 40px;
            background: white;
            position: relative;
            border: 2px solid var(--oxford-blue);
        }

        /* Corner decorations */
        .frame-corner {
            position: absolute;
            width: 20px;
            height: 20px;
            border: 3px solid var(--oxford-blue);
        }

        .frame-corner.tl {
            top: 12px;
            left: 12px;
            border-right: none;
            border-bottom: none;
        }

        .frame-corner.tr {
            top: 12px;
            right: 12px;
            border-left: none;
            border-bottom: none;
        }

        .frame-corner.bl {
            bottom: 12px;
            left: 12px;
            border-right: none;
            border-top: none;
        }

        .frame-corner.br {
            bottom: 12px;
            right: 12px;
            border-left: none;
            border-top: none;
        }

        .experience-number {
            font-size: 72px;
            font-weight: 900;
            color: rgba(0,34,71,0.1);
            line-height: 1;
            margin-bottom: -10px;
            font-family: 'Inter', sans-serif;
        }

        .vintage-frame h3 {
            font-size: 28px;
            color: var(--oxford-blue);
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: -0.5px;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .vintage-divider {
            width: 60px;
            height: 3px;
            background: var(--oxford-blue);
            margin: 20px 0;
        }

        .vintage-frame p {
            color: var(--charcoal);
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .experience-details {
            background: #f8f8f8;
            border: 2px solid var(--light-grey);
            padding: 20px;
            margin-bottom: 30px;
        }

        .detail-item {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px dashed var(--light-grey);
        }

        .detail-item:last-child {
            border-bottom: none;
        }

        .detail-label {
            font-weight: 700;
            color: var(--oxford-blue);
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .detail-value {
            color: var(--charcoal);
            font-size: 14px;
        }

        .vintage-button {
            display: inline-block;
            background: var(--oxford-blue);
            color: white;
            padding: 16px 40px;
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            text-decoration: none;
            border: 3px solid var(--oxford-blue);
            transition: all 0.3s;
            box-shadow: 4px 4px 0 rgba(0,34,71,0.2);
        }

        .vintage-button:hover {
            background: white;
            color: var(--oxford-blue);
            transform: translate(-2px, -2px);
            box-shadow: 6px 6px 0 rgba(0,34,71,0.3);
        }

        /* List Style Experiences - Timetable Aesthetic */
        .experiences-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .list-experience {
            background: white;
            border: 3px solid var(--oxford-blue);
            border-left: 8px solid var(--oxford-blue);
            padding: 30px;
            display: flex;
            gap: 24px;
            transition: all 0.3s;
            box-shadow: 3px 3px 0 rgba(0,34,71,0.1);
        }

        .list-experience:hover {
            transform: translateX(4px);
            box-shadow: 5px 5px 0 rgba(0,34,71,0.2);
        }

        .list-number {
            font-size: 48px;
            font-weight: 900;
            color: var(--oxford-blue);
            line-height: 1;
            min-width: 60px;
            font-family: 'Inter', sans-serif;
        }

        .list-content h4 {
            font-size: 20px;
            color: var(--oxford-blue);
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: -0.3px;
            margin-bottom: 10px;
        }

        .list-content p {
            color: var(--dark-grey);
            font-size: 15px;
            line-height: 1.7;
            margin-bottom: 16px;
        }

        .text-link {
            color: var(--oxford-blue);
            font-weight: 700;
            font-size: 14px;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s;
        }

        .text-link:hover {
            letter-spacing: 1.5px;
        }

        /* ========================================
           MAIN CONTAINER
        ======================================== */

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 80px 40px;
        }
        
        @media (max-width: 768px) {
            .container {
                padding: 40px 16px;
            }
        }

        .section {
            margin-bottom: 80px;
            background: white;
            padding: 60px 50px;
            border-radius: 20px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            border: 1px solid var(--light-grey);
        }
        
        @media (max-width: 768px) {
            .section {
                padding: 30px 20px;
                margin-bottom: 40px;
                border-radius: 16px;
            }
        }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 3px solid var(--oxford-blue);
        }

        .section-header h2 {
            font-size: 36px;
            color: var(--oxford-blue);
            font-weight: 800;
            letter-spacing: -0.8px;
        }

        .view-all {
            color: var(--oxford-blue);
            text-decoration: none;
            font-weight: 700;
            font-size: 14px;
            padding: 10px 24px;
            border: 2px solid var(--oxford-blue);
            border-radius: 24px;
            transition: all 0.3s;
        }

        .view-all:hover {
            background-color: var(--oxford-blue);
            color: white;
            transform: translateY(-2px);
        }

        /* ========================================
           EVENT CARDS - CLEAN HERITAGE STYLE
        ======================================== */

        .events-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
            gap: 40px;
        }

        .event-card {
            background: white;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0,0,0,0.1);
            transition: all 0.3s;
            border: 3px solid var(--oxford-blue);
            border-top: 8px solid var(--oxford-blue);
        }

        .event-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0,34,71,0.2);
        }

        .event-image {
            height: 260px;
            background: var(--oxford-blue);
            position: relative;
            overflow: hidden;
        }

        .event-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .event-card:hover .event-image img {
            transform: scale(1.05);
        }

        .event-date {
            position: absolute;
            top: 0;
            right: 0;
            background-color: var(--oxford-blue);
            color: white;
            padding: 12px 24px;
            font-weight: 800;
            font-size: 12px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            border-bottom: 3px solid white;
            border-left: 3px solid white;
        }

        .event-content {
            padding: 32px;
            background: white;
        }
        
        @media (max-width: 768px) {
            .event-content {
                padding: 20px;
            }
        }

        .event-content h3 {
            font-size: 24px;
            margin-bottom: 16px;
            color: var(--oxford-blue);
            font-weight: 800;
            letter-spacing: -0.5px;
            text-transform: uppercase;
            line-height: 1.3;
        }

        .event-content p {
            color: var(--dark-grey);
            margin-bottom: 24px;
            font-size: 15px;
            line-height: 1.7;
        }

        .event-link {
            display: inline-block;
            color: white;
            background: var(--oxford-blue);
            text-decoration: none;
            font-weight: 700;
            padding: 14px 32px;
            border: 3px solid var(--oxford-blue);
            transition: all 0.3s;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

        .event-link:hover {
            background: white;
            color: var(--oxford-blue);
            transform: translateX(4px);
        }

        /* ========================================
           NEWS SECTION
        ======================================== */

        .news-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 30px;
        }

        .featured-news {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 6px 20px rgba(0,0,0,0.1);
            border: 2px solid var(--light-grey);
        }

        .featured-news-image {
            height: 360px;
            background: var(--oxford-blue);
            overflow: hidden;
        }

        .featured-news-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .featured-news-content {
            padding: 34px;
        }

        .news-badge {
            display: inline-block;
            background-color: var(--oxford-blue);
            color: white;
            padding: 8px 18px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 700;
            margin-bottom: 16px;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .featured-news h3 {
            font-size: 32px;
            margin-bottom: 16px;
            color: var(--oxford-blue);
            line-height: 1.3;
            font-weight: 800;
            letter-spacing: -0.5px;
        }

        .featured-news p {
            color: var(--dark-grey);
            margin-bottom: 24px;
            font-size: 16px;
            line-height: 1.7;
        }

        .news-sidebar {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .news-item {
            background: white;
            padding: 24px;
            border-radius: 16px;
            border-left: 4px solid var(--oxford-blue);
            box-shadow: 0 3px 12px rgba(0,0,0,0.08);
            transition: all 0.3s;
            border: 2px solid var(--light-grey);
            border-left: 4px solid var(--oxford-blue);
        }

        .news-item:hover {
            transform: translateX(4px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.12);
        }

        .news-item h4 {
            font-size: 17px;
            margin-bottom: 10px;
            color: var(--oxford-blue);
            font-weight: 700;
        }

        .news-item p {
            font-size: 14px;
            color: var(--dark-grey);
            margin-bottom: 12px;
            line-height: 1.6;
        }

        .news-date {
            font-size: 12px;
            color: var(--mid-grey);
            font-style: italic;
        }

        /* ========================================
           PLAN YOUR VISIT INTRO
        ======================================== */

        .visit-intro {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 60px;
            padding-bottom: 40px;
            border-bottom: 3px solid var(--oxford-blue);
        }

        .visit-intro h2 {
            font-size: 42px;
            color: var(--oxford-blue);
            margin-bottom: 20px;
            font-weight: 900;
            letter-spacing: -1px;
            text-transform: uppercase;
        }

        .visit-intro p {
            font-size: 17px;
            line-height: 1.8;
            color: var(--dark-grey);
        }

        /* ========================================
           INFO CARDS
        ======================================== */

        .info-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .info-card {
            background: white;
            border-radius: 16px;
            text-align: center;
            border: 2px solid var(--light-grey);
            box-shadow: 0 4px 16px rgba(0,0,0,0.08);
            transition: all 0.3s;
            overflow: hidden;
        }

        .info-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 32px rgba(0,0,0,0.15);
            border-color: var(--oxford-blue);
        }

        .info-card-icon {
            width: 100%;
            height: 220px;
            overflow: hidden;
            background-color: var(--light-grey);
        }

        .info-card-icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .info-card-content {
            padding: 32px;
        }

        .info-card h3 {
            font-size: 24px;
            margin-bottom: 16px;
            color: var(--oxford-blue);
            font-weight: 700;
            letter-spacing: -0.3px;
        }

        .info-card p {
            color: var(--dark-grey);
            margin-bottom: 24px;
            line-height: 1.6;
        }

        .info-card a {
            display: inline-block;
            color: var(--oxford-blue);
            text-decoration: none;
            font-weight: 700;
            padding: 12px 28px;
            border: 2px solid var(--oxford-blue);
            border-radius: 24px;
            transition: all 0.3s;
            font-size: 14px;
        }

        .info-card a:hover {
            background-color: var(--oxford-blue);
            color: white;
            transform: translateY(-2px);
        }

        /* ========================================
           REVIEWS SECTION
        ======================================== */

        .reviews-section {
            background: white;
            padding: 80px 40px;
            margin-top: 80px;
        }

        .reviews-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .reviews-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .reviews-header h2 {
            font-size: 42px;
            color: var(--oxford-blue);
            margin-bottom: 16px;
            font-weight: 800;
            letter-spacing: -0.8px;
        }

        .reviews-rating {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            font-size: 16px;
            color: var(--mid-grey);
        }

        .stars {
            color: var(--oxford-blue);
            font-size: 22px;
        }

        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
            gap: 30px;
        }

        .review-card {
            background: var(--warm-white);
            padding: 32px;
            border-radius: 16px;
            box-shadow: 0 3px 12px rgba(0,0,0,0.08);
            border: 2px solid var(--light-grey);
            transition: all 0.3s;
        }

        .review-card:hover {
            border-color: var(--oxford-blue);
            box-shadow: 0 6px 20px rgba(0,0,0,0.12);
        }

        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 16px;
        }

        .reviewer-name {
            font-weight: 700;
            color: var(--oxford-blue);
            font-size: 16px;
        }

        .review-stars {
            color: var(--oxford-blue);
            font-size: 15px;
        }

        .review-text {
            color: var(--dark-grey);
            font-size: 15px;
            line-height: 1.7;
            font-style: italic;
        }

        /* ========================================
           FOOTER
        ======================================== */

        footer {
            background: linear-gradient(to bottom, var(--charcoal), #1a1a1a);
            color: var(--warm-white);
            padding: 60px 40px 30px;
            margin-top: 80px;
            border-top: 4px solid var(--oxford-blue);
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 50px;
            margin-bottom: 40px;
        }

        .footer-about h3 {
            font-size: 24px;
            margin-bottom: 16px;
            color: white;
            font-weight: 700;
        }

        .footer-section h4 {
            font-size: 18px;
            margin-bottom: 16px;
            color: white;
            font-weight: 700;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 10px;
        }

        .footer-section a {
            color: var(--warm-white);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: white;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: var(--mid-grey);
            font-size: 14px;
        }

        /* ========================================
           RESPONSIVE DESIGN
        ======================================== */


        /* ========================================
           NTHC WELCOME SECTION
        ======================================== */

        .nthc-welcome {
            background: linear-gradient(135deg, var(--warm-white) 0%, white 100%);
            padding: 80px 40px;
            border-top: 4px solid var(--oxford-blue);
            border-bottom: 4px solid var(--oxford-blue);
        }

        .nthc-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .nthc-header {
            display: flex;
            align-items: center;
            gap: 40px;
            margin-bottom: 40px;
            padding-bottom: 30px;
            border-bottom: 2px solid var(--oxford-blue);
        }

        .nthc-logo-section {
            flex-shrink: 0;
        }

        .nthc-logo {
            height: 100px;
            width: auto;
        }

        .nthc-text h2 {
            font-size: 36px;
            font-weight: 900;
            color: var(--oxford-blue);
            margin-bottom: 10px;
            letter-spacing: -0.5px;
        }

        .nthc-subtitle {
            font-size: 18px;
            color: var(--dark-grey);
            font-weight: 600;
            font-style: italic;
        }

        .nthc-description {
            text-align: center;
            margin-bottom: 50px;
        }

        .nthc-description p {
            font-size: 20px;
            line-height: 1.7;
            color: var(--charcoal);
            max-width: 900px;
            margin: 0 auto;
        }

        .nthc-attractions {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-bottom: 50px;
        }

        .nthc-attraction {
            background: white;
            padding: 30px 24px;
            border-radius: 12px;
            border: 2px solid var(--light-grey);
            transition: all 0.3s;
            text-align: center;
        }

        .nthc-attraction:hover {
            transform: translateY(-5px);
            border-color: var(--oxford-blue);
            box-shadow: 0 8px 24px rgba(0, 34, 71, 0.15);
        }

        .attraction-icon {
            font-size: 48px;
            margin-bottom: 20px;
            line-height: 1;
            color: var(--oxford-blue);
        }

        .nthc-attraction h3 {
            font-size: 18px;
            font-weight: 700;
            color: var(--oxford-blue);
            margin-bottom: 12px;
        }

        .nthc-attraction p {
            font-size: 15px;
            line-height: 1.6;
            color: var(--dark-grey);
        }

        .nthc-cta {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .nthc-button {
            padding: 16px 32px;
            font-size: 16px;
            font-weight: 700;
            border-radius: 8px;
            text-decoration: none;
            transition: all 0.3s;
            display: inline-block;
        }

        .nthc-button.primary {
            background: var(--oxford-blue);
            color: white;
            border: 2px solid var(--oxford-blue);
        }

        .nthc-button.primary:hover {
            background: var(--oxford-blue-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 34, 71, 0.3);
        }

        .nthc-button.secondary {
            background: transparent;
            color: var(--oxford-blue);
            border: 2px solid var(--oxford-blue);
        }

        .nthc-button.secondary:hover {
            background: var(--oxford-blue);
            color: white;
        }

        @media (max-width: 768px) {
            /* Hide desktop nav, show mobile nav */

        @media (max-width: 768px) {
            /* Hide desktop nav */
            .desktop-nav {
                display: none !important;
            }
            
            /* Mobile header styling */
            .header-content {
                padding: 16px 20px;
                gap: 16px;
            }
            
            .nav-logo {
                gap: 10px;
            }
            
            .nav-logo img {
                height: 45px;
            }
            
            .nav-logo-title {
                font-size: 14px;
            }
            
            .logo-line-1 {
                font-size: 13px;
            }
            
            .logo-line-2 {
                font-size: 14px;
            }
            
            .nav-logo-subtitle {
                font-size: 11px;
            }
            
            .hamburger {
                display: flex;
            }

            /* Clean white mobile nav with stacked layout */
            .mobile-nav {
                display: none;
                position: fixed !important;
                top: 0 !important;
                left: 0 !important;
                width: 100vw !important;
                height: 100vh !important;
                background: white !important;
                flex-direction: column !important;
                padding: 0 !important;
                z-index: 999 !important;
                overflow-y: auto;
                transform: translateX(100%);
                transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
                box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
            }

            .mobile-nav.active {
                display: flex !important;
                transform: translateX(0);
            }
            
            /* Mobile nav header */
            .mobile-nav-header {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 20px 24px;
                background: white;
                border-bottom: 2px solid var(--light-grey);
            }
            
            .mobile-nav-logo {
                display: flex;
                align-items: center;
                gap: 12px;
            }
            
            .mobile-nav-logo img {
                height: 40px;
            }
            
            .mobile-logo-title {
                font-size: 14px;
                font-weight: 800;
                color: var(--charcoal);
            }
            
            .mobile-logo-subtitle {
                font-size: 11px;
                font-weight: 600;
                color: var(--oxford-blue);
            }
            
            .mobile-close {
                width: 44px;
                height: 44px;
                border: 2px solid var(--oxford-blue);
                background: white;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                cursor: pointer;
                font-size: 20px;
                color: var(--oxford-blue);
                transition: all 0.3s;
            }
            
            .mobile-close:hover {
                background: var(--oxford-blue);
                color: white;
                transform: rotate(90deg);
            }
            
            /* Mobile nav content */
            .mobile-nav-content {
                flex: 1;
                padding: 20px 16px;
            }

            .mobile-nav a {
                width: 100% !important;
                text-align: center !important;
                padding: 14px 24px !important;
                margin: 0 0 12px 0 !important;
                font-size: 16px !important;
                border-radius: 24px !important;
                border: 2px solid var(--oxford-blue) !important;
                color: var(--oxford-blue) !important;
                font-weight: 600 !important;
                background: white !important;
                transition: all 0.3s ease !important;
                display: block !important;
                letter-spacing: 0.3px;
            }
            
            .mobile-nav a:hover {
                background-color: var(--oxford-blue) !important;
                color: white !important;
                transform: translateY(-2px);
                box-shadow: 0 4px 12px rgba(0, 34, 71, 0.25);
            }
            
            .mobile-nav .btn-book {
                background: var(--oxford-blue) !important;
                color: white !important;
                margin: 20px 0 0 0 !important;
                padding: 16px 24px !important;
                border-radius: 24px !important;
                font-weight: 700 !important;
                border: 2px solid var(--oxford-blue) !important;
                text-align: center !important;
            }
            
            .mobile-nav .btn-book:hover {
                background: var(--oxford-blue-dark) !important;
                border-color: var(--oxford-blue-dark) !important;
                transform: translateY(-2px);
                box-shadow: 0 6px 16px rgba(0, 34, 71, 0.3);
            }
            
            /* Dropdowns */
            .mobile-nav .nav-dropdown {
                width: 100% !important;
                margin-bottom: 12px;
            }
            
            .mobile-nav .nav-dropdown > a {
                display: flex !important;
                justify-content: center !important;
                align-items: center !important;
                gap: 8px;
            }
            
            .mobile-nav .nav-dropdown > a::after {
                content: '\f107' !important;
                font-family: 'Font Awesome 6 Free' !important;
                font-weight: 900 !important;
                font-size: 14px !important;
                color: var(--oxford-blue) !important;
                transition: transform 0.3s ease;
            }
            
            .mobile-nav .nav-dropdown:hover > a::after,
            .mobile-nav .nav-dropdown.active > a::after {
                color: white !important;
            }
            
            .mobile-nav .nav-dropdown.active > a::after {
                transform: rotate(180deg) !important;
            }

            .mobile-nav .dropdown-menu {
                position: static !important;
                opacity: 0 !important;
                max-height: 0 !important;
                overflow: hidden !important;
                background: transparent !important;
                transition: all 0.3s ease !important;
                border: none !important;
                margin-top: 8px !important;
                padding: 0 !important;
            }
            
            .mobile-nav .nav-dropdown.active .dropdown-menu {
                opacity: 1 !important;
                max-height: 500px !important;
            }

            .mobile-nav .dropdown-menu a {
                font-size: 15px !important;
                padding: 12px 24px !important;
                margin: 0 0 8px 0 !important;
                color: var(--oxford-blue) !important;
                font-weight: 500 !important;
                background: white !important;
                border: 2px solid var(--light-grey) !important;
                border-radius: 24px !important;
                text-align: center !important;
            }
            
            .mobile-nav .dropdown-menu a:hover {
                background-color: var(--oxford-blue) !important;
                color: white !important;
                border-color: var(--oxford-blue) !important;
                transform: translateY(-2px);
                box-shadow: 0 4px 12px rgba(0, 34, 71, 0.25);
            }
            
            /* Footer */
            .mobile-nav-footer {
                padding: 24px;
                background: var(--warm-white);
                border-top: 2px solid var(--light-grey);
            }
            
            .mobile-contact {
                display: flex;
                flex-direction: column;
                gap: 12px;
                margin-bottom: 20px;
            }
            
            .mobile-contact a {
                display: flex !important;
                align-items: center;
                gap: 12px;
                font-size: 15px !important;
                padding: 16px 20px !important;
                background: white !important;
                border-radius: 8px !important;
                border: 2px solid var(--light-grey) !important;
                color: var(--charcoal) !important;
                font-weight: 600 !important;
                transition: all 0.3s;
            }
            
            .mobile-contact a:hover {
                border-color: var(--oxford-blue) !important;
                background: var(--oxford-blue) !important;
                color: white !important;
            }
            
            .mobile-contact a:hover i {
                color: white !important;
            }
            
            .mobile-contact a i {
                color: var(--oxford-blue);
                font-size: 18px;
            }
            
            .mobile-social {
                display: flex;
                justify-content: center;
                gap: 16px;
            }
            
            .mobile-social a {
                width: 48px !important;
                height: 48px !important;
                display: flex !important;
                align-items: center;
                justify-content: center;
                background: white !important;
                border: 2px solid var(--oxford-blue) !important;
                border-radius: 50% !important;
                color: var(--oxford-blue) !important;
                font-size: 20px !important;
                padding: 0 !important;
                transition: all 0.3s;
            }
            
            .mobile-social a:hover {
                background: var(--oxford-blue) !important;
                color: white !important;
                transform: translateY(-3px);
                box-shadow: 0 4px 12px rgba(0, 34, 71, 0.3);
            }
            
            /* NTHC Welcome Section Mobile */
            .nthc-welcome {
                padding: 50px 20px;
            }
            
            .nthc-header {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }
            
            .nthc-logo {
                height: 70px;
            }
            
            .nthc-text h2 {
                font-size: 28px;
            }
            
            .nthc-subtitle {
                font-size: 16px;
            }
            
            .nthc-description p {
                font-size: 16px;
            }
            
            .nthc-attractions {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .nthc-attraction {
                padding: 24px 20px;
            }
            
            .nthc-cta {
                flex-direction: column;
            }
            
            .nthc-button {
                width: 100%;
                text-align: center;
            }
            
            .section {
                padding: 30px 20px;
                margin-bottom: 40px;
                border-radius: 16px;
            }
            
            .quick-info {
                padding: 0;
            }
            
            .info-ribbon {
                flex-direction: column;
                flex-wrap: nowrap;
            }
            
            .ribbon-item {
                padding: 20px;
                min-width: unset;
            }
            
            .ribbon-divider {
                width: 100%;
                height: 1px;
            }
            
            .ribbon-number {
                font-size: 32px;
                width: 50px;
            }

            .hero {
                padding: 100px 20px;
            }

            .hero h2 {
                font-size: 36px;
            }

            .hero p {
                font-size: 17px;
            }

            .hero-buttons {
                flex-direction: column;
            }
            
            .introduction {
                padding: 60px 16px;
            }

            .intro-header h2 {
                font-size: 36px;
            }
            
            .route-badge {
                font-size: 10px;
                padding: 8px 20px;
            }

            .introduction-columns {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .introduction-columns::before {
                display: none;
            }
            
            .route-stats {
                flex-direction: column;
                gap: 30px;
                padding: 30px 20px;
            }
            
            .stat-divider {
                width: 60px;
                height: 2px;
            }
            
            .stat-number {
                font-size: 42px;
            }
            
            .experiences-section {
                padding: 60px 16px;
            }
            
            .experiences-header h2 {
                font-size: 32px;
            }
            
            .experiences-layout {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .vintage-frame {
                padding: 40px 24px;
            }
            
            .vintage-frame h3 {
                font-size: 22px;
            }
            
            .list-experience {
                flex-direction: column;
                gap: 16px;
                padding: 24px;
            }
            
            .list-number {
                font-size: 36px;
            }

            .news-grid {
                grid-template-columns: 1fr;
            }
            
            .featured-news-content {
                padding: 24px;
            }
            
            .news-item {
                padding: 20px;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }

            .section-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 16px;
            }
            
            .section-header h2 {
                font-size: 28px;
            }

            .events-grid {
                grid-template-columns: 1fr;
            }
            
            .event-image {
                height: 200px;
            }
            
            .event-content {
                padding: 20px;
            }
            
            .visit-intro {
                margin-bottom: 40px;
                padding-bottom: 30px;
            }
            
            .visit-intro h2 {
                font-size: 32px;
            }
            
            .visit-intro p {
                font-size: 16px;
            }
            
            .info-cards {
                gap: 20px;
            }
            
            .info-card-content {
                padding: 24px;
            }
            
            .reviews-section {
                padding: 60px 16px;
            }
            
            .reviews-header h2 {
                font-size: 32px;
            }
            
            .reviews-grid {
                gap: 20px;
            }
            
            .review-card {
                padding: 24px;
            }
            
            footer {
                padding: 50px 20px 25px;
            }
        }