/* ===================================
   CSS Variables & Design System
   Leaflet Brand Palette - Navy, Gold, Cream, Taupe
   =================================== */
:root {
    /* BRAND PALETTE - Primary/Backgrounds */
    --brand-navy: #161C27;             /* Deep navy - main background */
    --brand-navy-2: #121926;           /* Slightly different deep navy for sections/gradients */
    --brand-charcoal: #3F3B3F;         /* Dark neutral for overlays, footer variants */
    
    /* BRAND PALETTE - Accent */
    --brand-gold: #C39B60;             /* Antique gold accent: buttons, highlights, rules, icons */
    --brand-gold-dark: #785135;        /* Deep bronze/brown: hover states, borders, emphasis */
    --brand-taupe: #7A6659;            /* Warm taupe: secondary UI, muted headings, subtle borders */
    
    /* BRAND PALETTE - Light Surfaces/Text Backgrounds */
    --brand-cream: #F5EFD9;            /* Parchment/cream: card backgrounds, light sections */
    --brand-stone: #D4D1C2;            /* Soft grey-beige: dividers, secondary surfaces */
    --brand-mist: #AAA09A;             /* Muted grey: placeholder text, subtle UI */
    
    /* BRAND PALETTE - Text */
    --text-on-dark: #F5EFD9;           /* Cream text on navy */
    --text-on-light: #161C27;          /* Navy text on cream cards */
    --text-muted-on-dark: #D4D1C2;     /* Muted text on dark backgrounds */
    --text-muted-on-light: #3F3B3F;    /* Muted text on light backgrounds */
    
    /* Semantic Colors - Mapped to Brand Palette */
    --bg-primary: var(--brand-cream);
    --bg-secondary: var(--brand-stone);
    --bg-dark: var(--brand-navy);
    --bg-accent: var(--brand-navy-2);
    
    --text-primary: var(--text-on-light);
    --text-secondary: var(--brand-taupe);
    --text-light: var(--brand-mist);
    --text-inverse: var(--text-on-dark);
    
    --accent-primary: var(--brand-gold);
    --accent-hover: var(--brand-gold-dark);
    --accent-secondary: var(--brand-taupe);
    
    --border-color: var(--brand-stone);
    --border-subtle: rgba(122, 102, 89, 0.2);
    
    /* Shadows - Warmer tones to match palette */
    --shadow-sm: 0 2px 8px rgba(22, 28, 39, 0.12);
    --shadow-md: 0 4px 16px rgba(22, 28, 39, 0.16);
    --shadow-lg: 0 8px 32px rgba(22, 28, 39, 0.20);
    --shadow-gold: 0 4px 16px rgba(195, 155, 96, 0.25);
    
    /* Legacy color names for backward compatibility */
    --color-ink: var(--text-on-light);
    --color-parchment: var(--brand-cream);
    --color-navy: var(--brand-navy);
    --color-copper: var(--brand-gold);
    --color-copper-dark: var(--brand-gold-dark);
    --color-stone: var(--brand-taupe);
    --color-cream: var(--brand-cream);
    
    /* Typography - Heritage Serif + Clean Sans */
    --font-heading: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --font-body: 'Source Sans 3', 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing Scale */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;
    
    /* Layout */
    --container-max: 1200px;
    --container-narrow: 800px;
    --border-radius: 4px;
    --border-radius-lg: 8px;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
}

/* ===================================
   Tartan Pattern Backgrounds
   Subtle Scottish Heritage Accent
   =================================== */
.tartan-muted {
    position: relative;
}

.tartan-muted::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 10px, var(--color-forest) 10px, var(--color-forest) 12px),
        repeating-linear-gradient(90deg, transparent, transparent 10px, var(--color-burgundy) 10px, var(--color-burgundy) 12px),
        repeating-linear-gradient(45deg, transparent, transparent 20px, var(--color-navy) 20px, var(--color-navy) 22px);
    pointer-events: none;
}

.tartan-ultra {
    position: relative;
}

.tartan-ultra::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 8px, var(--color-forest) 8px, var(--color-forest) 9px),
        repeating-linear-gradient(90deg, transparent, transparent 8px, var(--color-burgundy) 8px, var(--color-burgundy) 9px);
    pointer-events: none;
}

/* Scottish Tartan - Bright Vibrant Colors (not used on header anymore) */
.tartan-header {
    position: relative;
}

/* ===================================
   Reset & Base Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-on-light);
    background: linear-gradient(180deg, var(--brand-navy) 0%, var(--brand-navy-2) 100%);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
}

/* ===================================
   Typography - Heritage Style
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 600; }
h4 { font-size: 1.25rem; font-weight: 600; }

p {
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

strong {
    font-weight: 600;
    color: var(--text-primary);
}

/* Eyebrow text style */
.eyebrow {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    color: var(--color-copper);
    font-family: var(--font-body);
}

/* ===================================
   Utility Classes
   =================================== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.container-narrow {
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.section {
    padding: var(--space-4xl) 0;
}

.section-alt {
    background-color: var(--bg-secondary);
}

.section-dark {
    background-color: var(--bg-dark);
    color: var(--text-inverse);
}

.section-accent {
    background-color: var(--bg-accent);
    color: var(--text-inverse);
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    text-align: center;
    margin-bottom: var(--space-md);
    color: inherit;
    font-weight: 600;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto var(--space-2xl);
    line-height: 1.7;
}

.section-dark .section-subtitle {
    color: var(--text-muted-on-dark);
}

.text-center {
    text-align: center;
}

/* ===================================
   Icons - SVG Inline Styles
   =================================== */
.icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    fill: currentColor;
    vertical-align: middle;
}

.icon-lg {
    width: 48px;
    height: 48px;
}

.icon-xl {
    width: 64px;
    height: 64px;
}

/* ===================================
   Buttons - Premium Heritage Style
   =================================== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    border: 2px solid transparent;
    transition: all var(--transition-base);
    cursor: pointer;
    white-space: nowrap;
    font-family: var(--font-body);
    letter-spacing: 0.02em;
}

.btn-primary {
    background-color: var(--brand-gold);
    color: var(--text-on-light);
    border-color: var(--brand-gold-dark);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--brand-gold-dark);
    color: var(--brand-cream);
    border-color: var(--brand-gold-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-secondary {
    background-color: transparent;
    color: var(--brand-gold);
    border-color: var(--brand-gold);
}

.btn-secondary:hover,
.btn-secondary:focus {
    background-color: rgba(195, 155, 96, 0.12);
    color: var(--brand-gold);
    border-color: var(--brand-gold-dark);
}

.btn-light {
    background-color: var(--brand-cream);
    color: var(--brand-gold-dark);
    border-color: var(--brand-cream);
}

.btn-light:hover,
.btn-light:focus {
    background-color: var(--brand-stone);
    color: var(--brand-navy);
    border-color: var(--brand-stone);
    transform: translateY(-2px);
}

.btn:focus {
    outline: 3px solid rgba(195, 155, 96, 0.4);
    outline-offset: 2px;
}

.btn-full {
    width: 100%;
}

/* ===================================
   Header & Navigation - Premium
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--brand-navy);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    transition: box-shadow var(--transition-base);
    border-bottom: 1px solid rgba(195, 155, 96, 0.2);
}

.nav {
    padding: var(--space-md) 0;
    position: relative;
    z-index: 1;
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-lg);
    position: relative;
    z-index: 1;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.logo-image {
    height: 90px;
    width: auto;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    padding: var(--space-sm);
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--brand-gold);
    position: relative;
    transition: var(--transition-base);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 28px;
    height: 3px;
    background-color: var(--brand-gold);
    transition: var(--transition-base);
}

.hamburger::before { top: -8px; }
.hamburger::after { top: 8px; }

.nav-toggle.active .hamburger {
    background-color: transparent;
}

.nav-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.nav-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

.nav-menu {
    display: flex;
    gap: var(--space-xl);
    align-items: center;
}

.nav-link {
    color: var(--text-on-dark);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand-gold);
    transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link:focus {
    color: var(--brand-gold);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    margin-left: var(--space-md);
}

/* ===================================
   Hero Section - Scottish Heritage
   =================================== */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-image: url('../backgroud.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 76px;
    padding: var(--space-3xl) var(--space-lg);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 42, 29, 0.75) 0%, rgba(16, 26, 43, 0.65) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-cream);
    max-width: 900px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: var(--space-lg);
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
    color: var(--color-cream);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    margin-bottom: var(--space-xl);
    text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.4);
    line-height: 1.6;
    opacity: 0.95;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
    font-size: 0.95rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.trust-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   About Us Section
   =================================== */
.about-section {
    background-color: var(--bg-secondary);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.about-image:hover .about-img {
    transform: scale(1.05);
}

.about-text {
    padding: var(--space-xl);
}

.about-text .section-title {
    text-align: left;
    margin-bottom: var(--space-xl);
}

.about-paragraph {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

.about-tagline {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-primary);
    font-family: var(--font-heading);
    margin-top: var(--space-2xl);
    line-height: 1.4;
}

/* ===================================
   How It Works Section
   =================================== */
.how-it-works {
    background-color: var(--brand-cream);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-2xl);
    margin-top: var(--space-2xl);
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: var(--accent-primary);
    color: var(--color-cream);
    border-radius: 50%;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    font-family: var(--font-heading);
    box-shadow: var(--shadow-copper);
}

.step-title {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.step-description {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===================================
   Who This Is For Section
   =================================== */
.who-for {
    background-color: var(--bg-secondary);
}

.personas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.addon-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-md);
}

.addon-grid .persona-card {
    padding: var(--space-lg);
}

.addon-grid .persona-icon {
    width: 40px;
    height: 40px;
}

.addon-grid .persona-title {
    font-size: 1rem;
}

.addon-grid .persona-description {
    font-size: 0.85rem;
}

.persona-card {
    background-color: var(--color-cream);
    padding: var(--space-xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 1px solid var(--border-subtle);
}

.persona-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-primary);
}

.persona-icon {
    width: 64px;
    height: 64px;
    margin-bottom: var(--space-md);
    color: var(--accent-primary);
}

.persona-title {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.persona-description {
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

.persona-benefits {
    list-style: none;
    margin-top: var(--space-md);
}

.persona-benefits li {
    padding-left: var(--space-lg);
    margin-bottom: var(--space-sm);
    position: relative;
    color: var(--text-secondary);
}

.persona-benefits li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background-color: var(--accent-primary);
    border-radius: 50%;
}

/* ===================================
   Tours Section - Parchment Cards
   =================================== */
.tours {
    background-color: var(--color-cream);
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.tour-card {
    background-color: var(--color-parchment);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}

.tour-card-large {
    max-width: 1200px;
    margin: 0 auto;
}

.tour-card-large .tour-image {
    height: 500px;
}

.tour-card-large .tour-content {
    padding: var(--space-3xl);
}

.tour-card-large .tour-title {
    font-size: 2.5rem;
}

.tour-card-large .tour-price {
    font-size: 2rem;
}

.tour-card-large .tour-summary {
    font-size: 1.25rem;
}

.tour-card-large .tour-highlights {
    font-size: 1.125rem;
}

.tour-card-large .tour-highlights li {
    margin-bottom: var(--space-md);
}

.tour-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-primary);
}

.tour-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: var(--bg-secondary);
    position: relative;
}

.tour-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(27, 27, 27, 0.3));
}

.tour-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.tour-card:hover .tour-card-image {
    transform: scale(1.08);
}

.tour-content {
    padding: var(--space-xl);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tour-region {
    font-size: 0.875rem;
    color: var(--accent-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-sm);
}

.tour-title {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.tour-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: var(--space-md);
    font-family: var(--font-heading);
}

.tour-summary {
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    line-height: 1.7;
    font-style: italic;
}

.tour-includes-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
    margin-top: var(--space-md);
}

.tour-routes {
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--border-color);
}

.tour-routes-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
}

.tour-routes-list {
    list-style: none;
    margin-bottom: var(--space-md);
}

.tour-routes-list li {
    padding-left: var(--space-md);
    margin-bottom: var(--space-xs);
    color: var(--text-secondary);
    font-size: 0.9rem;
    position: relative;
}

.tour-routes-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: 700;
}

.tour-highlights {
    list-style: none;
    margin-bottom: var(--space-lg);
    flex-grow: 1;
}

.tour-highlights li {
    padding-left: var(--space-lg);
    margin-bottom: var(--space-sm);
    position: relative;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.tour-highlights li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background-color: var(--accent-primary);
    border-radius: 50%;
}

.tour-meta {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    padding-top: var(--space-md);
    border-top: 1px solid var(--border-color);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.tour-meta-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.tour-cta {
    margin-top: auto;
    text-align: center;
    padding: var(--space-md) var(--space-lg);
    width: 100%;
    display: block;
    white-space: normal;
}

/* ===================================
   Party/Occasion Section
   =================================== */
.party-section {
    background-color: var(--bg-accent);
    color: var(--text-inverse);
}

.party-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.party-tagline {
    font-size: 1.75rem;
    font-weight: 600;
    font-family: var(--font-heading);
    margin-bottom: var(--space-2xl);
    color: var(--color-copper);
    font-style: italic;
}

.party-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.party-card {
    background-color: rgba(250, 248, 245, 0.08);
    padding: var(--space-xl);
    border-radius: var(--border-radius-lg);
    text-align: left;
    border: 1px solid rgba(250, 248, 245, 0.15);
}

.party-card-title {
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
    color: var(--text-inverse);
    font-weight: 600;
}

.party-list {
    list-style: none;
}

.party-list li {
    padding-left: var(--space-lg);
    margin-bottom: var(--space-sm);
    position: relative;
    color: rgba(250, 248, 245, 0.9);
    line-height: 1.7;
}

.party-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background-color: var(--color-copper);
    border-radius: 50%;
}

/* ===================================
   FAQ Section
   =================================== */
.faq {
    background-color: var(--bg-secondary);
}

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

.faq-item {
    background-color: var(--color-cream);
    border-radius: var(--border-radius);
    margin-bottom: var(--space-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-subtle);
}

.faq-question {
    width: 100%;
    padding: var(--space-lg);
    background: none;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-md);
    transition: background-color var(--transition-fast);
}

.faq-question:hover {
    background-color: var(--color-parchment);
}

.faq-icon {
    font-size: 1.25rem;
    color: var(--accent-primary);
    transition: transform var(--transition-base);
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

.faq-answer-content {
    padding: 0 var(--space-lg) var(--space-lg);
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* ===================================
   Contact Section
   =================================== */
.contact {
    background-color: var(--color-cream);
}

.contact-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-2xl);
    color: var(--text-secondary);
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-3xl);
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form {
    background-color: var(--color-parchment);
    padding: var(--space-2xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    margin-bottom: var(--space-sm);
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color var(--transition-fast);
    background-color: var(--color-cream);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
}

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

.form-checkboxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-sm);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 400;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

.form-note {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: var(--space-sm);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.info-card {
    background-color: var(--color-parchment);
    padding: var(--space-lg);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-subtle);
}

.info-card h3 {
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.info-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ===================================
   Footer - With Tartan Texture
   =================================== */
.footer {
    background-color: var(--bg-dark);
    color: var(--text-inverse);
    padding: var(--space-3xl) 0 var(--space-lg);
    position: relative;
}

.footer.tartan-ultra::before {
    opacity: 0.03;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
    position: relative;
    z-index: 1;
}

.footer-column h4 {
    font-size: 1.125rem;
    margin-bottom: var(--space-md);
    color: var(--text-inverse);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.footer-logo img {
    height: 50px;
    width: auto;
}

.footer-tagline {
    font-size: 1rem;
    opacity: 0.85;
    margin-bottom: var(--space-md);
}

.footer-description {
    opacity: 0.75;
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a {
    opacity: 0.8;
    transition: all var(--transition-fast);
    font-size: 0.95rem;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-primary);
    padding-left: var(--space-xs);
}

.footer-contact p {
    opacity: 0.8;
    font-size: 0.9rem;
    margin-bottom: var(--space-sm);
}

.social-links {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(250, 248, 245, 0.1);
    border-radius: 50%;
    transition: all var(--transition-base);
    font-size: 1.25rem;
}

.social-link:hover {
    background-color: var(--accent-primary);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(250, 248, 245, 0.1);
    opacity: 0.7;
    font-size: 0.875rem;
    position: relative;
    z-index: 1;
}

/* ===================================
   Responsive Design - Mobile First
   =================================== */

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
    .nav-menu {
        gap: var(--space-lg);
    }
    
    .tours-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .addon-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    :root {
        --space-4xl: 64px;
        --space-3xl: 48px;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 76px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 76px);
        background-color: var(--brand-navy);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: var(--space-xl);
        gap: 0;
        transition: left var(--transition-base);
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-link {
        display: block;
        padding: var(--space-md) 0;
    }
    
    .nav-cta {
        margin-left: 0;
        margin-top: var(--space-md);
    }
    
    .nav-cta .btn {
        width: 100%;
    }
    
    .hero {
        min-height: 70vh;
        margin-top: 76px;
    }
    
    .hero-trust {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .about-text {
        padding: 0;
    }
    
    .personas-grid {
        grid-template-columns: 1fr;
    }
    
    .addon-grid {
        grid-template-columns: 1fr;
    }
    
    .tours-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .container,
    .container-narrow {
        padding: 0 var(--space-md);
    }
    
    .section {
        padding: var(--space-3xl) 0;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    .form-checkboxes {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   Accessibility
   =================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus visible for keyboard navigation */
:focus-visible {
    outline: 3px solid var(--accent-primary);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .nav,
    .footer,
    .btn {
        display: none;
    }
}
