/* ---------- RESET & BASE ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
    color: #1a1a1a;
    line-height: 1.6;
}
a {
    text-decoration: none;
    color: inherit;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---------- HEADER ---------- */
header {
    background: #0a0a0a;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #d4a849;
}
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo h1 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -1px;
}
.logo span {
    color: #d4a849;
}
nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}
nav ul li a {
    color: #e0e0e0;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    position: relative;
}
nav ul li a:hover {
    color: #d4a849;
}
nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #d4a849;
    transition: width 0.3s;
}
nav ul li a:hover::after {
    width: 100%;
}
.btn-primary {
    background: #d4a849;
    color: #0a0a0a !important;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 700;
    transition: background 0.3s, transform 0.2s;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}
.btn-primary:hover {
    background: #b8913a;
    transform: scale(1.02);
}
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}
.menu-toggle span {
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
}

/* ---------- HERO ---------- */
.hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 80px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212,168,73,0.15) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.hero-text h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}
.hero-text h1 span {
    color: #d4a849;
}
.hero-text p {
    font-size: 1.15rem;
    color: #b0b0b0;
    margin-bottom: 30px;
    max-width: 480px;
}
.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}
.hero-stats div {
    text-align: center;
}
.hero-stats .number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #d4a849;
}
.hero-stats .label {
    font-size: 0.85rem;
    color: #888;
}
.booking-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.booking-card h3 {
    color: #d4a849;
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}
.booking-form .form-group {
    margin-bottom: 16px;
}
.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.06);
    color: #fff;
    font-size: 0.95rem;
    transition: border 0.3s;
    font-family: 'Inter', sans-serif;
}
.booking-form input::placeholder,
.booking-form textarea::placeholder {
    color: #888;
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: #d4a849;
}
.booking-form select option {
    background: #1a1a1a;
}
.booking-form .btn-submit {
    width: 100%;
    padding: 16px;
    background: #d4a849;
    color: #0a0a0a;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    font-family: 'Inter', sans-serif;
}
.booking-form .btn-submit:hover {
    background: #b8913a;
    transform: translateY(-2px);
}
.booking-form .row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

/* ---------- SECTIONS ---------- */
.section {
    padding: 80px 0;
}
.section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.section-subtitle {
    text-align: center;
    color: #666;
    max-width: 600px;
    margin: 0 auto 50px auto;
}
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.advantage-item {
    background: #fff;
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #f0f0f0;
}
.advantage-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.advantage-item i {
    font-size: 2.4rem;
    color: #d4a849;
    margin-bottom: 16px;
}
.advantage-item h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}
.advantage-item p {
    font-size: 0.9rem;
    color: #666;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.service-item {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: transform 0.3s;
    border: 1px solid #f0f0f0;
}
.service-item:hover {
    transform: translateY(-4px);
}
.service-item .service-img {
    height: 120px;
    background: linear-gradient(135deg, #2a2a2a, #0a0a0a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #d4a849;
}
.service-item .service-body {
    padding: 24px;
}
.service-item .service-body h4 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}
.service-item .service-body p {
    color: #666;
    font-size: 0.9rem;
}
.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.vehicle-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    border: 1px solid #f0f0f0;
    transition: transform 0.3s, box-shadow 0.3s;
}
.vehicle-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
.vehicle-card .vehicle-icon {
    font-size: 3.4rem;
    color: #d4a849;
    margin-bottom: 12px;
}
.vehicle-card h4 {
    font-size: 1.1rem;
}
.vehicle-card .vehicle-desc {
    color: #888;
    font-size: 0.85rem;
    margin: 6px 0 12px;
}
.vehicle-card .vehicle-price {
    font-weight: 700;
    color: #0a0a0a;
    font-size: 1.2rem;
}
.vehicle-card .vehicle-price small {
    font-weight: 400;
    font-size: 0.8rem;
    color: #888;
}

/* ---------- CTA ---------- */
.cta-section {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}
.cta-section h2 {
    font-size: 2.4rem;
    margin-bottom: 16px;
}
.cta-section h2 span {
    color: #d4a849;
}
.cta-section p {
    color: #b0b0b0;
    max-width: 560px;
    margin: 0 auto 30px;
    font-size: 1.05rem;
}

/* ---------- FOOTER ---------- */
footer {
    background: #0a0a0a;
    color: #888;
    padding: 40px 0;
    border-top: 1px solid #1a1a1a;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.footer-left .credit {
    font-size: 0.8rem;
    color: #666;
}
.footer-left .credit a {
    color: #d4a849;
    font-weight: 600;
    transition: color 0.3s;
    text-decoration: none;
}
.footer-left .credit a:hover {
    color: #fff;
    text-decoration: underline;
}
.footer-socials {
    display: flex;
    gap: 20px;
}
.footer-socials a {
    color: #888;
    font-size: 1.2rem;
    transition: color 0.3s;
}
.footer-socials a:hover {
    color: #d4a849;
}

/* ---------- ADMIN ---------- */
.admin-wrapper {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}
.admin-sidebar {
    width: 250px;
    flex-shrink: 0;
    background: #0a0a0a;
    border-radius: 16px;
    padding: 20px;
    color: #fff;
    height: fit-content;
    position: sticky;
    top: 100px;
}
.admin-sidebar ul {
    list-style: none;
}
.admin-sidebar ul li {
    margin-bottom: 8px;
}
.admin-sidebar ul li a {
    display: block;
    padding: 12px 16px;
    border-radius: 10px;
    color: #aaa;
    transition: all 0.3s;
}
.admin-sidebar ul li a:hover,
.admin-sidebar ul li a.active {
    background: #d4a849;
    color: #0a0a0a;
}
.admin-sidebar ul li a i {
    margin-right: 12px;
    width: 20px;
}
.admin-content {
    flex: 1;
}
.admin-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}
.admin-stat-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #eee;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.admin-stat-card .number {
    font-size: 2rem;
    font-weight: 700;
    color: #0a0a0a;
}
.admin-stat-card .label {
    color: #888;
    font-size: 0.9rem;
}
.admin-stat-card .icon {
    float: right;
    font-size: 1.8rem;
    color: #d4a849;
}
.admin-table {
    width: 100%;
    background: #fff;
    border-radius: 12px;
    border-collapse: collapse;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.admin-table th {
    background: #f8f9fa;
    text-align: left;
    padding: 14px 16px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    color: #555;
}
.admin-table td {
    padding: 14px 16px;
    border-top: 1px solid #f0f0f0;
}
.admin-table .badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}
.badge-pending { background: #fff3cd; color: #856404; }
.badge-confirmed { background: #cce5ff; color: #004085; }
.badge-completed { background: #d4edda; color: #155724; }
.badge-cancelled { background: #f8d7da; color: #721c24; }
.admin-form-group {
    margin-bottom: 20px;
}
.admin-form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
}
.admin-form-group input,
.admin-form-group textarea,
.admin-form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; gap: 40px; }
    .hero-text h1 { font-size: 2.6rem; }
    .advantages-grid, .services-grid, .vehicles-grid { grid-template-columns: repeat(2,1fr); }
    .admin-stats { grid-template-columns: repeat(2,1fr); }
    .admin-wrapper { flex-direction: column; }
    .admin-sidebar { width:100%; position:relative; top:0; }
}
@media (max-width: 768px) {
    .menu-toggle { display: flex; }
    nav ul {
        display: none;
        flex-direction: column;
        background: #0a0a0a;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 20px 0;
        gap: 16px;
        border-bottom: 2px solid #d4a849;
    }
    nav ul.open { display: flex; }
    .hero-text h1 { font-size: 2rem; }
    .hero-stats { gap: 20px; flex-wrap: wrap; }
    .booking-form .row-2 { grid-template-columns: 1fr; }
    .advantages-grid, .services-grid, .vehicles-grid { grid-template-columns: 1fr; }
    .section { padding: 50px 0; }
    .section-title { font-size: 1.7rem; }
    .footer-content { flex-direction: column; text-align: center; }
    .footer-left { align-items: center; }
    .admin-stats { grid-template-columns: 1fr; }
}