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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f0f9ff 0%, #f0fdf4 50%, #fefce8 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    position: relative;
    min-height: 100vh;
    z-index: 10;
}

/* Background Elements - Inspired by brand images */
.bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    animation: fadeIn 2s ease-in-out;
}

/* Brand-inspired geometric shapes */
.bg-circle-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    top: -100px;
    left: -100px;
}

.bg-circle-2 {
    width: 320px;
    height: 320px;
    background: linear-gradient(135deg, #4ade80, #22c55e);
    top: 100px;
    right: -80px;
}

.bg-circle-3 {
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    bottom: 100px;
    left: 20%;
}

.bg-circle-4 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #34d399, #10b981);
    bottom: -150px;
    right: -100px;
    opacity: 0.25;
}

/* Additional geometric elements */
.bg-circle-5 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    top: 300px;
    left: 10%;
    opacity: 0.2;
}

/* Header with brand-inspired styling */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    position: relative;
    z-index: 20;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e293b, #334155);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 24px;
    position: relative;
    overflow: hidden;
}

.logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
}

.brand-name {
    font-size: 28px;
    font-weight: bold;
    color: #1e293b;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lang-button {
    padding: 12px 24px;
    border: 2px solid #1e293b;
    background: transparent;
    color: #1e293b;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.lang-button:hover {
    background: #1e293b;
    color: white;
}

/* Hero Section with brand typography */
.hero {
    text-align: center;
    padding: 80px 32px 120px;
    position: relative;
    z-index: 20;
}

.hero-content {
    max-width: 1024px;
    margin: 0 auto;
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    color: #1e293b;
    margin-bottom: 32px;
    line-height: 1.1;
    animation: fadeIn 1s ease-in-out;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 22px;
    color: #475569;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    animation: fadeIn 1.2s ease-in-out;
    font-weight: 500;
}

.cta-button {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    font-weight: bold;
    padding: 20px 40px;
    border-radius: 12px;
    font-size: 18px;
    border: none;
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(34, 197, 94, 0.3);
    transition: all 0.3s ease;
    animation: fadeIn 1.5s ease-in-out;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    background: linear-gradient(135deg, #16a34a, #15803d);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.4);
}

.cta-button::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;
}

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

/* About Section */
.about {
    padding: 80px 32px;
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 24px;
    margin: 0 32px 80px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 20;
    color: white;
}

.section-content {
    max-width: 1024px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 32px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-text {
    font-size: 20px;
    line-height: 1.7;
    opacity: 0.9;
}

/* Services Section */
.services {
    padding: 80px 32px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 20;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    text-align: center;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #3b82f6, #22c55e, #fbbf24);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e293b, #334155);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 32px;
    box-shadow: 0 10px 25px rgba(30, 41, 59, 0.3);
}

.service-text {
    color: #1e293b;
    font-weight: 700;
    line-height: 1.5;
    font-size: 18px;
}

/* Why Choose Us Section */
.why-choose {
    padding: 80px 32px;
    background: linear-gradient(135deg, #1e293b, #334155);
    margin: 0 32px 80px;
    border-radius: 24px;
    color: white;
    position: relative;
    z-index: 20;
    overflow: hidden;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b, #22c55e, #3b82f6);
}

.section-title-white {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 60px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.why-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.why-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.why-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.why-text {
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Final CTA */
.final-cta {
    text-align: center;
    padding: 80px 32px;
    position: relative;
    z-index: 20;
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px;
    color: #64748b;
    position: relative;
    z-index: 20;
    background: rgba(30, 41, 59, 0.1);
    backdrop-filter: blur(10px);
}

/* RTL Support */
[dir="rtl"] .header {
    direction: rtl;
}

[dir="rtl"] .logo-section {
    flex-direction: row-reverse;
}

[dir="rtl"] .hero-content,
[dir="rtl"] .section-content {
    direction: rtl;
}

[dir="rtl"] .services-grid,
[dir="rtl"] .why-grid {
    direction: rtl;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 20px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero {
        padding: 60px 20px 80px;
    }
    
    .about,
    .why-choose {
        margin: 0 20px 60px;
        padding: 60px 20px;
    }
    
    .services {
        padding: 60px 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .section-title,
    .section-title-white {
        font-size: 32px;
    }
    
    .logo {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .brand-name {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .cta-button {
        padding: 16px 28px;
        font-size: 16px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .section-title,
    .section-title-white {
        font-size: 28px;
    }
}
