/* Airport to Hotel Thailand - Stylesheet */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #f8fafc;
    color: #334155;
    line-height: 1.6;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
header {
    background: white;
    padding: 12px 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0d9488;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    font-size: 1.4rem;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: #64748b;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.nav-links a:hover {
    color: #0d9488;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 5px;
    background: #f1f5f9;
    padding: 4px;
    border-radius: 8px;
}

.lang-btn {
    padding: 6px 10px;
    border: none;
    background: transparent;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    color: #64748b;
    text-decoration: none;
}

.lang-btn.active {
    background: white;
    color: #0d9488;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.lang-btn:hover:not(.active) {
    color: #0d9488;
}

/* Breadcrumb */
.breadcrumb {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.breadcrumb a {
    color: #0d9488;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0d9488 0%, #065f46 100%);
    border-radius: 20px;
    padding: 30px;
    color: white;
    margin-bottom: 20px;
}

.hero-home {
    text-align: center;
    padding: 50px 30px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 15px;
}

.hero-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.hero-subtitle {
    opacity: 0.9;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.hero-route {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.route-box {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 12px;
    text-align: center;
    min-width: 130px;
}

.route-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    margin-bottom: 5px;
}

.route-code {
    font-size: 1.4rem;
    font-weight: 700;
}

.route-name {
    font-size: 0.8rem;
    opacity: 0.9;
    margin-top: 3px;
}

.route-arrow {
    font-size: 1.5rem;
    opacity: 0.5;
}

.hero-stats {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 1.4rem;
    font-weight: 700;
}

.stat-label {
    font-size: 0.75rem;
    opacity: 0.8;
    text-transform: uppercase;
}

/* Quick Info Bar */
.quick-bar {
    background: white;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    flex-wrap: wrap;
    gap: 15px;
}

.quick-bar-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.quick-icon {
    font-size: 1.8rem;
}

.quick-text {
    font-size: 0.95rem;
    color: #475569;
}

.quick-text strong {
    color: #0f172a;
}

.quick-price {
    background: #ecfdf5;
    color: #065f46;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.95rem;
}

/* Section Card */
.card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-title-icon {
    font-size: 1.2rem;
}

/* Transport Options */
.transport-grid {
    display: grid;
    gap: 12px;
}

.transport-item {
    display: flex;
    flex-direction: column;
    padding: 20px;
    background: #f8fafc;
    border-radius: 16px;
    gap: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.2s;
    position: relative;
}

.transport-item:hover {
    border-color: #0d9488;
    background: #f0fdfa;
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.1);
}

.transport-item.recommended {
    border: 2px solid #0d9488;
    background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%);
}

.transport-badge {
    position: absolute;
    top: -10px;
    left: 20px;
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 12px;
    text-transform: uppercase;
    box-shadow: 0 2px 6px rgba(13, 148, 136, 0.3);
}

/* Transport Header - Row with icon, title, price */
.transport-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.transport-icon {
    flex-shrink: 0;
    font-size: 2.2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.transport-title {
    flex: 1;
    min-width: 0;
}

.transport-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}

.transport-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.transport-meta span {
    font-size: 0.8rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 4px;
    background: white;
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
}

.transport-price {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
    border-radius: 10px;
    padding: 10px 16px;
    min-width: 90px;
}

.transport-price .price-value {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    white-space: nowrap;
}

.transport-price .price-unit {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.65rem;
    text-transform: uppercase;
}

/* Transport Description - Full width row */
.transport-desc {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
    padding: 12px 16px;
    background: white;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

/* Transport Info - Details section */
.transport-info {
    /* Contains the details/operators/tips */
}

.transport-details {
    margin-top: 0;
}

.transport-disclaimer {
    font-size: 0.75rem;
    color: #94a3b8;
    text-align: center;
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid #e2e8f0;
}

.transport-details-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-size: 0.75rem;
    color: #0d9488;
    font-weight: 600;
    padding: 6px 10px;
    background: #f0fdfa;
    border-radius: 6px;
    transition: all 0.2s;
    list-style: none;
}

.transport-details-toggle::-webkit-details-marker {
    display: none;
}

.transport-details-toggle:hover {
    background: #ccfbf1;
}

.transport-details-toggle .toggle-icon {
    font-size: 0.6rem;
    transition: transform 0.2s;
}

.transport-details[open] .toggle-icon {
    transform: rotate(90deg);
}

.transport-details-content {
    margin-top: 10px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

/* Transport Operator Info */
.transport-operator {
    margin-bottom: 10px;
}

.operator-header {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 6px;
}

.operator-label {
    font-size: 0.7rem;
    color: #94a3b8;
    text-transform: uppercase;
    font-weight: 600;
}

.operator-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #0f172a;
}

.operator-type {
    font-size: 0.65rem;
    background: #e0f2fe;
    color: #0369a1;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 500;
}

.operator-pickup {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #475569;
    margin-bottom: 6px;
}

.pickup-icon {
    font-size: 0.75rem;
}

.operator-note {
    font-size: 0.75rem;
    color: #64748b;
    font-style: italic;
    margin-bottom: 8px;
}

.operator-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.operator-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s;
}

.operator-btn-call {
    background: #dcfce7;
    color: #166534;
}

.operator-btn-call:hover {
    background: #bbf7d0;
}

.operator-btn-web {
    background: #e0f2fe;
    color: #0369a1;
}

.operator-btn-web:hover {
    background: #bae6fd;
}

.operator-app {
    font-size: 0.75rem;
    color: #7c3aed;
    font-weight: 500;
}

.operator-more {
    font-size: 0.7rem;
    color: #94a3b8;
    margin-top: 6px;
}

/* 12go Operators Table */
.operators-table-wrapper {
    margin-bottom: 10px;
}

.operators-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.8rem;
}

.operators-table th {
    text-align: left;
    padding: 8px 10px;
    background: #e2e8f0;
    color: #475569;
    font-weight: 600;
    font-size: 0.7rem;
    text-transform: uppercase;
}

.operators-table th:first-child {
    border-radius: 6px 0 0 0;
}

.operators-table th:last-child {
    border-radius: 0 6px 0 0;
    text-align: center;
}

.operators-table td {
    padding: 8px 10px;
    border-bottom: 1px solid #e2e8f0;
}

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

.operators-table tr:last-child td:first-child {
    border-radius: 0 0 0 6px;
}

.operators-table tr:last-child td:last-child {
    border-radius: 0 0 6px 0;
}

.operators-table .op-name {
    font-weight: 500;
    color: #0f172a;
}

.operators-table .op-rating {
    white-space: nowrap;
    color: #475569;
}

.operators-table .op-rating .rating-star {
    font-size: 0.7rem;
}

.operators-table .op-book {
    text-align: center;
}

.operators-table .op-price {
    white-space: nowrap;
    color: #0d9488;
    font-weight: 600;
    font-size: 0.75rem;
}

.operators-table .op-vehicles {
    color: #64748b;
    font-size: 0.7rem;
    max-width: 120px;
}

.btn-book {
    display: inline-block;
    padding: 5px 12px;
    background: #0d9488;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.2s;
}

.btn-book:hover {
    background: #0f766e;
}

.operators-more {
    text-align: center;
    font-size: 0.7rem;
    color: #94a3b8;
    margin-top: 8px;
}

/* AOT Operator Table Styles */
.operators-table .op-type {
    display: block;
    font-size: 0.65rem;
    color: #64748b;
    font-weight: 400;
}

.operators-table .op-note {
    font-size: 0.65rem;
    color: #0d9488;
    margin-top: 2px;
}

.operators-table .op-pickup {
    font-size: 0.7rem;
    color: #475569;
    max-width: 180px;
}

.operators-table .op-hours {
    font-size: 0.7rem;
    color: #475569;
    white-space: nowrap;
}

.operators-table .op-contact {
    text-align: center;
    white-space: nowrap;
}

.operators-table .op-contact a,
.operators-table .op-contact span {
    display: inline-block;
    margin: 0 2px;
}

.btn-call, .btn-web {
    display: inline-block;
    padding: 4px 8px;
    background: #e2e8f0;
    color: #475569;
    font-size: 0.75rem;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s;
}

.btn-call:hover {
    background: #0d9488;
    color: white;
}

.btn-web:hover {
    background: #3b82f6;
    color: white;
}

.btn-app {
    display: inline-block;
    padding: 4px 8px;
    background: #dbeafe;
    color: #1d4ed8;
    font-size: 0.65rem;
    border-radius: 4px;
}

/* Hotel-specific Tip */
.transport-hotel-tip {
    margin-top: 10px;
    padding: 10px 12px;
    background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 100%);
    border-radius: 8px;
    border-left: 3px solid #3b82f6;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.hotel-tip-icon {
    font-size: 1rem;
    flex-shrink: 0;
}

.hotel-tip-text {
    font-size: 0.8rem;
    color: #1e40af;
    line-height: 1.4;
    font-weight: 500;
}

/* Transport Tips */
.transport-tips {
    margin-top: 10px;
    padding: 8px 12px;
    background: #fffbeb;
    border-radius: 8px;
    border-left: 3px solid #f59e0b;
}

.tips-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: #92400e;
    margin-bottom: 4px;
}

.tips-list-inline {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.75rem;
    color: #78350f;
}

.tips-list-inline li {
    position: relative;
    padding-left: 12px;
    margin-bottom: 2px;
}

.tips-list-inline li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #f59e0b;
}

.price-value {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0d9488;
}

.price-unit {
    font-size: 0.7rem;
    color: #94a3b8;
}

/* Car Rental Section */
.car-rental-intro {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.car-rental-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px;
}

.car-rental-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 14px;
    transition: all 0.2s;
}

.car-rental-item:hover {
    border-color: #0d9488;
    background: #f0fdfa;
}

.car-rental-name {
    font-weight: 600;
    color: #0f172a;
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.car-rental-location {
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 4px;
}

.car-rental-hours {
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 10px;
}

.car-rental-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.car-rental-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}

.car-rental-call {
    background: #dcfce7;
    color: #166534;
}

.car-rental-call:hover {
    background: #bbf7d0;
}

.car-rental-web {
    background: #0d9488;
    color: white;
}

.car-rental-web:hover {
    background: #0f766e;
}

.car-rental-more {
    text-align: center;
    color: #64748b;
    font-size: 0.85rem;
    margin-top: 12px;
    padding: 10px;
    background: #f1f5f9;
    border-radius: 8px;
}

.car-rental-tips {
    margin-top: 16px;
    padding: 12px;
    background: #fffbeb;
    border-radius: 8px;
    border-left: 3px solid #f59e0b;
}

/* Hotels Grid (Zone Page) */
.hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.hotel-card-link {
    text-decoration: none;
    color: inherit;
}

.hotel-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s;
}

.hotel-card:hover {
    border-color: #0d9488;
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.15);
    transform: translateY(-2px);
}

.hotel-card-image {
    width: 100%;
    height: 140px;
    overflow: hidden;
}

.hotel-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hotel-card-content {
    padding: 14px;
}

.hotel-card-name {
    font-weight: 600;
    color: #0f172a;
    font-size: 0.95rem;
    margin-bottom: 6px;
    line-height: 1.3;
}

.hotel-card-stars {
    font-size: 0.75rem;
    margin-bottom: 6px;
}

.hotel-card-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.hotel-card-rating .rating-badge {
    background: #0d9488;
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.hotel-card-rating .rating-count {
    font-size: 0.7rem;
    color: #64748b;
}

.hotel-card-transport {
    display: flex;
    gap: 12px;
    font-size: 0.8rem;
    color: #64748b;
}

.hotels-more {
    text-align: center;
    color: #64748b;
    font-size: 0.85rem;
    margin-top: 16px;
    padding: 12px;
    background: #f1f5f9;
    border-radius: 8px;
}

/* Hotels Simple List */
.hotels-list-section {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.hotels-list-title {
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 12px;
}

.hotels-simple-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 8px;
}

.hotel-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
}

.hotel-list-item:hover {
    border-color: #0d9488;
    background: #f0fdfa;
}

.hotel-list-item.hidden {
    display: none;
}

.hotel-list-name {
    font-size: 0.9rem;
    color: #0f172a;
    font-weight: 500;
}

.hotel-list-stars {
    font-size: 0.65rem;
    flex-shrink: 0;
    margin-left: 8px;
}

.hotels-show-more {
    display: block;
    width: 100%;
    margin-top: 16px;
    padding: 12px;
    background: #0d9488;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.hotels-show-more:hover {
    background: #0f766e;
}

/* Zone Content */
.zone-content p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 16px;
}

.zone-highlights h3 {
    font-size: 1rem;
    color: #0f172a;
    margin-bottom: 10px;
}

.zone-highlights ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.zone-highlights li {
    padding: 6px 0 6px 24px;
    position: relative;
    color: #475569;
}

.zone-highlights li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0d9488;
    font-weight: bold;
}

/* Hotel Info */
.hotel-info {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hotel-image {
    width: 140px;
    height: 100px;
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0284c7;
    font-size: 2rem;
}

.hotel-details {
    flex: 1;
    min-width: 200px;
}

.hotel-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}

.hotel-address {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 5px;
}

.hotel-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.hotel-tag {
    background: #f1f5f9;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    color: #475569;
}

.hotel-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.hotel-meta-item {
    text-align: center;
    padding: 12px;
    background: #f8fafc;
    border-radius: 10px;
}

.hotel-meta-label {
    font-size: 0.7rem;
    color: #94a3b8;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.hotel-meta-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: #0f172a;
}

/* Tips Box */
.tips-box {
    background: #fffbeb;
    border: 1px solid #fcd34d;
    border-radius: 12px;
    padding: 20px;
}

.tips-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #92400e;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.tips-list li {
    padding: 10px 0;
    border-bottom: 1px solid #fde68a;
    font-size: 0.9rem;
    color: #78350f;
    padding-left: 25px;
    position: relative;
}

.tips-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.tips-list li::before {
    content: "💡";
    position: absolute;
    left: 0;
    font-size: 0.85rem;
}

/* Search Tool */
.search-box {
    background: #f0fdfa;
    border: 1px solid #99f6e4;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.search-box-home {
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.search-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #0d9488;
    margin-bottom: 12px;
}

.search-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.search-form input {
    flex: 1;
    min-width: 200px;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    font-size: 0.95rem;
}

.search-form input:focus {
    outline: none;
    border-color: #0d9488;
}

.search-form button {
    background: #0d9488;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
}

.search-form button:hover {
    background: #0f766e;
}

/* Nearby Hotels */
.nearby-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}

.nearby-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: #f8fafc;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
    border: 1px solid transparent;
}

.nearby-item:hover {
    background: #f0fdfa;
    border-color: #0d9488;
}

.nearby-icon {
    font-size: 1.3rem;
}

.nearby-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: #0f172a;
}

.nearby-distance {
    font-size: 0.8rem;
    color: #64748b;
}

/* FAQ */
.faq-list {
    display: grid;
    gap: 16px;
}

.faq-item {
    padding-bottom: 16px;
    border-bottom: 1px solid #e2e8f0;
}

.faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.faq-question {
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.faq-answer {
    color: #475569;
    font-size: 0.9rem;
}

/* Related Links */
.related-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.related-link {
    background: #f1f5f9;
    padding: 10px 16px;
    border-radius: 20px;
    text-decoration: none;
    color: #475569;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s;
}

.related-link:hover {
    background: #0d9488;
    color: white;
}

/* Ad Placeholder */
.ad-slot {
    background: #f1f5f9;
    border: 2px dashed #cbd5e1;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    color: #94a3b8;
    margin-bottom: 20px;
    font-size: 0.85rem;
}

/* Affiliate Box */
.affiliate-box {
    background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 100%);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.affiliate-text {
    font-size: 0.95rem;
    color: #1e40af;
}

.affiliate-text strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 3px;
}

.affiliate-btn {
    background: #2563eb;
    color: white;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.affiliate-btn:hover {
    background: #1d4ed8;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px 20px;
    color: #94a3b8;
    font-size: 0.85rem;
}

footer a {
    color: #0d9488;
    text-decoration: none;
}

.footer-links {
    margin-bottom: 10px;
}

.footer-links a {
    margin: 0 10px;
}

/* Home Page Specific */
.airports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.airport-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    text-decoration: none;
    color: inherit;
    text-align: center;
    transition: all 0.2s;
}

.airport-card:hover {
    border-color: #0d9488;
    background: #f0fdfa;
}

.airport-code {
    font-size: 2rem;
    font-weight: 700;
    color: #0d9488;
}

.airport-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #0f172a;
    margin-top: 5px;
}

.airport-city {
    font-size: 0.8rem;
    color: #64748b;
}

.zones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.zone-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 15px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
}

.zone-card:hover {
    border-color: #0d9488;
    background: #f0fdfa;
}

.zone-name {
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 5px;
}

.zone-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #64748b;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.step {
    text-align: center;
    padding: 20px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #0d9488;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 15px;
}

.step-title {
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 5px;
}

.step-desc {
    font-size: 0.85rem;
    color: #64748b;
}

.hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.hotels-grid-with-images {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.hotel-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 15px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
}

.hotel-card-with-image {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.hotel-card-image {
    width: 100%;
    height: 140px;
    overflow: hidden;
    background: #e2e8f0;
}

.hotel-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.hotel-card-with-image:hover .hotel-card-image img {
    transform: scale(1.05);
}

.hotel-card-content {
    padding: 12px 15px 15px;
}

.hotel-card:hover {
    border-color: #0d9488;
    background: #f0fdfa;
}

.hotel-card-with-image:hover {
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.hotel-card-name {
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 3px;
    font-size: 0.9rem;
}

.hotel-card-zone {
    font-size: 0.8rem;
    color: #64748b;
}

.hotel-card-price {
    font-size: 0.85rem;
    color: #0d9488;
    font-weight: 600;
    margin-top: 5px;
}

/* Airport Page Specific */
.zones-list {
    display: grid;
    gap: 10px;
}

.zone-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
}

.zone-item:hover {
    border-color: #0d9488;
    background: #f0fdfa;
}

.zone-item-name {
    font-weight: 600;
    color: #0f172a;
}

.zone-item-meta {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    color: #64748b;
    margin-top: 3px;
}

.zone-item-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.zone-item-price {
    font-weight: 600;
    color: #0d9488;
}

.zone-item-arrow {
    color: #94a3b8;
}

.airport-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.airport-info-item {
    text-align: center;
    padding: 15px;
    background: #f8fafc;
    border-radius: 10px;
}

.airport-info-label {
    font-size: 0.75rem;
    color: #94a3b8;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.airport-info-value {
    font-weight: 600;
    color: #0f172a;
}

.transport-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}

.transport-overview-item {
    text-align: center;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
}

.transport-overview-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.transport-overview-name {
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 5px;
}

.transport-overview-desc {
    font-size: 0.8rem;
    color: #64748b;
}

/* Airports Grid */
.airports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.airport-card {
    display: block;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
}

.airport-card:hover {
    border-color: #0d9488;
    background: #f0fdfa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.15);
}

.airport-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.airport-code {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0d9488;
}

.airport-city {
    font-size: 0.85rem;
    color: #64748b;
    background: #e2e8f0;
    padding: 4px 10px;
    border-radius: 20px;
}

.airport-card-name {
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 12px;
}

.airport-card-stats {
    display: flex;
    gap: 16px;
    font-size: 0.85rem;
    color: #64748b;
}

.airport-card-stats span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Content Pages */
.page-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 25px;
}

.content-block {
    margin-bottom: 25px;
}

.content-block h2 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 10px;
}

.content-block p {
    color: #475569;
    margin-bottom: 10px;
}

.content-block ul {
    margin-left: 20px;
    color: #475569;
}

.content-block li {
    margin-bottom: 8px;
}

.contact-email {
    font-size: 1.1rem;
    color: #0d9488;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 640px) {
    .header-inner {
        flex-direction: column;
        gap: 10px;
    }

    .nav-links {
        display: none;
    }

    .hero {
        padding: 20px;
    }

    .hero-title {
        font-size: 1.25rem;
    }

    .route-box {
        min-width: 100px;
        padding: 12px 15px;
    }

    .route-code {
        font-size: 1.2rem;
    }

    .transport-item {
        padding: 16px;
        gap: 10px;
    }

    .transport-header {
        flex-wrap: wrap;
        gap: 12px;
    }

    .transport-icon {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }

    .transport-title {
        flex: 1;
        min-width: 150px;
    }

    .transport-name {
        font-size: 1rem;
    }

    .transport-meta {
        gap: 6px;
    }

    .transport-meta span {
        font-size: 0.7rem;
        padding: 3px 8px;
    }

    .transport-price {
        width: 100%;
        flex-direction: row;
        justify-content: center;
        gap: 8px;
        padding: 10px;
        order: 3;
    }

    .transport-price .price-value {
        font-size: 1rem;
    }

    .transport-price .price-unit {
        font-size: 0.7rem;
    }

    .transport-desc {
        font-size: 0.9rem;
        padding: 10px 12px;
    }

    .quick-bar {
        flex-direction: column;
        text-align: center;
    }

    .zone-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .zone-item-right {
        width: 100%;
        justify-content: space-between;
    }
}

/* Search Page Styles */
.search-form-large {
    display: flex;
    gap: 10px;
}

.search-form-large input {
    flex: 1;
    padding: 14px 18px;
    font-size: 1.1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
}

.search-form-large input:focus {
    outline: none;
    border-color: #0d9488;
}

.search-form-large button {
    padding: 14px 28px;
    font-size: 1.1rem;
    background: #0d9488;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

.search-form-large button:hover {
    background: #0f766e;
}

.search-status,
.search-hint,
.search-no-results,
.search-count {
    padding: 15px 0;
    color: #64748b;
}

.search-count {
    color: #334155;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 15px;
}

.search-results-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s, transform 0.2s;
}

.search-result-item:hover {
    background: #f1f5f9;
    transform: translateX(5px);
}

.search-result-zone {
    background: #ecfdf5;
}

.search-result-zone:hover {
    background: #d1fae5;
}

.search-result-icon {
    font-size: 1.5rem;
}

.search-result-content {
    flex: 1;
}

.search-result-name {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
}

.search-result-meta {
    font-size: 0.85rem;
    color: #64748b;
    display: flex;
    gap: 15px;
}

@media (max-width: 600px) {
    .search-form-large {
        flex-direction: column;
    }

    .search-form-large button {
        width: 100%;
    }
}

/* Autocomplete Styles */
.search-autocomplete-wrapper {
    position: relative;
    width: 100%;
}

.autocomplete-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e2e8f0;
    border-top: none;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

.autocomplete-results.show {
    display: block;
}

.autocomplete-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.15s;
}

.autocomplete-item:last-child {
    border-bottom: none;
    border-radius: 0 0 12px 12px;
}

.autocomplete-item:hover,
.autocomplete-item.selected {
    background: #f0fdfa;
}

.autocomplete-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.autocomplete-content {
    flex: 1;
    min-width: 0;
}

.autocomplete-name {
    font-weight: 600;
    color: #0f172a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.autocomplete-meta {
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 2px;
}

.autocomplete-no-results {
    padding: 16px;
    text-align: center;
    color: #64748b;
}

/* Ensure search form in wrapper displays correctly */
.search-autocomplete-wrapper .search-form {
    margin-bottom: 0;
}

.search-autocomplete-wrapper .search-form input {
    border-radius: 12px 0 0 12px;
}

.autocomplete-results.show ~ .search-form input,
.search-autocomplete-wrapper:focus-within .search-form input {
    border-radius: 12px 0 0 0;
}

/* ============================================
   Hotel Page Redesign Styles
   ============================================ */

/* Hero Hotel Layout */
.hero-hotel {
    padding: 25px;
    background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
}

.hero-hotel-layout {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

/* Hero Hotel Card */
.hero-hotel-card {
    flex-shrink: 0;
    width: 200px;
    background: rgba(255,255,255,0.15);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.hero-hotel-image {
    width: 100%;
    height: 140px;
    overflow: hidden;
}

.hero-hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-hotel-info {
    padding: 12px;
}

.hero-hotel-type {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.hero-hotel-stars {
    font-size: 0.85rem;
    margin-bottom: 6px;
}

.hero-hotel-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.hero-hotel-rating .rating-score {
    background: #fbbf24;
    color: #78350f;
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
}

.hero-hotel-rating .rating-text {
    font-size: 0.75rem;
    opacity: 0.9;
}

.hero-hotel-rating .rating-count {
    font-size: 0.7rem;
    opacity: 0.7;
}

/* Hero Content */
.hero-hotel-content {
    flex: 1;
}

.hero-hotel-content .hero-title {
    font-size: 1.4rem;
    margin-bottom: 6px;
}

.hero-hotel-content .hero-subtitle {
    margin-bottom: 20px;
}

/* Stats Grid */
.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.12);
    padding: 12px 15px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.stat-card .stat-icon {
    font-size: 1.5rem;
}

.stat-card .stat-info {
    flex: 1;
}

.stat-card .stat-value {
    font-size: 1rem;
    font-weight: 700;
}

.stat-card .stat-label {
    font-size: 0.7rem;
    opacity: 0.8;
    text-transform: uppercase;
}

/* Different colors for each stat */
.stat-distance {
    border-left: 3px solid #60a5fa;
}

.stat-time {
    border-left: 3px solid #34d399;
}

.stat-price {
    border-left: 3px solid #fbbf24;
}

.stat-zone {
    border-left: 3px solid #f472b6;
}

/* Quick Bar Prominent */
.quick-bar-prominent {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #78350f;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.3);
}

.quick-bar-icon {
    font-size: 2.5rem;
    background: rgba(255,255,255,0.2);
    padding: 12px;
    border-radius: 12px;
}

.quick-bar-content {
    flex: 1;
}

.quick-bar-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.quick-bar-details {
    display: flex;
    gap: 10px;
    font-size: 0.85rem;
    opacity: 0.9;
    flex-wrap: wrap;
}

.quick-bar-price {
    text-align: right;
    background: rgba(120,53,15,0.1);
    padding: 12px 20px;
    border-radius: 12px;
}

.quick-price-label {
    font-size: 0.7rem;
    opacity: 0.8;
    text-transform: uppercase;
}

.quick-price-value {
    font-size: 1.5rem;
    font-weight: 700;
}

/* Hotel Info Detailed */
.hotel-info-detailed {
    display: flex;
    gap: 25px;
    margin-bottom: 20px;
}

.hotel-info-image {
    flex-shrink: 0;
    width: 280px;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    background: #e2e8f0;
}

.hotel-info-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hotel-info-content {
    flex: 1;
}

.hotel-info-content .hotel-name {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.hotel-info-content .hotel-address {
    margin-bottom: 12px;
}

.hotel-info-content .hotel-tags {
    margin-bottom: 12px;
}

.hotel-rating-inline {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.rating-badge {
    background: #0d9488;
    color: white;
    padding: 6px 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
}

.rating-label {
    font-weight: 600;
    color: #0f172a;
}

.rating-reviews {
    color: #64748b;
    font-size: 0.9rem;
}

.hotel-description {
    color: #475569;
    font-size: 0.9rem;
    line-height: 1.7;
}

.hotel-description p {
    margin: 0;
}

/* Nearby Hotels Grid with Thumbnails */
.nearby-hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.nearby-hotel-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
}

.nearby-hotel-card:hover {
    border-color: #0d9488;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.nearby-hotel-image {
    width: 100%;
    height: 120px;
    overflow: hidden;
    background: #e2e8f0;
}

.nearby-hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.nearby-hotel-card:hover .nearby-hotel-image img {
    transform: scale(1.05);
}

.nearby-hotel-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #94a3b8;
}

.nearby-hotel-content {
    padding: 12px;
}

.nearby-hotel-name {
    font-weight: 600;
    color: #0f172a;
    font-size: 0.9rem;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nearby-hotel-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.nearby-hotel-stars {
    font-size: 0.7rem;
}

.nearby-hotel-rating {
    background: #0d9488;
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.nearby-hotel-zone {
    font-size: 0.8rem;
    color: #64748b;
}

/* Responsive for Hotel Page */
@media (max-width: 768px) {
    .hero-hotel-layout {
        flex-direction: column;
    }

    .hero-hotel-card {
        width: 100%;
        display: flex;
        gap: 15px;
        padding: 12px;
    }

    .hero-hotel-image {
        width: 100px;
        height: 100px;
        border-radius: 10px;
    }

    .hero-hotel-info {
        padding: 0;
        flex: 1;
    }

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

    .quick-bar-prominent {
        flex-direction: column;
        text-align: center;
    }

    .quick-bar-price {
        width: 100%;
    }

    .hotel-info-detailed {
        flex-direction: column;
    }

    .hotel-info-image {
        width: 100%;
        height: 180px;
    }

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

@media (max-width: 480px) {
    .hero-stats-grid {
        grid-template-columns: 1fr;
    }

    .nearby-hotels-grid {
        grid-template-columns: 1fr;
    }
}
