/* Umrah Packages CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.umrah-main {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Hero Section */
.umrah-hero {
    background: linear-gradient(135deg, #2c5530 0%, #4a7c59 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.umrah-hero-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.umrah-hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.umrah-hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.feature {
    background: rgba(255,255,255,0.1);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
}

/* Packages Section */
.umrah-packages {
    padding: 60px 0;
    background: #f8f9fa;
}

.umrah-packages h2 {
    text-align: center;
    color: #2c5530;
    margin-bottom: 40px;
    font-size: 2.2rem;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.package-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.package-card.featured {
    border: 3px solid #d4af37;
    transform: scale(1.05);
}

.package-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #d4af37;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.package-header h3 {
    color: #2c5530;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.package-price {
    font-size: 2.5rem;
    color: #d4af37;
    font-weight: bold;
    margin-bottom: 5px;
}

.package-per {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.package-features ul {
    list-style: none;
    margin-bottom: 25px;
}

.package-features li {
    padding: 8px 0;
    color: #555;
    border-bottom: 1px solid #eee;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-cta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 120px;
}

.btn-primary {
    background: #2c5530;
    color: white;
}

.btn-primary:hover {
    background: #1e3a21;
}

.btn-secondary {
    background: #d4af37;
    color: white;
}

.btn-secondary:hover {
    background: #b8941f;
}

/* Content Section */
.umrah-content {
    padding: 60px 0;
}

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

.main-content h2, .main-content h3 {
    color: #2c5530;
    margin-bottom: 20px;
}

.main-content h2 {
    font-size: 2rem;
}

.main-content h3 {
    font-size: 1.4rem;
    margin-top: 30px;
}

.benefits-list {
    list-style: none;
    margin: 20px 0;
}

.benefits-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.benefits-list li strong {
    color: #2c5530;
}

/* Product Cards Grid */
.all-packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.product-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

/* Pricing Table */
.pricing-table {
    overflow-x: auto;
    margin: 20px 0;
}

.pricing-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.pricing-table th {
    padding: 15px;
    background: #2c5530;
    color: white;
    font-weight: bold;
}

.pricing-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.pricing-table tr:nth-child(even) {
    background: #f8f9fa;
}

/* Package Inclusions */
.package-inclusions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.inclusion-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    background: #fff;
}

.inclusion-card h4 {
    color: #2c5530;
    margin-bottom: 15px;
}

.inclusion-card ul {
    list-style: none;
    padding: 0;
}

.inclusion-card li {
    padding: 5px 0;
    color: #555;
}

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

.contact-card, .info-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.contact-card h3, .info-card h4 {
    color: #2c5530;
    margin-bottom: 15px;
}

.contact-info p {
    margin-bottom: 10px;
    color: #555;
}

.cta-button {
    display: block;
    background: #d4af37;
    color: white;
    padding: 15px;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    margin-top: 20px;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #b8941f;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.faq-section h2 {
    text-align: center;
    color: #2c5530;
    margin-bottom: 40px;
    font-size: 2rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 25px;
}

.faq-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #d4af37;
}

.faq-item h3 {
    color: #2c5530;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.faq-item p {
    color: #555;
    line-height: 1.6;
}

/* Content Section */
.content-section {
    padding: 40px 0;
    background: #f9f9f9;
}

.content-section h2, .content-section h3 {
    color: #2c5530;
    margin-bottom: 20px;
}

.content-section h2 {
    font-size: 1.8rem;
}

.content-section h3 {
    font-size: 1.3rem;
    margin-top: 25px;
}

.faq-comprehensive {
    margin-top: 30px;
}

.faq-comprehensive .faq-item {
    margin-bottom: 20px;
    padding: 15px;
    border-left: 4px solid #d4af37;
    background: #f8f9fa;
}

.faq-comprehensive h4 {
    color: #2c5530;
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .umrah-hero-title {
        font-size: 2rem;
    }
    
    .umrah-hero-features {
        gap: 15px;
    }
    
    .feature {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .package-card.featured {
        transform: none;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .all-packages-grid {
        grid-template-columns: 1fr;
    }
    
    .package-inclusions {
        grid-template-columns: 1fr;
    }
    
    .package-cta {
        flex-direction: column;
    }
    
    .pricing-table {
        font-size: 0.9rem;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 10px 8px;
    }
}

@media (max-width: 480px) {
    .umrah-container {
        padding: 0 15px;
    }
    
    .umrah-hero {
        padding: 40px 0;
    }
    
    .umrah-hero-title {
        font-size: 1.8rem;
    }
    
    .package-card {
        padding: 20px;
    }
    
    .package-price {
        font-size: 2rem;
    }
    
    .pricing-table {
        font-size: 0.8rem;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 8px 5px;
    }
}