/* ==========================================================================
   Homepage-Specific Styles
   ========================================================================== */

/* --- Hero Section --- */
.hero-section {
    background: linear-gradient(rgba(240, 244, 255, 0.9), rgba(240, 244, 255, 0.9)), url('https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?q=80&w=2070') center/cover no-repeat;
    text-align: center;
    padding: 6rem 1rem;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a253c;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--dark-gray-color);
    margin-bottom: 2.5rem;
}

/* --- Homepage Search Bar --- */
.search-form {
    max-width: 700px;
    margin: 0 auto;
}

.search-bar {
    display: flex;
    align-items: center;
    background: var(--white-color);
    border-radius: 12px;
    padding: 0.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.search-icon {
    font-size: 1.2rem;
    color: var(--dark-gray-color);
    margin: 0 1rem;
}

.search-bar input {
    flex-grow: 1;
    border: none;
    outline: none;
    font-size: 1.1rem;
    padding: 0.75rem 0;
}

.disclaimer {
    margin-top: 1.5rem;
    color: var(--dark-gray-color);
    font-size: 0.9rem;
}

.disclaimer .fa-circle-info {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* --- Pricing Section --- */
.pricing-section {
    padding: 5rem 5%;
    text-align: center;
    background-color: var(--light-gray-color);
}

.pricing-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.pricing-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.pricing-card {
    background: var(--white-color);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    flex-basis: 320px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.pricing-card.popular {
    border: 2px solid var(--primary-color);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white-color);
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.pricing-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.pricing-card .price {
    font-size: 3rem;
    font-weight: bold;
    margin: 1rem 0;
}

.price sup {
    font-size: 1.5rem;
    font-weight: normal;
}

.price span {
    font-size: 1rem;
    font-weight: normal;
    color: var(--dark-gray-color);
}

.pricing-card p {
    margin-bottom: 1.5rem;
    color: var(--dark-gray-color);
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-card ul li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.pricing-card ul li .fa-check { color: var(--success-color); }
.pricing-card ul li .fa-times { color: var(--danger-color); }
.pricing-card ul li i { margin-right: 0.75rem; }

.pricing-card .btn {
    display: block;
    text-align: center;
}


/* --- Responsive Styles for Homepage --- */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .search-bar {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    .search-bar input {
        width: 100%;
        text-align: center;
    }
    .search-bar .btn {
        width: 100%;
    }
}