:root {
    --primary-orange: #ff6600;
    --dark-orange: #e65c00;
    --light-orange: #ff8533;
    --black: #000;
}

body {
    font-family: 'Poppins', sans-serif;
}

/* Top Banner */
.top-banner {
    background-color: #fff3e6;
    border-bottom: 1px solid #ffe0b3;
    font-size: 0.85rem;
}

/* Navigation */
.navbar {
    background-color: var(--primary-orange) !important;
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: white !important;
}

.navbar-brand span {
    font-weight: 300;
}

.nav-link {
    color: white !important;
    font-weight: 500;
    margin: 0 0.5rem;
}

.nav-link:hover {
    opacity: 0.9;
}

.cart-icon {
    color: white;
    font-size: 1.3rem;
}

/* Hero Section */
.hero-section {
    padding: 32px 0;
    margin-bottom: 2rem;

}

.hero-section .d-grid {
    grid-template-columns: repeat(2, 1fr);
}

.hero-text {
    color: white;
    padding: 48px 48px 72px;
    border-radius: 16px 0 0 16px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--light-orange) 100%);
}

.hero-text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.1rem;
    opacity: 0.95;
}

.hero-image img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    border-radius: 0 16px 16px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Features */
.feature-item {
    text-align: center;
    display: flex;
    gap: 6px;
    align-items: center;
    width: fit-content;
}

.feature-item i {
    font-size: 2rem;
    color: var(--black);
    line-height: 1;
}

.feature-item p {
    margin: 0;
    font-weight: 500;
}

/* Skip Cards */
.section-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 3rem 0 2rem 0;
    text-align: center;
}

.skip-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.skip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.skip-card.popular {
    border: 2px solid var(--primary-orange);
}

.badge-slots {
    position: absolute;
    top: -10px;
    right: 10px;
    background-color: var(--primary-orange);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.badge-popular {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-orange);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.skip-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.skip-capacity {
    background-color: #ffe0b3;
    color: var(--dark-orange);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.skip-image {
    text-align: center;
    margin: 1rem 0;
}

.skip-image img {
    max-width: 100%;
    height: auto;
}

.skip-specs {
    text-align: left;
    margin: 1rem 0;
}

.skip-specs ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.skip-specs li {
    padding: 0.3rem 0;
    font-size: 0.9rem;
}

.skip-specs li:before {
    content: "•";
    color: var(--primary-orange);
    font-weight: bold;
    margin-right: 0.5rem;
}

.btn-hire {
    background-color: var(--primary-orange);
    color: white;
    border: none;
    padding: 0.75rem;
    width: 100%;
    border-radius: 25px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-hire:hover {
    background-color: var(--dark-orange);
    color: white;
}

/* Info Section */
.info-section {
    background-color: #f8f9fa;
    padding: 3rem 2rem;
    border-radius: 8px;
    margin: 3rem 0;
}

.info-section h3 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    padding: 0.5rem 0;
    font-size: 1rem;
}

.benefits-list li:before {
    content: "✓";
    color: var(--primary-orange);
    font-weight: bold;
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

/* Reviews */
.review-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    height: 100%;
}

.review-header {
    margin-bottom: 1rem;
}

.reviewer-name {
    font-weight: 600;
    font-size: 1.1rem;
}

.verified-badge {
    color: #28a745;
    font-size: 0.85rem;
}

.stars {
    color: #ffc107;
    margin: 0.5rem 0;
}

.review-text {
    font-size: 0.95rem;
    color: #555;
    margin: 1rem 0;
}

.review-location {
    font-size: 0.85rem;
    color: #888;
}

/* Footer */
.footer-orange {
    background-color: var(--primary-orange);
    color: white;
    padding: 2rem 0;
    margin-top: 3rem;
}

.footer-links {
    padding: 3rem 0;
    background-color: #f8f9fa;
}

.footer-links .d-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 560px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    gap: 30px;
}

.footer-links .d-grid p strong {
    color: var(--primary-orange);
}

.footer-links h5 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #555;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--primary-orange);
}

.brand-logo {
    background-color: var(--primary-orange);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    display: inline-block;
    margin: 1rem 0;
}

.cities-list {
    background-color: #fff;
    padding: 2rem 0;
}

.cities-list ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    height: 250px;
}

.cities-list li {
    padding: 0.25rem 0;
    font-size: 0.9rem;
    color: #555;
    font-weight: 500;
}

.copyright {
    background-color: #f8f9fa;
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.9rem;
    color: #666;
}

@media (max-width: 991px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }

    .cities-list ul {
        height: 350px;
    }

    .info-section {
        padding: 2rem 1rem;
        margin: 1rem 0;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }
}

@media (max-width: 575px) {
    .d-grid {
        grid-template-columns: 1fr !important;
    }

    .hero-text {
        border-radius: 0;
    }

    .hero-image img {
        border-radius: 0;
    }

    .row {
        row-gap: 16px !important;
    }

    .skip-card {
        margin-bottom: 0;
    }

    .info-section {
        margin: 0;
    }

    .cities-list ul {
        height: auto;
    }
}