body {
    background: #F6F8FA;
    font-family: 'Poppins', sans-serif;
    color: #1F2937;
}

/* NAVBAR BASE */
.navbar-modern {
    background: #ffffff;
    padding: 14px 0;
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
}

/* LINKS */
.navbar-modern .nav-link {
    font-weight: 500;
    color: #1F2937;
    position: relative;
    padding: 6px 4px;
    transition: color 0.3s ease;
}

/* HOVER UNDERLINE */
.navbar-modern .nav-animate::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background: #E63946;
    transition: width 0.3s ease;
}

.navbar-modern .nav-animate:hover::after {
    width: 100%;
}

.navbar-modern .nav-link:hover {
    color: #E63946;
}

/* AIRPORT DROPDOWN */
.dropdown-hover:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

.dropdown-airports {
    border-radius: 14px;
    padding: 12px;
    min-width: 220px;
    border: none;
}

.dropdown-airports .dropdown-item {
    padding: 10px 14px;
    border-radius: 10px;
    font-weight: 500;
    transition: background 0.2s ease, transform 0.2s ease;
}

.dropdown-airports .dropdown-item:hover {
    background: #F6F8FA;
    transform: translateX(4px);
    color: #E63946;
}

/* MOBILE FIX */
@media (max-width: 991px) {
    .dropdown-hover:hover .dropdown-menu {
        display: none;
    }
}


.promo-bar { background:#0aa5e8; }
.promo-input { padding:4px 8px; margin:0 5px; }

.hero-section {
    background:#000;
    color:#fff;
    padding:60px 0;
}
.hero-section span { color:#ff3355; }


.hero-modern {
    padding: 30px 0 60px;
    background: linear-gradient(180deg, #ffffff, #EAF4FB);
}

.hero-title {
    font-weight: 700;
    font-size: 42px;
}
.hero-title span {
    color: #E63946;
}

.hero-sub {
    color: #475569;
    margin-bottom: 35px;
}

.btn-book-modern {
    background: linear-gradient(135deg, #ff4d4f, #ff7a45);
    color: #fff;
    font-weight: 600;
    padding: 10px 26px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 12px 30px rgba(255, 77, 79, 0.35);
    transition: all 0.35s ease;
    border: none;
}

.btn-book-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(255, 77, 79, 0.5);
    color: #fff;
}


.booking-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    padding: 15px;
}



.booking-box {
    background:#fff;
    color:#000;
    padding:30px;
    border-radius:15px;
    margin-top:30px;
}

.features-section {
    background:#2ea8f4;
    color:#fff;
    padding:50px 0;
}

.feature-icon {
    font-size:40px;
    margin-bottom:15px;
}

.features-modern {
    padding: 70px 0;
    background: #ffffff;
}

.feature-card {
    background: #F6F8FA;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    height: 100%;
}

.feature-card i {
    font-size: 36px;
    color: #0B3C5D;
    margin-bottom: 15px;
}

/* SECTION BACKGROUND */
.features-modern {
    background: #ffffff;
}

/* CARD */
.feature-card-modern {
    background: #f9fafb;
    border-radius: 18px;
    padding: 40px 28px;
    height: 100%;
    text-align: center;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* HOVER EFFECT */
.feature-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
    background: #ffffff;
}

/* ICON WRAP */
.icon-wrap {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    color: #fff;
    font-size: 26px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* ICON GRADIENTS */
.gradient-red {
    background: linear-gradient(135deg, #ff4d4f, #ff7a45);
}

.gradient-blue {
    background: linear-gradient(135deg, #1677ff, #69b1ff);
}

.gradient-green {
    background: linear-gradient(135deg, #52c41a, #95de64);
}

/* TEXT */
.feature-card-modern h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #111827;
}

.feature-card-modern p {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.7;
}

/* SUBTLE BORDER GLOW */
.feature-card-modern::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    border: 1px solid rgba(0,0,0,0.04);
    pointer-events: none;
}


/* SECTION */
.steps-modern {
    background: linear-gradient(180deg, #f9fafb, #ffffff);
}

/* SUBTITLE */
.steps-sub {
    color: #6b7280;
    font-size: 15px;
}

/* STEP CARD */
.step-card-modern {
    background: #ffffff;
    border-radius: 18px;
    padding: 30px 24px;
    height: 100%;
    text-align: center;
    box-shadow: 0 20px 45px rgba(0,0,0,0.07);
    transition: all 0.35s ease;
}

.step-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 70px rgba(0,0,0,0.12);
}

/* ICON */
.step-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 24px;
    color: #ffffff;
}

/* ICON COLORS */
.step-blue {
    background: linear-gradient(135deg, #1677ff, #69b1ff);
}
.step-green {
    background: linear-gradient(135deg, #52c41a, #95de64);
}
.step-orange {
    background: linear-gradient(135deg, #fa8c16, #ffc069);
}
.step-red {
    background: linear-gradient(135deg, #ff4d4f, #ff7875);
}

/* TEXT */
.step-card-modern h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #111827;
}

.step-card-modern p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

/* ARROW */
.step-arrow {
    position: absolute;
    top: 50%;
    right: -20px;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #d1d5db, #9ca3af);
}

.step-arrow::after {
    content: "";
    position: absolute;
    right: 0;
    top: -4px;
    width: 0;
    height: 0;
    border-left: 8px solid #9ca3af;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

/* MOBILE */
@media (max-width: 767px) {
    .step-arrow {
        display: none;
    }
}


.steps-section {
    padding:60px 0;
}

.step-circle {
    width:90px;
    height:90px;
    background:#2ea8f4;
    color:#fff;
    border-radius:50%;
    line-height:90px;
    margin:0 auto 10px;
}

.steps-modern {
    background: #EAF4FB;
    padding: 80px 0;
}

.step-card {
    background: #ffffff;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    margin: auto;
    font-size: 32px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.step-card span {
    font-size: 14px;
    font-weight: 500;
}

/* SECTION */
.parking-modern {
    background: linear-gradient(180deg, #ffffff, #f9fafb);
}

/* SUBTITLE */
.parking-sub {
    color: #6b7280;
    font-size: 15px;
}

/* CARD */
.parking-card-modern {
    background: #ffffff;
    border-radius: 22px;
    padding: 40px 28px;
    height: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 25px 55px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
    overflow: hidden;
}

/* HOVER */
.parking-card-modern:hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.14);
}

/* TOP BORDER ACCENT */
.parking-card-modern::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 6px;
    width: 100%;
    background: linear-gradient(90deg, #1677ff, #69b1ff);
}

/* ICON */
.parking-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    font-size: 28px;
    color: #ffffff;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* ICON COLORS */
.badge-blue {
    background: linear-gradient(135deg, #1677ff, #69b1ff);
}
.badge-green {
    background: linear-gradient(135deg, #52c41a, #95de64);
}
.badge-red {
    background: linear-gradient(135deg, #ff4d4f, #ff7875);
}

/* HIGHLIGHT MIDDLE CARD */
.parking-card-modern.highlight {
    transform: scale(1.03);
}

/* TEXT */
.parking-card-modern h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #111827;
}

.parking-card-modern p {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.7;
}

/* TAG */
.parking-tag {
    display: inline-block;
    margin-top: 16px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 999px;
    background: #f1f5f9;
    color: #334155;
}

/* MOBILE */
@media (max-width: 767px) {
    .parking-card-modern.highlight {
        transform: none;
    }
}


.parking-types {
    background:#ff3355;
    color:#fff;
    padding:60px 0;
}

.parking-icon {
    font-size:45px;
    margin-bottom:15px;
}


/* FEATURES */
.features-section {
    background:#2ea8f4;
    color:#fff;
    padding:60px 0;
}
.feature-icon {
    font-size:42px;
    margin-bottom:15px;
}

/* STEPS */
.steps-section {
    padding:60px 0;
}
.step-circle {
    width:90px;
    height:90px;
    background:#2ea8f4;
    color:#fff;
    border-radius:50%;
    line-height:90px;
    margin:0 auto 10px;
    font-weight:600;
}

/* PARKING TYPES */
.parking-types-section {
    background:#ff3355;
    color:#fff;
    padding:60px 0;
}
.parking-icon {
    font-size:45px;
    margin-bottom:15px;
}

.booking-form {
    background:#fff;
    padding:30px;
    border-radius:16px;
    max-width:900px;
    margin:30px auto 0;
}

.booking-title {
    text-align:center;
    font-weight:700;
    letter-spacing:4px;
    color:#5f687d;
    margin-bottom:25px;
}

.booking-form label {
    font-weight:600;
    margin-bottom:5px;
}

.booking-form .form-control {
    border:3px solid #00aeef;
    min-height:46px;
}


.parking-modern {
    background: #ffffff;
    padding: 80px 0;
}

.parking-card {
    background: linear-gradient(180deg,#ffffff,#F6F8FA);
    border-radius: 20px;
    padding: 35px;
}
.parking-card i {
    font-size: 40px;
    color: #E63946;
    margin-bottom: 15px;
}


.footer-modern {
    background: #0f172a;
    color: #cbd5f5;
    padding: 70px 0 30px;
}

/* HEADINGS */
.footer-modern h5,
.footer-modern h6 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 15px;
}

/* BRAND */
.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    margin-top: 15px;
}

/* LINKS */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #cbd5f5;
    font-size: 14px;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a:hover {
    color: #38bdf8;
    padding-left: 6px;
}

/* CONTACT */
.footer-modern p a {
    color: #cbd5f5;
}
.footer-modern p a:hover {
    color: #38bdf8;
}

/* SOCIAL */
.footer-social a {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    background: #1e293b;
    border-radius: 50%;
    margin-right: 8px;
    color: #ffffff;
    transition: background 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover {
    background: #38bdf8;
    transform: translateY(-3px);
}

/* PAYMENTS */
.footer-payments h6 {
    margin-bottom: 15px;
    font-size: 14px;
    color: #e5e7eb;
}

.footer-payments img {
    max-height: 48px;
    opacity: 0.95;
}

/* BOTTOM */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 20px;
    font-size: 13px;
    color: #94a3b8;
}
