:root {
    --primary-color: #0f172a;
    --secondary-color: #fbbf24;
    --accent-color: #334155;
    --text-light: #f8fafc;
    --text-dark: #1e293b;
    --white: #ffffff;
    --transition: all 0.3s ease;
    --glass: rgba(255, 255, 255, 0.1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Reset & Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Tajawal', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #f1f5f9;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

header.scrolled {
    background: var(--primary-color);
    padding: 10px 0;
    box-shadow: var(--shadow);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
}

.logo span {
    color: var(--secondary-color);
    margin-right: 5px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links li a {
    color: var(--white);
    font-weight: 500;
}

.nav-links li a:hover {
    color: var(--secondary-color);
}

.mobile-menu-btn {
    display: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.8)), url('https://images.unsplash.com/photo-1611974714658-05111b05d41a?auto=format&fit=crop&q=80&w=2070') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #cbd5e1;
}

.btn {
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(251, 191, 36, 0.4);
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
    margin-right: 15px;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Services */
.services {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.section-title .underline {
    width: 70px;
    height: 5px;
    background: var(--secondary-color);
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
}

.icon-box {
    width: 80px;
    height: 80px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--secondary-color);
    font-size: 2rem;
}

/* Rates Section */
.rates-section {
    background-color: var(--primary-color);
    padding: 100px 0;
    color: var(--white);
}

.rates-section .section-title h2 {
    color: var(--white);
}

.rates-table-wrapper {
    overflow-x: auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.rates-table {
    width: 100%;
    border-collapse: collapse;
    text-align: right;
}

.rates-table th, .rates-table td {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.rates-table th {
    color: var(--secondary-color);
}

.rate-up { color: #10b981; }
.rate-down { color: #ef4444; }

/* About Section */
.about {
    padding: 100px 0;
}

.about-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.about-text ul li {
    margin-bottom: 20px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-text ul li i {
    color: var(--secondary-color);
}

.about-img {
    flex: 1;
    height: 400px;
    background: url('https://images.unsplash.com/photo-1579621970563-ebec7560ff3e?auto=format&fit=crop&q=80&w=2071') center/cover;
    border-radius: 20px;
    position: relative;
    box-shadow: var(--shadow);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 30px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 1.5rem;
    box-shadow: var(--shadow);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #e2e8f0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
}

.info-item i {
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.contact-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
}

.deco-card {
    background: var(--primary-color);
    color: var(--white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
}

.deco-card i {
    font-size: 3rem;
    color: #25d366;
    margin-bottom: 20px;
    display: block;
}

/* Footer */
footer {
    background: #020617;
    color: var(--white);
    padding: 60px 0 20px;
    text-align: center;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.social-icons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icons a i {
    font-size: 1.5rem;
}

/* Responsive */
@media (max-width: 968px) {
    .nav-links {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
    .about-flex {
        flex-direction: column;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .about-img {
        width: 100%;
        height: 300px;
    }
    .experience-badge {
        right: 0;
        bottom: 10px;
        padding: 15px;
    }
}
