/* ============================================
   CREATIVE IDEA - PREMIUM PROFESSIONAL DESIGN
   تصميم احترافي راقي مع توزيع ألوان متناسق
   ============================================ */

/* ===== PREMIUM HEADER - ULTRA PROFESSIONAL ===== */
.premium-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    box-shadow: 0 2px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(0, 108, 222, 0.08);
}

.premium-header.scrolled {
    background: rgba(255, 255, 255, 0.99);
    box-shadow: 0 4px 50px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 108, 222, 0.12);
}

.premium-nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

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

/* ===== PREMIUM LOGO ===== */
.premium-logo {
    display: flex;
    align-items: center;
    gap: 18px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.premium-logo:hover {
    transform: translateY(-2px);
}

.premium-logo-image {
    height: 55px;
    width: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 108, 222, 0.15));
    transition: all 0.3s ease;
}

.premium-logo:hover .premium-logo-image {
    filter: drop-shadow(0 6px 16px rgba(0, 108, 222, 0.25));
}

.premium-logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.premium-logo-main {
    font-size: 24px;
    font-weight: 900;
    background: linear-gradient(135deg, #006cde 0%, #00e1d5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
    line-height: 1;
}

.premium-logo-sub {
    font-size: 11px;
    font-weight: 600;
    color: #666;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* ===== PREMIUM NAVIGATION MENU ===== */
.premium-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.premium-menu li {
    position: relative;
}

.premium-menu li a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    padding: 12px 24px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    border-radius: 12px;
}

/* Background effect on hover */
.premium-menu li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 108, 222, 0.08) 0%, rgba(0, 225, 213, 0.08) 100%);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.premium-menu li a:hover::before {
    opacity: 1;
}

/* Active state with gradient background */
.premium-menu li a.active {
    color: white;
    background: linear-gradient(135deg, #006cde 0%, #00e1d5 100%);
    box-shadow: 0 4px 15px rgba(0, 108, 222, 0.25);
}

.premium-menu li a.active::before {
    opacity: 0;
}

/* Hover color change */
.premium-menu li a:hover {
    color: #006cde;
    transform: translateY(-2px);
}

.premium-menu li a.active:hover {
    color: white;
    box-shadow: 0 6px 20px rgba(0, 108, 222, 0.35);
}

/* ===== PREMIUM CTA BUTTON ===== */
.premium-cta-group {
    display: flex;
    align-items: center;
    gap: 20px;
}

.premium-cta-btn {
    padding: 14px 32px;
    background: linear-gradient(135deg, #006cde 0%, #00e1d5 100%);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    border-radius: 30px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(0, 108, 222, 0.25);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

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

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

.premium-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 108, 222, 0.35);
}

.premium-cta-btn i {
    margin-right: 8px;
}

/* ===== MOBILE MENU TOGGLE ===== */
.premium-mobile-toggle {
    display: none;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #006cde 0%, #00e1d5 100%);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.premium-mobile-toggle span {
    position: absolute;
    width: 20px;
    height: 2px;
    background: white;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s ease;
}

.premium-mobile-toggle span:nth-child(1) {
    top: 12px;
}

.premium-mobile-toggle span:nth-child(2) {
    top: 19px;
}

.premium-mobile-toggle span:nth-child(3) {
    top: 26px;
}

/* ===== HERO SECTION - PREMIUM ===== */
.premium-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #001a33 0%, #003366 30%, #006cde 70%, #00e1d5 100%);
    overflow: hidden;
    padding-top: 100px;
}

.premium-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 225, 213, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(240, 35, 86, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.premium-hero-content {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.premium-hero-text h1 {
    font-size: 64px;
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin-bottom: 30px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.premium-hero-text h1 .highlight {
    background: linear-gradient(135deg, #00e1d5 0%, #f02356 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.premium-hero-text p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 550px;
}

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

.premium-btn-primary {
    padding: 18px 40px;
    background: linear-gradient(135deg, #00e1d5 0%, #f02356 100%);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(240, 35, 86, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.premium-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(240, 35, 86, 0.4);
}

.premium-btn-secondary {
    padding: 18px 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.premium-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* ===== PREMIUM SERVICES SECTION ===== */
.premium-services {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.premium-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.premium-section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(0, 108, 222, 0.1) 0%, rgba(0, 225, 213, 0.1) 100%);
    color: #006cde;
    font-size: 13px;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.premium-section-title {
    font-size: 48px;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.premium-section-title .gradient-text {
    background: linear-gradient(135deg, #006cde 0%, #00e1d5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.premium-section-subtitle {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
}

/* ===== PREMIUM SERVICE CARDS ===== */
.premium-services-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.premium-service-card {
    background: white;
    border-radius: 24px;
    padding: 50px 40px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.premium-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #006cde 0%, #00e1d5 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-service-card:hover::before {
    transform: scaleX(1);
}

.premium-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 108, 222, 0.15);
    border-color: rgba(0, 108, 222, 0.1);
}

/* Different accent colors for each card */
.premium-service-card:nth-child(3n+1) .premium-service-icon {
    background: linear-gradient(135deg, #006cde 0%, #004085 100%);
}

.premium-service-card:nth-child(3n+2) .premium-service-icon {
    background: linear-gradient(135deg, #00e1d5 0%, #008780 100%);
}

.premium-service-card:nth-child(3n+3) .premium-service-icon {
    background: linear-gradient(135deg, #f02356 0%, #901534 100%);
}

.premium-service-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    margin-bottom: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-service-card:hover .premium-service-icon {
    transform: scale(1.1) rotate(-5deg);
}

.premium-service-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.premium-service-description {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.premium-service-link {
    color: #006cde;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.premium-service-link:hover {
    gap: 12px;
    color: #00e1d5;
}

/* ===== PREMIUM STATISTICS ===== */
.premium-stats {
    padding: 100px 0;
    background: linear-gradient(135deg, #006cde 0%, #00e1d5 50%, #006cde 100%);
    position: relative;
    overflow: hidden;
}

.premium-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.5;
}

.premium-stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    position: relative;
    z-index: 2;
}

.premium-stat-item {
    text-align: center;
}

.premium-stat-number {
    font-size: 56px;
    font-weight: 900;
    color: white;
    margin-bottom: 10px;
    display: block;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.premium-stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .premium-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .premium-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 1024px) {
    .premium-menu {
        gap: 4px;
    }
    
    .premium-menu li a {
        padding: 10px 16px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .premium-nav-container {
        padding: 0 20px;
    }
    
    .premium-menu {
        display: none;
    }
    
    .premium-mobile-toggle {
        display: block;
    }
    
    .premium-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .premium-hero-text h1 {
        font-size: 42px;
    }
    
    .premium-services-grid {
        grid-template-columns: 1fr;
    }
    
    .premium-stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
