/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-badge {
    display: inline-block;
    background: linear-gradient(135deg, #57401a, #8b6914);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.pricing-main-title {
    font-size: 3rem;
    font-weight: 700;
    color: #9B773B;
    margin-bottom: 15px;
    line-height: 1.2;
}

.pricing-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.pricing-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured {
    border: 3px solid #9B773B;
    transform: scale(1.05);
}

.pricing-card-header h3 {
    font-size: 1.5rem;
    color: #9B773B;
    margin-bottom: 10px;
}

.price-range {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.price-item:last-child {
    border-bottom: none;
}

.payment-options {
    text-align: center;
}

.payment-options h3 {
    font-size: 2rem;
    color: #9B773B;
    margin-bottom: 30px;
}

.payment-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.payment-plan {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.payment-plan h4 {
    color: #9B773B;
    margin-bottom: 10px;
}

/* Virtual Tour Section */
.virtual-tour-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.virtual-tour-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.virtual-tour-header {
    text-align: center;
    margin-bottom: 60px;
}

.tour-badge {
    display: inline-block;
    background: linear-gradient(135deg, #57401a, #8b6914);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.tour-main-title {
    font-size: 3rem;
    font-weight: 700;
    color: #9B773B;
    margin-bottom: 15px;
}

.tour-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.tour-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
    align-items: center;
}

.gallery-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.gallerySwiper {
    width: 100%;
    height: 400px;
    border-radius: 15px;
}

.gallerySwiper .swiper-slide {
    position: relative;
    overflow: hidden;
}

.gallerySwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallerySwiper .swiper-slide:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallerySwiper .swiper-slide:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: white;
}

.gallery-overlay p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
}

.gallery-next, .gallery-prev {
    color: #9B773B !important;
    background: rgba(255,255,255,0.9) !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    margin-top: -20px !important;
}

.gallery-next:hover, .gallery-prev:hover {
    background: #9B773B !important;
    color: white !important;
}

.gallery-pagination {
    bottom: 10px !important;
}

.gallery-pagination .swiper-pagination-bullet {
    background: rgba(255,255,255,0.7) !important;
    opacity: 1 !important;
}

.gallery-pagination .swiper-pagination-bullet-active {
    background: #9B773B !important;
}

.tour-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.tour-feature {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #57401a, #8b6914);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.tour-feature h4 {
    color: #9B773B;
    margin-bottom: 5px;
}

.tour-cta {
    text-align: center;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.schedule-visit-btn, .download-brochure-btn {
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.schedule-visit-btn {
    background: linear-gradient(135deg, #57401a, #8b6914);
    color: white;
}

.download-brochure-btn {
    background: transparent;
    color: #9B773B;
    border: 2px solid #9B773B;
}

.schedule-visit-btn:hover, .download-brochure-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(87, 64, 26, 0.3);
}

/* Legal Info Styles */
.legal-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.legal-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.legal-item strong {
    color: #9B773B;
    font-size: 0.9rem;
}

.legal-item span {
    color: #666;
    font-size: 0.85rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .tour-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .tour-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .schedule-visit-btn, .download-brochure-btn {
        width: 100%;
        max-width: 300px;
    }
}