/* ============================================
   Pedal & Coast Bike Tours - Magazine Editorial
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* --- CSS Variables --- */
:root {
    --primary: #2D6A4F;
    --primary-dark: #1E4D38;
    --primary-light: #40916C;
    --accent: #E07A5F;
    --accent-dark: #C9604A;
    --accent-light: #E8967F;
    --light-bg: #F5F5F0;
    --dark: #1B2D1B;
    --dark-soft: #2A3D2A;
    --white: #FFFFFF;
    --gray-50: #FAFAF8;
    --gray-100: #F0F0EB;
    --gray-200: #E0E0D9;
    --gray-300: #C5C5BC;
    --gray-400: #9C9C93;
    --gray-500: #6E6E66;
    --gray-600: #4A4A44;
    --shadow-sm: 0 1px 3px rgba(27, 45, 27, 0.08);
    --shadow-md: 0 4px 12px rgba(27, 45, 27, 0.1);
    --shadow-lg: 0 8px 30px rgba(27, 45, 27, 0.12);
    --shadow-xl: 0 16px 50px rgba(27, 45, 27, 0.15);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 84px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 { line-height: 1.15; font-weight: 700; }
h1 { font-size: 3.4rem; letter-spacing: -1.5px; }
h2 { font-size: 2.4rem; letter-spacing: -0.5px; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* --- Utility --- */
.container {
    width: 100%;
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 32px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--white);
}
.btn-primary:hover {
    background-color: var(--accent-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}
.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-1px);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}
.btn-outline-white:hover {
    background-color: var(--white);
    color: var(--primary);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.02rem;
    border-radius: var(--radius-md);
}

/* ==========================================
   NAVIGATION - Magazine Style
   ========================================== */

/* 4px accent top bar */
.top-bar {
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
}

.navbar {
    position: fixed;
    top: 4px;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(45, 106, 79, 0.06);
    transition: box-shadow var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

/* Left-aligned logo */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
}

.nav-brand svg {
    width: 30px;
    height: 30px;
    fill: var(--primary);
}

/* Right-aligned links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
}

.nav-links a {
    padding: 8px 14px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--gray-600);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    letter-spacing: 0.2px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
    background-color: rgba(45, 106, 79, 0.06);
}

.nav-cta {
    margin-left: 16px;
}

.nav-cta .btn {
    padding: 10px 24px;
    font-size: 0.85rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background-color: var(--dark);
    border-radius: 2px;
    transition: all var(--transition);
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ==========================================
   HERO - Asymmetric Split
   ========================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    padding-top: 76px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 60%, var(--primary) 100%);
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 0;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    padding: 0;
}

.hero-image-area {
    position: relative;
    min-height: 100%;
}

.hero-image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 500px;
    background: rgba(255, 255, 255, 0.06);
    border: 2px dashed rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.92rem;
    text-align: center;
    padding: 40px;
}

.hero-text-area {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px 80px 0;
    color: var(--white);
}

/* Vertical accent line between image and text */
.hero-text-area::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 15%;
    bottom: 15%;
    width: 3px;
    background: linear-gradient(to bottom, transparent, var(--accent), transparent);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.9);
    width: fit-content;
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.08;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    text-align: left;
}

.hero h1 .highlight {
    color: var(--accent);
}

.hero-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 36px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 36px;
    margin-top: 48px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat .number {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--white);
}

.hero-stat .label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    margin-top: 2px;
}

/* ==========================================
   TOUR BANDS - Full-width alternating
   ========================================== */
.tour-band {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
    align-items: stretch;
}

.tour-band:nth-child(even) .tour-band-image {
    order: 2;
}
.tour-band:nth-child(even) .tour-band-content {
    order: 1;
}

.tour-band-image {
    position: relative;
    overflow: hidden;
}

.tour-band-image .image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: 0.88rem;
    text-align: center;
    padding: 24px;
    border: none;
    border-radius: 0;
}

.tour-band-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    padding: 6px 16px;
    background: var(--white);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.tour-band-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 64px;
    background: var(--white);
}

.tour-band:nth-child(even) .tour-band-content {
    background: var(--light-bg);
}

.tour-band-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 16px;
}

.tour-band-content h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.tour-band-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: var(--gray-400);
    font-weight: 500;
}

.tour-band-content > p {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 28px;
    max-width: 500px;
}

.tour-band-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 24px;
}

.tour-band-price span {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--gray-400);
}

/* ==========================================
   ICON STRIP - Horizontal toolbar
   ========================================== */
.icon-strip-section {
    padding: 80px 0;
    background: var(--dark);
    color: var(--white);
    overflow: hidden;
}

.icon-strip-section h2 {
    text-align: center;
    margin-bottom: 48px;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.icon-strip {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.icon-strip-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    min-width: 100px;
}

.icon-strip-item .strip-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    font-size: 1.5rem;
    transition: all var(--transition);
}

.icon-strip-item:hover .strip-icon {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-3px);
}

.icon-strip-item .strip-label {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

/* ==========================================
   TESTIMONIALS - Large pull-quote style
   ========================================== */
.testimonials-section {
    padding: 100px 0;
    background: var(--light-bg);
    overflow: hidden;
}

.testimonials-section .container {
    text-align: center;
}

.testimonials-section .section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 12px;
}

.testimonials-section h2 {
    margin-bottom: 12px;
}

.testimonials-section .section-subtitle {
    font-size: 1rem;
    color: var(--gray-400);
    margin-bottom: 56px;
}

.pull-quote-slider {
    position: relative;
    max-width: 750px;
    margin: 0 auto;
}

.pull-quote {
    display: none;
    flex-direction: column;
    align-items: center;
}

.pull-quote.active {
    display: flex;
}

.pull-quote blockquote {
    font-size: 1.7rem;
    font-style: italic;
    font-weight: 300;
    line-height: 1.5;
    color: var(--dark);
    margin-bottom: 32px;
    position: relative;
    letter-spacing: -0.3px;
}

.pull-quote blockquote::before {
    content: '\201C';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 5rem;
    color: var(--accent);
    opacity: 0.3;
    font-style: normal;
    line-height: 1;
}

.pull-quote-author {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--dark);
}

.pull-quote-detail {
    font-size: 0.78rem;
    color: var(--gray-400);
    margin-top: 4px;
}

.pull-quote-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.pull-quote-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--gray-300);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition);
    padding: 0;
}

.pull-quote-dots button.active {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.2);
}

/* ==========================================
   CTA BANNER
   ========================================== */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--primary-light));
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

.cta-banner .container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.cta-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background-color: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
}

.footer-brand {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-brand svg {
    width: 28px;
    height: 28px;
    fill: var(--accent);
}

.footer-description {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 320px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    transition: all var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    color: var(--white);
}

.footer-column h4 {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
}

.footer-column a {
    display: block;
    padding: 6px 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    transition: all var(--transition);
}

.footer-column a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-bottom {
    margin-top: 60px;
    padding: 28px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.82rem;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links a:hover {
    color: var(--accent);
}

/* ==========================================
   TOURS PAGE - Full sections with overlays
   ========================================== */
.tours-page-header {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.tours-page-header .breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.tours-page-header .breadcrumb a {
    color: rgba(255, 255, 255, 0.5);
}

.tours-page-header .breadcrumb a:hover {
    color: var(--accent);
}

.tours-page-header h1 {
    font-size: 3rem;
    margin-bottom: 12px;
}

.tours-page-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 560px;
}

/* Tour full section with bg image + floating card */
.tour-full-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.tour-full-bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.92rem;
    color: var(--gray-400);
    text-align: center;
    padding: 40px;
    z-index: 0;
}

.tour-full-bg-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: 0.92rem;
    text-align: center;
    padding: 40px;
}

.tour-full-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(27, 45, 27, 0.85), rgba(27, 45, 27, 0.3));
    z-index: 1;
}

.tour-full-section:nth-child(even) .tour-full-overlay {
    background: linear-gradient(to left, rgba(27, 45, 27, 0.85), rgba(27, 45, 27, 0.3));
}

.tour-full-section .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    width: 100%;
    padding-top: 40px;
    padding-bottom: 40px;
}

.tour-full-section:nth-child(even) .container {
    justify-content: flex-end;
}

.tour-overlay-text {
    color: var(--white);
    max-width: 400px;
    margin-right: 60px;
}

.tour-full-section:nth-child(even) .tour-overlay-text {
    margin-right: 0;
    margin-left: 60px;
    order: 2;
}

.tour-overlay-text .tour-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 12px;
}

.tour-overlay-text h2 {
    font-size: 2.4rem;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.tour-overlay-text p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
}

/* Floating info card */
.tour-info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    width: 360px;
    flex-shrink: 0;
    box-shadow: var(--shadow-xl);
}

.tour-full-section:nth-child(even) .tour-info-card {
    order: 1;
}

.tour-info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-100);
}

.tour-info-meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.tour-info-meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.tour-info-meta-item .meta-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(45, 106, 79, 0.08);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    flex-shrink: 0;
}

.tour-info-highlights {
    margin-bottom: 24px;
}

.tour-info-highlights h4 {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 10px;
}

.tour-info-highlights li {
    font-size: 0.85rem;
    color: var(--gray-500);
    padding: 4px 0 4px 20px;
    position: relative;
}

.tour-info-highlights li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 7px;
    height: 7px;
    background: var(--primary-light);
    border-radius: 50%;
}

.tour-info-card .tour-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
}

.tour-info-card .tour-price span {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--gray-400);
}

.tour-info-card .btn {
    width: 100%;
}

/* Rentals section */
.rentals-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.rentals-section .section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 12px;
}

.rentals-section h2 {
    margin-bottom: 8px;
}

.rentals-section .section-subtitle {
    font-size: 1rem;
    color: var(--gray-500);
    margin-bottom: 48px;
}

.rentals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.rental-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
}

.rental-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-md);
}

.rental-card.featured {
    border-color: var(--primary);
}

.rental-card .popular-tag {
    position: absolute;
    top: 16px;
    right: -30px;
    background: var(--accent);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 36px;
    transform: rotate(45deg);
    text-transform: uppercase;
}

.rental-card .rental-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.rental-card h4 {
    margin-bottom: 10px;
}

.rental-card p {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 18px;
}

.rental-card .rental-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 18px;
}

.rental-card .rental-price span {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--gray-400);
}

/* Self-guided side-by-side comparison */
.self-guided-section {
    padding: 100px 0;
}

.self-guided-section .section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 12px;
}

.self-guided-section h2 {
    margin-bottom: 8px;
}

.self-guided-section .section-subtitle {
    font-size: 1rem;
    color: var(--gray-500);
    margin-bottom: 48px;
    max-width: 640px;
}

.self-guided-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.self-guided-card {
    padding: 44px;
    display: flex;
    flex-direction: column;
}

.self-guided-card:first-child {
    background: var(--white);
    border-right: 2px solid var(--gray-100);
}

.self-guided-card:last-child {
    background: var(--light-bg);
}

.self-guided-card .sg-icon {
    font-size: 2rem;
    margin-bottom: 20px;
}

.self-guided-card h3 {
    margin-bottom: 10px;
}

.self-guided-card .route-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 0.85rem;
    color: var(--gray-400);
    font-weight: 500;
}

.self-guided-card p {
    font-size: 0.92rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 24px;
    flex-grow: 1;
}

.self-guided-card .price-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.self-guided-card .sg-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
}

.self-guided-card .sg-price span {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--gray-400);
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.faq-section .section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 12px;
}

.faq-section h2 {
    margin-bottom: 8px;
}

.faq-section .section-subtitle {
    font-size: 1rem;
    color: var(--gray-500);
    margin-bottom: 48px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--white);
}

.faq-question {
    width: 100%;
    padding: 22px 28px;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    text-align: left;
    transition: background var(--transition);
}

.faq-question:hover {
    background: var(--gray-50);
}

.faq-question .faq-icon {
    font-size: 1.2rem;
    transition: transform var(--transition);
    color: var(--primary);
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.open .faq-question .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-inner {
    padding: 0 28px 22px;
    font-size: 0.92rem;
    color: var(--gray-500);
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

/* ==========================================
   ABOUT PAGE
   ========================================== */

/* Large hero quote */
.about-hero-quote {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
}

.about-hero-quote blockquote {
    font-size: 2.2rem;
    font-style: italic;
    font-weight: 300;
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto 28px;
    letter-spacing: -0.5px;
    position: relative;
}

.about-hero-quote blockquote::before {
    content: '\201C';
    display: block;
    font-size: 6rem;
    color: var(--accent);
    opacity: 0.4;
    font-style: normal;
    line-height: 0.5;
    margin-bottom: 20px;
}

.about-hero-quote .quote-author {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent);
}

.about-hero-quote .quote-role {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
}

/* 2-column story with pull quotes */
.about-story-section {
    padding: 100px 0;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-story-col .section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 16px;
}

.about-story-col h2 {
    margin-bottom: 24px;
}

.about-story-col p {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.85;
    margin-bottom: 18px;
}

.about-pull-quote {
    padding: 28px 32px;
    border-left: 4px solid var(--accent);
    margin: 32px 0;
    background: var(--light-bg);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.about-pull-quote p {
    font-size: 1.1rem;
    font-style: italic;
    font-weight: 500;
    color: var(--dark);
    line-height: 1.6;
    margin: 0;
}

.about-story-image {
    position: relative;
}

.about-story-image .image-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: 0.88rem;
    text-align: center;
    padding: 24px;
    border: 1px dashed var(--gray-300);
}

.about-signature {
    margin-top: 28px;
    font-weight: 700;
    color: var(--dark);
    font-size: 1rem;
}

.about-signature span {
    display: block;
    font-weight: 400;
    color: var(--gray-400);
    font-size: 0.85rem;
}

/* Stats bar */
.about-stats {
    background: var(--primary);
    color: var(--white);
    padding: 70px 0;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.about-stat .stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
}

.about-stat .stat-label {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Values */
.about-values {
    padding: 100px 0;
    background: var(--light-bg);
}

.about-values .section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 12px;
}

.about-values h2 {
    margin-bottom: 8px;
}

.about-values .section-subtitle {
    font-size: 1rem;
    color: var(--gray-500);
    margin-bottom: 48px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.value-card {
    padding: 36px 28px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    text-align: center;
    transition: all var(--transition);
}

.value-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-md);
}

.value-card .value-icon {
    font-size: 2rem;
    margin-bottom: 18px;
}

.value-card h4 {
    margin-bottom: 10px;
}

.value-card p {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* Team - Horizontal scroll */
.about-team {
    padding: 100px 0;
}

.about-team .section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 12px;
}

.about-team h2 {
    margin-bottom: 8px;
}

.about-team .section-subtitle {
    font-size: 1rem;
    color: var(--gray-500);
    margin-bottom: 48px;
}

.team-scroll-wrap {
    overflow-x: auto;
    padding-bottom: 16px;
    margin: 0 -32px;
    padding-left: 32px;
    padding-right: 32px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--gray-300) transparent;
}

.team-scroll-wrap::-webkit-scrollbar {
    height: 6px;
}

.team-scroll-wrap::-webkit-scrollbar-track {
    background: transparent;
}

.team-scroll-wrap::-webkit-scrollbar-thumb {
    background: var(--gray-300);
    border-radius: 3px;
}

.team-scroll {
    display: flex;
    gap: 28px;
    width: max-content;
}

.team-card {
    width: 300px;
    flex-shrink: 0;
    padding: 36px 28px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
}

.team-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
}

.team-card h3 {
    font-size: 1.15rem;
    margin-bottom: 4px;
}

.team-card .team-role {
    font-size: 0.82rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 14px;
}

.team-card p {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ==========================================
   CONTACT PAGE
   ========================================== */
.contact-page-header {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.contact-page-header .breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.contact-page-header .breadcrumb a {
    color: rgba(255, 255, 255, 0.5);
}

.contact-page-header .breadcrumb a:hover {
    color: var(--accent);
}

.contact-page-header h1 {
    font-size: 3rem;
    margin-bottom: 12px;
}

.contact-page-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 560px;
}

/* Contact grid - form LEFT, info RIGHT */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

/* Form */
.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.contact-form h3 {
    margin-bottom: 8px;
}

.contact-form > p {
    font-size: 0.92rem;
    color: var(--gray-500);
    margin-bottom: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--dark);
    transition: border-color var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-300);
}

.contact-form .btn {
    width: 100%;
}

/* Contact info side */
.contact-info-side {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-info-card {
    display: flex;
    gap: 18px;
    padding: 24px;
    background: var(--light-bg);
    border-radius: var(--radius-md);
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: var(--radius-md);
    flex-shrink: 0;
    font-size: 1.2rem;
    box-shadow: var(--shadow-sm);
}

.contact-info-card h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.contact-info-card p {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.6;
}

.contact-info-card a {
    color: var(--primary);
    font-weight: 500;
}

.contact-info-card a:hover {
    color: var(--accent);
}

.contact-info-card .small-note {
    font-size: 0.78rem;
    color: var(--gray-400);
    margin-top: 4px;
}

/* Map placeholder */
.map-placeholder {
    width: 100%;
    height: 240px;
    background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: 0.92rem;
    border: 1px dashed var(--gray-300);
}

/* Hours timeline bar */
.hours-timeline {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.hours-timeline h4 {
    font-size: 1rem;
    margin-bottom: 20px;
}

.timeline-bar-group {
    margin-bottom: 20px;
}

.timeline-bar-group:last-child {
    margin-bottom: 0;
}

.timeline-bar-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.timeline-bar-track {
    height: 28px;
    background: var(--gray-100);
    border-radius: 14px;
    position: relative;
    overflow: hidden;
}

.timeline-bar-fill {
    position: absolute;
    top: 0;
    height: 100%;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--white);
}

.timeline-bar-fill.green {
    background: var(--primary);
}

.timeline-bar-fill.accent {
    background: var(--accent);
}

/* Hour markers */
.timeline-hours {
    display: flex;
    justify-content: space-between;
    margin-top: 6px;
    font-size: 0.68rem;
    color: var(--gray-400);
    padding: 0 2px;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
    h1 { font-size: 2.6rem; }
    h2 { font-size: 2rem; }

    .hero .container {
        grid-template-columns: 1fr;
    }

    .hero-image-area {
        display: none;
    }

    .hero-text-area {
        padding: 80px 40px;
    }

    .hero-text-area::before {
        display: none;
    }

    .hero h1 { font-size: 2.8rem; }

    .tour-band {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .tour-band:nth-child(even) .tour-band-image { order: 0; }
    .tour-band:nth-child(even) .tour-band-content { order: 0; }

    .tour-band-image .image-placeholder {
        min-height: 300px;
    }

    .tour-band-content {
        padding: 48px 40px;
    }

    .icon-strip {
        gap: 32px;
    }

    .pull-quote blockquote {
        font-size: 1.4rem;
    }

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

    /* Tours page */
    .tour-full-section {
        min-height: auto;
    }

    .tour-full-section .container {
        flex-direction: column;
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .tour-full-section:nth-child(even) .container {
        justify-content: flex-start;
    }

    .tour-overlay-text {
        margin-right: 0;
        max-width: 100%;
        margin-bottom: 32px;
    }

    .tour-full-section:nth-child(even) .tour-overlay-text {
        margin-left: 0;
        order: 0;
    }

    .tour-full-section:nth-child(even) .tour-info-card {
        order: 0;
    }

    .tour-info-card {
        width: 100%;
        max-width: 500px;
    }

    /* About */
    .about-hero-quote blockquote {
        font-size: 1.6rem;
    }

    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .cta-banner .container {
        flex-direction: column;
        text-align: center;
    }

    .cta-content p {
        margin: 0 auto;
    }

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

@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.3rem; }

    .hero { min-height: 80vh; }
    .hero h1 { font-size: 2.2rem; }

    .hero-text-area {
        padding: 60px 24px;
    }

    /* Mobile nav */
    .nav-links {
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        padding: 24px;
        gap: 4px;
        transform: translateX(100%);
        transition: transform 0.35s ease;
        overflow-y: auto;
    }

    .nav-links.open {
        transform: translateX(0);
    }

    .nav-links a {
        padding: 14px 16px;
        font-size: 1.05rem;
        border-bottom: 1px solid var(--gray-100);
        border-radius: 0;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 12px;
    }

    .nav-cta .btn {
        width: 100%;
        padding: 16px 24px;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .icon-strip {
        gap: 20px;
    }

    .icon-strip-item {
        min-width: 80px;
    }

    .icon-strip-item .strip-icon {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }

    .icon-strip-item .strip-label {
        font-size: 0.7rem;
    }

    .pull-quote blockquote {
        font-size: 1.2rem;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    /* Tours page */
    .tours-page-header h1 { font-size: 2.2rem; }
    .tours-page-header { padding: 120px 0 50px; }

    .tour-overlay-text h2 { font-size: 1.8rem; }

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

    .self-guided-compare {
        grid-template-columns: 1fr;
    }

    .self-guided-card:first-child {
        border-right: none;
        border-bottom: 2px solid var(--gray-100);
    }

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

    /* Contact page */
    .contact-page-header h1 { font-size: 2.2rem; }
    .contact-page-header { padding: 120px 0 50px; }

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

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

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    /* About */
    .about-hero-quote { padding: 130px 0 70px; }
    .about-hero-quote blockquote { font-size: 1.3rem; }

    .about-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .about-stat .stat-number {
        font-size: 2.2rem;
    }

    .team-card {
        width: 260px;
    }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    h1 { font-size: 1.9rem; }
    .hero h1 { font-size: 1.9rem; }
    .hero { min-height: 70vh; }

    .hero-text-area {
        padding: 48px 16px;
    }

    .icon-strip {
        gap: 14px;
    }

    .icon-strip-item {
        min-width: 64px;
    }

    .tour-band-content {
        padding: 36px 24px;
    }

    .tour-full-section .container {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .tour-info-card {
        padding: 28px 24px;
    }

    .self-guided-card {
        padding: 32px 24px;
    }

    .about-hero-quote { padding: 120px 0 60px; }
    .about-hero-quote blockquote { font-size: 1.15rem; }

    .about-story-section { padding: 60px 0; }
    .about-values { padding: 60px 0; }
    .about-team { padding: 60px 0; }
    .rentals-section { padding: 60px 0; }
    .self-guided-section { padding: 60px 0; }
    .faq-section { padding: 60px 0; }
    .testimonials-section { padding: 60px 0; }
    .contact-section { padding: 48px 0; }

    .contact-form {
        padding: 28px 20px;
    }
}
