/* ===== GLOBAL STYLES ===== */
:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --dark-bg: #0a0a0a;
    --dark-secondary: #1a1a1a;
    --dark-tertiary: #2a2a2a;
    --text-light: #ffffff;
    --text-muted: #b0b0b0;
    --glow-color: rgba(102, 126, 234, 0.3);
}

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

body {
    font-family: 'Cairo', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== ANIMATED BACKGROUND ===== */
.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(75, 172, 254, 0.1) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(1deg); }
    66% { transform: translateY(10px) rotate(-1deg); }
}

/* ===== NAVIGATION ===== */
.navbar {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.2rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-nav .nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #667eea !important;
}

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

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

.dropdown-menu {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.dropdown-item {
    color: var(--text-light);
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: var(--primary-gradient);
    color: white;
}

/* ===== BUTTONS ===== */
.btn-gradient {
    background: var(--primary-gradient);
    border: none;
    color: white;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.btn-gradient:hover::before {
    left: 100%;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--glow-color);
}

.btn-outline-gradient {
    background: transparent;
    border: 2px solid;
    border-image: var(--primary-gradient) 1;
    color: #667eea;
    font-weight: 600;
    padding: 10px 28px;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-outline-gradient:hover {
    background: var(--primary-gradient);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--glow-color);
}

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Let Bootstrap handle the grid system completely */

/* Ensure no CSS conflicts with Bootstrap Grid */
.container, .row, [class*="col-"] {
    /* Remove any potential conflicts */
}

/* Fix any RTL issues */
.row {
    margin-right: -15px;
    margin-left: -15px;
}

[class*="col-"] {
    padding-right: 15px;
    padding-left: 15px;
}

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

/* Video Background Styles */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -3;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
    transition: opacity 0.5s ease-in-out;
}

/* Video Indicators */
.video-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 1;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.indicator.active {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.1);
}

/* Dark overlay for better text readability */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    position: relative;
    z-index: 2;
}

/* ضمان ظهور كلمة مرحباً بكم في جميع الأحجام */
.hero-title span[data-translate="hero-welcome"] {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 0.1rem;
}

/* تأثير التدرج اللوني المتحرك والمتوهج */
.gradient-text {
    background: linear-gradient(
        45deg,
        #ff0080,
        #ff8c00,
        #40e0d0,
        #ee82ee,
        #adff2f,
        #ff1493,
        #00bfff,
        #ffd700,
        #ff69b4,
        #00ff7f,
        #ff0080
    );
    background-size: 600% 600%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    font-weight: 800;
    letter-spacing: 2px;
    animation: flowing-gradient 4s linear infinite, glow-pulse 2s ease-in-out infinite alternate;
    /* تأثير توهج مخفف ومتوازن */
    filter: brightness(1.2)
            drop-shadow(0 0 8px rgba(255, 255, 255, 0.5))
            drop-shadow(0 0 15px rgba(255, 0, 128, 0.4))
            drop-shadow(0 0 25px rgba(64, 224, 208, 0.3))
            drop-shadow(0 0 35px rgba(255, 105, 180, 0.2));
    /* توهج داخلي مخفف */
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.6),
                 0 0 10px rgba(255, 255, 255, 0.4),
                 0 0 15px rgba(255, 255, 255, 0.3);
}

/* تأثير خاص لاسم الشركة في الهيرو - ألوان متدرجة مع توهج مخفف */
.hero-company-text {
    background: linear-gradient(
        45deg,
        #ff0080,
        #ff8c00,
        #40e0d0,
        #ee82ee,
        #adff2f,
        #ff1493,
        #00bfff,
        #ffd700,
        #ff69b4,
        #00ff7f,
        #ff0080
    );
    background-size: 600% 600%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    font-weight: 800;
    letter-spacing: 2px;
    animation: flowing-gradient 4s linear infinite, glow-pulse 2s ease-in-out infinite alternate;
    /* تأثير توهج مخفف أكثر للحصول على مظهر أنيق */
    filter: brightness(1.1)
            drop-shadow(0 0 5px rgba(255, 255, 255, 0.3))
            drop-shadow(0 0 10px rgba(255, 0, 128, 0.25))
            drop-shadow(0 0 18px rgba(64, 224, 208, 0.2))
            drop-shadow(0 0 25px rgba(255, 105, 180, 0.15));
    /* توهج داخلي مخفف جداً */
    text-shadow: 0 0 3px rgba(255, 255, 255, 0.4),
                 0 0 6px rgba(255, 255, 255, 0.25),
                 0 0 10px rgba(255, 255, 255, 0.15);
}

/* إضافة طبقة توهج خلفية */
.gradient-text::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        #ff0080,
        #ff8c00,
        #40e0d0,
        #ee82ee,
        #adff2f,
        #ff1493,
        #00bfff,
        #ffd700,
        #ff69b4,
        #00ff7f,
        #ff0080
    );
    background-size: 600% 600%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: flowing-gradient 4s linear infinite;
    filter: blur(2px);
    opacity: 0.7;
    z-index: -1;
}

/* تحريك التدرج داخل النص */
@keyframes flowing-gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

/* تأثير التوهج النابض المحسن */
@keyframes glow-pulse {
    0% {
        filter: drop-shadow(0 0 8px rgba(255, 0, 128, 0.6))
                drop-shadow(0 0 15px rgba(64, 224, 208, 0.4))
                drop-shadow(0 0 25px rgba(255, 105, 180, 0.3))
                drop-shadow(0 0 35px rgba(255, 215, 0, 0.2));
    }
    25% {
        filter: drop-shadow(0 0 12px rgba(255, 20, 147, 0.8))
                drop-shadow(0 0 20px rgba(0, 191, 255, 0.6))
                drop-shadow(0 0 30px rgba(238, 130, 238, 0.4))
                drop-shadow(0 0 40px rgba(173, 255, 47, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 15px rgba(255, 140, 0, 0.9))
                drop-shadow(0 0 25px rgba(64, 224, 208, 0.7))
                drop-shadow(0 0 35px rgba(255, 105, 180, 0.5))
                drop-shadow(0 0 45px rgba(255, 215, 0, 0.4));
    }
    75% {
        filter: drop-shadow(0 0 18px rgba(255, 0, 128, 0.9))
                drop-shadow(0 0 28px rgba(0, 255, 127, 0.7))
                drop-shadow(0 0 38px rgba(255, 105, 180, 0.6))
                drop-shadow(0 0 48px rgba(255, 215, 0, 0.4));
    }
    100% {
        filter: drop-shadow(0 0 20px rgba(255, 0, 128, 1))
                drop-shadow(0 0 30px rgba(64, 224, 208, 0.8))
                drop-shadow(0 0 40px rgba(255, 105, 180, 0.7))
                drop-shadow(0 0 50px rgba(255, 215, 0, 0.5));
    }
}

/* تأثير محسن عند التمرير */
.gradient-text:hover {
    animation: flowing-gradient 2s linear infinite,
               glow-pulse 1s ease-in-out infinite alternate,
               hover-scale 0.6s ease-in-out infinite alternate;
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* تأثير التكبير عند التمرير */
@keyframes hover-scale {
    0% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 20px rgba(255, 0, 128, 0.9))
                drop-shadow(0 0 30px rgba(64, 224, 208, 0.7))
                drop-shadow(0 0 40px rgba(255, 105, 180, 0.6))
                drop-shadow(0 0 50px rgba(255, 215, 0, 0.4));
    }
    100% {
        transform: scale(1.08);
        filter: drop-shadow(0 0 25px rgba(255, 0, 128, 1))
                drop-shadow(0 0 35px rgba(64, 224, 208, 0.8))
                drop-shadow(0 0 45px rgba(255, 105, 180, 0.7))
                drop-shadow(0 0 55px rgba(255, 215, 0, 0.5));
    }
}

/* إزالة تأثير الكتابة - سيتم استخدام التدرج اللوني المتحرك فقط */
.typing-effect {
    /* تم إزالة جميع تأثيرات الكتابة */
    border: none;
    animation: none;
    overflow: visible;
    white-space: normal;
    max-width: none;
}

/* إصلاح اتجاه أرقام الهواتف */
.phone-number,
a[href^="tel:"],
[dir="rtl"] .phone-number,
[dir="rtl"] a[href^="tel:"] {
    direction: ltr !important;
    unicode-bidi: embed;
    display: inline-block;
    text-align: left;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 500;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    position: relative;
    z-index: 2;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    position: relative;
    z-index: 2;
}

.hero-buttons {
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.hero-buttons .btn {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-image {
    position: relative;
    text-align: center;
    z-index: 2;
}

/* Enhanced Hero Visual Element */
.hero-visual-element {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-circle {
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    animation: float-circle 3s ease-in-out infinite;
}

.tech-circle:nth-child(1) {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.tech-circle:nth-child(2) {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.tech-circle:nth-child(3) {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.tech-circle:nth-child(4) {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

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

.tech-circle:nth-child(2) {
    animation-name: float-circle-right;
}

.tech-circle:nth-child(3) {
    animation-name: float-circle-bottom;
}

.tech-circle:nth-child(4) {
    animation-name: float-circle-left;
}

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

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

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

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    animation: floatIcon 6s ease-in-out infinite;
    box-shadow: 0 10px 30px var(--glow-color);
}

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

/* ===== SECTIONS ===== */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

/* ===== SERVICE CARDS ===== */
.service-card {
    background: var(--dark-secondary);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px var(--glow-color);
}

.service-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* ===== VALUE PROPOSITION SECTION ===== */
.value-section {
    background: var(--dark-secondary);
    position: relative;
}

.value-content {
    padding: 2rem 0;
}

.value-points {
    margin-top: 2rem;
}

.value-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.value-point:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(75, 172, 254, 0.4);
}

.value-text h5 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.value-text p {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

.value-visual {
    padding: 2rem 0;
}

.value-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.value-card .card-header {
    background: var(--primary-gradient);
    padding: 1.5rem;
    text-align: center;
}

.value-card .card-header h4 {
    color: white;
    margin: 0;
    font-weight: 600;
}

.value-card .card-body {
    padding: 2rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.feature-item i {
    color: #4facfe;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-item span {
    color: var(--text-light);
    font-weight: 500;
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    color: white;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    color: white;
    text-decoration: none;
}

.whatsapp-btn:focus {
    outline: none;
    color: white;
    text-decoration: none;
}

/* WhatsApp Pulse Animation */
@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ===== PORTFOLIO PREVIEW ===== */
.portfolio-preview {
    position: relative;
    overflow: hidden;
}

/* Portfolio Video Background */
.portfolio-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.portfolio-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
    z-index: -2;
}

.portfolio-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

.portfolio-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

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

.portfolio-content h5 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.portfolio-content p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--dark-secondary);
    position: relative;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-tertiary);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h5 {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.footer-title {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #667eea;
}

.footer-contact p {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.social-links {
    margin-top: 1rem;
}

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--primary-gradient);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: white;
    margin-right: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px var(--glow-color);
    color: white;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0 1rem;
}

.footer-copyright {
    color: var(--text-muted);
    margin: 0;
}

/* ===== PAGE HEADER ===== */
.page-header {
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ===== ABOUT SECTION ===== */
.about-intro {
    background: var(--dark-secondary);
}

.about-content .lead {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.feature-item i {
    color: #667eea;
    margin-left: 10px;
    font-size: 1.1rem;
}

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem;
    color: white;
}

.overlay-content h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* ===== VISION & MISSION ===== */
.vision-mission {
    background: var(--dark-bg);
}

.vision-card,
.mission-card {
    background: var(--dark-secondary);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.vision-card:hover,
.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px var(--glow-color);
}

.vision-card h3,
.mission-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.vision-card p,
.mission-card p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.vision-points,
.mission-points {
    list-style: none;
    padding: 0;
}

.vision-points li,
.mission-points li {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    position: relative;
    padding-right: 20px;
}

.vision-points li::before,
.mission-points li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: #667eea;
    font-weight: bold;
}

/* ===== VALUES SECTION ===== */
.values-section {
    background: var(--dark-secondary);
}

.value-card {
    background: var(--dark-tertiary);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.value-card:hover::before {
    opacity: 0.1;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 10px 30px rgba(75, 172, 254, 0.3);
}

.value-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.value-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .hero-title span {
        display: block;
        margin-bottom: 0.1rem;
    }

    .hero-title span[data-translate="hero-welcome"] {
        font-size: 1.5rem;
        opacity: 1;
        visibility: visible;
        display: block !important;
        color: var(--text-light);
        margin-bottom: 0.2rem;
    }

    /* Optimize videos for mobile performance */
    .hero-video {
        display: block;
        /* Reduce quality on mobile for better performance */
        filter: blur(0.5px);
        opacity: 0.8;
    }

    /* Show portfolio video on mobile with optimization */
    .portfolio-bg-video {
        display: block;
        /* Reduce quality on mobile for better performance */
        filter: blur(0.5px);
        opacity: 0.7;
    }

    /* Enhance overlay for better text readability on mobile */
    .portfolio-preview {
        background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a2a2a 100%);
    }

    .portfolio-video-overlay {
        background: rgba(0, 0, 0, 0.6);
    }

    .video-overlay {
        background: rgba(0, 0, 0, 0.6);
    }

    /* Hide video indicators on mobile */
    .video-indicators {
        display: none;
    }

    /* Adjust WhatsApp button for mobile */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-btn {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }

    /* Adjust scroll to top button for mobile */
    .scroll-to-top {
        bottom: 85px !important;
        right: 20px !important;
        width: 45px !important;
        height: 45px !important;
        font-size: 1rem !important;
    }

    /* Add fallback background for mobile */
    .hero-background {
        background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a2a2a 100%);
    }

    .video-overlay {
        background: rgba(0, 0, 0, 0.3);
    }

    .hero-visual-element {
        width: 250px;
        height: 250px;
        margin: 2rem auto;
    }

    .tech-circle {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .gradient-text {
        font-size: 1.8rem;
        letter-spacing: 1px;
        line-height: 1.4;
    }

    .hero-company-text {
        font-size: 1.8rem;
        letter-spacing: 1px;
        line-height: 1.4;
    }

    .typing-effect {
        /* تم إزالة تأثير الكتابة في الشاشات الصغيرة أيضاً */
        white-space: normal;
        border: none;
    }

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

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

    .hero-buttons {
        text-align: center;
        margin-top: 2rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .hero-buttons .btn {
        margin-bottom: 0;
        width: 80%;
        max-width: 280px;
        padding: 12px 20px;
        font-size: 1rem;
        border-radius: 25px;
    }

    .floating-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .value-point {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    .value-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .value-card .card-body {
        padding: 1.5rem;
    }

    .value-content {
        padding: 1rem 0;
        margin-bottom: 2rem;
    }

    .value-visual {
        padding: 1rem 0;
    }

    .about-image img {
        height: 250px;
    }

    .vision-card,
    .mission-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .value-card {
        margin-bottom: 1.5rem;
    }

    /* تحسين النصوص في الهاتف */
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
        text-align: center;
        padding: 0 1rem;
        margin-bottom: 2rem;
    }

    /* تحسين المحتوى العام */
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    /* تحسين المسافات */
    .hero-section {
        padding: 80px 0 60px;
    }
}

/* ===== EXTRA SMALL SCREENS ===== */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-title span[data-translate="hero-welcome"] {
        font-size: 1.3rem;
    }

    .gradient-text {
        font-size: 1.6rem;
    }

    .hero-company-text {
        font-size: 1.6rem;
    }

    .hero-buttons .btn {
        width: 90%;
        padding: 10px 16px;
        font-size: 0.95rem;
    }

    .hero-visual-element {
        width: 200px;
        height: 200px;
    }

    .tech-circle {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }

    .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .value-point {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .value-icon {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .value-text h5 {
        font-size: 1rem;
    }

    .value-text p {
        font-size: 0.9rem;
    }

    .feature-item {
        padding: 0.6rem;
        font-size: 0.9rem;
    }

    /* WhatsApp button for very small screens */
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    /* Scroll to top button for very small screens */
    .scroll-to-top {
        bottom: 75px !important;
        right: 15px !important;
        width: 40px !important;
        height: 40px !important;
        font-size: 0.9rem !important;
    }

    /* Further optimize videos for very small screens */
    .hero-video {
        filter: blur(1px);
        opacity: 0.6;
    }

    .portfolio-bg-video {
        filter: blur(1px);
        opacity: 0.5;
    }

    /* Stronger overlay for better readability */
    .video-overlay {
        background: rgba(0, 0, 0, 0.7);
    }

    .portfolio-video-overlay {
        background: rgba(0, 0, 0, 0.7);
    }
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: var(--dark-secondary);
}

.contact-form-wrapper {
    background: var(--dark-tertiary);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form .form-label {
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.contact-form .form-control,
.contact-form .form-select {
    background: var(--dark-bg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: var(--text-light);
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    background: var(--dark-bg);
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
    color: var(--text-light);
}

.contact-form .form-control::placeholder {
    color: var(--text-muted);
}

.contact-info {
    background: var(--dark-tertiary);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: fit-content;
}

.contact-info h3 {
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    flex-shrink: 0;
    font-size: 1.2rem;
    color: white;
    box-shadow: 0 5px 15px var(--glow-color);
}

.contact-details h5 {
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-details p {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

.social-media {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-media h5 {
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* ===== MAP SECTION ===== */
.map-section {
    background: var(--dark-bg);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ===== FAQ SECTION ===== */
.faq-section {
    background: var(--dark-secondary);
}

.accordion {
    --bs-accordion-bg: var(--dark-tertiary);
    --bs-accordion-border-color: rgba(255, 255, 255, 0.1);
    --bs-accordion-btn-bg: var(--dark-tertiary);
    --bs-accordion-btn-color: var(--text-light);
    --bs-accordion-active-bg: var(--dark-bg);
    --bs-accordion-active-color: var(--text-light);
}

.accordion-item {
    background: var(--dark-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px !important;
    margin-bottom: 1rem;
}

.accordion-button {
    background: var(--dark-tertiary);
    color: var(--text-light);
    border: none;
    font-weight: 500;
    padding: 1.25rem 1.5rem;
}

.accordion-button:not(.collapsed) {
    background: var(--dark-bg);
    color: var(--text-light);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    background: var(--dark-bg);
    color: var(--text-muted);
    line-height: 1.7;
    padding: 1.5rem;
}

/* ===== RESPONSIVE CONTACT ===== */
@media (max-width: 768px) {
    .contact-form-wrapper,
    .contact-info {
        padding: 2rem;
        margin-bottom: 2rem;
    }

    .contact-item {
        margin-bottom: 1.5rem;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .map-container iframe {
        height: 300px;
    }
}

/* ===== PORTFOLIO STYLES ===== */
.portfolio-filter {
    background: var(--dark-secondary);
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.filter-btn {
    background: var(--dark-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-gradient);
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--glow-color);
}

.portfolio-grid {
    background: var(--dark-bg);
}

.portfolio-card {
    background: var(--dark-secondary);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.portfolio-content {
    text-align: center;
    color: white;
    padding: 20px;
}

.portfolio-content h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.portfolio-content p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.portfolio-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.portfolio-buttons .btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.portfolio-info {
    padding: 1.5rem;
}

.portfolio-info h6 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.portfolio-category {
    color: var(--text-muted);
    font-size: 0.9rem;
    background: var(--dark-tertiary);
    padding: 4px 12px;
    border-radius: 15px;
    display: inline-block;
}

/* ===== PORTFOLIO ANIMATIONS ===== */
.portfolio-item {
    transition: all 0.3s ease;
}

.portfolio-animate {
    animation: portfolioFadeIn 0.6s ease forwards;
}

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

/* ===== LIGHTBOX CUSTOMIZATION ===== */
.lb-data .lb-caption {
    font-family: 'Cairo', sans-serif;
    color: white;
    font-size: 1rem;
}

.lb-data .lb-number {
    font-family: 'Cairo', sans-serif;
    color: var(--text-muted);
}

/* ===== PORTFOLIO RESPONSIVE ===== */
@media (max-width: 768px) {
    .filter-buttons {
        gap: 10px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .portfolio-image {
        height: 200px;
    }

    .portfolio-info {
        padding: 1rem;
    }

    .portfolio-content {
        padding: 15px;
    }

    .portfolio-content h5 {
        font-size: 1rem;
    }

    .portfolio-buttons .btn {
        width: 35px;
        height: 35px;
    }
}

/* ===== SERVICE PAGES STYLES ===== */
.service-header {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--dark-bg);
}

.service-header-content {
    padding: 2rem 0;
}

.service-icon-large {
    width: 100px;
    height: 100px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 3rem;
    color: white;
    box-shadow: 0 15px 40px var(--glow-color);
}

.service-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.service-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-buttons {
    margin-top: 2rem;
}

.service-header-image {
    position: relative;
    text-align: center;
}

/* ===== SERVICE FEATURES ===== */
.service-features {
    background: var(--dark-secondary);
}

.feature-card {
    background: var(--dark-tertiary);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.feature-card:hover::before {
    opacity: 0.1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(75, 172, 254, 0.3);
}

.feature-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ===== SERVICE PROCESS ===== */
.service-process {
    background: var(--dark-bg);
}

.process-step {
    text-align: center;
    position: relative;
    padding: 2rem 1rem;
}

.step-number {
    position: absolute;
    top: -10px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px var(--glow-color);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--dark-secondary);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #667eea;
    transition: all 0.3s ease;
}

.process-step:hover .step-icon {
    background: var(--primary-gradient);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 10px 30px var(--glow-color);
}

.process-step h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.process-step p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ===== SERVICE PACKAGES ===== */
.service-packages {
    background: var(--dark-secondary);
}

.package-card {
    background: var(--dark-tertiary);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.package-card.featured {
    border-color: #667eea;
    transform: scale(1.05);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.package-card.featured:hover {
    transform: translateY(-10px) scale(1.05);
}

.package-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--primary-gradient);
    color: white;
    padding: 5px 40px;
    font-size: 0.9rem;
    font-weight: 600;
    transform: rotate(45deg);
    box-shadow: 0 5px 15px var(--glow-color);
}

.package-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.package-header h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.package-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.package-price .currency {
    font-size: 1rem;
    color: var(--text-muted);
}

.package-price .amount {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.package-features {
    padding: 2rem;
}

.package-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.package-features li i {
    color: #4CAF50;
    margin-left: 10px;
    font-size: 1.1rem;
}

.package-footer {
    padding: 0 2rem 2rem;
}

/* ===== SERVICE CTA ===== */
.service-cta {
    background: var(--dark-bg);
}

/* ===== SERVICE RESPONSIVE ===== */
@media (max-width: 768px) {
    .service-title {
        font-size: 2.5rem;
    }

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

    .service-icon-large {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }

    .feature-card,
    .process-step {
        padding: 2rem 1rem;
        margin-bottom: 2rem;
    }

    .package-card.featured {
        transform: none;
        margin-bottom: 2rem;
    }

    .package-card.featured:hover {
        transform: translateY(-5px);
    }

    .package-price .amount {
        font-size: 2rem;
    }

    .step-number {
        right: 10px;
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* ===== UTILITY CLASSES ===== */
.align-items-center {
    align-items: center !important;
}

.min-vh-100 {
    min-height: 100vh !important;
}

.text-center {
    text-align: center !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}


