/* Islamic Memorial Theme - Enhanced Styling */

/* ============================================
   Global Islamic Theme Colors & Variables
   ============================================ */
:root {
    --primary-green: #0f4c3a;
    --secondary-green: #1a5f4a;
    --gold-primary: #d4af37;
    --gold-secondary: #f4d03f;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
}

/* ============================================
   Navigation Header Styles
   ============================================ */
.islamic-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(15, 76, 58, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.islamic-navbar.scrolled {
    background: rgba(15, 76, 58, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.nav-logo {
    display: block;
    height: 50px;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 5px;
    align-items: center;
}

.nav-link {
    display: block;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #ffd700;
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.nav-link-cta {
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    color: #0f4c3a;
    font-weight: 800;
    padding: 12px 25px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.nav-link-cta:hover {
    background: linear-gradient(135deg, #ffd700 0%, #d4af37 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
    color: #0f4c3a;
}

.nav-link-cta::after {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    position: relative;
    z-index: 1001;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.nav-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Styles */
@media (max-width: 992px) {
    .nav-toggle {
        display: flex;
        z-index: 1002;
    }

    .nav-menu {
        position: fixed;
        top: 60px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 80px);
        background: rgba(15, 76, 58, 0.98);
        flex-direction: column;
        padding: 30px 20px;
        gap: 10px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
        transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        overflow-y: auto;
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        opacity: 0;
        transform: translateX(50px);
        transition: all 0.3s ease;
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.25s; }
    .nav-menu.active li:nth-child(5) { transition-delay: 0.3s; }
    .nav-menu.active li:nth-child(6) { transition-delay: 0.35s; }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: 15px 20px;
        font-size: 1.1rem;
    }

    .nav-link-cta {
        margin-top: 10px;
    }

    /* Overlay when menu is open */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
    }
}

@media (max-width: 576px) {
    .nav-logo {
        height: 40px;
    }

    .nav-wrapper {
        padding: 10px 0;
    }
}

/* Smooth Scroll Offset */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* ============================================
   Hero Section Styles
   ============================================ */
.hero-islamic {
    background: linear-gradient(135deg, #0f4c3a 0%, #1a5f4a 50%, #0d3d2e 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-islamic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-islamic video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.islamic-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 60px 0;
}

.hero-logo {
    width: 180px;
    height: 180px;
    margin: 0 auto 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    padding: 20px;
    backdrop-filter: blur(10px);
    border: 3px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.hero-logo:hover {
    transform: scale(1.05);
}

.hero-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: #f0f0f0;
    margin-bottom: 35px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

.islamic-icon {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.btn-islamic-primary {
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    color: #0f4c3a;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 800;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
}

.btn-islamic-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
    color: #0f4c3a;
    background: linear-gradient(135deg, #ffd700 0%, #d4af37 100%);
}

.btn-islamic-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 700;
    border: 2px solid #ffd700;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.btn-islamic-secondary:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: #fff;
    color: #ffd700;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Hero Responsive Styles */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2rem !important;
    }

    .hero-subtitle h2 {
        font-size: 1.6rem !important;
    }

    .hero-description {
        font-size: 1.1rem !important;
    }

    .hero-benefits {
        flex-direction: column;
        align-items: center;
        gap: 15px !important;
    }

    .hero-verse {
        font-size: 1rem !important;
    }

    .hero-cta-container {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-cta-container a {
        width: 100%;
        justify-content: center;
    }

    .hero-trust {
        flex-direction: column;
        align-items: center;
        gap: 20px !important;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.6rem !important;
    }

    .hero-subtitle h2 {
        font-size: 1.3rem !important;
    }

    .hero-description {
        font-size: 1rem !important;
        padding: 0 15px;
    }

    .hero-verse {
        font-size: 0.95rem !important;
        padding: 12px !important;
    }

    .btn-islamic-primary,
    .btn-islamic-secondary {
        font-size: 1.1rem !important;
        padding: 15px 30px !important;
    }

    .trust-item {
        width: 100%;
        justify-content: center;
    }

    .trust-item i {
        font-size: 1.5rem !important;
    }

    .trust-item strong {
        font-size: 1.3rem !important;
    }

    .trust-item span {
        font-size: 0.9rem !important;
    }
}

/* ============================================
   Features Section Styles
   ============================================ */
.features-section {
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #d4af37, #f4d03f, #d4af37);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #0f4c3a;
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #f4d03f);
    border-radius: 2px;
}

.section-description {
    font-size: 1.15rem;
    color: #666;
    max-width: 800px;
    margin: 25px auto 0;
}

.section-description .description-main {
    font-size: 1.3rem;
    color: #0f4c3a;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.6;
}

.section-description .description-sub {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

.feature-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(15, 76, 58, 0.15);
    border-color: #d4af37;
}

.feature-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f4c3a 0%, #1a5f4a 100%);
    padding: 15px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: rotate(360deg);
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.feature-card:hover .feature-icon img {
    filter: brightness(0) invert(0.2);
}

/* Font Awesome Icons in Feature Cards */
.feature-icon-fontawesome {
    position: relative;
}

.feature-icon-fontawesome i {
    font-size: 3rem;
    color: #fff;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.feature-card:hover .feature-icon-fontawesome i {
    color: #0f4c3a;
    transform: scale(1.15);
    text-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* تأثير نبض للأيقونات */
.feature-icon-fontawesome i {
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.feature-card:hover .feature-icon-fontawesome i {
    animation: none;
}

.feature-title {
    font-size: 1.15rem;
    color: #0f4c3a;
    font-weight: 700;
    margin-top: 15px;
}

.cta-button-container {
    text-align: center;
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-cta {
    background: linear-gradient(135deg, #0f4c3a 0%, #1a5f4a 100%);
    color: #fff;
    padding: 18px 50px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    box-shadow: 0 8px 25px rgba(15, 76, 58, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-cta:hover {
    background: linear-gradient(135deg, #1a5f4a 0%, #0f4c3a 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(15, 76, 58, 0.4);
    color: #fff;
}

/* Secondary CTA Button */
.btn-cta-secondary {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #0f4c3a;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.btn-cta-secondary:hover {
    background: linear-gradient(135deg, #f4d03f 0%, #d4af37 100%);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
    color: #0f4c3a;
}

@media (max-width: 768px) {
    .cta-button-container {
        flex-direction: column;
    }

    .btn-cta {
        width: 100%;
        max-width: 350px;
    }
}

/* ============================================
   What's Inside Section Styles
   ============================================ */
.whats-inside-section {
    background: linear-gradient(135deg, #0a3d2e 0%, #0f4c3a 25%, #1a5f4a 50%, #0f4c3a 75%, #0a3d2e 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.whats-inside-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(26, 95, 74, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.whats-inside-section::after {
    content: '🕌';
    position: absolute;
    font-size: 20rem;
    opacity: 0.03;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.whats-inside-section .section-header {
    position: relative;
    z-index: 10;
}

.whats-inside-section .section-title {
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.whats-inside-section .section-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
}

.inside-intro {
    text-align: center;
    max-width: 900px;
    margin: 40px auto;
    padding: 35px;
    background: linear-gradient(135deg, rgba(255, 249, 230, 0.95) 0%, rgba(254, 245, 212, 0.95) 100%);
    border-radius: 20px;
    border: 3px solid #d4af37;
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.4);
    position: relative;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.intro-text {
    font-size: 1.3rem;
    color: #0f4c3a;
    line-height: 1.8;
    margin: 0;
    font-weight: 600;
}

.intro-text strong {
    color: #d4af37;
    font-weight: 800;
}

.intro-text .highlight {
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 800;
}

.whats-inside-section .row {
    position: relative;
    z-index: 10;
}

.model-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 25px;
    padding: 35px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(212, 175, 55, 0.3);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
}

.model-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.4);
    border-color: #d4af37;
    background: rgba(255, 255, 255, 1);
}

.model-number {
    position: absolute;
    top: -15px;
    right: 30px;
    font-size: 1.5rem;
    background: #d4af37;
    padding: 8px 20px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.model-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #0f4c3a 0%, #1a5f4a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(15, 76, 58, 0.3);
}

.model-icon i {
    font-size: 2.2rem;
    color: #fff;
}

.model-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f4c3a;
    margin-bottom: 15px;
    text-align: center;
}

.model-description {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: center;
}

.model-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: right;
    flex-grow: 1;
}

.model-features li {
    padding: 10px 0;
    font-size: 1rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.model-features i {
    color: #0f4c3a;
    font-size: 1.1rem;
}

.model-btn {
    display: block;
    background: linear-gradient(135deg, #0f4c3a 0%, #1a5f4a 100%);
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 6px 20px rgba(15, 76, 58, 0.3);
    transition: all 0.3s ease;
    margin-top: auto;
}

.model-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(15, 76, 58, 0.4);
    color: #fff;
}

/* Bottom Summary */
.inside-summary {
    margin-top: 60px;
    padding: 60px 50px;
    background:
        radial-gradient(circle at top right, rgba(255, 215, 0, 0.2) 0%, transparent 50%),
        radial-gradient(circle at bottom left, rgba(212, 175, 55, 0.2) 0%, transparent 50%),
        linear-gradient(135deg, #d4af37 0%, #ffd700 30%, #f4d03f 50%, #ffd700 70%, #d4af37 100%);
    border-radius: 30px;
    color: #0f4c3a;
    text-align: center;
    box-shadow:
        0 25px 70px rgba(212, 175, 55, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 0 0 1px rgba(255, 215, 0, 0.3);
    position: relative;
    z-index: 10;
    overflow: hidden;
    animation: summaryGlow 3s ease-in-out infinite;
}

@keyframes summaryGlow {
    0%, 100% {
        box-shadow:
            0 25px 70px rgba(212, 175, 55, 0.5),
            inset 0 1px 0 rgba(255, 255, 255, 0.4),
            0 0 0 1px rgba(255, 215, 0, 0.3);
    }
    50% {
        box-shadow:
            0 25px 80px rgba(212, 175, 55, 0.7),
            inset 0 1px 0 rgba(255, 255, 255, 0.6),
            0 0 0 2px rgba(255, 215, 0, 0.5);
    }
}

.inside-summary::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 30px;
    padding: 2px;
    background: linear-gradient(45deg,
        #fff 0%,
        transparent 25%,
        transparent 50%,
        #fff 75%,
        transparent 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0.6;
    animation: borderRotate 4s linear infinite;
}

@keyframes borderRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.inside-summary::after {
    content: '💎';
    position: absolute;
    top: -9px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 4rem;
    filter: drop-shadow(0 5px 15px rgba(212, 175, 55, 0.5));
    animation: diamondBounce 2s ease-in-out infinite;
}

@keyframes diamondBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

.summary-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    margin-top: 15px;
    background: linear-gradient(135deg, #0a3d2e 0%, #0f4c3a 50%, #1a5f4a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    position: relative;
    z-index: 1;
    line-height: 1.3;
    filter: drop-shadow(2px 2px 3px rgba(255, 255, 255, 0.6));
    animation: titleShine 3s ease-in-out infinite;
}

@keyframes titleShine {
    0%, 100% {
        filter: drop-shadow(2px 2px 3px rgba(255, 255, 255, 0.6));
    }
    50% {
        filter: drop-shadow(2px 2px 5px rgba(255, 255, 255, 0.9));
    }
}

.summary-subtitle {
    font-size: 1.4rem;
    color: #0a3d2e;
    margin-bottom: 50px;
    font-weight: 800;
    position: relative;
    z-index: 1;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    display: inline-block;
    border: 2px solid rgba(15, 76, 58, 0.2);
}

.summary-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.summary-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(15, 76, 58, 0.2);
    text-align: right;
    position: relative;
    z-index: 1;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.summary-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transition: left 0.6s ease;
}

.summary-item:hover::before {
    left: 100%;
}

.summary-item:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.9) 100%);
    transform: translateY(-8px) scale(1.02);
    border-color: #0f4c3a;
    box-shadow:
        0 15px 40px rgba(15, 76, 58, 0.3),
        0 0 0 3px rgba(212, 175, 55, 0.2);
}

.summary-item i {
    font-size: 2.5rem;
    color: #0f4c3a;
    flex-shrink: 0;
    margin-top: 5px;
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(2px 2px 3px rgba(212, 175, 55, 0.3));
    transition: all 0.3s ease;
}

.summary-item:hover i {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(3px 3px 5px rgba(212, 175, 55, 0.5));
}

.summary-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.summary-content strong {
    font-size: 1.25rem;
    font-weight: 900;
    color: #0a3d2e;
    display: block;
    line-height: 1.4;
    background: linear-gradient(135deg, #0a3d2e 0%, #0f4c3a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.summary-item:hover .summary-content strong {
    transform: translateX(-3px);
}

.summary-content span {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(10, 61, 46, 0.9);
    font-weight: 500;
}

.summary-footer {
    margin-top: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    position: relative;
    z-index: 1;
    border: 2px dashed rgba(15, 76, 58, 0.3);
}

.summary-footer::before {
    content: '⭐';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
    animation: starPulse 2s ease-in-out infinite;
}

@keyframes starPulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
    }
    50% {
        transform: translateX(-50%) scale(1.1);
        box-shadow: 0 8px 30px rgba(212, 175, 55, 0.8);
    }
}

.summary-text {
    font-size: 1.4rem;
    line-height: 1.8;
    margin: 0 0 20px 0;
    font-weight: 800;
    color: #0a3d2e;
    padding-top: 10px;
}

.summary-text i {
    color: #0f4c3a;
    margin-left: 10px;
    font-size: 1.5rem;
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.summary-highlight {
    font-size: 1.6rem;
    font-weight: 900;
    background: linear-gradient(135deg, #0a3d2e 0%, #0f4c3a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 30px 0;
    line-height: 1.8;
    filter: drop-shadow(2px 2px 3px rgba(255, 255, 255, 0.6));
}

/* CTA Buttons Container */
.summary-cta-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 40px;
    font-size: 1.3rem;
    font-weight: 900;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    min-width: 280px;
    text-align: center;
}

.cta-btn i {
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.cta-btn:hover::before {
    width: 300px;
    height: 300px;
}

.cta-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.cta-btn:hover i {
    transform: scale(1.2) rotate(10deg);
}

/* Primary CTA Button */
.cta-primary {
    background: linear-gradient(135deg, #0f4c3a 0%, #1a5f4a 50%, #0f4c3a 100%);
    color: #fff;
    border: 3px solid rgba(212, 175, 55, 0.5);
    position: relative;
}

.cta-primary::after {
    content: '✨';
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 1.5rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0.5) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1) rotate(180deg);
    }
}

.cta-primary:hover {
    background: linear-gradient(135deg, #1a5f4a 0%, #0f4c3a 50%, #1a5f4a 100%);
    border-color: #ffd700;
    color: #ffd700;
}

.cta-primary i {
    color: #ffd700;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.8));
}

/* WhatsApp CTA Button */
.cta-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    border: 3px solid rgba(37, 211, 102, 0.3);
    position: relative;
}

.cta-whatsapp::after {
    content: '💬';
    position: absolute;
    top: -8px;
    left: -8px;
    font-size: 1.3rem;
    animation: chatBubble 3s ease-in-out infinite;
}

@keyframes chatBubble {
    0%, 100% {
        opacity: 0;
        transform: translateY(0) scale(0.5);
    }
    50% {
        opacity: 1;
        transform: translateY(-5px) scale(1);
    }
}

.cta-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
    border-color: #25D366;
    color: #fff;
    box-shadow: 0 20px 50px rgba(37, 211, 102, 0.4);
}

.cta-whatsapp i {
    animation: whatsappPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.6));
}

@keyframes whatsappPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
}

.cta-whatsapp:hover i {
    animation: none;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .whats-inside-section {
        padding: 60px 0;
    }

    .whats-inside-section::after {
        font-size: 10rem;
    }

    .whats-inside-section .section-title {
        font-size: 1.6rem;
    }

    .whats-inside-section .section-description {
        font-size: 1rem;
    }

    .inside-intro {
        padding: 20px;
        margin: 30px auto;
    }

    .intro-text {
        font-size: 1.1rem;
    }

    .model-card {
        padding: 30px 20px;
        margin-bottom: 30px;
    }

    .summary-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .inside-summary {
        padding: 50px 25px;
        border-radius: 25px;
    }

    .inside-summary::after {
        font-size: 3rem;
        top: -20px;
    }

    .summary-title {
        font-size: 1.6rem;
        margin-top: 20px;
    }

    .summary-subtitle {
        font-size: 1.1rem;
    }

    .summary-item {
        padding: 20px;
        gap: 15px;
    }

    .summary-item i {
        font-size: 2rem;
    }

    .summary-content strong {
        font-size: 1.1rem;
    }

    .summary-content span {
        font-size: 0.95rem;
    }

    .summary-text {
        font-size: 1.1rem;
    }

    .summary-highlight {
        font-size: 1.2rem;
    }

    .features-summary-section {
        padding: 70px 0;
    }

    .features-summary-section::before,
    .features-summary-section::after {
        font-size: 4rem;
    }

    .summary-cta-container {
        flex-direction: column;
        gap: 15px;
    }

    .cta-btn {
        width: 100%;
        min-width: auto;
        padding: 18px 30px;
        font-size: 1.2rem;
    }

    .cta-btn i {
        font-size: 1.3rem;
    }

    .summary-highlight {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
}

/* ============================================
   Full Features Summary Section
   ============================================ */
.features-summary-section {
    background:
        linear-gradient(135deg, rgba(15, 76, 58, 0.03) 0%, transparent 50%),
        linear-gradient(to bottom, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.features-summary-section::before {
    content: '✨';
    position: absolute;
    top: 5%;
    left: 10%;
    font-size: 8rem;
    opacity: 0.05;
    animation: float 6s ease-in-out infinite;
}

.features-summary-section::after {
    content: '🌟';
    position: absolute;
    bottom: 10%;
    right: 10%;
    font-size: 6rem;
    opacity: 0.05;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.features-summary-section .inside-summary {
    margin-top: 0;
    position: relative;
}

/* ============================================
   Footer Styles
   ============================================ */
.islamic-footer {
    background: linear-gradient(135deg, #0a3d2e 0%, #0f4c3a 50%, #1a5f4a 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.islamic-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #d4af37 0%, #ffd700 50%, #d4af37 100%);
}

.footer-top {
    padding: 80px 0 60px;
    position: relative;
}

.footer-widget {
    height: 100%;
}

.footer-title {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: #ffd700;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

.footer-title i {
    font-size: 1.3rem;
}

.footer-brand-link {
    color: #ffd700;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-brand-link:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.footer-brand-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.3s ease;
}

.footer-brand-link:hover::after {
    width: 100%;
}

.footer-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 20px;
}

.footer-quote {
    background: rgba(212, 175, 55, 0.1);
    padding: 15px 20px;
    border-right: 4px solid #ffd700;
    border-radius: 8px;
    margin-top: 20px;
    position: relative;
}

.footer-quote i {
    color: #ffd700;
    font-size: 1.2rem;
    margin-left: 10px;
}

.footer-quote p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.7;
    font-style: italic;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 5px 0;
}

.footer-links a:hover {
    color: #ffd700;
    transform: translateX(-5px);
}

.footer-links a i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.footer-links a:hover i {
    transform: translateX(-3px);
}

.package-duration {
    display: inline-block;
    background: rgba(212, 175, 55, 0.2);
    color: #ffd700;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.85rem;
    margin-right: 10px;
    font-weight: 600;
}

.footer-payment {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-label {
    color: #ffd700;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.payment-methods-footer {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.payment-methods-footer span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.payment-methods-footer i {
    color: #ffd700;
    width: 20px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.footer-contact li:hover {
    background: rgba(212, 175, 55, 0.15);
    transform: translateX(-5px);
}

.footer-contact i {
    color: #ffd700;
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #ffd700;
}

.footer-social {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-label {
    color: #ffd700;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-link:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.social-link.facebook:hover {
    background: #1877f2;
}

.social-link.twitter:hover {
    background: #1da1f2;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link.youtube:hover {
    background: #ff0000;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 30px 0;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.copyright p,
.developer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.copyright i {
    color: #ffd700;
    margin-left: 5px;
}

.expert-code-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffd700;
    text-decoration: none;
    font-weight: 800;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 25px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.expert-code-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
    transition: left 0.6s ease;
}

.expert-code-link:hover::before {
    left: 100%;
}

.expert-code-link:hover {
    transform: translateY(-3px);
    background: rgba(212, 175, 55, 0.2);
    border-color: #ffd700;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.expert-code-link i:first-child {
    animation: codeAnimation 2s ease-in-out infinite;
}

@keyframes codeAnimation {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(360deg);
    }
}

.expert-code-link i:last-child {
    font-size: 0.85rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.expert-code-link:hover i:last-child {
    opacity: 1;
    transform: translateX(0);
}

.footer-verse {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.verse-icon {
    font-size: 2rem;
    color: #ffd700;
    display: block;
    margin-bottom: 10px;
    animation: verseGlow 3s ease-in-out infinite;
}

@keyframes verseGlow {
    0%, 100% {
        filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.8));
    }
}

.verse-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    font-style: italic;
    margin: 0;
    line-height: 1.6;
}

/* Responsive Footer */
@media (max-width: 991px) {
    .footer-top {
        padding: 60px 0 40px;
    }

    .footer-title {
        font-size: 1.3rem;
    }

    .footer-widget {
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .footer-top {
        padding: 50px 0 30px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .copyright,
    .developer {
        width: 100%;
    }

    .expert-code-link {
        font-size: 0.95rem;
    }

    .social-links {
        justify-content: center;
    }

    .footer-description {
        font-size: 0.95rem;
    }

    .footer-quote p {
        font-size: 0.9rem;
    }

    .verse-icon {
        font-size: 1.5rem;
    }

    .verse-text {
        font-size: 0.9rem;
    }
}

/* ============================================
   Applicants Section Styles
   ============================================ */
.applicants-section {
    background: linear-gradient(135deg, #0f4c3a 0%, #1a5f4a 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.applicants-section::before {
    content: '☪️';
    position: absolute;
    font-size: 20rem;
    color: rgba(255, 255, 255, 0.03);
    top: 50%;
    right: -50px;
    transform: translateY(-50%);
}

.section-header-applicants {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.applicants-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: #fff;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-view-more {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-view-more:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: #d4af37;
    color: #d4af37;
    transform: translateX(-5px);
}

.applicant-card {
    background: #fff;
    border-radius: 24px;
    overflow: visible;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    height: 100%;
    border: 3px solid transparent;
    position: relative;
}

.applicant-card:hover {
    transform: translateY(-12px);
    z-index: 50 !important;
}

.applicant-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 26px;
    padding: 2px;
    background: transparent;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
}

.applicant-card:hover::before {
    opacity: 1;
    animation: borderRotate 3s linear infinite;
}

@keyframes borderRotate {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

/* بطاقة مدى الحياة - تصميم Premium */
.card-lifetime {
    border: 3px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box,
                linear-gradient(135deg, #d4af37 0%, #ffd700 50%, #d4af37 100%) border-box;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
    position: relative;
}

.card-lifetime::after {
    content: '★';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: #fff;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.5);
    animation: starPulse 2s infinite;
}

@keyframes starPulse {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.1); }
}

.card-lifetime:hover {
    box-shadow: 0 15px 60px rgba(212, 175, 55, 0.5);
    transform: translateY(-12px) scale(1.02);
}

/* بطاقة محدودة المدة - تصميم نظيف */
.card-limited {
    border: 2px solid #e5e7eb;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.card-limited:hover {
    border-color: #0f4c3a;
    box-shadow: 0 12px 40px rgba(15, 76, 58, 0.2);
}

.applicant-image-container {
    position: relative;
    width: 100%;
    padding-top: 120%;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    border-radius: 21px 21px 0 0;
}

.applicant-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 21px 21px 0 0;
}

.applicant-card:hover .applicant-image {
    transform: scale(1.1);
}

.applicant-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(15, 76, 58, 0.8) 0%, transparent 60%);
    opacity: 0;
    transition: all 0.4s ease;
    border-radius: 21px 21px 0 0;
}

.applicant-card:hover .applicant-overlay {
    opacity: 1;
}

.card-lifetime:hover .applicant-overlay {
    background: linear-gradient(to top, rgba(212, 175, 55, 0.7) 0%, transparent 60%);
}

.applicant-name {
    padding: 20px 15px;
    text-align: center;
    background: linear-gradient(to bottom, #fff 0%, #f8f9fa 100%);
    border-top: 1px solid #e5e7eb;
    border-radius: 0 0 21px 21px;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.applicant-name strong {
    font-size: 1.1rem;
    color: #0f4c3a;
    font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    word-break: break-word;
    max-height: 3.3rem;
}

.card-lifetime .applicant-name {
    background: linear-gradient(to bottom, #fffef8 0%, #fef9e7 100%);
    border-top-color: #f4d03f;
}

.card-lifetime .applicant-name strong {
    color: #a57c00;
}

.memorial-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    z-index: 10;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Tooltip محسّن */
.memorial-badge::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: linear-gradient(135deg, #0f4c3a 0%, #1a5f4a 100%);
    color: #fff;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
    z-index: 1000;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.badge-lifetime::after {
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    color: #fff;
}

.memorial-badge::before {
    content: '';
    position: absolute;
    bottom: calc(100% + 5px);
    left: 50%;
    transform: translateX(-50%);
    border: 10px solid transparent;
    border-top-color: #0f4c3a;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 1000;
}

.badge-lifetime::before {
    border-top-color: #d4af37;
}

.memorial-badge:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.memorial-badge:hover::before {
    opacity: 1;
    visibility: visible;
}

/* شارة مدى الحياة - تصميم فاخر */
.badge-lifetime {
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 50%, #d4af37 100%);
    color: #fff;
    border: 3px solid #fff;
    box-shadow:
        0 0 0 3px rgba(212, 175, 55, 0.3),
        0 8px 25px rgba(212, 175, 55, 0.6);
    position: relative;
}

.badge-lifetime::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af37, #ffd700);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.badge-lifetime:hover::before {
    opacity: 0.3;
    animation: badgeGlow 1.5s infinite;
}

@keyframes badgeGlow {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0; }
}

.badge-lifetime:hover {
    transform: scale(1.2) rotate(10deg);
    box-shadow:
        0 0 0 4px rgba(212, 175, 55, 0.4),
        0 12px 35px rgba(212, 175, 55, 0.8);
}

.badge-lifetime i {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* شارة محدودة المدة - تصميم أنيق */
.badge-limited {
    background: linear-gradient(135deg, #0f4c3a 0%, #1a5f4a 100%);
    color: #fff;
    border: 2px solid #fff;
    box-shadow: 0 6px 20px rgba(15, 76, 58, 0.4);
}

.badge-limited:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(15, 76, 58, 0.6);
    background: linear-gradient(135deg, #1a5f4a 0%, #0f4c3a 100%);
}

.badge-limited i {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* ============================================
   Packages Section Styles
   ============================================ */
.packages-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    padding: 80px 0;
    position: relative;
}

.package-card {
    background: #fff;
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 3px solid #e5e7eb;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.package-badge {
    background: linear-gradient(135deg, #0f4c3a 0%, #1a5f4a 100%);
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 1.15rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(15, 76, 58, 0.3);
}

.package-badge.premium {
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    color: #fff;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.popular-tag {
    position: absolute;
    top: -15px;
    right: 30px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    animation: tagFloat 3s ease-in-out infinite;
}

@keyframes tagFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.package-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #0f4c3a 0%, #1a5f4a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(15, 76, 58, 0.3);
}

.package-icon.premium {
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.package-icon i {
    font-size: 3rem;
    color: #fff;
}

.package-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f4c3a;
    margin-bottom: 10px;
}

.package-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
    font-weight: 600;
}

.package-price {
    margin: 30px 0;
    padding: 20px;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    border-radius: 15px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
}

.package-price.premium {
    background: linear-gradient(135deg, #fff9e6 0%, #fef5d4 100%);
    border: 2px solid #d4af37;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: #0f4c3a;
    line-height: 1;
}

.package-price.premium .price-amount {
    color: #d4af37;
}

.price-currency,
.price-label {
    font-size: 1.2rem;
    font-weight: 700;
    color: #666;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: right;
    flex-grow: 1;
}

.package-features li {
    padding: 12px 0;
    font-size: 1.05rem;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
}

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

.package-features i {
    color: #0f4c3a;
    margin-left: 10px;
    font-size: 1.1rem;
}

.package-premium .package-features i {
    color: #d4af37;
}

.package-btn {
    display: inline-block;
    background: linear-gradient(135deg, #0f4c3a 0%, #1a5f4a 100%);
    color: #fff;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(15, 76, 58, 0.3);
    transition: all 0.3s ease;
    margin-top: auto;
}

.package-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(15, 76, 58, 0.4);
    color: #fff;
}

.package-btn.premium {
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    color: #fff;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.package-btn.premium:hover {
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
}

.package-premium {
    border-color: #d4af37;
    border-width: 3px;
}

.package-premium:hover {
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

/* Payment Methods */
.payment-methods {
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-radius: 25px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.payment-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0f4c3a;
    margin-bottom: 30px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.payment-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.payment-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(15, 76, 58, 0.15);
}

.payment-item i {
    font-size: 2.5rem;
    color: #0f4c3a;
}

.payment-item span {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
}

.payment-note {
    font-size: 1.15rem;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 768px) {
    .packages-section {
        padding: 60px 0;
    }

    .package-card {
        padding: 30px 20px;
        margin-bottom: 30px;
    }

    .price-amount {
        font-size: 2.5rem;
    }

    .payment-icons {
        flex-direction: column;
        gap: 20px;
    }

    .payment-methods {
        padding: 30px 20px;
    }
}

/* ============================================
   Form Request Section Styles
   ============================================ */
.form-request-section {
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    padding: 80px 0;
    position: relative;
}

.form-container-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 3px solid #d4af37;
}

.form-header {
    background: linear-gradient(135deg, #0f4c3a 0%, #1a5f4a 100%);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.form-header::before {
    content: '☪️';
    position: absolute;
    font-size: 15rem;
    color: rgba(255, 255, 255, 0.05);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.form-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: #fff;
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.form-subtitle {
    font-size: 1.2rem;
    color: #d4af37;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.form-body {
    padding: 50px 40px;
}

.custom-input .form-control,
.custom-input .form-select {
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 15px 20px;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.custom-input .form-control:focus,
.custom-input .form-select:focus {
    border-color: #d4af37;
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.15);
    background: #fff;
}

.custom-input label {
    font-weight: 600;
    color: #0f4c3a;
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.form-control::placeholder {
    color: #999;
}

.submit-btn-islamic {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    border: none;
    color: #0f4c3a;
    padding: 18px 40px;
    font-size: 1.3rem;
    font-weight: 800;
    border-radius: 50px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn-islamic:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, #f4d03f 0%, #d4af37 100%);
}

/* ============================================
   Offers Section Styles
   ============================================ */
.offers-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
    position: relative;
}

.offers-header {
    text-align: center;
    margin-bottom: 60px;
}

.offers-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #0f4c3a;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.offers-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #f4d03f);
    border-radius: 2px;
}

.offer-card {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    margin-bottom: 30px;
}

.offer-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(15, 76, 58, 0.25);
}

.offer-image-wrapper {
    position: relative;
    overflow: hidden;
}

.offer-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.offer-card:hover .offer-image-wrapper img {
    transform: scale(1.08);
}

.offer-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #0f4c3a;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.offer-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(15, 76, 58, 0.95) 0%, transparent 100%);
    padding: 30px 20px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.offer-card:hover .offer-overlay {
    transform: translateY(0);
}

.offer-cta-btn {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #0f4c3a;
    padding: 15px 40px;
    font-size: 1.15rem;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    width: 100%;
    text-align: center;
}

.offer-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
    color: #0f4c3a;
}

/* ============================================
   Responsive Styles for All Sections
   ============================================ */
@media (max-width: 768px) {
    .hero-islamic {
        min-height: 90vh;
    }

    .hero-logo {
        width: 140px;
        height: 140px;
    }

    .btn-islamic-primary {
        padding: 15px 40px;
        font-size: 1.1rem;
    }

    .features-section {
        padding: 60px 0;
    }

    .feature-card {
        margin-bottom: 20px;
    }

    .applicants-section {
        padding: 60px 0;
    }

    .section-header-applicants {
        flex-direction: column;
        align-items: flex-start;
    }

    .form-body {
        padding: 30px 20px;
    }

    .form-container-wrapper {
        border-radius: 20px;
    }

    .offers-section {
        padding: 60px 0;
    }

    /* تحسين الشارات على الموبايل */
    .memorial-badge {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        top: 10px;
        right: 10px;
    }

    .memorial-badge::after {
        font-size: 0.8rem;
        padding: 8px 14px;
    }

    /* إطار البطاقات على الموبايل */
    .card-lifetime {
        border-width: 2px;
    }

    .card-lifetime::after {
        width: 24px;
        height: 24px;
        font-size: 0.75rem;
        top: -10px;
    }

    .applicant-name {
        min-height: 70px;
        padding: 15px 10px;
    }

    .applicant-name strong {
        font-size: 0.95rem;
        max-height: 3rem;
    }
}

/* ============================================
   Body & General Enhancements
   ============================================ */
body {
    font-family: 'Cairo', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* ============================================
   Islamic Decorative Elements
   ============================================ */
.islamic-divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-secondary), var(--gold-primary));
    margin: 30px auto;
    border-radius: 3px;
}

/* ============================================
   Enhanced Buttons
   ============================================ */
.btn {
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 25px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 76, 58, 0.3);
}

/* ============================================
   Scroll to Top Button
   ============================================ */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
}

/* ============================================
   Loading Overlay
   ============================================ */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    color: white;
}

.loader-icon {
    font-size: 4rem;
    color: var(--gold-primary);
    animation: rotate 2s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ============================================
   Enhanced Footer
   ============================================ */
footer {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border-top: 5px solid var(--gold-primary);
}

footer::before {
    content: '☪️';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    color: rgba(212, 175, 55, 0.1);
}

footer a {
    transition: all 0.3s ease;
}

footer a:hover {
    color: var(--gold-primary) !important;
    transform: translateX(-3px);
}

/* ============================================
   Responsive Enhancements
   ============================================ */
@media (max-width: 768px) {
    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        left: 20px;
    }

    .islamic-divider {
        width: 60px;
    }
}

/* ============================================
   Animation Utilities
   ============================================ */
.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.slide-up {
    animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
    .scroll-to-top,
    .wts-app-floating,
    footer::before {
        display: none !important;
    }
}
