/* Modern Professional Umrah Package Page Styling */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Container */
.umrah-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.umrah-hero {
    background: linear-gradient(135deg, #2c5530 0%, #1a4d3a 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.umrah-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.umrah-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}

.umrah-hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Main Content */
.umrah-main {
    background: white;
}

.umrah-content {
    padding: 60px 0;
}

/* Section Titles */
.umrah-section-title {
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
    position: relative;
}

.umrah-section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #f4d03f);
    margin: 15px auto;
    border-radius: 2px;
}

/* Lists */
.umrah-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 40px 0;
    list-style: none;
}

.umrah-list-item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-left: 5px solid #d4af37;
    transition: all 0.3s ease;
    position: relative;
}

.umrah-list-item::before {
    content: '✓';
    position: absolute;
    left: -2px;
    top: 50%;
    transform: translateY(-50%);
    background: #d4af37;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

.umrah-list-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* FAQ Section */
.umrah-faq {
    background: #f8f9fa;
    padding: 60px 0;
    margin: 60px 0;
    border-radius: 20px;
}

.umrah-faq-title {
    color: #2c5530;
    margin-bottom: 50px;
}

.umrah-faq-item, .faq-item {
    background: white;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.umrah-faq-item:hover, .faq-item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.umrah-faq-question, .faq-item h3 {
    background: linear-gradient(135deg, #2c5530, #1a4d3a);
    color: white;
    padding: 20px 25px;
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
}

.umrah-faq-question::after, .faq-item h3::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.umrah-faq-answer, .faq-item p {
    padding: 25px;
    color: #555;
    line-height: 1.7;
    border-top: 1px solid #eee;
}

/* How-to Section */
.umrah-howto {
    background: white;
    padding: 60px 0;
    margin: 60px 0;
}

.umrah-howto-title {
    margin-bottom: 50px;
}

.umrah-howto-steps {
    list-style: none;
    counter-reset: step-counter;
}

.umrah-howto-step {
    counter-increment: step-counter;
    background: white;
    margin-bottom: 25px;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    position: relative;
    padding-left: 80px;
    transition: all 0.3s ease;
}

.umrah-howto-step::before {
    content: counter(step-counter);
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.umrah-howto-step:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.umrah-step-title {
    font-weight: 600;
    color: #2c5530;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* Content Section */
.umrah-content-section {
    background: white;
    padding: 60px 0;
}

.umrah-content-section h3 {
    color: #2c5530;
    font-size: 1.8rem;
    margin: 40px 0 20px 0;
    font-weight: 600;
    position: relative;
    padding-left: 20px;
}

.umrah-content-section h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 30px;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    border-radius: 2px;
}

.umrah-content-section p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.umrah-content-section ul {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.umrah-content-section li {
    background: #f8f9fa;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 4px solid #d4af37;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 50px;
}

.umrah-content-section li::before {
    content: '→';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #d4af37;
    font-weight: bold;
}

.umrah-content-section li:hover {
    background: #e8f5e8;
    transform: translateX(5px);
}

.umrah-content-section strong {
    color: #2c5530;
    font-weight: 600;
}

/* Blockquote */
blockquote {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-left: 5px solid #d4af37;
    padding: 30px;
    margin: 40px 0;
    border-radius: 10px;
    font-style: italic;
    position: relative;
}

blockquote::before {
    content: '"';
    font-size: 4rem;
    color: #d4af37;
    position: absolute;
    top: -10px;
    left: 20px;
    opacity: 0.3;
}

blockquote p {
    margin: 0;
    font-size: 1.2rem;
    color: #555;
}

/* CTA Button */
.umrah-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: white;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    margin: 40px auto;
    display: block;
    max-width: 400px;
}

.umrah-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
    text-decoration: none;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .umrah-hero-title {
        font-size: 2.5rem;
    }
    
    .umrah-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .umrah-section-title {
        font-size: 2rem;
    }
    
    .umrah-container {
        padding: 0 15px;
    }
    
    .umrah-list {
        grid-template-columns: 1fr;
    }
    
    .umrah-howto-step {
        padding-left: 60px;
    }
    
    .umrah-howto-step::before {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .umrah-hero {
        padding: 60px 0;
    }
    
    .umrah-hero-title {
        font-size: 2rem;
    }
    
    .umrah-content {
        padding: 40px 0;
    }
    
    .umrah-faq, .umrah-howto {
        padding: 40px 0;
        margin: 40px 0;
    }
}

/* Animation for smooth loading */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.umrah-hero-title,
.umrah-hero-subtitle,
.umrah-section-title {
    animation: fadeInUp 0.8s ease-out;
}

/* Inline CTA Styles */
.umrah-cta-inline {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 2px solid #d4af37;
    border-radius: 15px;
    padding: 30px;
    margin: 40px 0;
    text-align: center;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.umrah-cta-inline:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.umrah-cta-inline h3 {
    color: #2c5530;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.umrah-cta-inline p {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.umrah-cta-button-small {
    display: inline-block;
    background: linear-gradient(135deg, #2c5530, #1a4d3a);
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(44, 85, 48, 0.3);
}

.umrah-cta-button-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(44, 85, 48, 0.4);
    text-decoration: none;
    color: white;
}

/* Print Styles */
@media print {
    .umrah-hero {
        background: #2c5530 !important;
        -webkit-print-color-adjust: exact;
    }
    
    .umrah-cta-button, .umrah-cta-inline {
        display: none;
    }
}