/* ===== Home Page Main Content Styles ===== */

/* Overall Background - Light Brown/Beige */
main {
    background-color: #f5f3ef;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Header */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.section-title-left {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c2c2c;
    margin: 0;
    font-family: 'Playfair Display', serif;
}

.view-all-link {
    font-size: 0.95rem;
    color: #999;
    font-weight: 400;
    transition: all 0.3s ease;
}

.view-all-link:hover {
    color: #27ae60;
}

/* Featured Tours Section */
.featured-tours-section {
    padding: 60px 0;
    margin-top: 40px;
}

.tour-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tour-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.tour-img-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.tour-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.tour-card:hover .tour-img {
    transform: scale(1.05);
}

.tour-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.tour-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tour-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 8px;
    line-height: 1.4;
    text-transform: uppercase;
}

.tour-desc {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.tour-price {
    font-size: 0.85rem;
    color: #999;
}

.tour-price strong {
    font-size: 1.2rem;
    font-weight: 700;
    color: #27ae60;
    margin-left: 4px;
}

.btn-view-more {
    padding: 8px 20px;
    border: 1px solid #ddd;
    border-radius: 20px;
    background: transparent;
    color: #666;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-view-more:hover {
    background: #27ae60;
    color: #fff;
    border-color: #27ae60;
}

/* Starting Points Section */
.starting-points-section {
    padding: 60px 0;
}

.city-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.city-card-home {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 180px;
    display: block;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.city-card-home img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.city-card-home:hover img {
    transform: scale(1.08);
}

.city-overlay-home {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px;
    color: #fff;
}

.city-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.city-desc {
    font-size: 0.75rem;
    opacity: 0.9;
    line-height: 1.4;
}

/* Inquiry Form Section */
.inquiry-form-section {
    padding: 60px 0;
}

.form-container {
    max-width: 960px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.form-section {
    margin-bottom: 32px;
}

.form-section-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 16px;
}

.form-group-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 6px;
}

.form-input,
.form-select,
.form-textarea {
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.9rem;
    color: #2c2c2c;
    background: #fff;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: #27ae60;
    outline: none;
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1);
}

.form-input::placeholder {
    color: #999;
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

/* Form Field Groups with Beige Background */
.form-field-group {
    background: #f0ede8;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #666;
    cursor: pointer;
}

.checkbox-item input[type="checkbox"],
.checkbox-item input[type="radio"] {
    width: 16px;
    height: 16px;
    accent-color: #27ae60;
    cursor: pointer;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

.budget-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.special-remarks-box {
    background: #f0ede8;
    padding: 20px;
    border-radius: 8px;
    margin-top: 12px;
}

.special-remarks-box label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 12px;
}

.btn-submit-inquiry {
    display: inline-block;
    padding: 14px 32px;
    background: #27ae60;
    color: #fff;
    border: none;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-submit-inquiry:hover {
    background: #219a52;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

/* Partners Section */
.partners-section {
    padding: 0 0 60px 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.partner-card {
    text-align: center;
    padding: 20px;
}

.partner-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 16px;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.partner-card:hover .partner-logo {
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.partner-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 4px;
}

.partner-desc {
    font-size: 0.8rem;
    color: #999;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .city-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .section-title-left {
        font-size: 1.5rem;
    }

    .featured-tours-section,
    .starting-points-section,
    .inquiry-form-section,
    .partners-section {
        padding: 40px 0;
    }

    .city-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .city-card-home {
        height: 160px;
    }

    .form-container {
        padding: 24px;
    }

    .form-group-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .budget-options {
        grid-template-columns: repeat(2, 1fr);
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .partner-logo {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .city-grid {
        grid-template-columns: 1fr;
    }

    .destinations-grid {
        grid-template-columns: 1fr;
    }

    .budget-options {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        grid-template-columns: 1fr;
    }

    .checkbox-group {
        flex-direction: column;
        gap: 12px;
    }

    .tour-img-wrapper {
        height: 180px;
    }

    .form-container {
        padding: 20px;
    }

    .form-field-group {
        padding: 16px;
    }
}
