/* ===== CIVA SAC - Professional Design System ===== */
:root {
    --primary: #8B1F89;
    --primary-dark: #6B1569;
    --primary-light: #A855A8;
    --secondary: #00B4B4;
    --accent: #E91E8C;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --gray: #6c757d;
    --dark-gray: #343a40;
    --black: #1a1a2e;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.2);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--white);
    color: var(--dark-gray);
    line-height: 1.6;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.logo-text {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-img {
    height: 55px;
    width: auto;
    object-fit: contain;
}

.footer-logo {
    height: 70px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.nav {
    display: flex;
    gap: 8px;
}

.nav-link {
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 10px 18px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.nav-link:hover {
    background: var(--light-gray);
    color: var(--primary);
}

.nav-link.active {
    color: var(--primary);
    font-weight: 600;
}

.header-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 31, 137, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 31, 137, 0.4);
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-secondary {
    background: var(--secondary);
    color: white;
}

.btn-secondary:hover {
    background: #009999;
}

.btn-ghost {
    background: transparent;
    color: var(--dark-gray);
    border: 1px solid #ddd;
}

.btn-ghost:hover {
    background: var(--light-gray);
    border-color: var(--primary);
    color: var(--primary);
}

.btn-full {
    width: 100%;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
    border-radius: var(--radius-lg);
}

.btn-icon {
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 50%;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 600px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139, 31, 137, 0.9) 0%, rgba(233, 30, 140, 0.85) 50%, rgba(0, 180, 180, 0.8) 100%),
        url('images/hero-buses.png');
    background-size: cover;
    background-position: center;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    text-align: center;
    padding: 60px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 30px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== Search Card ===== */
.search-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 8px;
    box-shadow: var(--shadow-lg);
    max-width: 1000px;
    margin: 0 auto;
}

.search-form {
    display: flex;
    align-items: center;
    gap: 0;
}

.search-field {
    flex: 1;
    padding: 16px 20px;
    border-right: 1px solid #eee;
    position: relative;
}

.search-field:last-of-type {
    border-right: none;
}

.search-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.search-label .icon {
    color: var(--primary);
    font-size: 16px;
}

.search-input {
    width: 100%;
    padding: 8px 0;
    background: transparent;
    border: none;
    color: var(--dark-gray);
    font-size: 16px;
    font-weight: 500;
}

.search-input:focus {
    outline: none;
}

.search-input::placeholder {
    color: var(--gray);
    font-weight: 400;
}

select.search-input {
    cursor: pointer;
}

.btn-search {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    padding: 0;
    font-size: 20px;
    flex-shrink: 0;
    margin: 8px;
}

.swap-btn {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--white);
    border: 2px solid #eee;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--primary);
    transition: var(--transition);
}

.swap-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.passenger-selector {
    display: flex;
    align-items: center;
    gap: 12px;
}

.passenger-btn {
    width: 32px;
    height: 32px;
    background: var(--light-gray);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    color: var(--primary);
    transition: var(--transition);
}

.passenger-btn:hover {
    background: var(--primary);
    color: white;
}

#passenger-count {
    font-size: 18px;
    font-weight: 600;
    min-width: 24px;
    text-align: center;
}

/* ===== Trust Badges ===== */
.trust-section {
    padding: 40px 0;
    background: var(--light-gray);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-icon {
    font-size: 32px;
    color: var(--primary);
}

.trust-text {
    font-size: 14px;
    color: var(--gray);
}

.trust-text strong {
    display: block;
    color: var(--dark-gray);
    font-size: 16px;
}

/* ===== Sections ===== */
.section {
    padding: 80px 0;
}

.section-gray {
    background: var(--light-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Routes Grid ===== */
.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.route-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid #eee;
}

.route-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.route-image {
    height: 160px;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 16px;
}

.gradient-1 {
    background: linear-gradient(135deg, #8B1F89 0%, #E91E8C 100%);
}

.gradient-2 {
    background: linear-gradient(135deg, #00B4B4 0%, #667eea 100%);
}

.gradient-3 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.gradient-4 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.route-badge {
    background: var(--white);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.route-info {
    padding: 20px;
}

.route-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark-gray);
}

.route-info p {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 4px;
}

.route-price {
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.route-price strong {
    color: var(--primary);
    font-size: 24px;
    font-weight: 700;
}

.route-price .btn {
    padding: 8px 16px;
    font-size: 13px;
}

/* ===== Features Grid ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid #eee;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(139, 31, 137, 0.1) 0%, rgba(233, 30, 140, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark-gray);
}

.feature-card p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.6;
}

/* ===== Page Styles ===== */
.page {
    display: none;
    padding-top: 100px;
    min-height: 100vh;
}

.page.active {
    display: block;
}

.page-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #eee;
}

.search-summary h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-gray);
}

.search-summary p {
    color: var(--gray);
}

/* ===== Results List ===== */
.results-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bus-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid #eee;
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 24px;
    align-items: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.bus-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.bus-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 8px;
}

.bus-details {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.bus-detail {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--gray);
    font-size: 14px;
}

.bus-price {
    text-align: right;
}

.bus-price .price {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
}

.bus-price .per-person {
    font-size: 13px;
    color: var(--gray);
}

.bus-amenities {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.amenity {
    background: var(--light-gray);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    color: var(--gray);
}

/* ===== Seats Container ===== */
.seats-container {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 32px;
}

.bus-layout {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid #eee;
    box-shadow: var(--shadow-sm);
}

.bus-header {
    display: flex;
    justify-content: space-between;
    padding: 16px 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    color: white;
    font-weight: 500;
}

.bus-floors {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.bus-floor h4 {
    text-align: center;
    margin-bottom: 16px;
    color: var(--gray);
    font-weight: 600;
}

.seats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.seat {
    aspect-ratio: 1;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.seat.available {
    background: #e8f5e9;
    color: #2e7d32;
    border-color: #a5d6a7;
}

.seat.available:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: scale(1.08);
}

.seat.selected {
    background: var(--primary);
    color: white;
    border-color: var(--primary-dark);
}

.seat.occupied {
    background: #ffebee;
    color: #c62828;
    border-color: #ef9a9a;
    cursor: not-allowed;
    opacity: 0.7;
}

.seats-legend {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #eee;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gray);
}

.legend-seat {
    width: 28px;
    height: 28px;
    border-radius: 4px;
}

.legend-seat.available {
    background: #e8f5e9;
    border: 2px solid #a5d6a7;
}

.legend-seat.selected {
    background: var(--primary);
}

.legend-seat.occupied {
    background: #ffebee;
    border: 2px solid #ef9a9a;
}

.seats-summary {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid #eee;
    box-shadow: var(--shadow-sm);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.seats-summary h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.no-seats {
    color: var(--gray);
    font-style: italic;
    text-align: center;
    padding: 20px;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 2px solid #eee;
    margin: 20px 0;
}

.summary-total span {
    font-size: 16px;
    font-weight: 600;
}

.summary-total strong {
    font-size: 28px;
    color: var(--primary);
}

#selected-seats-list .seat-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    font-size: 15px;
}

/* ===== Passengers & Payment ===== */
.passengers-container,
.payment-container {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
}

.passengers-forms {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.passenger-form,
.payment-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid #eee;
    box-shadow: var(--shadow-sm);
}

.passenger-form h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--dark-gray);
}

.passenger-form h4 .seat-badge {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    background: var(--light-gray);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    color: var(--dark-gray);
    font-size: 15px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
}

.passengers-summary,
.payment-summary {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid #eee;
    box-shadow: var(--shadow-sm);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.passengers-summary h3,
.payment-summary h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.summary-route {
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
    margin-bottom: 16px;
}

.summary-route p {
    color: var(--gray);
    margin-bottom: 4px;
    font-size: 14px;
}

.summary-route p:first-child {
    font-weight: 700;
    color: var(--dark-gray);
    font-size: 16px;
}

.payment-method-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 24px;
    border-bottom: 1px solid #eee;
    margin-bottom: 24px;
}

.method-icon {
    font-size: 40px;
}

.card-logos {
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 8px;
    background: #f8f9fa;
    border-radius: 8px;
}

.card-logos img {
    height: 24px;
    object-fit: contain;
}

.payment-method-header h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-gray);
}

.payment-method-header p {
    color: var(--gray);
    font-size: 14px;
}

.summary-breakdown {
    border-top: 1px solid #eee;
    padding-top: 16px;
    margin-top: 16px;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    color: var(--gray);
}

.breakdown-item.total {
    font-size: 18px;
    color: var(--dark-gray);
    padding-top: 12px;
    border-top: 2px solid #eee;
    margin-top: 16px;
}

.breakdown-item.total strong {
    color: var(--primary);
    font-size: 28px;
}

.security-badges {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 20px 0;
    padding: 16px;
    background: #e8f5e9;
    border-radius: var(--radius-md);
}

.security-badges span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #2e7d32;
}

.payment-notice {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border: 1px solid #ffb74d;
    border-radius: var(--radius-md);
    padding: 14px 16px;
    margin-bottom: 16px;
}

.payment-notice span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #e65100;
}

/* ===== Confirmation ===== */
.confirmation-content {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    padding: 40px 20px;
}

.confirmation-header {
    margin-bottom: 40px;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 48px;
    color: white;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.confirmation-header h1 {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 8px;
}

.confirmation-header p {
    color: var(--gray);
    font-size: 18px;
}

.ticket {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    text-align: left;
    margin-bottom: 32px;
    border: 1px solid #eee;
}

.ticket-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
}

.ticket-logo {
    font-size: 28px;
    font-weight: 800;
}

.ticket-code {
    text-align: right;
}

.ticket-code span {
    display: block;
    font-size: 12px;
    opacity: 0.8;
}

.ticket-code strong {
    font-size: 20px;
    letter-spacing: 2px;
}

.ticket-body {
    padding: 28px;
}

.ticket-route {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px 0;
    margin-bottom: 20px;
    font-size: 26px;
    font-weight: 700;
    color: var(--dark-gray);
}

.ticket-route .arrow {
    color: var(--primary);
    font-size: 32px;
}

.ticket-details {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.ticket-details p {
    color: var(--gray);
    font-size: 15px;
}

.ticket-footer {
    display: flex;
    gap: 24px;
    padding: 24px 28px;
    border-top: 2px dashed #eee;
    align-items: flex-start;
}

.ticket-qr {
    width: 120px;
    height: 120px;
    background: white;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid #eee;
}

.ticket-instructions {
    flex: 1;
}

.ticket-instructions ul {
    list-style: none;
    margin-top: 8px;
}

.ticket-instructions li {
    color: var(--gray);
    font-size: 14px;
    padding: 4px 0;
    padding-left: 20px;
    position: relative;
}

.ticket-instructions li::before {
    content: "âœ“";
    color: var(--success);
    position: absolute;
    left: 0;
}

#ticket-passengers {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #eee;
}

#ticket-passengers .passenger-ticket-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
}

.confirmation-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* ===== Footer ===== */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 60px 0 24px;
    margin-top: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand .logo-text {
    color: var(--white);
    -webkit-text-fill-color: var(--white);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    padding: 8px 0;
    transition: var(--transition);
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
    font-size: 14px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* ===== Loading Overlay ===== */
.loading-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.loading-overlay.active {
    display: flex;
}

.loading-spinner {
    text-align: center;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid #eee;
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 16px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading-spinner p {
    color: var(--gray);
    font-weight: 500;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {

    .seats-container,
    .passengers-container,
    .payment-container {
        grid-template-columns: 1fr;
    }

    .bus-floors {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .header-content {
        padding: 0 16px;
    }

    .hero {
        min-height: 500px;
    }

    .hero-content {
        padding: 40px 0;
    }

    .search-form {
        flex-direction: column;
    }

    .search-field {
        border-right: none;
        border-bottom: 1px solid #eee;
    }

    .search-field:last-of-type {
        border-bottom: none;
    }

    .swap-btn {
        display: none;
    }

    .btn-search {
        width: 100%;
        border-radius: var(--radius-lg);
        margin: 8px 0;
    }

    .bus-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .bus-price {
        text-align: center;
        margin: 16px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .confirmation-actions {
        flex-direction: column;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .ticket-footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* ===== Testimonials ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #eee;
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    font-weight: 700;
}

.testimonial-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-gray);
}

.testimonial-info p {
    font-size: 13px;
    color: var(--gray);
}

.testimonial-stars {
    color: #ffc107;
    font-size: 16px;
    margin-bottom: 12px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
    font-style: italic;
}

.testimonial-route {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #eee;
    font-size: 13px;
    color: var(--primary);
    font-weight: 500;
}

/* ===== Share Payment ===== */
.share-payment {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px dashed #ddd;
    text-align: center;
}

.share-payment p {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 10px;
}

/* ===== Purchase Toast ===== */
.purchase-toast {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 9998;
    transform: translateX(-120%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 360px;
    border: 1px solid #eee;
}

.purchase-toast.show {
    transform: translateX(0);
}

.toast-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.toast-content {
    flex: 1;
}

.toast-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 2px;
}

.toast-action {
    font-size: 13px;
    color: var(--gray);
}

.toast-time {
    font-size: 12px;
    color: var(--primary);
    margin-top: 4px;
}

.toast-close {
    background: none;
    border: none;
    font-size: 20px;
    color: var(--gray);
    cursor: pointer;
    padding: 4px;
    line-height: 1;
}

.toast-close:hover {
    color: var(--dark-gray);
}

@media (max-width: 768px) {
    .purchase-toast {
        left: 12px;
        right: 12px;
        bottom: 12px;
        max-width: none;
    }
}

/* ===== New Pages Styles ===== */
.page-container {
    padding: 40px 0 80px;
}

.page-hero {
    text-align: center;
    margin-bottom: 48px;
    padding-top: 20px;
}

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 12px;
}

.page-hero p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Page */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.service-type-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    border: 2px solid #eee;
    transition: var(--transition);
    position: relative;
}

.service-type-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-type-card.featured {
    border-color: var(--primary);
}

.service-type-card.premium {
    border-color: var(--accent);
    background: linear-gradient(180deg, #fff 0%, #fef7ff 100%);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.service-icon-large {
    font-size: 48px;
    margin-bottom: 16px;
}

.service-type-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark-gray);
}

.service-price-tag {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    text-align: left;
    margin-bottom: 24px;
}

.service-features li {
    padding: 8px 0;
    color: var(--gray);
    border-bottom: 1px solid #eee;
}

.service-extras {
    text-align: center;
}

.service-extras h2 {
    font-size: 1.75rem;
    margin-bottom: 32px;
    color: var(--dark-gray);
}

.extras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.extra-card {
    background: var(--light-gray);
    padding: 24px;
    border-radius: var(--radius-md);
    text-align: center;
}

.extra-card span {
    font-size: 32px;
}

.extra-card h4 {
    margin: 12px 0 8px;
    color: var(--dark-gray);
}

.extra-card p {
    font-size: 13px;
    color: var(--gray);
}

/* Corporate Page */
.corporate-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.benefit-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    border: 1px solid #eee;
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.benefit-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark-gray);
}

.benefit-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

.corporate-form-section {
    max-width: 700px;
    margin: 0 auto;
}

.corporate-form-section h2 {
    text-align: center;
    margin-bottom: 32px;
    color: var(--dark-gray);
}

.corporate-form,
.contact-form {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid #eee;
}

.corporate-form textarea,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: var(--radius-md);
    font-family: inherit;
    resize: vertical;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-card {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    border: 1px solid #eee;
    text-align: center;
}

.contact-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.contact-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-gray);
}

.contact-main {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.contact-card p {
    font-size: 13px;
    color: var(--gray);
}

.contact-form-section h2 {
    margin-bottom: 24px;
    color: var(--dark-gray);
}

.terminals-section {
    text-align: center;
}

.terminals-section h2 {
    margin-bottom: 32px;
    color: var(--dark-gray);
}

.terminals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.terminal-card {
    background: var(--light-gray);
    padding: 24px;
    border-radius: var(--radius-md);
}

.terminal-card h4 {
    color: var(--primary);
    margin-bottom: 8px;
}

.terminal-card p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 8px;
}

.terminal-card span {
    font-size: 13px;
    color: var(--dark-gray);
}

/* Tracking Page */
.tracking-section {
    max-width: 600px;
    margin: 0 auto;
}

.tracking-form-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid #eee;
    margin-bottom: 32px;
}

.tracking-result {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid #eee;
    margin-bottom: 32px;
}

.tracking-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.tracking-header h3 {
    font-size: 18px;
    color: var(--dark-gray);
}

.status-badge {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.tracking-timeline {
    position: relative;
    padding-left: 30px;
}

.timeline-item {
    position: relative;
    padding-bottom: 24px;
    padding-left: 24px;
    border-left: 2px solid #ddd;
}

.timeline-item:last-child {
    border-left: 2px solid transparent;
    padding-bottom: 0;
}

.timeline-item.completed {
    border-left-color: var(--success);
}

.timeline-item.active {
    border-left-color: var(--primary);
}

.timeline-dot {
    position: absolute;
    left: -9px;
    top: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ddd;
    border: 3px solid var(--white);
}

.timeline-item.completed .timeline-dot {
    background: var(--success);
}

.timeline-item.active .timeline-dot {
    background: var(--primary);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(139, 31, 137, 0.4);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(139, 31, 137, 0);
    }
}

.timeline-content h4 {
    font-size: 15px;
    color: var(--dark-gray);
    margin-bottom: 4px;
}

.timeline-content p {
    font-size: 13px;
    color: var(--gray);
}

.tracking-info {
    text-align: center;
    margin-top: 40px;
}

.tracking-info h3 {
    margin-bottom: 24px;
    color: var(--dark-gray);
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.info-card {
    background: var(--light-gray);
    padding: 20px;
    border-radius: var(--radius-md);
}

.info-card span {
    font-size: 28px;
}

.info-card h4 {
    margin: 8px 0 4px;
    font-size: 14px;
    color: var(--dark-gray);
}

.info-card p {
    font-size: 12px;
    color: var(--gray);
}

/* My Trips Page */
.mytrips-search {
    max-width: 600px;
    margin: 0 auto 40px;
}

.search-trip-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid #eee;
}

.search-trip-card h3 {
    text-align: center;
    margin-bottom: 24px;
    color: var(--dark-gray);
}

.mytrips-result {
    max-width: 700px;
    margin: 0 auto 40px;
}

.trip-card-large {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid #eee;
    overflow: hidden;
}

.trip-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
}

.trip-header h3 {
    font-size: 20px;
    margin-bottom: 4px;
}

.trip-header p {
    opacity: 0.9;
    font-size: 14px;
}

.trip-status {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.trip-status.confirmed {
    background: var(--success);
}

.trip-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 24px;
}

.trip-detail {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trip-detail span {
    font-size: 24px;
}

.trip-detail p {
    font-size: 14px;
    color: var(--gray);
}

.trip-detail strong {
    display: block;
    color: var(--dark-gray);
}

.trip-actions {
    display: flex;
    gap: 12px;
    padding: 24px;
    border-top: 1px solid #eee;
    flex-wrap: wrap;
}

.btn.danger {
    color: var(--danger);
    border-color: var(--danger);
}

.btn.danger:hover {
    background: var(--danger);
    color: white;
}

.mytrips-help {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.mytrips-help h3 {
    margin-bottom: 24px;
    color: var(--dark-gray);
}

.help-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.help-card {
    background: var(--light-gray);
    padding: 24px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
}

.help-card:hover {
    background: var(--primary);
    color: white;
}

.help-card:hover p {
    color: white;
}

.help-card span {
    font-size: 32px;
}

.help-card p {
    margin-top: 8px;
    font-size: 14px;
    color: var(--gray);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .info-cards,
    .help-options {
        grid-template-columns: 1fr;
    }

    .trip-details {
        grid-template-columns: 1fr;
    }
}

/* ===== Footer Pages Styles ===== */

/* About Page */
.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-intro {
    text-align: center;
    margin-bottom: 48px;
}

.about-intro h2 {
    font-size: 1.75rem;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.about-intro p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.stat-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    display: block;
    margin-bottom: 8px;
}

.stat-card p {
    font-size: 14px;
    opacity: 0.9;
}

.about-values h2 {
    text-align: center;
    margin-bottom: 32px;
    color: var(--dark-gray);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.value-card {
    background: var(--light-gray);
    padding: 24px;
    border-radius: var(--radius-md);
    text-align: center;
}

.value-card span {
    font-size: 40px;
}

.value-card h4 {
    margin: 12px 0 8px;
    color: var(--dark-gray);
}

.value-card p {
    font-size: 13px;
    color: var(--gray);
}

/* Careers Page */
.careers-content {
    max-width: 800px;
    margin: 0 auto;
}

.careers-intro {
    text-align: center;
    margin-bottom: 40px;
}

.careers-intro h2 {
    margin-bottom: 16px;
    color: var(--dark-gray);
}

.careers-intro p {
    color: var(--gray);
    line-height: 1.7;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}

.benefit-item {
    background: var(--light-gray);
    padding: 20px;
    border-radius: var(--radius-md);
    text-align: center;
}

.benefit-item span {
    font-size: 32px;
}

.benefit-item h4 {
    margin-top: 8px;
    font-size: 14px;
    color: var(--dark-gray);
}

.job-listings h2 {
    text-align: center;
    margin-bottom: 24px;
    color: var(--dark-gray);
}

.job-card {
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius-md);
    border: 1px solid #eee;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.job-card h4 {
    color: var(--dark-gray);
    margin-bottom: 4px;
}

.job-card p {
    font-size: 13px;
    color: var(--gray);
}

.job-type {
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
}

.apply-section {
    text-align: center;
    margin-top: 40px;
    padding: 32px;
    background: var(--light-gray);
    border-radius: var(--radius-lg);
}

.apply-email {
    font-size: 24px;
    color: var(--primary);
    font-weight: 700;
    margin-top: 8px;
}

/* Press Page */
.press-content {
    max-width: 800px;
    margin: 0 auto;
}

.press-card {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    border: 1px solid #eee;
    margin-bottom: 16px;
}

.press-date {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    margin-bottom: 12px;
}

.press-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--dark-gray);
}

.press-card p {
    color: var(--gray);
    font-size: 14px;
}

.press-contact {
    text-align: center;
    margin-top: 40px;
    padding: 32px;
    background: var(--light-gray);
    border-radius: var(--radius-lg);
}

.press-contact h3 {
    margin-bottom: 16px;
    color: var(--dark-gray);
}

.press-contact p {
    color: var(--gray);
    margin: 8px 0;
}

/* FAQ Page */
.faq-content {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--dark-gray);
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-icon {
    font-size: 24px;
    color: var(--primary);
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 20px 20px;
    color: var(--gray);
    line-height: 1.7;
}

/* Policies Page */
.policies-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-section {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    border: 1px solid #eee;
    margin-bottom: 20px;
}

.policy-section h3 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--dark-gray);
}

.policy-section ul {
    list-style: none;
}

.policy-section li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--gray);
    border-bottom: 1px solid #f0f0f0;
}

.policy-section li::before {
    content: "â€¢";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Terms Page */
.terms-content {
    max-width: 800px;
    margin: 0 auto;
}

.terms-section {
    margin-bottom: 32px;
}

.terms-section h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--dark-gray);
}

.terms-section p {
    color: var(--gray);
    line-height: 1.7;
}

.terms-update {
    text-align: center;
    padding: 20px;
    background: var(--light-gray);
    border-radius: var(--radius-md);
    color: var(--gray);
}

/* Complaints Page */
.complaints-content {
    max-width: 700px;
    margin: 0 auto;
}

.complaints-info {
    background: #fff3e0;
    border: 1px solid #ffb74d;
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 32px;
}

.complaints-info p {
    color: #e65100;
    margin: 8px 0;
}

.complaints-form {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid #eee;
}

.complaints-form h3 {
    font-size: 18px;
    margin: 24px 0 16px;
    color: var(--dark-gray);
}

.complaints-form h3:first-child {
    margin-top: 0;
}

@media (max-width: 768px) {

    .about-stats,
    .values-grid,
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}/ *   S h a r e d   P a y m e n t   L i n k   S t y l e s   * /  
 . s h a r e d - p a y m e n t - a l e r t   {  
         b a c k g r o u n d :   # f f f 3 c d ;  
         b o r d e r :   1 p x   s o l i d   # f f e e b a ;  
         c o l o r :   # 8 5 6 4 0 4 ;  
         p a d d i n g :   1 5 p x ;  
         b o r d e r - r a d i u s :   8 p x ;  
         m a r g i n - b o t t o m :   2 0 p x ;  
         d i s p l a y :   f l e x ;  
         a l i g n - i t e m s :   c e n t e r ;  
         g a p :   1 5 p x ;  
         a n i m a t i o n :   s l i d e D o w n   0 . 5 s   e a s e ;  
 }  
  
 . s h a r e d - p a y m e n t - t i m e r   {  
         f o n t - w e i g h t :   b o l d ;  
         c o l o r :   # d c 3 5 4 5 ;  
         b a c k g r o u n d :   w h i t e ;  
         p a d d i n g :   2 p x   8 p x ;  
         b o r d e r - r a d i u s :   4 p x ;  
         b o r d e r :   1 p x   s o l i d   # d c 3 5 4 5 ;  
 }  
  
 . p a y m e n t - c r e a t o r - i n f o   {  
         b a c k g r o u n d :   a l i c e b l u e ;  
         p a d d i n g :   1 5 p x ;  
         b o r d e r - r a d i u s :   8 p x ;  
         m a r g i n - b o t t o m :   2 0 p x ;  
         b o r d e r - l e f t :   4 p x   s o l i d   v a r ( - - p r i m a r y ) ;  
 }  
  
 . p a y m e n t - c r e a t o r - i n f o   h 4   {  
         m a r g i n :   0   0   5 p x   0 ;  
         c o l o r :   v a r ( - - p r i m a r y ) ;  
         f o n t - s i z e :   1 6 p x ;  
 }  
  
 . p a y m e n t - c r e a t o r - i n f o   p   {  
         m a r g i n :   0 ;  
         f o n t - s i z e :   1 4 p x ;  
         c o l o r :   v a r ( - - d a r k - g r a y ) ;  
 }  
 / *   S h a r e d   P a y m e n t   L i n k   S t y l e s   -   F I X E D   * /  
 . s h a r e d - p a y m e n t - a l e r t   {  
         g r i d - c o l u m n :   1   /   - 1 ;  
         b a c k g r o u n d :   # f f f 3 c d ;  
         b o r d e r :   1 p x   s o l i d   # f f e e b a ;  
         c o l o r :   # 8 5 6 4 0 4 ;  
         p a d d i n g :   1 5 p x ;  
         b o r d e r - r a d i u s :   8 p x ;  
         m a r g i n - b o t t o m :   0 p x ;  
         / *   E l   g a p   d e l   g r i d   y a   d a   e s p a c i o   * /  
         d i s p l a y :   f l e x ;  
         a l i g n - i t e m s :   c e n t e r ;  
         g a p :   1 5 p x ;  
         a n i m a t i o n :   s l i d e D o w n   0 . 5 s   e a s e ;  
         w i d t h :   1 0 0 % ;  
         b o x - s i z i n g :   b o r d e r - b o x ;  
 }  
  
 . s h a r e d - p a y m e n t - t i m e r   {  
         f o n t - w e i g h t :   b o l d ;  
         c o l o r :   # d c 3 5 4 5 ;  
         b a c k g r o u n d :   w h i t e ;  
         p a d d i n g :   4 p x   1 2 p x ;  
         b o r d e r - r a d i u s :   4 p x ;  
         b o r d e r :   1 p x   s o l i d   # d c 3 5 4 5 ;  
         f o n t - s i z e :   1 8 p x ;  
         f o n t - f a m i l y :   m o n o s p a c e ;  
 }  
  
 . p a y m e n t - c r e a t o r - i n f o   {  
         b a c k g r o u n d :   # f 8 f 9 f a ;  
         p a d d i n g :   2 0 p x ;  
         b o r d e r - r a d i u s :   1 2 p x ;  
         m a r g i n - b o t t o m :   2 4 p x ;  
         b o r d e r :   1 p x   s o l i d   # e 9 e c e f ;  
         d i s p l a y :   f l e x ;  
         f l e x - d i r e c t i o n :   c o l u m n ;  
         g a p :   8 p x ;  
 }  
  
 . p a y m e n t - c r e a t o r - i n f o   h 4   {  
         m a r g i n :   0 ;  
         c o l o r :   v a r ( - - d a r k - g r a y ) ;  
         f o n t - s i z e :   1 6 p x ;  
         f o n t - w e i g h t :   7 0 0 ;  
         d i s p l a y :   f l e x ;  
         a l i g n - i t e m s :   c e n t e r ;  
         g a p :   8 p x ;  
 }  
  
 . p a y m e n t - c r e a t o r - i n f o   h 4 : : b e f o r e   {  
         c o n t e n t :   ' ð x ¤ ' ;  
 }  
  
 . p a y m e n t - c r e a t o r - i n f o   p   {  
         m a r g i n :   0 ;  
         f o n t - s i z e :   1 4 p x ;  
         c o l o r :   v a r ( - - g r a y ) ;  
         l i n e - h e i g h t :   1 . 5 ;  
 }  
  
 / *   A j u s t e   p a r a   m Ã ³ v i l   * /  
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   {  
         . s h a r e d - p a y m e n t - a l e r t   {  
                 f l e x - d i r e c t i o n :   c o l u m n ;  
                 t e x t - a l i g n :   c e n t e r ;  
         }  
 }  
 