/* استثناء الأيقونات من خط Amiri حتى تظهر بشكل صحيح */
i, .fa, .fas, .fab, .far, .icon-animate {
  font-family: var(--fa-style-family, "Font Awesome 6 Free"), "Font Awesome 5 Free", "FontAwesome", Arial, sans-serif !important;
  font-weight: var(--fa-style, 900) !important;
}
/* استخدم خط Amiri في كامل الصفحة بشكل موحد */
body, * {
    font-family: 'Tajawal', Arial, sans-serif ;
    font-weight: 900 !important; /* أقصى سماكة */
}
:root {
    --islamic-green: #004d40;
    --islamic-green-light: #00695c;
    --golden: #d4af37;
    --golden-light: #f5e6a8;
    --white: #ffffff;
    --text-dark: #333333;
    --light-gray: #f5f5f5;
}

/* Reset & Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

body {
    color: var(--text-dark);
    background: none;
    overflow-x: hidden;
    touch-action: manipulation;
    padding-bottom: 70px;
}

.hero-bg-full {
    position: fixed;
    top: 0; left: 0; right: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    z-index: -2;
    transition: filter 0.5s;
}
body.scrolled .hero-bg-full {
    filter: blur(6px);
}
.overlay-bg {
    position: fixed;
    top: 0; left: 0; right: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.35);
    z-index: -1;
    pointer-events: none;
}

/* Hero Section */
.hero-section {
    
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
   
    padding: 0;
    z-index: 1;
    width: 100%;
}
.hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1512053364647-ec919a8d4b4d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
    z-index: -2;
    transition: filter 0.5s ease;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
   
    z-index: -1;
}

.hero-content {

    width: 100%;
    margin: 0;
    max-width: 700px;
    margin-top: 50vh;
}
.hero-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* زر العروض الذهبية والرحلات في نفس السطر دائما */
.hero-buttons {

    display: flex;
    flex-direction: row !important;
    gap: 12px;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 700px;
    height: 80px;
    flex-wrap: nowrap;
}
.hero-btn {
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.25s;
    display: flex;
    align-items: center;
    gap: 7px;
    text-decoration: none;
    width: 80%;
    min-width: 135px;
   height: 80%;
    min-height: 10px;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(44,44,44,0.07);
}
.gold-btn {
    background: linear-gradient(90deg, #f5e6a8 0%, #d4af37 100%);
    color: var(--islamic-green);
    border: 2px solid var(--golden);
}
.green-btn {
    background: linear-gradient(90deg, #004d40 0%, #00917b 100%);
    color: var(--white);
    border: 2px solid var(--islamic-green);
}
.hero-btn i {
    font-size: 1.15em;
}
.hero-btn:hover, .hero-btn:focus {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.16);
}
/* End Buttons Row Behavior */

/* تأثير التمرير على الخلفية */
.scrolled .hero-bg {
    filter: blur(5px);
}

/* Main Content */
.main-content {
    background-color: var(--light-gray);
    position: relative;
    z-index: 1;
}

/* Card Sections */
.card-section {
    background: var(--white) !important;
    border-radius: 15px;
    padding: 20px 12px;
    margin: 18px 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    font-size: 1.08em;
    line-height: 1.85;
    color: var(--text-dark);
    text-align: start;
}
.card-section p, .card-section ul, .card-section li {
    margin-bottom: 0.7em;
}
.card-section strong {
    color: var(--golden);
    font-weight: bold;
}

/* Testimonials Section: white background like cards */
.testimonials-section, .testimonials {
    background: var(--white) !important;
}
.section-title {
    color: var(--islamic-green);
    margin-bottom: 18px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 8px;
    letter-spacing: 0.5px;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0; right: 0;
    width: 44px;
    height: 3px;
    background: var(--golden);
    border-radius: 3px;
}

/* Features Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 16px;
}
.feature-card {
    background: var(--light-gray);
    border-radius: 12px;
    padding: 13px;
    text-align: center;
    transition: all 0.25s;
}
.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.09);
}
.feature-icon {
    font-size: 22px;
    color: var(--golden);
    margin-bottom: 7px;
}
.feature-card h3 {
    color: var(--islamic-green);
    margin-bottom: 6px;
    font-size: 15px;
}
.feature-card p {
    font-size: 13px;
    color: var(--text-dark);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 16px;
}
.stat-card {
    background: var(--white);
    border-radius: 12px;
    padding: 13px;
    text-align: center;
    border-top: 3px solid var(--golden);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}
.stat-number {
    font-size: 22px;
    font-weight: bold;
    color: var(--islamic-green);
    margin-bottom: 4px;
}
.stat-label {
    font-size: 13px;
    color: var(--text-dark);
}

/* FAQ */
.faq-item {
    margin-bottom: 13px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.faq-question {
    background: var(--white);
    padding: 13px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.faq-answer {
    background: var(--light-gray);
    padding: 0 13px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s;
}
.faq-item.active .faq-answer {
    padding: 13px;
    max-height: 160px;
}

/* Contact Cards */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 16px;
}
.contact-card {
    background: var(--white);
    border-radius: 12px;
    padding: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}
.contact-icon {
    font-size: 19px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 77, 64, 0.09);
    color: var(--islamic-green);
}
.contact-info h3 {
    font-size: 12.5px;
    color: var(--islamic-green);
    margin-bottom: 3px;
}
.contact-info p {
    font-size: 11px;
    color: var(--text-dark);
}

/* زر العودة للأعلى */
.scroll-top {
    position: fixed;
    bottom: 80px;
    left: 18px;
    background: var(--islamic-green);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    font-size: 1.4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.13);
    cursor: pointer;
    z-index: 1099;
    opacity: 0.85;
    transition: background 0.2s;
}
.scroll-top:hover, .scroll-top:focus {
    background: var(--golden);
    color: var(--islamic-green);
}

/* Floating Side Buttons */
.floating-side-buttons {
  position: fixed;
  right: 30px;
  bottom: 100px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 1200;
}
.floating-side-buttons .floating-btn {
  width: 64px;
  height: 64px;
  font-size: 2.1em;
  border-radius: 50%;
  background: var(--primary-color);
  color: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
  cursor: pointer;
  border: none;
}
/* تم حذف CSS الإضافي بناءً على طلبك */