/* Reset and Base Styles */
:root {
    --primary-color: #FDB813; /* Gold/Amber Accent */
    --primary-dark: #fca311;
    --secondary-color: #14213d; /* Deep Indigo/Blue */
    --text-color: #1f2937;
    --light-text: #6b7280;
    --background-color: #f9fafb;
    --white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --error-color: #ef4444;
    --whatsapp-color: #25D366;
    --font-family: 'Manrope', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body {
    margin: 0;
    font-family: var(--font-family);
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Header */
.header {
    background: var(--secondary-color);
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
}
.logo strong {
    color: var(--primary-color);
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav-links a {
    text-decoration: none;
    color: #d1d5db;
    font-weight: 500;
    transition: color 0.2s ease;
}
.nav-links a:hover {
    color: var(--white);
}
.btn-whatsapp {
    background-color: rgba(255,255,255,0.1);
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 99px;
    border: 1px solid rgba(255,255,255,0.2);
}
.btn-whatsapp:hover {
    background-color: rgba(255,255,255,0.2);
    color: #fff;
}

/* Hero Section */
.hero {
    padding: 7rem 0;
    background-color: var(--secondary-color);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before { /* subtle background pattern */
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 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.04'%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");
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-badge {
    display: inline-block;
    background: rgba(255,255,255, 0.1);
    border: 1px solid rgba(255,255,255, 0.2);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 99px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.hero h1 {
    font-size: clamp(2.8rem, 5vw, 4rem);
    font-weight: 800;
    margin: 0.5rem 0 1rem;
    color: var(--white);
    letter-spacing: -1px;
}
.subtitle {
    font-size: 1.25rem;
    color: #9ca3af;
    max-width: 700px;
    margin: 0 auto;
}

/* Booking Section */
.booking-section {
    padding: 0 0 4rem;
}
.booking-widget {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    margin-top: -80px;
    position: relative;
    z-index: 10;
}
.tabs {
    display: flex;
    border-bottom: 1px solid var(--border-color);
    background: #f9fafb;
    border-radius: 16px 16px 0 0;
}
.tab-link {
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 700;
    color: var(--light-text);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 3px solid transparent;
    transition: all 0.2s ease;
}
.tab-link.active {
    color: var(--secondary-color);
    border-bottom-color: var(--primary-color);
}
.tab-link svg {
    width: 24px; height: 24px;
}
.tab-content { display: none; padding: 2rem 2.5rem; }
.tab-content.active { display: block; }

/* Forms */
.form-options { display: flex; gap: 1.5rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.form-options label { display: flex; align-items: center; gap: 0.5rem; cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 1.5rem; }
.form-group.full-width { grid-column: 1 / -1; }
.form-group { display: flex; flex-direction: column; }
.form-group label { margin-bottom: 0.5rem; font-weight: 500; font-size: 0.9rem; }
.form-group input[type="text"], .form-group input[type="date"] {
    padding: 0.85rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(253, 184, 19, 0.2);
}
.form-actions { display: flex; justify-content: flex-end; align-items: center; gap: 1rem; margin-top: 2rem; }
.form-subtitle { font-size: 1.1rem; color: var(--secondary-color); margin-top: 0; border-bottom: 1px solid var(--border-color); padding-bottom: 0.75rem; margin-bottom: 1.5rem; }

.btn-secondary { background: #e5e7eb; color: var(--text-color); padding: 0.8rem 2rem; border: none; border-radius: 8px; font-size: 1rem; font-weight: 700; cursor: pointer; text-decoration: none; display: inline-block; transition: background-color 0.2s; }
.btn-secondary:hover { background: #d1d5db; }
.btn-submit { background: var(--primary-color); color: var(--secondary-color); padding: 0.9rem 2.5rem; border: none; border-radius: 8px; font-size: 1rem; font-weight: 700; cursor: pointer; text-decoration: none; display: inline-block; transition: background-color 0.2s; }
.btn-submit:hover { background: var(--primary-dark); }

/* Autocomplete */
.form-group { position: relative; }
.autocomplete-results { position: absolute; top: 100%; left: 0; right: 0; background: white; border: 1px solid var(--border-color); border-top: none; border-radius: 0 0 8px 8px; max-height: 200px; overflow-y: auto; z-index: 1001; display: none; }
.autocomplete-item { padding: 0.75rem 1rem; cursor: pointer; }
.autocomplete-item:hover { background-color: #f3f4f6; }

/* General Sections */
.trust-signals, .how-it-works, .faq-section, .pricing-section, .comparison-section { padding: 6rem 0; }
.how-it-works, .comparison-section { background: #f9fafb; }
h2 { font-size: 2.8rem; font-weight: 800; text-align: center; margin-bottom: 1rem; letter-spacing: -1px; }
.section-subtitle { text-align: center; color: var(--light-text); max-width: 600px; margin: 0 auto 4rem; font-size: 1.1rem; }

/* Trust Signals */
.trust-signals { background: var(--white); padding-top: 4rem; }
.trust-signals .container { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; text-align: center; }
.signal svg { width: 40px; height: 40px; color: var(--primary-color); margin-bottom: 1rem; }
.signal h4 { font-size: 1.2rem; margin: 0 0 0.5rem; }
.signal p { color: var(--light-text); margin: 0; }

/* How It Works */
.steps-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 3rem; }
.step { text-align: center; }
.step-number { width: 50px; height: 50px; border-radius: 50%; background: var(--primary-color); color: var(--secondary-color); font-size: 1.5rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.step h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.step p { color: var(--light-text); }

/* Pricing Table */
.pricing-table { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; align-items: center; margin-top: 4rem; }
.price-card { border: 1px solid var(--border-color); border-radius: 16px; padding: 2.5rem 2rem; text-align: center; transition: all 0.3s ease; background: var(--white); }
.price-card.highlighted { border: 2px solid var(--primary-color); transform: scale(1.05); box-shadow: 0 20px 50px rgba(20, 33, 61, 0.1); position: relative; }
.highlight-badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--primary-color); color: var(--secondary-color); padding: 0.3rem 1rem; border-radius: 99px; font-size: 0.8rem; font-weight: 700; }
.price-card h3 { font-size: 1.5rem; margin-top: 0; }
.price-card .price { font-size: 3.5rem; font-weight: 800; margin: 1rem 0; color: var(--text-color); }
.price-card ul { list-style: none; padding: 0; margin: 2rem 0; text-align: left; display: flex; flex-direction: column; gap: 1rem; }
.price-card ul li { color: var(--light-text); display: flex; align-items: center; gap: 0.75rem; }
.price-card ul li .icon { color: var(--success-color); font-size: 1.2rem; }
.price-card ul li strong { color: var(--text-color); }

/* Comparison Section */
.comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 4rem; }
.comparison-column { border: 1px solid var(--border-color); border-radius: 16px; padding: 2.5rem; }
.comparison-column h3 { font-size: 1.5rem; margin-bottom: 1.5rem; padding-bottom: 1rem; text-align: left; }
.comparison-column ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 1.5rem; }
.comparison-column li { display: flex; align-items: flex-start; gap: 1rem; }
.comparison-column .icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.our-service { border-color: var(--success-color); background: #f0fdf4; }
.our-service h3 { color: #15803d; }
.our-service .icon.check { color: var(--success-color); }
.other-services { border-color: var(--error-color); background: #fff1f2; }
.other-services h3 { color: #be123c; }
.other-services .icon.cross { color: var(--error-color); }
.other-services li { color: var(--light-text); }
.comparison-column li strong { color: var(--text-color); }

/* FAQ Section */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 900px; margin: 3rem auto 0; }
.faq-item { background: #fff; border: 1px solid var(--border-color); border-radius: 12px; padding: 1.5rem; }
.faq-item h4 { font-size: 1.2rem; margin: 0 0 0.5rem; }
.faq-item p { color: var(--light-text); margin: 0; }

/* Footer */
.footer { padding: 4rem 0; background: var(--secondary-color); color: #9ca3af; text-align: center; }
.footer-contact { margin-bottom: 1.5rem; }
.footer-contact a { color: var(--white); text-decoration: none; }
.footer-links { display: flex; justify-content: center; gap: 1.5rem; margin-bottom: 1rem; }
.footer-links a { color: #9ca3af; text-decoration: none; }
.footer-links a:hover { color: var(--white); }
.copyright { font-size: 0.9rem; margin-top: 2rem; }

/* Floating WhatsApp Button */
.floating-whatsapp { position: fixed; bottom: 25px; right: 25px; background-color: var(--whatsapp-color); color: #fff; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(0,0,0,0.2); z-index: 1000; transition: transform 0.2s ease; }
.floating-whatsapp:hover { transform: scale(1.1); }
.floating-whatsapp svg { width: 32px; height: 32px; }

/* Passenger Page */
.itinerary-summary { background: #f9fafb; padding: 2rem; border-radius: 12px; border: 1px solid var(--border-color); }
.itinerary-summary h3 { margin-top: 0; border-bottom: 1px solid var(--border-color); padding-bottom: 1rem; margin-bottom: 1rem; }
.itinerary-summary p { margin: 0 0 0.75rem; }
.price-summary { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border-color); display: flex; justify-content: space-between; align-items: center; font-size: 1.2rem; font-weight: 700; }
.price-summary span { color: var(--secondary-color); }
.passenger-form { padding: 0; }

/* Utility & Form Styles */
.form-alert { padding: 1rem; border-radius: 8px; margin-bottom: 1.5rem; border: 1px solid transparent; color: #fff; background: var(--error-color); }
.recaptcha-notice { font-size: 0.8rem; color: var(--light-text); text-align: center; margin-top: 1rem; }


/* --- ADMIN DASHBOARD STYLES --- */
.admin-body { background-color: #f1f5f9; }
.admin-login-container { display: flex; align-items: center; justify-content: center; min-height: 100vh; }
.admin-login-card { background: var(--secondary-color); color: var(--white); padding: 3rem; border-radius: 12px; width: 100%; max-width: 400px; }
.admin-login-card h2 { text-align: center; color: var(--white); }
.admin-login-card form { display: flex; flex-direction: column; gap: 1rem; }
.admin-login-card label { font-weight: 500; }
.admin-login-card input { padding: 0.75rem; border-radius: 8px; border: 1px solid #475569; background: #334155; color: var(--white); }

.admin-dashboard-header { background: var(--white); padding: 1rem 0; border-bottom: 1px solid var(--border-color); }
.admin-dashboard-header .container { display: flex; justify-content: space-between; align-items: center; }
.admin-dashboard-header .logo { color: var(--secondary-color); }

.admin-dashboard { padding-top: 3rem; padding-bottom: 3rem; }
.admin-dashboard h1 { text-align: left; }

.table-wrapper { overflow-x: auto; background: var(--white); border-radius: 12px; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); }
.order-table { width: 100%; border-collapse: collapse; }
.order-table th, .order-table td { 
    padding: 1rem 1.25rem; 
    text-align: left; 
    border: 1px solid var(--border-color); /* GRIDLINES ADDED */
}
.order-table thead { background-color: #f9fafb; }
.order-table th { font-weight: 600; color: var(--light-text); }
.order-table tr:nth-child(even) { background-color: #f9fafb; }
.order-table td small { color: var(--light-text); }
.order-table a { color: var(--secondary-color); text-decoration: none; }
.order-table a:hover { text-decoration: underline; }

.status { padding: 0.25rem 0.75rem; border-radius: 99px; font-size: 0.8rem; font-weight: 700; text-transform: capitalize; }
.status.pending-payment { background-color: #fef3c7; color: #92400e; }
.status.paid { background-color: #d1fae5; color: #065f46; }
.status.processing { background-color: #dbeafe; color: #1e40af; }
.status.completed { background-color: #e5e7eb; color: #374151; }
.status.cancelled { background-color: #fee2e2; color: #991b1b; }

.status-form { display: flex; flex-direction: column; gap: 0.75rem; }
.status-form select, .status-form textarea { width: 100%; padding: 0.5rem; border: 1px solid var(--border-color); border-radius: 6px; font-family: inherit; font-size: 0.9rem; }
.status-form textarea { min-height: 60px; }
.btn-update { background: var(--secondary-color); color: var(--white); border: none; padding: 0.5rem 1rem; border-radius: 6px; cursor: pointer; font-weight: 700; }


/* Responsive */
@media (max-width: 992px) {
    .comparison-grid { grid-template-columns: 1fr; }
    .booking-widget { margin-left: 1rem; margin-right: 1rem; }
}
@media (max-width: 768px) {
    h2 { font-size: 2.2rem; }
    .form-row, .faq-grid, .pricing-table { grid-template-columns: 1fr; }
    .price-card.highlighted { transform: scale(1); }
    .header nav { flex-direction: column; gap: 1rem; }
    .nav-links { flex-wrap: wrap; justify-content: center; margin-top: 1rem; }
    .tab-content { padding: 1.5rem; }
    .tabs { flex-wrap: wrap; }
    
    /* Responsive Admin Table */
    .order-table thead { display: none; }
    .order-table, .order-table tbody, .order-table tr, .order-table td { display: block; width: 100%; }
    .order-table tr { margin-bottom: 1.5rem; border: 1px solid var(--border-color); border-radius: 8px; overflow: hidden; }
    .order-table td { border: none; border-bottom: 1px solid var(--border-color); text-align: right; padding-left: 50%; position: relative; }
    .order-table td:last-child { border-bottom: 0; }
    .order-table td::before { content: attr(data-label); position: absolute; left: 1.25rem; font-weight: 600; text-align: left; }
}

