/* -------------------------------------------
   MODERN GLASSMORPHISM & PREMIUM UI THEME
   ------------------------------------------- */
:root {
    --primary-color: #000000;
    --secondary-color: #ffffff;
    --accent-color: #2563eb;

    --bg-light: #f8fafc;
    --bg-white: #ffffff;

    --text-main: #1e293b;
    --text-muted: #64748b;
    --text-light: #94a3b8;

    --border-color: #e2e8f0;
    --card-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.5);

    --radius-lg: 16px;
    --radius-md: 12px;
    --radius-sm: 8px;

    --font-heading: 'Outfit', 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Base Stylings */
body {
    background-color: var(--bg-light);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.seo-main-wrapper {
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography */
h1,
h2,
h3,
h4,
.seo-h1,
.seo-h2,
.seo-h3 {
    font-family: var(--font-heading);
    color: var(--text-main);
    font-weight: 700;
    letter-spacing: -0.025em;
}

/* Breadcrumbs */
.breadcrumbs-section {
    background: white;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.breadcrumbs a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 500;
}

.breadcrumbs a:hover {
    color: var(--primary-color);
}

.breadcrumbs-separator {
    color: var(--text-light);
    font-size: 0.75rem;
}

.breadcrumbs .current {
    color: var(--primary-color);
    font-weight: 600;
}

/* Hero Section */
.seo-hero-section {
    position: relative;
    padding: 6rem 0 8rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    overflow: hidden;
}

.seo-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    z-index: 0;
    filter: brightness(0.7);
}

.seo-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.seo-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
    letter-spacing: 0.5px;
}

.seo-h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.seo-intro {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    font-weight: 300;
}

/* Glass Booking Form */
.booking-form-premium-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid white;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin-top: -5rem;
    position: relative;
    z-index: 10;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.form-grid-compact {
    display: grid;
    gap: 1.25rem;
}

.input-group-modern {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    position: relative;
    transition: all 0.2s ease;
}

.input-group-modern:focus-within {
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05);
}

.input-label-modern {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
    display: block;
}

.input-control-modern {
    width: 100%;
    border: none;
    background: transparent;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
    outline: none;
    padding: 0;
}

.input-icon-modern {
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 1.1rem;
}

.direction-toggles-modern {
    display: inline-flex;
    background: var(--bg-light);
    padding: 0.35rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
}

.direction-btn-modern {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.direction-btn-modern.active {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.btn-submit-modern {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.btn-submit-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Facts Cards (Route Info) */
.transfer-facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin: 4rem 0;
}

.fact-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s;
}

.fact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow);
    border-color: var(--primary-color);
}

.fact-label {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.fact-value {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-main);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.feature-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--card-shadow);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.feature-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Price Table Modern */
.price-section {
    margin-top: 5rem;
}

.price-table-container {
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    margin-top: 2rem;
}

.seo-price-table {
    width: 100%;
    border-collapse: collapse;
}

.seo-price-table th {
    background: var(--bg-light);
    padding: 1.5rem;
    text-align: left;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--border-color);
}

.seo-price-table td {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-main);
    vertical-align: middle;
}

.seo-price-table tr:last-child td {
    border-bottom: none;
}

.seo-price-table tr:hover td {
    background: #fcfcfc;
}

.price-tag-table {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-color);
}

.btn-select-table {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.btn-select-table:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* FAQ Accordion Modern */
.faq-section {
    margin-top: 6rem;
}

.faq-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    padding: 0 1.5rem;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--text-light);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    text-align: left;
}

.faq-answer {
    display: none;
    padding-bottom: 1.5rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* Steps (How it Works) */
.steps-section {
    margin-top: 5rem;
}

.steps-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

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

.step-item::after {
    content: '';
    position: absolute;
    top: 25px;
    left: 60%;
    width: 80%;
    height: 2px;
    background: var(--border-color);
    z-index: 0;
}

.step-item:last-child::after {
    display: none;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 8px white;
}

.step-title {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

/* Content Area */
.seo-content-wrapper {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    margin-top: 4rem;
}

.seo-content-area {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

.seo-content-area h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1.25rem;
    color: var(--text-main);
}

.seo-content-area ul {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.seo-content-area li {
    margin-bottom: 0.5rem;
}

/* Review Card */
.review-snippet {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    padding: 3rem;
    border-radius: var(--radius-lg);
    margin: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.review-snippet::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 10rem;
    opacity: 0.1;
    font-family: serif;
}

.review-stars {
    color: #ffd700;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.review-text {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
    opacity: 0.9;
}

.review-author {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    .seo-h1 {
        font-size: 2.25rem;
    }

    .booking-form-premium-card {
        padding: 1.5rem;
        margin-top: -3rem;
    }

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

    .step-item::after {
        display: none;
    }

    .step-item {
        margin-bottom: 2rem;
    }

    .seo-hero-section {
        padding-top: 4rem;
    }
}

/* Autocomplete (Keep clean) */
.suggestions-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--card-shadow);
    z-index: 100;
    max-height: 350px;
    overflow-y: auto;
    margin-top: 8px;
    padding: 0.5rem 0;
}

.suggestion-group-header {
    padding: 0.75rem 1rem;
    background: var(--bg-light);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    pointer-events: none;
}

.suggestion-item {
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: background 0.1s;
    font-size: 0.95rem;
    color: var(--text-main);
}

.suggestion-item:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.suggestion-hotel {
    padding-left: 2rem;
    position: relative;
}

.suggestion-hotel::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 50%;
    width: 6px;
    height: 6px;
    border-left: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    transform: translateY(-50%);
}