/* Domestic Packages Page CSS */

/* Hero Banner */
.domestic-hero {
    background: linear-gradient(90deg, rgba(23, 62, 126, 0.9) 0%, rgba(18, 30, 48, 0.7) 60%, rgba(243, 105, 32, 0.6) 100%), url('../images/destinations/kerala.jpg') center/cover no-repeat;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.explore-badge {
    display: inline-block;
    background-color: transparent;
    border: 1px solid #f36920;
    color: #f36920;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.explore-badge i {
    margin-right: 5px;
}

.domestic-hero-content h1 {
    font-size: 3.2rem;
    color: #fff;
    margin-bottom: 12px;
    font-weight: 800;
    letter-spacing: 1px;
}

.domestic-hero-content h1 .highlight {
    color: #f36920;
}

.domestic-hero-content p {
    font-size: 1.15rem;
    color: #e0e0e0;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Packages Section */
.domestic-packages-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.domestic-container {
    max-width: 1200px;
    margin: 0 auto;
}

.pkg-header-wrapper {
    text-align: center;
    margin-bottom: 50px;
}

.pkg-section-title {
    font-size: 2.5rem;
    color: #1a2b4c;
    font-weight: 700;
}

.pkg-section-line {
    width: 80px;
    height: 3px;
    background-color: #f36920;
    margin: 15px auto 0;
}

/* Grid Layout */
.domestic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

/* Card Design */
.domestic-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.domestic-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.domestic-img-box {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.domestic-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.domestic-card:hover .domestic-img {
    transform: scale(1.1);
}

.domestic-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f36920;
    color: #fff;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}

.domestic-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.domestic-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 12px;
}

.domestic-meta i {
    color: #f36920;
    margin-right: 5px;
}

.text-warning {
    color: #ffc107 !important;
}

.domestic-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a2b4c;
    margin-bottom: 12px;
    line-height: 1.4;
}

.domestic-desc {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.domestic-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.domestic-price-box {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.8rem;
    color: #777;
    text-transform: uppercase;
    font-weight: 600;
}

.price-val {
    font-size: 1.3rem;
    font-weight: 800;
    color: #0a3d91;
}

.domestic-btn {
    background: #f36920;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
}

.domestic-btn:hover {
    background: #0a3d91;
}

/* No Packages State */
.no-packages {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.no-packages i {
    font-size: 4rem;
    color: #ddd;
    margin-bottom: 20px;
}

.no-packages h2 {
    color: #1a2b4c;
    margin-bottom: 10px;
}

.no-packages p {
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .domestic-hero {
        height: auto;
        min-height: 180px;
        padding: 25px 15px;
    }
    .explore-badge {
        margin-bottom: 8px;
        padding: 4px 12px;
        font-size: 0.75rem;
    }
    .domestic-hero-content h1 {
        font-size: 1.4rem;
        line-height: 1.25;
        margin-bottom: 8px;
    }
    .domestic-hero-content p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    .domestic-packages-section {
        padding: 40px 10px;
    }
    .pkg-header-wrapper {
        text-align: left;
        margin-bottom: 30px;
    }
    .pkg-section-title {
        font-size: 1.6rem;
    }
    .pkg-section-line {
        margin: 12px 0 0;
    }
}
