/* Umrah Visa City Pages - Modern Mobile-First CSS */

/* Reset & 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: #f8f9fa;
}

/* Container */
.umrah-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Hero Section */
.umrah-hero {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 60px 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: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.umrah-hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Main Content */
.umrah-main {
    background: white;
    min-height: 100vh;
}

.umrah-content {
    padding: 40px 0;
}

.umrah-section-title {
    font-size: 2rem;
    color: #1e3c72;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.umrah-section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #2a5298;
    margin: 15px auto;
    border-radius: 2px;
}

/* Content Sections */
.umrah-content-section {
    margin-bottom: 40px;
}

.umrah-content-section h2 {
    color: #1e3c72;
    font-size: 1.8rem;
    margin: 30px 0 20px;
    border-left: 4px solid #2a5298;
    padding-left: 15px;
}

.umrah-content-section h3 {
    color: #2a5298;
    font-size: 1.4rem;
    margin: 25px 0 15px;
    font-weight: 600;
}

.umrah-content-section p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #555;
}

.umrah-content-section ul {
    margin: 15px 0;
    padding-left: 20px;
}

.umrah-content-section li {
    margin-bottom: 8px;
    color: #666;
    line-height: 1.6;
}

.umrah-content-section strong {
    color: #1e3c72;
    font-weight: 600;
}

/* Inline CTA Boxes */
.umrah-cta-inline {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #2a5298;
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
    text-align: center;
    box-shadow: 0 4px 15px rgba(42, 82, 152, 0.1);
}

.umrah-cta-inline h3 {
    color: #1e3c72;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.umrah-cta-inline p {
    color: #666;
    margin-bottom: 15px;
}

/* CTA Buttons */
.umrah-cta-button, .umrah-cta-button-small {
    display: inline-block;
    background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(42, 82, 152, 0.3);
    border: none;
    cursor: pointer;
}

.umrah-cta-button-small {
    padding: 12px 24px;
    font-size: 1rem;
}

.umrah-cta-button:hover, .umrah-cta-button-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 82, 152, 0.4);
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
}

/* FAQ Section */
.umrah-faq {
    background: #f8f9fa;
    padding: 40px 0;
    margin-top: 40px;
}

.umrah-faq-title {
    text-align: center;
    color: #1e3c72;
    margin-bottom: 40px;
}

.umrah-faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.umrah-faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.umrah-faq-question {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 20px;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
}

.umrah-faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: bold;
}

.umrah-faq-answer {
    padding: 20px;
    color: #555;
    line-height: 1.7;
    border-top: 1px solid #eee;
}

/* Final CTA Section */
.umrah-final-cta {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 50px 0;
    text-align: center;
    margin-top: 40px;
}

.umrah-final-cta h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.umrah-final-cta p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.umrah-final-cta .umrah-cta-button {
    background: white;
    color: #1e3c72;
    font-size: 1.2rem;
    padding: 18px 35px;
}

.umrah-final-cta .umrah-cta-button:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
}

/* Blockquote Styling */
blockquote {
    background: #f8f9fa;
    border-left: 5px solid #2a5298;
    padding: 20px;
    margin: 25px 0;
    font-style: italic;
    border-radius: 0 8px 8px 0;
}

blockquote p {
    margin: 0;
    color: #555;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .umrah-container {
        padding: 0 10px;
    }
    
    .umrah-hero {
        padding: 40px 0;
    }
    
    .umrah-hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .umrah-hero-subtitle {
        font-size: 1rem;
    }
    
    .umrah-content {
        padding: 20px 0;
    }
    
    .umrah-section-title {
        font-size: 1.5rem;
    }
    
    .umrah-content-section h2 {
        font-size: 1.4rem;
    }
    
    .umrah-content-section h3 {
        font-size: 1.2rem;
    }
    
    .umrah-cta-inline {
        padding: 20px 15px;
        margin: 20px 0;
    }
    
    .umrah-cta-button, .umrah-cta-button-small {
        display: block;
        width: 100%;
        text-align: center;
        margin: 10px 0;
    }
    
    .umrah-faq {
        padding: 30px 0;
    }
    
    .umrah-faq-question {
        padding: 15px;
        font-size: 1rem;
    }
    
    .umrah-faq-answer {
        padding: 15px;
    }
    
    .umrah-final-cta {
        padding: 40px 0;
    }
    
    .umrah-final-cta h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .umrah-hero-title {
        font-size: 1.5rem;
    }
    
    .umrah-section-title {
        font-size: 1.3rem;
    }
    
    .umrah-content-section h2 {
        font-size: 1.2rem;
        padding-left: 10px;
    }
    
    .umrah-cta-inline {
        padding: 15px 10px;
    }
    
    .umrah-faq-question {
        padding: 12px;
        font-size: 0.95rem;
    }
    
    .umrah-faq-answer {
        padding: 12px;
        font-size: 0.9rem;
    }
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.umrah-content-section {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus States for Accessibility */
.umrah-cta-button:focus, .umrah-cta-button-small:focus {
    outline: 3px solid rgba(42, 82, 152, 0.5);
    outline-offset: 2px;
}

.umrah-faq-question:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: -2px;
}