* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #222;
    background-color: #ffffff;
}

a {
    text-decoration: none;
}

.brand-yellow {
    color: #ffc107;
}

.navbar-brand {
    font-size: 26px;
}

.navbar .nav-link {
    font-weight: 500;
    margin-left: 8px;
}

.navbar .nav-link.active,
.navbar .nav-link:hover {
    color: #ffc107 !important;
}

.min-vh-75 {
    min-height: 75vh;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.72)), 
                url("../images/taxi-bg.jpg");
    background-size: cover;
    background-position: center;
    color: #ffffff;
    padding: 70px 0;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
}

.hero-text {
    font-size: 19px;
    margin-top: 20px;
    color: #eeeeee;
}

.hero-taxi-box {
    background-color: #ffc107;
    color: #111;
    padding: 45px 25px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.hero-taxi-box i {
    font-size: 85px;
    margin-bottom: 20px;
}

.hero-taxi-box h3 {
    font-weight: 800;
}

/* Common Sections */
.section-padding {
    padding: 70px 0;
}

.section-title {
    margin-bottom: 45px;
}

.section-title h2 {
    font-weight: 800;
    color: #111;
}

.section-title p {
    color: #666;
    font-size: 17px;
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.76)), 
                url("../images/page-header.jpg");
    background-size: cover;
    background-position: center;
    color: #ffffff;
    padding: 80px 0;
}

.page-header h1 {
    font-size: 46px;
    font-weight: 800;
}

.page-header p {
    font-size: 18px;
    color: #eeeeee;
}

/* Feature Cards */
.feature-card {
    background-color: #ffffff;
    padding: 30px 20px;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    transition: 0.3s;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-6px);
}

.feature-card i {
    font-size: 42px;
    color: #ffc107;
    margin-bottom: 16px;
}

.feature-card h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-card p {
    color: #666;
    margin-bottom: 0;
}

/* Service Cards */
.service-card {
    background-color: #ffffff;
    padding: 35px 25px;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-6px);
}

.service-card i {
    font-size: 45px;
    color: #ffc107;
    margin-bottom: 18px;
}

.service-card h4 {
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card p {
    color: #666;
}

/* Taxi Cards */
.taxi-card {
    background-color: #ffffff;
    border-radius: 14px;
    padding: 30px 22px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    height: 100%;
    transition: 0.3s;
}

.taxi-card:hover {
    transform: translateY(-6px);
}

.taxi-icon {
    background-color: #111;
    color: #ffc107;
    height: 90px;
    width: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.taxi-icon i {
    font-size: 42px;
}

.taxi-card h4 {
    text-align: center;
    font-weight: 800;
}

.taxi-card p {
    text-align: center;
    color: #666;
}

.taxi-card ul {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.taxi-card ul li {
    padding: 6px 0;
    border-bottom: 1px solid #eeeeee;
    color: #444;
}

/* About */
.about-box {
    background-color: #ffc107;
    border-radius: 20px;
    min-height: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-box i {
    font-size: 150px;
    color: #111;
}

.mini-info-box {
    background-color: #f8f9fa;
    padding: 20px;
    border-left: 5px solid #ffc107;
    border-radius: 10px;
}

.mini-info-box h4 {
    font-weight: 800;
    color: #111;
}

.mini-info-box p {
    margin-bottom: 0;
    color: #666;
}

/* Forms */
.form-box {
    background-color: #ffffff;
    padding: 35px;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}

.form-control,
.form-select {
    min-height: 48px;
    border-radius: 8px;
}

.form-control:focus,
.form-select:focus {
    border-color: #ffc107;
    box-shadow: 0 0 0 0.15rem rgba(255, 193, 7, 0.25);
}

/* Contact */
.contact-info-box {
    background-color: #111;
    color: #ffffff;
    padding: 35px;
    border-radius: 14px;
    height: 100%;
}

.contact-info-box p {
    color: #dddddd;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.contact-item i {
    color: #ffc107;
    font-size: 28px;
}

.contact-item h5 {
    margin-bottom: 4px;
    font-weight: 700;
}

.contact-item p {
    margin-bottom: 0;
}

.map-box {
    background-color: #f8f9fa;
    padding: 50px;
    border-radius: 14px;
    border: 2px dashed #cccccc;
}

/* Success */
.success-box {
    background-color: #ffffff;
    padding: 50px 30px;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}

.success-box i {
    font-size: 80px;
    color: #28a745;
    margin-bottom: 20px;
}

.success-box h1 {
    font-weight: 800;
}

/* CTA */
.cta-section {
    background-color: #111;
    color: #ffffff;
    padding: 65px 0;
}

.cta-section h2 {
    font-weight: 800;
}

.cta-section p {
    color: #dddddd;
    font-size: 18px;
}

/* Footer */
.footer-text {
    color: #cccccc;
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #cccccc;
}

.footer-links a:hover {
    color: #ffc107;
}

.footer-bottom {
    background-color: #000000;
    color: #cccccc;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-text {
        font-size: 16px;
    }

    .page-header h1 {
        font-size: 34px;
    }

    .section-padding {
        padding: 50px 0;
    }
}