/* ===================================
   DOMESTIC TOURS PAGE - Premium Styling
   =================================== */

/* Page Header */
.domestic-header {
    background-image: url('../images/kashmir-mountains.jpg');
}

/* Booking Section */
.booking-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.booking-card-domestic {
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.95) 0%, rgba(44, 62, 80, 0.95) 100%);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.booking-header {
    text-align: center;
    margin-bottom: 30px;
    color: var(--white);
}

.booking-header h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.booking-header p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.booking-form-domestic {
    max-width: 100%;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input,
.form-group select {
    padding: 12px 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-yellow);
    background-color: rgba(255, 255, 255, 0.15);
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--primary-orange) 100%);
    color: var(--dark-navy);
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(253, 183, 20, 0.4);
}

/* Content Layout */
.domestic-content {
    padding: 80px 0;
    background-color: var(--white);
}

.content-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-card {
    background-color: var(--light-gray);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.sidebar-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-yellow);
}

/* Why Choose Us List */
.why-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.why-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--primary-orange) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

.why-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--primary-orange) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-icon i {
    font-size: 22px;
    color: var(--white);
}

.why-text strong {
    display: block;
    font-size: 15px;
    color: var(--dark-navy);
    margin-bottom: 5px;
}

.why-text p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Destination List */
.destination-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.dest-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    background-color: var(--white);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dest-item:hover {
    border-color: var(--primary-yellow);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.dest-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
}

.dest-info h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 5px;
}

.rating {
    display: flex;
    gap: 2px;
    margin-bottom: 5px;
}

.rating i {
    font-size: 12px;
    color: var(--primary-yellow);
}

.dest-info .price {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-orange);
}

/* Packages Area */
.packages-area {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.packages-area .section-header {
    text-align: left;
    margin-bottom: 20px;
}

.packages-area .section-header h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 10px;
}

.packages-area .section-header p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Package Card */
.package-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.package-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

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

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

.package-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--primary-orange) 100%);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(253, 183, 20, 0.4);
}

.package-badge.special {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.package-badge.adventure {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.package-badge.spiritual {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
}

.package-content {
    padding: 30px;
}

.package-content h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 15px;
}

.package-description {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
}

.package-details {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    padding: 20px;
    background-color: var(--light-gray);
    border-radius: 8px;
    margin-bottom: 25px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.call-info {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
}

.call-info span {
    font-size: 11px;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.phone-number {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary-orange);
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.package-highlights {
    margin-bottom: 25px;
}

.package-highlights h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 15px;
}

.package-highlights ul {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 10px;
}

.package-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.package-highlights li i {
    color: var(--primary-orange);
    margin-top: 3px;
    flex-shrink: 0;
}

.view-package-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--primary-orange) 100%);
    color: var(--dark-navy);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-package-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(253, 183, 20, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-layout {
        grid-template-columns: 280px 1fr;
        gap: 30px;
    }

    .form-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .booking-section {
        padding: 40px 0;
        margin-top: -30px;
    }

    .booking-card-domestic {
        padding: 25px 20px;
    }

    .booking-header h2 {
        font-size: 24px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .content-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sidebar {
        order: 2;
    }

    .packages-area {
        order: 1;
    }

    .packages-area .section-header h2 {
        font-size: 26px;
    }

    .package-image {
        height: 220px;
    }

    .package-content {
        padding: 20px;
    }

    .package-content h3 {
        font-size: 22px;
    }

    .package-details {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .booking-header h2 {
        font-size: 20px;
    }

    .package-badge {
        top: 10px;
        right: 10px;
        padding: 6px 14px;
        font-size: 10px;
    }

    .dest-item img {
        width: 60px;
        height: 60px;
    }
}