/* ========================================
   نمو - للتسويق الإلكتروني
   Modern Dark Theme with Black & Red
======================================== */

:root {
    --primary-black: #040404;
    --secondary-red: #cd2b33;
    --light-gray: #e0e0e0;
    --medium-gray: #9e9e9e;
    --dark-gray: #1a1a1a;
    --darker-gray: #0d0d0d;
    --white: #ffffff;
    --shadow: rgba(205, 43, 51, 0.3);
    --glow: rgba(205, 43, 51, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', sans-serif;
    background: var(--primary-black);
    color: var(--light-gray);
    line-height: 1.8;
    overflow-x: hidden;
    position: relative;
}

/* ========================================
   Animated Background Pattern
======================================== */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, var(--primary-black) 0%, var(--darker-gray) 50%, var(--primary-black) 100%);
    z-index: -2;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(205, 43, 51, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(205, 43, 51, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(205, 43, 51, 0.05) 0%, transparent 50%);
    z-index: -1;
    animation: backgroundPulse 10s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Grid Pattern Overlay */
.container::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(205, 43, 51, 0.03) 2px, rgba(205, 43, 51, 0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(205, 43, 51, 0.03) 2px, rgba(205, 43, 51, 0.03) 4px);
    z-index: -1;
    pointer-events: none;
}

/* ========================================
   Container
======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* ========================================
   Navigation
======================================== */
.navbar {
    background: rgba(4, 4, 4, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(205, 43, 51, 0.2);
    box-shadow: 0 4px 20px rgba(205, 43, 51, 0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.logo img {
    width: 50px;
    height: 50px;
    filter: drop-shadow(0 0 10px var(--glow));
    transition: all 0.3s ease;
}

.logo:hover img {
    filter: drop-shadow(0 0 20px var(--glow));
    transform: scale(1.1);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--light-gray);
    text-decoration: none;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--secondary-red);
    transition: width 0.3s ease;
}

.nav-links a:hover::before,
.nav-links a.active::before {
    width: 80%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--secondary-red);
    text-shadow: 0 0 10px var(--glow);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: var(--secondary-red);
    box-shadow: 0 0 20px var(--glow);
}

/* ========================================
   Hero Section
======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 100px 0 50px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.animated-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(205, 43, 51, 0.3) 0%, transparent 70%);
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(205, 43, 51, 0.2) 0%, transparent 70%);
    bottom: 20%;
    left: 15%;
    animation-delay: 5s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(205, 43, 51, 0.25) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    animation-delay: 10s;
}

.shape-4 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(205, 43, 51, 0.15) 0%, transparent 70%);
    bottom: 10%;
    right: 20%;
    animation-delay: 15s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-50px, 50px) scale(0.9);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--white);
}

.gradient-text {
    background: linear-gradient(135deg, var(--white) 0%, var(--secondary-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    text-shadow: 0 0 30px var(--glow);
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% {
        filter: hue-rotate(0deg) brightness(1);
    }
    50% {
        filter: hue-rotate(10deg) brightness(1.2);
    }
}

.hero-slogan {
    font-size: 1.8rem;
    color: var(--secondary-red);
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 0 20px var(--glow);
}

.hero-description {
    font-size: 1.2rem;
    color: var(--medium-gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* ========================================
   Buttons
======================================== */
.btn {
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-red) 0%, #a02229 100%);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(205, 43, 51, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(205, 43, 51, 0.6);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--secondary-red);
}

.btn-outline:hover {
    background: var(--secondary-red);
    box-shadow: 0 8px 25px rgba(205, 43, 51, 0.4);
    transform: translateY(-3px);
}

.btn-light {
    background: var(--white);
    color: var(--secondary-red);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
}

.btn-text {
    color: var(--secondary-red);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-text:hover {
    gap: 15px;
    text-shadow: 0 0 10px var(--glow);
}

/* ========================================
   Hero Image with Floating Cards
======================================== */
.hero-image {
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    background: rgba(13, 13, 13, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(205, 43, 51, 0.3);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(205, 43, 51, 0.2);
    animation: floatCard 6s ease-in-out infinite;
}

.floating-card:nth-child(1) {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.floating-card:nth-child(2) {
    top: 50%;
    left: 0;
    animation-delay: 2s;
}

.floating-card:nth-child(3) {
    bottom: 10%;
    right: 20%;
    animation-delay: 4s;
}

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

.floating-card i {
    font-size: 3rem;
    color: var(--secondary-red);
    margin-bottom: 15px;
    display: block;
    filter: drop-shadow(0 0 10px var(--glow));
}

.floating-card h3 {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
}

/* ========================================
   Section Styles
======================================== */
section {
    padding: 100px 0;
    position: relative;
}

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

.section-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 15px;
    text-shadow: 0 0 30px rgba(205, 43, 51, 0.3);
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--medium-gray);
}

/* ========================================
   About Section
======================================== */
.about-home {
    background: linear-gradient(180deg, transparent 0%, rgba(13, 13, 13, 0.5) 50%, transparent 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.lead-text {
    font-size: 1.3rem;
    color: var(--light-gray);
    margin-bottom: 20px;
    line-height: 1.9;
}

.about-content p {
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    gap: 25px;
}

.feature-box {
    background: rgba(13, 13, 13, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(205, 43, 51, 0.2);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateX(-10px);
    border-color: var(--secondary-red);
    box-shadow: 0 10px 30px rgba(205, 43, 51, 0.3);
}

.feature-box i {
    font-size: 2.5rem;
    color: var(--secondary-red);
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px var(--glow));
}

.feature-box h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.feature-box p {
    color: var(--medium-gray);
}

/* ========================================
   Services Section
======================================== */
.services {
    background: 
        radial-gradient(circle at 30% 30%, rgba(205, 43, 51, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(205, 43, 51, 0.08) 0%, transparent 50%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(13, 13, 13, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(205, 43, 51, 0.2);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(205, 43, 51, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-red);
    box-shadow: 0 20px 50px rgba(205, 43, 51, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-red) 0%, #a02229 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(205, 43, 51, 0.4);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
    box-shadow: 0 15px 40px rgba(205, 43, 51, 0.6);
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.service-card h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card p {
    color: var(--medium-gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-link {
    color: var(--secondary-red);
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 15px;
    text-shadow: 0 0 10px var(--glow);
}

/* ========================================
   Why Us Section
======================================== */
.why-us {
    background: linear-gradient(180deg, transparent 0%, rgba(13, 13, 13, 0.5) 50%, transparent 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.feature-item {
    background: rgba(13, 13, 13, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(205, 43, 51, 0.2);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s ease;
    position: relative;
}

.feature-item:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-red);
    box-shadow: 0 20px 50px rgba(205, 43, 51, 0.3);
}

.feature-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--secondary-red);
    opacity: 0.3;
    position: absolute;
    top: 20px;
    right: 30px;
    line-height: 1;
}

.feature-item h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-item p {
    color: var(--medium-gray);
    line-height: 1.8;
}

/* ========================================
   Stats Section
======================================== */
.stats {
    background: linear-gradient(135deg, rgba(205, 43, 51, 0.1) 0%, transparent 100%);
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 40px 20px;
    background: rgba(13, 13, 13, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(205, 43, 51, 0.2);
    border-radius: 20px;
    transition: all 0.4s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-red);
    box-shadow: 0 20px 50px rgba(205, 43, 51, 0.3);
}

.stat-icon {
    font-size: 3rem;
    color: var(--secondary-red);
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px var(--glow));
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(205, 43, 51, 0.5);
}

.stat-item p {
    color: var(--medium-gray);
    font-size: 1.2rem;
}

/* ========================================
   Testimonials Section
======================================== */
.testimonials {
    background: 
        radial-gradient(circle at 50% 50%, rgba(205, 43, 51, 0.05) 0%, transparent 50%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(13, 13, 13, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(205, 43, 51, 0.2);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-red);
    box-shadow: 0 20px 50px rgba(205, 43, 51, 0.3);
}

.stars {
    margin-bottom: 20px;
}

.stars i {
    color: #ffd700;
    font-size: 1.2rem;
    margin-left: 5px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.testimonial-text {
    color: var(--light-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.testimonial-author p {
    color: var(--medium-gray);
    font-size: 0.95rem;
}

/* ========================================
   CTA Section
======================================== */
.cta {
    background: linear-gradient(135deg, var(--secondary-red) 0%, #a02229 100%);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 900;
}

.cta p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

/* ========================================
   Footer
======================================== */
.footer {
    background: var(--darker-gray);
    border-top: 1px solid rgba(205, 43, 51, 0.2);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 0 10px var(--glow));
}

.footer-logo h3 {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 900;
}

.footer-slogan {
    color: var(--secondary-red);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col ul li a {
    color: var(--medium-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--secondary-red);
    transform: translateX(-5px);
}

.contact-info li {
    display: flex;
    align-items: start;
    gap: 15px;
    color: var(--medium-gray);
}

.contact-info i {
    color: var(--secondary-red);
    margin-top: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(205, 43, 51, 0.2);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--medium-gray);
}

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

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(205, 43, 51, 0.1);
    border: 1px solid rgba(205, 43, 51, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-red);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary-red);
    color: var(--white);
    box-shadow: 0 5px 20px rgba(205, 43, 51, 0.5);
    transform: translateY(-5px);
}

/* ========================================
   Responsive Design
======================================== */
@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 300px;
        height: calc(100vh - 80px);
        background: rgba(4, 4, 4, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 30px;
        border-left: 1px solid rgba(205, 43, 51, 0.3);
        transition: right 0.4s ease;
        z-index: 999;
    }

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

    .mobile-menu-btn {
        display: block;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-image {
        height: 400px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-slogan {
        font-size: 1.4rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid,
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .floating-card {
        padding: 20px;
    }

    .floating-card h3 {
        font-size: 1rem;
    }

    .floating-card i {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}

/* ========================================
   Page Header
======================================== */
.page-header {
    padding: 150px 0 100px;
    text-align: center;
    background: 
        radial-gradient(circle at 50% 50%, rgba(205, 43, 51, 0.15) 0%, transparent 70%);
    position: relative;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(205, 43, 51, 0.4);
}

.page-subtitle {
    font-size: 1.4rem;
    color: var(--medium-gray);
}

/* ========================================
   Services Detail Page
======================================== */
.services-detail {
    padding: 80px 0;
}

.service-detail-card {
    background: rgba(13, 13, 13, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(205, 43, 51, 0.2);
    border-radius: 30px;
    padding: 60px;
    margin-bottom: 50px;
    transition: all 0.4s ease;
}

.service-detail-card:hover {
    border-color: var(--secondary-red);
    box-shadow: 0 25px 60px rgba(205, 43, 51, 0.25);
}

.service-detail-content {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 50px;
    align-items: start;
}

.service-detail-icon {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--secondary-red) 0%, #a02229 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(205, 43, 51, 0.5);
    position: sticky;
    top: 120px;
}

.service-detail-icon i {
    font-size: 4rem;
    color: var(--white);
}

.service-detail-text h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 900;
}

.service-lead {
    font-size: 1.4rem;
    color: var(--secondary-red);
    margin-bottom: 25px;
    font-weight: 700;
}

.service-detail-text > p {
    color: var(--light-gray);
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 30px;
}

.service-detail-text h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin: 40px 0 20px;
    font-weight: 700;
}

.service-list {
    list-style: none;
    margin-bottom: 40px;
}

.service-list li {
    color: var(--light-gray);
    font-size: 1.1rem;
    padding: 12px 0;
    display: flex;
    align-items: start;
    gap: 15px;
    line-height: 1.7;
}

.service-list li i {
    color: var(--secondary-red);
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.service-benefits {
    background: rgba(205, 43, 51, 0.05);
    border: 1px solid rgba(205, 43, 51, 0.2);
    border-radius: 20px;
    padding: 35px;
    margin-top: 40px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.benefit-item {
    text-align: center;
    padding: 25px;
    background: rgba(4, 4, 4, 0.5);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    background: rgba(205, 43, 51, 0.1);
}

.benefit-item i {
    font-size: 2.5rem;
    color: var(--secondary-red);
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px var(--glow));
}

.benefit-item p {
    color: var(--light-gray);
    font-weight: 600;
}

/* ========================================
   Responsive for Services Detail
======================================== */
@media (max-width: 968px) {
    .service-detail-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-detail-icon {
        width: 120px;
        height: 120px;
        margin: 0 auto;
        position: relative;
        top: 0;
    }

    .service-detail-icon i {
        font-size: 3rem;
    }

    .service-detail-card {
        padding: 40px 30px;
    }

    .page-title {
        font-size: 2.5rem;
    }
}

/* ========================================
   About Page Styles
======================================== */
.about-story {
    padding: 80px 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.image-container {
    background: linear-gradient(135deg, var(--secondary-red) 0%, #a02229 100%);
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 25px 60px rgba(205, 43, 51, 0.4);
}

.image-container img {
    width: 100%;
    max-width: 300px;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.3));
}

.story-content h2 {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 25px;
    font-weight: 900;
}

.story-content p {
    color: var(--light-gray);
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 20px;
}

/* Slogan Section */
.slogan-section {
    padding: 100px 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(205, 43, 51, 0.15) 0%, transparent 70%);
}

.slogan-content {
    text-align: center;
}

.slogan-title {
    font-size: 3.5rem;
    color: var(--secondary-red);
    margin-bottom: 15px;
    font-weight: 900;
    text-shadow: 0 0 30px var(--glow);
}

.slogan-subtitle {
    font-size: 1.4rem;
    color: var(--medium-gray);
    margin-bottom: 60px;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.philosophy-card {
    background: rgba(13, 13, 13, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(205, 43, 51, 0.2);
    border-radius: 25px;
    padding: 40px;
    text-align: center;
    transition: all 0.4s ease;
}

.philosophy-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-red);
    box-shadow: 0 25px 60px rgba(205, 43, 51, 0.3);
}

.philosophy-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--secondary-red) 0%, #a02229 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 15px 40px rgba(205, 43, 51, 0.4);
}

.philosophy-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.philosophy-card h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.philosophy-card p {
    color: var(--light-gray);
    line-height: 1.8;
}

/* VMV Section */
.vmv-section {
    padding: 80px 0;
}

.vmv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.vmv-card {
    background: rgba(13, 13, 13, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(205, 43, 51, 0.2);
    border-radius: 25px;
    padding: 50px;
    transition: all 0.4s ease;
}

.vmv-card.full-width {
    grid-column: 1 / -1;
}

.vmv-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-red);
    box-shadow: 0 20px 50px rgba(205, 43, 51, 0.3);
}

.vmv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-red) 0%, #a02229 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(205, 43, 51, 0.4);
}

.vmv-icon i {
    font-size: 2rem;
    color: var(--white);
}

.vmv-card h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.vmv-card p {
    color: var(--light-gray);
    font-size: 1.15rem;
    line-height: 1.9;
}

.values-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.value-item {
    display: flex;
    gap: 20px;
    align-items: start;
    padding: 20px;
    background: rgba(4, 4, 4, 0.5);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.value-item:hover {
    background: rgba(205, 43, 51, 0.1);
    transform: translateX(-5px);
}

.value-item > i {
    color: var(--secondary-red);
    font-size: 1.5rem;
    margin-top: 5px;
    flex-shrink: 0;
}

.value-item h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.value-item p {
    color: var(--medium-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Why Choose Section */
.why-choose {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(13, 13, 13, 0.5) 50%, transparent 100%);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.reason-card {
    background: rgba(13, 13, 13, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(205, 43, 51, 0.2);
    border-radius: 25px;
    padding: 40px;
    display: flex;
    gap: 25px;
    transition: all 0.4s ease;
    position: relative;
}

.reason-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-red);
    box-shadow: 0 20px 50px rgba(205, 43, 51, 0.3);
}

.reason-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--secondary-red);
    opacity: 0.3;
    line-height: 1;
    flex-shrink: 0;
}

.reason-content h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.reason-content p {
    color: var(--light-gray);
    line-height: 1.8;
}

/* Team Section */
.team-section {
    padding: 80px 0;
}

.team-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-feature {
    background: rgba(13, 13, 13, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(205, 43, 51, 0.2);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.4s ease;
}

.team-feature:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-red);
    box-shadow: 0 20px 50px rgba(205, 43, 51, 0.3);
}

.team-feature-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--secondary-red) 0%, #a02229 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 15px 40px rgba(205, 43, 51, 0.4);
}

.team-feature-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.team-feature h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.team-feature p {
    color: var(--light-gray);
    line-height: 1.7;
}

/* Responsive for About Page */
@media (max-width: 968px) {
    .story-grid {
        grid-template-columns: 1fr;
    }

    .vmv-grid {
        grid-template-columns: 1fr;
    }

    .slogan-title {
        font-size: 2.5rem;
    }

    .reasons-grid,
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Contact Page Styles
======================================== */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info-side h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 900;
}

.contact-info-side > p {
    color: var(--light-gray);
    font-size: 1.15rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-info-cards {
    display: grid;
    gap: 25px;
    margin-bottom: 40px;
}

.info-card {
    background: rgba(13, 13, 13, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(205, 43, 51, 0.2);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    gap: 25px;
    align-items: start;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: var(--secondary-red);
    transform: translateX(-5px);
    box-shadow: 0 15px 40px rgba(205, 43, 51, 0.2);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-red) 0%, #a02229 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(205, 43, 51, 0.4);
}

.info-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.info-text h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.info-text p {
    color: var(--medium-gray);
    line-height: 1.7;
    margin-bottom: 5px;
}

.info-text a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-text a:hover {
    color: var(--secondary-red);
}

.social-media-contact {
    margin-top: 40px;
}

.social-media-contact h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.social-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icon {
    width: 55px;
    height: 55px;
    background: rgba(205, 43, 51, 0.1);
    border: 1px solid rgba(205, 43, 51, 0.3);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-red);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--secondary-red);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(205, 43, 51, 0.5);
}

/* Contact Form */
.form-container {
    background: rgba(13, 13, 13, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(205, 43, 51, 0.2);
    border-radius: 30px;
    padding: 50px;
}

.form-container h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 900;
}

.form-container > p {
    color: var(--medium-gray);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(4, 4, 4, 0.7);
    border: 1px solid rgba(205, 43, 51, 0.3);
    border-radius: 12px;
    padding: 15px 20px;
    color: var(--white);
    font-size: 1rem;
    font-family: 'Cairo', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-red);
    box-shadow: 0 0 20px rgba(205, 43, 51, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.btn-full {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    padding: 18px;
}

.form-message {
    padding: 15px 20px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-message.success {
    background: rgba(40, 167, 69, 0.2);
    border: 1px solid rgba(40, 167, 69, 0.5);
    color: #28a745;
    display: block;
}

.form-message.error {
    background: rgba(220, 53, 69, 0.2);
    border: 1px solid rgba(220, 53, 69, 0.5);
    color: #dc3545;
    display: block;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(13, 13, 13, 0.3) 50%, transparent 100%);
}

.map-container h2 {
    font-size: 2.5rem;
    color: var(--white);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 900;
}

.map-embed {
    border: 2px solid rgba(205, 43, 51, 0.2);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(205, 43, 51, 0.2);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(13, 13, 13, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(205, 43, 51, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--secondary-red);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(205, 43, 51, 0.05);
}

.faq-question h3 {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
}

.faq-question i {
    color: var(--secondary-red);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px;
}

.faq-answer p {
    color: var(--light-gray);
    line-height: 1.8;
    margin: 0;
}

/* Responsive for Contact Page */
@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-container {
        padding: 35px 25px;
    }
}