:root {
    --primary-blue: #003399;
    --primary-blue-glow: rgba(0, 51, 153, 0.4);
    --accent-gold: #FFCC00;
    --accent-gold-glow: rgba(255, 204, 0, 0.5);
    --bg-dark: #050a15;
    --bg-card: rgba(14, 25, 50, 0.7);
    --text-white: #ffffff;
    --text-gray: #b0b0b0;
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

body.en {
    font-family: 'Outfit', sans-serif;
    direction: ltr;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Language Switcher */
.lang-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
}

#lang-toggle {
    background: var(--bg-card);
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 8px 16px;
    border-radius: 30px;
    cursor: pointer;
    backdrop-filter: blur(10px);
    font-weight: 700;
    transition: var(--transition-fast);
    box-shadow: 0 0 15px var(--accent-gold-glow);
}

#lang-toggle:hover {
    background: var(--accent-gold);
    color: var(--bg-dark);
    box-shadow: 0 0 25px var(--accent-gold);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(5, 10, 21, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    padding: 15px 0;
}

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

.logo {
    display: flex;
    flex-direction: column;
}

.logo span {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--accent-gold);
    line-height: 1;
}

.logo small {
    font-size: 0.8rem;
    color: var(--text-gray);
    letter-spacing: 2px;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-white);
    font-weight: 600;
    transition: var(--transition-fast);
}

.nav-links a:hover {
    color: var(--accent-gold);
}

.cta-nav {
    background: var(--primary-blue);
    padding: 8px 20px;
    border-radius: 5px;
    box-shadow: 0 0 15px var(--primary-blue-glow);
}

.cta-nav:hover {
    background: var(--accent-gold) !important;
    color: var(--bg-dark) !important;
    box-shadow: 0 0 20px var(--accent-gold-glow);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('assets/hero.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent, var(--bg-dark));
}

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

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero h1 .block {
    display: block;
}

.hero h1 .accent {
    color: var(--accent-gold);
    text-shadow: 0 0 20px var(--accent-gold-glow);
}

.subtitle {
    font-size: 1.5rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition-fast);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary-blue);
    color: var(--text-white);
    box-shadow: 0 0 20px var(--primary-blue-glow);
    animation: glow-pulse 3s infinite;
}

.btn-primary:hover {
    background: var(--accent-gold);
    color: var(--bg-dark);
    box-shadow: 0 0 30px var(--accent-gold);
    transform: translateY(-5px);
}

@keyframes glow-pulse {
    0% { box-shadow: 0 0 10px var(--primary-blue-glow); }
    50% { box-shadow: 0 0 25px var(--primary-blue); }
    100% { box-shadow: 0 0 10px var(--primary-blue-glow); }
}

/* Trust Bar */
.trust-bar {
    background: var(--bg-card);
    padding: 30px 0;
    border-top: 1px solid var(--accent-gold);
    border-bottom: 1px solid var(--accent-gold);
    backdrop-filter: blur(10px);
}

.flex-trust {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    color: var(--accent-gold);
}

.trust-item i {
    font-size: 1.5rem;
}

.divider {
    width: 1px;
    height: 30px;
    background: var(--glass-border);
}

/* Services */
.services {
    padding: 100px 0;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-white);
}

.accent-line {
    width: 80px;
    height: 4px;
    background: var(--accent-gold);
    margin: 0 auto;
    border-radius: 2px;
    box-shadow: 0 0 10px var(--accent-gold-glow);
}

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

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition-slow);
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.card-img {
    height: 250px;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.service-card:hover .card-img img {
    transform: scale(1.1);
}

.card-content {
    padding: 30px;
}

.card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--accent-gold);
}

.card-content p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Location */
.location-section {
    padding-bottom: 100px;
}

.map-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.map-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(5, 10, 21, 0.9);
    padding: 20px;
    text-align: center;
    border-top: 1px solid var(--accent-gold);
}

/* Footer */
.main-footer {
    background: #02050b;
    padding: 80px 0 30px;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand h2 {
    color: var(--accent-gold);
    margin-bottom: 20px;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.footer-contact p {
    color: var(--text-gray);
    margin-bottom: 15px;
}

.footer-contact i {
    color: var(--accent-gold);
    margin-right: 10px;
    margin-left: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 1002;
    transition: var(--transition-fast);
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1) rotate(15deg);
    background: #128c7e;
}

@keyframes whatsapp-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .nav-links { display: none; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .hero { height: auto; padding: 150px 0 100px; }
    .flex-trust { flex-direction: column; }
    .divider { display: none; }
}
