/* ============================================
   GoNC500.com - North Coast 500 Motorhome Theme
   Scottish Highlands Adventure Design
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Source+Sans+3:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
    /* Highland colour palette */
    --heather:      #6B3FA0;
    --heather-dark: #4A2D6F;
    --heather-light:#8B6BBF;
    --glen-green:   #2D5016;
    --moss:         #4A7C3F;
    --moss-light:   #6BA35D;
    --loch-blue:    #1B4965;
    --loch-light:   #2C7DA0;
    --loch-pale:    #BEE9E8;
    --sand:         #F5E6CA;
    --sand-light:   #FFF8EE;
    --peat:         #3D2B1F;
    --peat-light:   #5C4033;
    --whisky:       #D4A574;
    --whisky-gold:  #E8B923;
    --sunset:       #E07A3A;
    --cloud:        #F0F0F0;
    --mist:         #E8E8E8;
    --slate:        #4A5568;
    --dark:         #1A1A2E;
    --white:        #FFFFFF;
    --danger:       #C53030;
    --success:      #38A169;

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body:    'Source Sans 3', -apple-system, sans-serif;
    --font-mono:    'JetBrains Mono', monospace;

    /* Layout */
    --max-width:    1280px;
    --header-h:     80px;
    --radius:       8px;
    --radius-lg:    16px;
    --shadow:       0 2px 8px rgba(0,0,0,0.1);
    --shadow-lg:    0 8px 32px rgba(0,0,0,0.15);
    --shadow-xl:    0 16px 48px rgba(0,0,0,0.2);
    --transition:   0.3s ease;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    color: var(--peat);
    background: var(--sand-light);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--loch-blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--loch-light); }
ul, ol { list-style: none; }
input, textarea, select, button { font-family: inherit; font-size: inherit; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--peat);
    line-height: 1.2;
    font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }
p { margin-bottom: 1rem; }

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 2px solid var(--whisky-gold);
    transition: all var(--transition);
}
.site-header.scrolled {
    background: rgba(26, 26, 46, 0.98);
    box-shadow: var(--shadow-lg);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--whisky-gold), var(--sunset));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--dark);
    font-family: var(--font-display);
    flex-shrink: 0;
}
.logo-text {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.5px;
    white-space: nowrap;
}
.logo-text span { color: var(--whisky-gold); }
.logo-sub {
    font-family: var(--font-body);
    font-size: 0.65rem;
    color: var(--whisky);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    display: block;
    margin-top: -2px;
}

/* Navigation */
.main-nav ul {
    display: flex;
    gap: 0;
    align-items: center;
    flex-wrap: nowrap;
}
.main-nav a {
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    font-size: 0.78rem;
    padding: 0.45rem 0.6rem;
    border-radius: var(--radius);
    transition: all var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.4px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    line-height: 1;
}
.main-nav a:hover,
.main-nav a.active {
    color: var(--whisky-gold);
    background: rgba(232, 185, 35, 0.1);
}
.nav-dropdown { position: relative; }
.nav-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--dark);
    border: 1px solid rgba(232,185,35,0.2);
    border-radius: var(--radius);
    padding: 0.5rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all var(--transition);
    box-shadow: var(--shadow-xl);
    z-index: 1100;
}
.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu a {
    display: block;
    padding: 0.55rem 1.1rem;
    font-size: 0.83rem;
    border-radius: 0;
    text-transform: none;
    letter-spacing: 0;
    white-space: nowrap;
}
.nav-cta {
    background: linear-gradient(135deg, var(--whisky-gold), var(--sunset)) !important;
    color: var(--dark) !important;
    font-weight: 700 !important;
    padding: 0.55rem 1.1rem !important;
    border-radius: 50px !important;
    margin-left: 0.25rem;
    white-space: nowrap;
}
.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(232,185,35,0.4);
    color: var(--dark) !important;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}
.menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--white);
    margin: 5px 0;
    border-radius: 2px;
    transition: all var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin-top: var(--header-h);
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(180deg,
            rgba(26,26,46,0.35) 0%,
            rgba(26,26,46,0.15) 35%,
            rgba(26,26,46,0.45) 75%,
            rgba(26,26,46,0.92) 100%
        ),
        url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1920&q=85&auto=format&fit=crop');
    background-size: cover;
    background-position: center 40%;
    background-attachment: fixed;
}
/* Fallback gradient for slow connections */
.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1B4965 0%, #2D5016 50%, #1A1A2E 100%);
    z-index: -1;
}
.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    max-width: 900px;
}
.hero-badge {
    display: inline-block;
    background: rgba(232,185,35,0.15);
    border: 1px solid var(--whisky-gold);
    color: var(--whisky-gold);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}
.hero h1 {
    color: var(--white);
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.hero h1 em {
    font-style: italic;
    color: var(--whisky-gold);
}
.hero p {
    color: rgba(255,255,255,0.9);
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    max-width: 650px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
}
.hero-stat {
    text-align: center;
}
.hero-stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--whisky-gold);
}
.hero-stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.btn-primary {
    background: linear-gradient(135deg, var(--whisky-gold), var(--sunset));
    color: var(--dark);
    box-shadow: 0 4px 12px rgba(232,185,35,0.3);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232,185,35,0.4);
    color: var(--dark);
}
.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--dark);
}
.btn-dark {
    background: var(--dark);
    color: var(--white);
}
.btn-dark:hover {
    background: var(--peat);
    color: var(--white);
}
.btn-green {
    background: var(--moss);
    color: var(--white);
}
.btn-green:hover {
    background: var(--glen-green);
    color: var(--white);
}
.btn-sm { padding: 0.5rem 1.2rem; font-size: 0.85rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }

/* ============================================
   SECTIONS
   ============================================ */
section {
    padding: 5rem 0;
}
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}
.section-header h2 {
    margin-bottom: 1rem;
}
.section-header p {
    color: var(--slate);
    font-size: 1.1rem;
}
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--heather);
    margin-bottom: 0.75rem;
}
.section-dark {
    background: var(--dark);
    color: var(--white);
}
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.8); }
.section-green {
    background: linear-gradient(135deg, var(--glen-green), var(--moss));
    color: var(--white);
}
.section-green h2, .section-green h3 { color: var(--white); }
.section-sand { background: var(--sand); }

/* ============================================
   CARDS
   ============================================ */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
a.card { text-decoration: none; color: inherit; display: block; }
.card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--loch-blue), var(--moss));
}
.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.card:hover .card-image img { transform: scale(1.05); }
.card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--whisky-gold);
    color: var(--dark);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
}
.card-badge.free { background: var(--success); color: white; }
.card-badge.paid { background: var(--loch-blue); color: white; }
.card-body { padding: 1.5rem; }
.card-body h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}
.card-body h3 a { color: var(--peat); }
.card-body h3 a:hover { color: var(--heather); }
.card-body p {
    color: var(--slate);
    font-size: 0.95rem;
    line-height: 1.6;
}
.card-meta {
    display: flex;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--mist);
    font-size: 0.8rem;
    color: var(--slate);
}
.card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
    position: relative;
    min-height: 350px;
    display: flex;
    align-items: flex-end;
    margin-top: var(--header-h);
    background: linear-gradient(135deg, var(--dark), var(--loch-blue));
    overflow: hidden;
}
.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(26,26,46,0.9) 0%, rgba(26,26,46,0.3) 100%);
}
.page-hero-content {
    position: relative;
    z-index: 2;
    padding: 3rem 0;
    width: 100%;
}
.breadcrumb {
    display: flex;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 1rem;
}
.breadcrumb a { color: var(--whisky-gold); }
.breadcrumb span { color: rgba(255,255,255,0.4); }
.page-hero h1 {
    color: var(--white);
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 0.75rem;
}
.page-hero .lead {
    color: rgba(255,255,255,0.85);
    font-size: 1.15rem;
    max-width: 700px;
}

/* ============================================
   ATTRACTION DETAIL PAGE
   ============================================ */
.attraction-detail {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    padding: 3rem 0;
}
.attraction-main {}
.attraction-sidebar {
    position: sticky;
    top: calc(var(--header-h) + 2rem);
    align-self: start;
}
.info-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
}
.info-box h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--sand);
}
.info-row {
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--cloud);
    font-size: 0.9rem;
}
.info-row:last-child { border-bottom: none; }
.info-row .label { color: var(--slate); font-weight: 500; }
.info-row .value { font-weight: 600; text-align: right; max-width: 60%; }
.attraction-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}
.attraction-content h2 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--loch-blue);
}
.attraction-content h2:first-child { margin-top: 0; }
.attraction-content p {
    font-size: 1.05rem;
    line-height: 1.8;
}
.motorhome-warning {
    background: #FFF3CD;
    border-left: 4px solid var(--whisky-gold);
    padding: 1rem 1.5rem;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 1.5rem 0;
}
.motorhome-warning strong { color: var(--sunset); }

/* ============================================
   WEATHER WIDGET
   ============================================ */
.weather-widget {
    background: linear-gradient(135deg, var(--loch-blue), var(--dark));
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    color: var(--white);
    text-align: center;
}
.weather-widget h4 {
    color: var(--whisky-gold);
    margin-bottom: 1rem;
}
.weather-current {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.weather-temp {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-display);
}
.weather-desc {
    font-size: 0.9rem;
    opacity: 0.85;
}
.weather-forecast {
    display: flex;
    gap: 0.5rem;
    justify-content: space-between;
}
.weather-day {
    text-align: center;
    font-size: 0.75rem;
    padding: 0.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius);
    flex: 1;
}
.weather-day img { width: 32px; height: 32px; margin: 0 auto; }

/* ============================================
   MAP CONTAINER
   ============================================ */
.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--white);
}
.map-container #map,
.map-container .map-embed {
    width: 100%;
    height: 500px;
}
.map-full { height: 70vh !important; }

/* ============================================
   ROUTE PLANNER
   ============================================ */
.planner-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 2rem;
    min-height: 70vh;
}
.planner-sidebar {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    overflow-y: auto;
    max-height: 80vh;
}
.planner-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.route-segment {
    padding: 1rem;
    border: 2px solid var(--cloud);
    border-radius: var(--radius);
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all var(--transition);
}
.route-segment:hover,
.route-segment.active {
    border-color: var(--whisky-gold);
    background: var(--sand-light);
}
.route-segment h4 { font-size: 0.95rem; margin-bottom: 0.5rem; }
.route-segment .route-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--slate);
}
.fuel-estimate {
    background: var(--sand);
    border-radius: var(--radius);
    padding: 1.25rem;
    margin-top: 1.5rem;
}
.fuel-estimate h4 {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    color: var(--sunset);
}
.fuel-input {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.fuel-input label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--slate);
    display: block;
    margin-bottom: 0.3rem;
}
.fuel-input input, .fuel-input select {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid var(--mist);
    border-radius: var(--radius);
    font-size: 0.9rem;
}
.fuel-result {
    background: var(--white);
    padding: 1rem;
    border-radius: var(--radius);
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
}
.fuel-result span {
    color: var(--sunset);
    font-size: 1.5rem;
    font-family: var(--font-display);
}

/* ============================================
   BOOKING SECTION
   ============================================ */
.booking-section {
    background: linear-gradient(135deg, var(--heather-dark), var(--dark));
    position: relative;
    overflow: hidden;
}
.booking-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232,185,35,0.1) 0%, transparent 70%);
    border-radius: 50%;
}
.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.booking-info h2 { color: var(--white); margin-bottom: 1rem; }
.booking-info p { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 2rem; }
.booking-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}
.booking-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
}
.booking-feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(232,185,35,0.15);
    border: 1px solid rgba(232,185,35,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.booking-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-xl);
}
.booking-form-card h3 {
    text-align: center;
    margin-bottom: 1.5rem;
}
.form-group {
    margin-bottom: 1.25rem;
}
.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
    color: var(--peat);
}
.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--mist);
    border-radius: var(--radius);
    font-size: 0.95rem;
    transition: border-color var(--transition);
    background: var(--sand-light);
}
.form-control:focus {
    outline: none;
    border-color: var(--whisky-gold);
    box-shadow: 0 0 0 3px rgba(232,185,35,0.15);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
textarea.form-control { resize: vertical; min-height: 100px; }

/* ============================================
   PARKING LISTING
   ============================================ */
.parking-filters {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}
.filter-btn {
    padding: 0.5rem 1.2rem;
    border: 2px solid var(--mist);
    border-radius: 50px;
    background: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    color: var(--slate);
}
.filter-btn:hover,
.filter-btn.active {
    border-color: var(--whisky-gold);
    background: var(--whisky-gold);
    color: var(--dark);
}
.facility-icons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 0.75rem;
}
.facility-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}
.facility-icon.available { background: #C6F6D5; color: var(--glen-green); }
.facility-icon.unavailable { background: var(--cloud); color: #999; text-decoration: line-through; }

/* ============================================
   FACILITIES PAGE
   ============================================ */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}
.facility-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.25rem;
    box-shadow: var(--shadow);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: all var(--transition);
}
.facility-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.facility-type-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}
.facility-type-icon.fuel { background: #FED7D7; }
.facility-type-icon.garage { background: #FEEBC8; }
.facility-type-icon.shop { background: #C6F6D5; }
.facility-type-icon.medical { background: #BEE3F8; }
.facility-info h4 { font-size: 1rem; margin-bottom: 0.3rem; }
.facility-info p { font-size: 0.85rem; color: var(--slate); margin: 0; }
.facility-info .phone { color: var(--loch-blue); font-weight: 600; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 4rem 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-about .logo { margin-bottom: 1rem; }
.footer-about p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
}
.footer-col h4 {
    color: var(--whisky-gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.25rem;
    font-family: var(--font-body);
    font-weight: 700;
}
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: color var(--transition);
}
.footer-col a:hover { color: var(--whisky-gold); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .attraction-detail { grid-template-columns: 1fr; }
    .attraction-sidebar { position: static; }
    .planner-grid { grid-template-columns: 1fr; }
    .booking-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1100px) {
    .main-nav a { font-size: 0.72rem; padding: 0.4rem 0.45rem; }
    .nav-cta { padding: 0.5rem 0.9rem !important; }
}
@media (max-width: 768px) {
    :root { --header-h: 64px; }
    .menu-toggle { display: block; }
    .main-nav {
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--dark);
        transform: translateX(100%);
        transition: transform var(--transition);
        padding: 1.5rem;
        overflow-y: auto;
        z-index: 999;
    }
    .main-nav.open { transform: translateX(0); }
    .main-nav ul { flex-direction: column; gap: 0; }
    .main-nav li { border-bottom: 1px solid rgba(255,255,255,0.06); }
    .main-nav a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.9rem 0.5rem;
        font-size: 0.95rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        white-space: normal;
    }
    .nav-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: rgba(255,255,255,0.04);
        border-radius: var(--radius);
        padding: 0.25rem 0 0.5rem 1rem;
        margin-bottom: 0.25rem;
        display: none;
    }
    .nav-dropdown.open .dropdown-menu { display: block; }
    .dropdown-menu a {
        font-size: 0.88rem;
        padding: 0.5rem 0.75rem;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        text-transform: none;
        letter-spacing: 0;
    }
    .nav-cta {
        margin: 1rem 0 0 0 !important;
        text-align: center;
        justify-content: center;
        padding: 0.85rem 1.5rem !important;
        font-size: 1rem !important;
        display: flex !important;
    }
    /* Hamburger animation */
    .menu-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .menu-toggle.active span:nth-child(2) { opacity: 0; }
    .menu-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}
    .hero-stats { gap: 1.5rem; }
    .hero-stat-number { font-size: 1.8rem; }
    .card-grid { grid-template-columns: 1fr; }
    .booking-features { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
    .hero { min-height: 80vh; }
    /* Mobile-specific improvements */
    .hero h1 { font-size: 2rem; }
    .hero p { font-size: 0.95rem; }
    .section-header h2 { font-size: 1.5rem; }
    section { padding: 3rem 0; }
    .container { padding: 0 1rem; }
    .page-hero { min-height: 250px !important; }
    .page-hero h1 { font-size: 1.75rem; }
    .attraction-detail { grid-template-columns: 1fr; gap: 1.5rem; }
    .attraction-sidebar { position: static; }
    .attraction-content { padding: 1.5rem; }
    .planner-grid { grid-template-columns: 1fr; }
    .planner-sidebar { max-height: none; }
    .booking-grid { grid-template-columns: 1fr; gap: 2rem; }
    .info-box { padding: 1.25rem; }
    /* Featured vehicle card mobile */
    .featured-vehicle-card > div,
    [style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
    /* Owner CTA section mobile */
    .section-green .container > div {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    /* Touch-friendly buttons */
    .btn { min-height: 44px; min-width: 44px; }
    .btn-sm { min-height: 36px; }
    /* Navigation panels on mobile */
    .section-dark [style*="grid-template-columns:repeat(auto-fill"] {
        grid-template-columns: 1fr !important;
    }
    /* Form improvements */
    .form-control { font-size: 16px; /* Prevents iOS zoom on focus */ }
    /* Map mobile */
    .map-embed, .map-full { height: 300px !important; }
    /* Table scroll hint */
    .table-wrap::after {
        content: '← Scroll →';
        display: block;
        text-align: center;
        font-size: .75rem;
        color: var(--slate);
        padding: .5rem;
    }
    /* Weather grid */
    .weather-forecast { flex-wrap: wrap; }
    .weather-day { min-width: 55px; }
    /* Booking form on mobile */
    .booking-form-card { padding: 1.5rem; }
    /* Check-in inventory columns */
    [style*="columns:2"] { columns: 1 !important; }
    /* Star ratings mobile */
    .star-rating label { font-size: 2rem !important; }
    /* Card image height on mobile */
    .card-image { height: 180px; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
/* Scroll-triggered card animations */
.animate-in {
    animation: fadeInUp 0.6s ease both;
}
.animate-in:nth-child(2) { animation-delay: 0.08s; }
.animate-in:nth-child(3) { animation-delay: 0.16s; }
.animate-in:nth-child(4) { animation-delay: 0.24s; }
.animate-in:nth-child(5) { animation-delay: 0.32s; }
.animate-in:nth-child(6) { animation-delay: 0.40s; }

/* Utility */
.text-center { text-align: center; }
.text-gold { color: var(--whisky-gold); }
.text-green { color: var(--moss); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.pt-0 { padding-top: 0; }
.gap-2 { gap: 1rem; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
@media (max-width: 768px) {
    .grid-2, .grid-3 { grid-template-columns: 1fr; }
}

/* ============================================
   ADDITIONAL UTILITY & COMPONENT CLASSES
   ============================================ */

/* Spacing utilities */
.mt-1 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* Parking card */
.parking-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    transition: border-color var(--transition), transform var(--transition);
}
.parking-card:hover {
    border-color: var(--whisky-gold);
    transform: translateY(-3px);
}
.parking-card h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.parking-card .parking-type-badge {
    display: inline-block;
    padding: 0.2rem 0.65rem;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.parking-card .facilities-row {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 0.75rem;
    font-size: 0.8rem;
}
.parking-card .facility-pill {
    background: var(--sand);
    padding: 0.15rem 0.5rem;
    border-radius: 50px;
}

/* Owner stats grid */
.stat-grid-owner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}
@media (max-width: 768px) {
    .stat-grid-owner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .stat-grid-owner { grid-template-columns: 1fr; }
}

/* Contact page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    align-items: start;
}
@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; }
}

/* Feature choice buttons (contact form) */
.choice-btn {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    border: 2px solid var(--mist);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}
.choice-btn:hover, .choice-btn.selected {
    border-color: var(--whisky-gold);
    background: rgba(232, 185, 35, 0.1);
}

/* Photo gallery */
.photo-gallery-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 420px;
    background: var(--dark);
    position: relative;
    margin-bottom: 8px;
}
.photo-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.photo-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 8px;
}
.photo-thumb {
    border-radius: var(--radius);
    overflow: hidden;
    height: 90px;
    cursor: pointer;
}
.photo-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s;
}
.photo-thumb:hover img { transform: scale(1.05); }

/* Alert variants */
.alert-warning {
    background: #FEFCBF;
    color: #744210;
    border: 1px solid #F6E05E;
    padding: 0.85rem 1.25rem;
    border-radius: var(--radius);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

/* Highlight box */
.highlight-box {
    background: linear-gradient(135deg, var(--glen-green), var(--moss));
    color: white;
    border-radius: var(--radius-lg);
    padding: 1.75rem;
}
.highlight-box h3, .highlight-box h4 { color: white; }
.highlight-box p { color: rgba(255,255,255,0.85); }

/* Owner terms page */
.terms-section { margin-bottom: 2rem; }
.terms-section h3 {
    color: var(--glen-green);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--sand);
}
.terms-section li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    color: var(--peat);
}
.terms-section li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--whisky-gold);
    font-weight: 700;
}

/* btn-danger */
.btn-danger {
    background: var(--danger);
    color: white;
}
.btn-danger:hover {
    background: #9B2C2C;
    color: white;
}

/* Vehicle features grid in owner edit */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.4rem 1rem;
}
@media (max-width: 640px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Dashboard layout */
.grid-dashboard {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
@media (max-width: 768px) {
    .grid-dashboard { grid-template-columns: 1fr; }
}
/* FAQ info boxes on booking page */
.info-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--whisky-gold);
}

.info-box h4 {
    color: var(--peat);
    margin-bottom: 0.75rem;
}

.info-box p {
    color: var(--slate);
    font-size: 0.95rem;
    margin-bottom: 0;
}
.info-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--whisky-gold);
}

.info-box h4 {
    color: var(--peat);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.info-box p {
    color: var(--slate);
    font-size: 0.95rem;
    margin-bottom: 0;
}