/* =========================================
   تنسيقات الصفحة الرئيسية (index.css)
   ========================================= */

/* 1. Premium Hero Section */
.hero-premium {
    position: relative; height: 95vh; min-height: 600px;
    background: url('img3.jpg') center/cover no-repeat;
    display: flex; align-items: center; justify-content: center;
    text-align: center; color: white;
}
.hero-content { position: relative; z-index: 2; max-width: 900px; padding: 0 20px; margin-top: -50px; }
.hero-subtitle { display: inline-block; background: rgba(255,255,255,0.15); backdrop-filter: blur(5px); padding: 8px 20px; border-radius: 30px; font-size: 1.1rem; font-weight: 500; margin-bottom: 20px; border: 1px solid rgba(255,255,255,0.2); }
.hero-title { font-size: 4rem; font-weight: 900; line-height: 1.2; margin-bottom: 25px; text-shadow: 0 5px 15px rgba(0,0,0,0.3); }
.hero-desc { font-size: 1.3rem; color: #e0e0e0; margin-bottom: 40px; }
.hero-actions { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.btn-main, .btn-outline { padding: 15px 35px; border-radius: 8px; font-size: 1.1rem; font-weight: 700; text-decoration: none; transition: all 0.3s ease; }
.btn-main { background: var(--primary-orange); color: white; box-shadow: 0 10px 20px rgba(241, 111, 15, 0.3); }
.btn-main:hover { background: #d65a00; transform: translateY(-3px); box-shadow: 0 15px 25px rgba(241, 111, 15, 0.4); }
.btn-outline { background: transparent; color: white; border: 2px solid white; }
.btn-outline:hover { background: white; color: var(--primary-blue); transform: translateY(-3px); }

/* Bottom Curve */
.hero-curve { position: absolute; bottom: -1px; left: 0; width: 100%; overflow: hidden; line-height: 0; z-index: 2; }
.hero-curve svg { display: block; width: calc(100% + 1.3px); height: 80px; }
.hero-curve path { fill: var(--bg-light); }

/* 2. Floating Info Bar */
.floating-info-container { max-width: 1200px; margin: 0 auto; position: relative; z-index: 10; padding: 0 20px; }
.info-bar { background: white; border-radius: 16px; padding: 30px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; box-shadow: 0 15px 40px rgba(0,0,0,0.08); transform: translateY(-50%); }
.info-item { display: flex; align-items: center; gap: 15px; flex: 1; min-width: 200px; }
.info-icon { width: 60px; height: 60px; border-radius: 50%; background: rgba(41, 101, 175, 0.1); color: var(--primary-blue); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.info-item strong { display: block; font-size: 1.1rem; color: #1a1a1a; margin-bottom: 3px; }
.info-item span { display: block; font-size: 0.85rem; color: #777; }

.section-title-wrap { text-align: center; margin-bottom: 50px; }
.premium-title { font-size: 2.5rem; color: #1a1a1a; font-weight: 800; }
.title-line { width: 80px; height: 4px; background: var(--primary-orange); margin: 15px auto 20px; border-radius: 2px; }

/* 3. Horizontal Hajj Cards */
.hajj-premium-section { padding: 40px 0 80px; }
.hajj-horizontal-cards { display: flex; flex-direction: column; gap: 40px; max-width: 1000px; margin: 0 auto; }
.hajj-card-horiz { display: flex; background: white; border-radius: 20px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.06); transition: 0.3s; }
.hajj-card-horiz:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.12); }
.hc-img { width: 40%; position: relative; }
.hc-img img { width: 100%; height: 100%; object-fit: cover; }
.hc-badge { position: absolute; top: 20px; right: 20px; padding: 6px 15px; border-radius: 30px; font-weight: bold; color: white; font-size: 0.85rem; }
.hc-badge.gold { background: #f39c12; }
.hc-badge.blue { background: var(--primary-blue); }
.hc-content { width: 60%; padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.hc-content h3 { font-size: 1.8rem; color: #1a1a1a; margin-bottom: 15px; }
.hc-desc { color: #666; margin-bottom: 20px; line-height: 1.7; }
.hc-features { list-style: none; margin-bottom: 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.hc-features li { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; color: #444; }
.hc-features i { color: var(--success); }
.hc-btn { display: inline-flex; align-items: center; gap: 10px; padding: 12px 30px; border-radius: 8px; font-weight: bold; text-decoration: none; transition: 0.3s; width: fit-content; }
.gold-btn { background: #fdf8ef; color: #f39c12; border: 1px solid #f39c12; }
.gold-btn:hover { background: #f39c12; color: white; }
.blue-btn { background: #f0f4f8; color: var(--primary-blue); border: 1px solid var(--primary-blue); }
.blue-btn:hover { background: var(--primary-blue); color: white; }

/* 4. Omra Reveal Cards */
.omra-premium-section { padding: 80px 0; background: white; }
.omra-reveal-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.omra-reveal-card { position: relative; border-radius: 20px; overflow: hidden; height: 400px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.orc-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.omra-reveal-card:hover .orc-img { transform: scale(1.1); }
.orc-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.2) 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 30px; transition: 0.4s; }
.orc-header { transform: translateY(60px); transition: 0.4s; }
.orc-tag { background: var(--primary-orange); color: white; padding: 4px 12px; border-radius: 4px; font-size: 0.8rem; font-weight: bold; display: inline-block; margin-bottom: 10px; }
.orc-header h3 { color: white; font-size: 1.5rem; margin: 0; }
.orc-details { opacity: 0; transform: translateY(40px); transition: 0.4s; margin-top: 15px; }
.orc-details p { color: #ccc; font-size: 0.95rem; margin-bottom: 15px; line-height: 1.6; }
.orc-price { color: white; font-size: 0.9rem; margin-bottom: 20px; }
.orc-price span { font-size: 1.4rem; font-weight: bold; color: var(--primary-orange); display: block; }
.orc-btn { display: block; text-align: center; background: white; color: #1a1a1a; padding: 12px; border-radius: 8px; font-weight: bold; }
.orc-btn:hover { background: var(--primary-orange); color: white; }
.omra-reveal-card:hover .orc-header { transform: translateY(0); }
.omra-reveal-card:hover .orc-details { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }

/* 5. Services Clean */
.services-clean { padding: 80px 5%; background: white; text-align: center; }
.serv-row { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; margin-top: 40px; }
.serv-item { max-width: 220px; padding: 20px; border-radius: 20px; transition: 0.3s; }
.serv-item:hover { background: var(--bg-light); }
.icon-box { font-size: 2rem; color: var(--primary-orange); margin-bottom: 20px; background: #fffaf5; width: 80px; height: 80px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; transition: 0.3s; }
.serv-item:hover .icon-box { background: var(--primary-orange); color: white; transform: rotate(10deg); }
.serv-item h4 { font-size: 1.2rem; margin-bottom: 10px; }
.serv-item p { font-size: 0.9rem; color: #888; }

/* 6. Testimonials */
.testimonials-section { padding: 80px 5%; background: linear-gradient(135deg, var(--primary-blue), #1a4a85); color: white; }
.section-head.light h2 { color: white; }
.section-head.light p { color: rgba(255,255,255,0.7); }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; max-width: 1200px; margin: 0 auto; }
.testi-card { background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); padding: 30px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.2); color: white; }
.stars { color: #ffd700; margin-bottom: 15px; font-size: 1.1rem; }
.testi-card p { font-size: 1rem; line-height: 1.6; margin-bottom: 20px; opacity: 0.9; }

/* 7. Feedback CTA */
.feedback-cta-section { padding: 70px 0; background: linear-gradient(180deg, #f4f7f6 0%, #ffffff 100%); }
.feedback-cta-card {
    max-width: 1050px;
    margin: 0 auto;
    background: linear-gradient(135deg, #fff7ef 0%, #ffffff 55%, #eef5fb 100%);
    border: 1px solid #f0e1ce;
    border-radius: 24px;
    padding: 34px 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}
.feedback-copy h3 { font-size: 2rem; color: #1a1a1a; margin-bottom: 10px; }
.feedback-copy p { color: #666; font-size: 1rem; max-width: 650px; }
.feedback-badge {
    display: inline-block;
    margin-bottom: 14px;
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(241, 111, 15, 0.12);
    color: var(--primary-orange);
    font-weight: 800;
    font-size: 0.9rem;
}
.feedback-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-orange);
    color: white;
    padding: 15px 28px;
    border-radius: 12px;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 12px 24px rgba(241, 111, 15, 0.25);
}
.feedback-btn:hover { background: #d65a00; transform: translateY(-2px); }

/* 8. Partners */
.partners-section { padding: 50px 0; background: white; text-align: center; overflow: hidden; }
.partners-section h4 { color: #ccc; margin-bottom: 30px; font-weight: normal; }
.logos-slider { width: 100%; overflow: hidden; position: relative; }
.logos-track { display: flex; gap: 60px; width: max-content; animation: scrollLogos 30s linear infinite; }
.logos-track img { height: 40px; opacity: 0.5; filter: grayscale(100%); transition: 0.3s; }
.logos-track img:hover { opacity: 1; filter: grayscale(0%); }
@keyframes scrollLogos { 0% {transform: translateX(0);} 100% {transform: translateX(-50%);} }

@media (max-width: 992px) {
    .hero-title { font-size: 3rem; }
    .info-bar { transform: translateY(-30px); }
    .hajj-card-horiz { flex-direction: column; }
    .hc-img, .hc-content { width: 100%; }
    .hc-img { height: 250px; }
    .feedback-cta-card { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
    .hero-title { font-size: 2.2rem; }
    .hero-desc { font-size: 1.1rem; }
    .hc-features { grid-template-columns: 1fr; }
    .feedback-cta-card { padding: 26px 20px; }
    .feedback-copy h3 { font-size: 1.6rem; }
    .feedback-btn { width: 100%; justify-content: center; }
}
