/* Extracted styles from new design.htm */
:root {
    --primary-color: #6366f1;
    --secondary-color: #a855f7;
    --dark-bg: #0f172a;
    --glass-white: rgba(255, 255, 255, 0.05);
    --main-gradient: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
}

body {
    font-family: 'Cairo', sans-serif;
    background-color: #f8fafc;
    color: #1e293b;
    overflow-x: hidden;
}

/* Navbar Modernization */
.navbar {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 18px 0;
    transition: all 0.3s;
}

/* Hero Section */
.hero-premium {
    height: 95vh;
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.8)), 
                url('https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1500&q=80');
    background-attachment: fixed;
    background-size: cover;
    display: flex;
    align-items: center;
    color: white;
    clip-path: ellipse(150% 100% at 50% 0%);
}

.hero-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    background: linear-gradient(to right, #fff, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn-main {
    background: var(--main-gradient);
    color: white;
    padding: 14px 40px;
    border-radius: 12px;
    font-weight: 700;
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 10px 20px -10px #6366f1;
}

.btn-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 30px -10px #6366f1;
    color: white;
}

/* Card styles */
.premium-card {
    background: white;
    border-radius: 24px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
}
.premium-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px -15px rgba(0,0,0,0.1);
}
.card-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-color);
    z-index: 2;
}

.blog-tag {
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    font-weight: 800;
}

.glass-contact {
    background: var(--main-gradient);
    border-radius: 40px;
    padding: 60px;
    color: white;
    position: relative;
    overflow: hidden;
}
.glass-contact::before {
    content: '';
    position: absolute;
    width: 300px; height: 300px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    top: -100px; right: -100px;
}

footer {
    background: var(--dark-bg);
    padding: 80px 0 30px;
    color: #94a3b8;
}

@media (max-width: 768px) {
    .hero-premium { height: 80vh; text-align: center; clip-path: none; }
    .glass-contact { padding: 30px 20px; border-radius: 20px; }
    .btn-main { width: 100%; margin-bottom: 10px; }
}
