/* Booking.com Style - Modern & Professional */

:root {
    --primary: #070d2d;
    --primary-light: #1a237e;
    --primary-dark: #00224f;
    --secondary: #feba02;
    --success: #008009;
    --danger: #cc0000;
    --warning: #ff8c00;
    --dark: #262626;
    --gray: #6b6b6b;
    --light-gray: #f5f5f5;
    --border: #e7e7e7;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.08);
    --shadow: 0 2px 8px rgba(0,0,0,0.12);
    --shadow-lg: 0 4px 16px rgba(0,0,0,0.16);
    --radius: 4px;
}

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

body {
    font-family: 'Tajawal', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #f5f5f5;
    min-height: 100vh;
    direction: rtl;
    color: var(--dark);
    line-height: 1.5;
    font-size: 14px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styles */
.header {
    background-color: #070d2d;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: #fff;
    font-size: 28px;
    font-weight: 800;
}

.logo h1 span {
    color: #feba02;
}

.logo-image {
    max-height: 60px;
    max-width: 200px;
    object-fit: contain;
    margin-right: 17px;
    padding-right: 10px;
}

.nav ul {
    display: flex;
    list-style: none;
}

.nav ul li {
    margin: 0 15px;
}

.nav ul li a {
    text-decoration: none;
    color: #ccc;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
    padding: 5px 0;
}

.nav ul li a:hover,
.nav ul li a.active {
    color: #feba02;
}

.user-actions {
    display: flex;
    gap: 15px;
}

.login-link {
    color: #ccc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.login-link:hover {
    color: #feba02;
}

.signup-link {
    background-color: #feba02;
    color: #070d2d;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    transition: all 0.3s;
}

.signup-link:hover {
    background-color: #e6a702;
    color: #000;
}

/* Simple Header */
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;

}

.header-content .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
    font-size: 24px;
    font-weight: 700;
}

.header-content .logo i {
    color: #feba02;
}

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

.header-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #ccc;
    font-size: 14px;
    transition: color 0.3s;
}

.header-nav a:hover {
    color: #feba02;
}

.header-nav a i {
    font-size: 20px;
    margin-bottom: 5px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(7, 13, 45, 0.8), rgba(7, 13, 45, 0.9)), url('https://images.unsplash.com/photo-1544620347-c4fd4a3d5957?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    height: auto;
    min-height: 550px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 40px 20px;
}

.hero-overlay {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: white;
    margin-bottom: 30px;
}

.hero-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Search Section */
.search-section {
    margin-top: 0;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    z-index: 10;
    width: 100%;
}

.search-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    overflow: visible;
    padding: 30px;
    width: 100%;
    margin: 0 auto;
}

.search-tabs {
    display: none;
}

.tab {
    display: none;
}

.search-form {
    padding: 0;
}

.search-fields {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.field-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.field-label {
    font-weight: 400;
    margin-bottom: 5px;
    color: #999;
    font-size: 12px;
    text-transform: none;
}

.custom-select,
.date-input {
    position: relative;
}

/* Location Fields Container */
.location-fields-wrapper {
    position: relative;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.location-field-item {
    padding: 5px 15px;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.location-field-item:last-child {
    border-bottom: none;
}

.location-field-item .field-label {
    margin-bottom: 0;
    font-size: 16px;
    color: #999;
    font-weight: 600;
    text-transform: uppercase;
}

.location-field-item input,
.location-field-item .static-text {
    border: none;
    padding: 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    width: 100%;
    background: transparent;
}

.location-field-item input:focus {
    outline: none;
}

.location-label-with-icon {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 0;
    white-space: nowrap;
    flex-shrink: 0;
}

.location-label-with-icon .field-label {
    margin: 0;
    font-size: 14px;
    color: #333;
    font-weight: 600;
}

.departure-icon {
    font-size: 12px;
    color: #ffa906 !important;
    display: inline-block;
}

.arrival-icon {
    font-size: 12px;
    color: #4caf50 !important;
    display: inline-block;
}

.location-detail {
    font-size: 13px;
    color: #0c0c0c;
    font-weight: 500;
    margin-top: 0;
}

/* Date and Seats Row */
.date-seats-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.date-field,
.seats-field {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 14px 15px;
    position: relative;
}

.date-field .field-label,
.seats-field .field-label {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 8px;
    color: #2196F3;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.date-field .field-label i,
.seats-field .field-label i {
    font-size: 13px;
}

.date-field input,
.seats-field input {
    border: none;
    padding: 0;
    font-size: 20px;
    font-weight: 700;
    color: #2196F3;
    width: 100%;
    background: transparent;
}

.date-field input:focus,
.seats-field input:focus {
    outline: none;
}

.date-field .date-display {
    display: flex;
    flex-direction: column;
}

.date-field .day-number {
    font-size: 32px;
    font-weight: 700;
    color: #2196F3;
    line-height: 1;
}

.date-field .month-year {
    font-size: 13px;
    font-weight: 500;
    color: #2196F3;
}

.seats-field .seats-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.seats-field .seats-number {
    font-size: 28px;
    font-weight: 700;
    color: #2196F3;
    min-width: 30px;
    text-align: center;
}

.seats-field .seat-button {
    width: 32px;
    height: 32px;
    background: #E3F2FD;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    padding: 0;
    font-family: 'Tajawal', sans-serif;
}

.seats-field .seat-button:hover {
    background: #BBDEFB;
}

.seats-field .seat-button i {
    color: #2196F3;
    font-size: 16px;
}

.form-control {
    width: 100%;
    padding: 14px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Tajawal', sans-serif;
    font-size: 16px;
    background-color: #fff;
    appearance: none;
}

.form-control:focus {
    outline: none;
    border-color: #2196F3;
    box-shadow: 0 0 0 2px rgba(33, 150, 243, 0.1);
}

/* Form Styles */
.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: 'Tajawal', sans-serif;
    font-size: 16px;
    transition: all 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(7, 13, 45, 0.1);
}

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

.static-field {
    background-color: transparent;
    font-weight: 500;
    color: #333;
    border: none;
    padding: 0;
}

.static-field div {
    text-align: right;
}

.city-name {
    font-weight: 500;
    font-size: 15px;
    color: #fff;
}

.location-name {
    font-weight: 400;
    font-size: 13px;
    color: #666;
    margin-top: 2px;
}

.departure-icon {
    color: #2196F3;
    font-size: 10px;
}

.arrival-icon {
    color: #2196F3;
    font-size: 10px;
}

.search-btn-group {
    display: flex;
    align-items: center;
}

.search-button {
    background: #FFC107;
    color: #333;
    border: none;
    padding: 16px 20px;
    border-radius: 8px;
    font-family: 'Tajawal', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.3);
}

.search-button:hover {
    background: #FFB300;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.4);
}

.search-button:active {
    transform: translateY(0);
}

/* Additional styling for better appearance */
.location-fields-wrapper {
    position: relative;
}

.location-field-item .static-text {
    display: block;
    padding: 5px 0;
}

.date-field input::placeholder,
.seats-field input::placeholder {
    color: #ccc;
}

/* Adjust hero section positioning */
.hero {
    display: flex;
    align-items: flex-start;
    padding-top: 40px;
}

.hero-overlay {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content {
    margin-bottom: 30px;
}

/* Ensure search section is properly positioned */
.search-section {
    position: relative;
    margin-top: 0;
    top: auto;
    left: auto;
    right: auto;
}

.search-container {
    position: relative;
}

/* Booking Card */
.booking-card {
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 24px;
    margin: 40px auto;
    max-width: 1000px;
}

.booking-card h2 {
    color: var(--dark);
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.booking-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Confirmation Card */
.confirmation-card {
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    padding: 40px;
    margin: 40px auto;
    max-width: 800px;
    text-align: center;
}

.confirmation-header {
    margin-bottom: 30px;
}

.confirmation-header h1 {
    color: var(--success);
    font-size: 28px;
    font-weight: 700;
    margin: 20px 0 10px;
}

.confirmation-header .subtitle {
    color: var(--gray);
    font-size: 16px;
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 32px;
}

.icon-circle.success {
    background: rgba(0, 128, 9, 0.1);
    color: var(--success);
}

.booking-details {
    background: var(--light-gray);
    border-radius: 8px;
    padding: 20px;
    margin: 25px 0;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 15px;
}

.detail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.detail-item .label {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 5px;
}

.detail-item .value {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
}

.booking-ref {
    font-family: monospace;
    font-size: 18px !important;
    color: var(--primary) !important;
}

.status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.status.pending {
    background: rgba(255, 140, 0, 0.1);
    color: var(--warning);
}

.contact-buttons {
    display: flex;
    gap: 15px;
    margin: 30px 0;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    min-width: 200px;
}

.contact-btn.whatsapp {
    background: #25D366;
    color: white;
}

.contact-btn.phone {
    background: var(--primary);
    color: white;
}

.contact-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Professional Trip Card */
.professional-trip-card {
    background: linear-gradient(135deg, #515fa7, #10273f);
    box-shadow: var(--shadow);
    overflow: hidden;
    border-radius: 16px;
}
.trip-header {
    color: white;
    padding: 20px;
}

.route-path {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.city {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.city-icon {
    font-size: 14px;
    margin-bottom: 8px;
}

.departure .city-icon {
    color: #ff6b6b;
}

.arrival .city-icon {
    color: #4cd964;
}

.city-name {
    font-weight: 700;
    font-size: 16px;
}

.route-line {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.arrow-icon {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
}

.duration {
    display: none;
}

.departure-info {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.time {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
}

.time-label {
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.time-value {
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.time-value .departure-time {
    order: 1;
}

.time-value .travel-date {
    order: 2;
}

.travel-date {
    font-size: 18px;
    font-weight: 700;
    color: white;
}

.trip-locations {
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.location-item {
    display: flex !important;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    flex-direction: row !important;
    color: white;
    gap: 8px;
}

.departure-icon {
    color: #ffa906 !important;
    font-size: 12px;
}

.arrival-icon {
    color: #4caf50 !important;
    font-size: 12px;
}

.location-value {
    font-size: 14px;
    color: white;
    font-weight: 500;
}



.trip-pricing {
    padding: 20px;
}

.pricing-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.pricing-row:last-child {
    margin-bottom: 0;
}

.pricing-row.total {
    padding: 12px;
    margin-top: 7px;
    border-radius: 19px;
    text-align: center;
    font-size: 17px;
    color: #ffd600;
}
.pricing-item {
    flex: 1;
    min-width: 150px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pricing-item .label {
    font-size: 14px;
    color:#fff;
    font-weight: 500;
}

.pricing-item .value {
    font-size: 16px;
    color: #fff;
    font-weight: 600;
}

.price-per-seat {
    color: var(--primary);
}

.total-price {
    font-size: 22px;
    color: #fff;
    font-weight: 700;
}

.trip-action {
    padding: 0 20px 20px 20px;
}

.trip-action .btn {
    font-size: 16px;
    font-weight: 700;
    padding: 15px;
}

/* Trip Summary */
.trip-summary {
    background: var(--light-gray);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.trip-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.trip-summary-row:last-child {
    border-bottom: none;
}

.trip-summary-row.total {
    border-top: 2px solid #ddd;
    border-bottom: none;
    margin-top: 10px;
    padding-top: 15px;
    font-weight: 700;
}

.trip-summary-row .label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray);
}

.trip-summary-row .value {
    font-weight: 600;
    color: var(--dark);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Tajawal', sans-serif;
    text-decoration: none;
    text-align: center;
}

.btn-primary {
    background: #4caf50;
    color: #ffffff;
    box-shadow: var(--shadow-sm);
    border-radius: 13px;
    width: 100%;
}

.btn-primary:hover {
    background: var(--primary);
    box-shadow: var(--shadow);
}

.btn-primary:active {
    transform: translateY(1px);
}

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

.btn-secondary:hover {
    background: var(--light-gray);
}

.btn-large {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 700;
}

.btn-block {
    width: 100%;
}

.btn-success {
    background: var(--success);
    color: white;
}

.btn-success:hover {
    background: #006607;
}

/* Alert Messages */
.alert {
    padding: 16px 20px;
    border-radius: var(--radius);
    margin: 20px auto 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 1000px;
}

.alert i {
    font-size: 20px;
}

.alert-success {
    background: #d1f4e0;
    color: var(--success);
    border-right: 4px solid var(--success);
}

.alert-error {
    background: #ffe5e5;
    color: var(--danger);
    border-right: 4px solid var(--danger);
}

.alert-warning {
    background: #fff4e5;
    color: var(--warning);
    border-right: 4px solid var(--warning);
}

.alert-info {
    background: #e5f3ff;
    color: var(--primary);
    border-right: 4px solid var(--primary);
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background-color: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.feature-card {
    text-align: center;
    padding: 40px 25px;
    border-radius: 12px;
    transition: all 0.3s;
    background: #f9f9f9;
    box-shadow: var(--shadow);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    background: white;
}

.feature-icon {
    font-size: 50px;
    margin-bottom: 25px;
    color: var(--secondary);
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(254, 186, 2, 0.1);
    margin: 0 auto 25px;
}

.feature-icon i {
    font-size: 50px;
}

.feature-title {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 700;
}

.feature-desc {
    color: var(--gray);
    font-size: 16px;
    line-height: 1.6;
}

/* Collapsible Content Section */
.content-section {
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-top: 40px;
}

.collapsible-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    padding: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    user-select: none;
}

.collapsible-header:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.collapsible-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.toggle-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.collapsible-header.active .toggle-icon {
    transform: rotate(180deg);
}

.collapsible-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.collapsible-content.active {
    max-height: 500px;
    padding: 20px;
}

.collapsible-content p {
    color: var(--dark);
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background-color: var(--light-gray);
}

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

.step-card {
    background: white;
    border-radius: 12px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
    transition: all 0.3s;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.step-icon {
    font-size: 50px;
    margin-bottom: 25px;
    color: var(--primary);
}

.step-icon i {
    font-size: 50px;
}

.step-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.step-desc {
    color: var(--gray);
    font-size: 16px;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: #fff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow);
    position: relative;
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-card:before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 80px;
    color: rgba(254, 186, 2, 0.2);
    font-family: serif;
    line-height: 1;
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 16px;
    color: var(--dark);
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-info {
    margin-right: 15px;
}

.author-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.author-role {
    font-size: 14px;
    color: var(--gray);
}

/* Footer */
.footer {
    background-color: #070d2d;
    color: white;
    padding: 60px 0 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    color: #fff;
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: 800;
}

.footer-logo span {
    color: #feba02;
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo-img {
    max-width: 150px;
    height: auto;
    display: block;
}

.footer-desc {
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
}

.links-column .column-title {
    color: #feba02;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 700;
}

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

.links-list li {
    margin-bottom: 12px;
}

.links-list li a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}

.links-list li a:hover {
    color: #feba02;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    color: #aaa;
    font-size: 14px;
}

.payment-methods {
    display: flex;
    gap: 10px;
}

.payment-icon {
    background-color: #333;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        min-height: 600px;
        padding: 30px 15px;
    }

    .hero-title {
        font-size: 28px;
        margin-bottom: 8px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 0;
    }

    .search-section {
        position: relative;
        top: auto;
    }

    .search-container {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        padding: 20px;
    }

    .date-seats-row {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .location-fields-wrapper {
        margin-bottom: 15px;
    }

    .search-fields {
        gap: 0;
    }

    .search-tabs {
        overflow-x: auto;
    }

    .tab {
        white-space: nowrap;
        padding: 12px 20px;
    }

    .section-title {
        font-size: 28px;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

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

    .nav {
        display: none;
    }

    .hero {
        height: 500px;
    }

    .route-path {
        flex-direction: row;
        gap: 10px;
        align-items: center;
    }

    .city {
        flex-direction: row;
        gap: 8px;
        align-items: center;
    }

    .city-name {
        font-size: 16px;
    }

    .route-line {
        flex-direction: row;
        gap: 8px;
        align-items: center;
    }

    .arrow-icon {
        transform: rotate(0deg);
    }

    .duration {
        font-size: 12px;
    }

    .trip-locations {
        flex-direction: column;
        gap: 8px;
    }

    .location-item {
        display: flex !important;
        justify-content: flex-start;
        align-items: center;
        min-width: 100%;
        flex-direction: row !important;
        gap: 8px;
    }

    .departure-icon {
        color: #ffa906 !important;
        font-size: 12px;
    }

    .arrival-icon {
        color: #4caf50 !important;
        font-size: 12px;
    }

    .location-value {
        font-size: 14px;
        color: white;
        font-weight: 500;
    }

    .pricing-row {
        flex-direction: column;
        gap: 12px;
        color: #fff;
    }

    .pricing-item {
        min-width: 100%;
        justify-content: space-between;
    }

    .total-price {
        font-size: 20px;
    }

    .time-value {
        font-size: 16px;
    }

    .search-form {
        padding: 0;
    }

    .field-label {
        font-size: 12px;
    }

    .static-field {
        padding: 12px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-container,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .feature-card,
    .step-card,
    .testimonial-card {
        padding: 30px 20px;
    }
    
    /* Form Responsive */
    .form-row-2 {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* Header Responsive */
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .header-nav {
        gap: 15px;
    }
    
    /* Confirmation Page Responsive */
    .confirmation-card {
        padding: 20px;
        margin: 20px;
    }
    
    .booking-details {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-btn {
        min-width: auto;
        width: 100%;
    }
}

/* Gallery Styles */
.gallery-section {
    background: #fff;
    padding: 60px 0;
    margin: 40px 0;
}

.gallery-section .section-header {
    margin-bottom: 40px;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.gallery-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.gallery-item-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background: #f0f0f0;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-item-image {
    transform: scale(1.05);
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay a {
    background: var(--secondary);
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.gallery-item-overlay a:hover {
    background: white;
    transform: scale(1.05);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
}

.lightbox-image {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 32px;
    cursor: pointer;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: var(--secondary);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 32px;
    cursor: pointer;
    padding: 20px;
    transition: color 0.3s;
    user-select: none;
}

.lightbox-nav:hover {
    color: var(--secondary);
}

.lightbox-prev {
    left: 0;
}

.lightbox-next {
    right: 0;
}

/* About Page Styles */
.hero-about,
.hero-contact,
.hero-privacy {
    background: linear-gradient(135deg, #070d2d 0%, #1a237e 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-about::before,
.hero-contact::before,
.hero-privacy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-about .hero-overlay,
.hero-contact .hero-overlay,
.hero-privacy .hero-overlay {
    position: relative;
    z-index: 2;
}

.hero-about .hero-title,
.hero-contact .hero-title,
.hero-privacy .hero-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
}

.hero-about .hero-subtitle,
.hero-contact .hero-subtitle,
.hero-privacy .hero-subtitle {
    font-size: 20px;
    font-weight: 300;
    opacity: 0.9;
}

/* About Section */
.about-section {
    padding: 60px 20px;
    background: white;
    margin: 40px 0;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

.about-text {
    padding: 20px 0;
}

.about-text .section-title {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 800;
}

.about-paragraph {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 15px;
    text-align: justify;
}

.about-features {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 8px;
}

.features-title {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 25px;
    font-weight: 700;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-icon {
    color: var(--secondary);
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 3px;
}

.feature-info h4 {
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 5px;
    font-weight: 700;
}

.feature-info p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

/* Mission and Vision Section */
.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 60px 0;
    padding: 0 20px;
}

.mission-card,
.vision-card {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.mission-card .card-icon,
.vision-card .card-icon {
    font-size: 48px;
    color: var(--secondary);
    margin-bottom: 20px;
}

.mission-card h3,
.vision-card h3 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 700;
}

.mission-card p,
.vision-card p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.8;
    text-align: justify;
}

/* Values Section */
.values-section {
    padding: 60px 20px;
    background: var(--light-gray);
    margin: 40px 0;
    border-radius: 8px;
}

.values-section .section-title {
    text-align: center;
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 40px;
    font-weight: 800;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.value-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card h4 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 700;
}

.value-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 60px 20px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-info-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    font-size: 40px;
    color: var(--secondary);
    margin-bottom: 15px;
}

.contact-info-card h3 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 700;
}

.contact-detail {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-detail a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-detail a:hover {
    color: var(--secondary);
}

.contact-description {
    font-size: 14px;
    color: var(--gray);
}

/* Contact Form Section */
.contact-form-section {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
}

.contact-form-section .section-title {
    text-align: center;
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 30px;
    font-weight: 800;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(254, 186, 2, 0.1);
}

/* Working Hours Section */
.working-hours-section {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
}

.working-hours-section .section-title {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 30px;
    font-weight: 800;
}

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

.hours-item {
    background: var(--light-gray);
    padding: 20px;
    border-radius: 8px;
    border-right: 4px solid var(--secondary);
}

.hours-item .day {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.hours-item .time {
    display: block;
    font-size: 14px;
    color: var(--gray);
}

/* Privacy Section */
.privacy-section {
    padding: 60px 20px;
    background: white;
    margin: 40px 0;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 30px;
    text-align: justify;
    background: var(--light-gray);
    padding: 20px;
    border-radius: 8px;
    border-right: 4px solid var(--secondary);
}

.privacy-article {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border);
}

.privacy-article:last-of-type {
    border-bottom: none;
}

.privacy-article h3 {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 700;
}

.privacy-article p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 12px;
    text-align: justify;
}

.privacy-article ul {
    list-style: none;
    padding-right: 20px;
}

.privacy-article li {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 10px;
    padding-right: 20px;
    position: relative;
}

.privacy-article li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: var(--secondary);
    font-weight: bold;
}

.last-updated {
    background: var(--light-gray);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
    color: var(--gray);
}

/* Floating Contact Buttons - Fixed Position */
.floating-contact {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: white;
}

.floating-btn.whatsapp {
    background: #25D366;
}

.floating-btn.whatsapp:hover {
    background: #20BA5A;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
}

@media (max-width: 768px) {
    .floating-contact {
        bottom: 20px;
        left: 20px;
        gap: 12px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .gallery-container {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }

    .gallery-item-image {
        height: 200px;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .mission-vision {
        grid-template-columns: 1fr;
    }

    .hero-about .hero-title,
    .hero-contact .hero-title,
    .hero-privacy .hero-title {
        font-size: 32px;
    }

    .hero-about .hero-subtitle,
    .hero-contact .hero-subtitle,
    .hero-privacy .hero-subtitle {
        font-size: 16px;
    }

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

    .working-hours-section {
        padding: 20px;
    }

    .privacy-section {
        padding: 20px;
    }
}