/* ========================================
   AWS Company - نظام التصميم الاحترافي العصري
   Glassmorphism Design with Gold & Black Theme
   ======================================== */

/* استيراد الخطوط العربية والإنجليزية */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;900&family=Tajawal:wght@300;400;500;700;900&family=Playfair+Display:wght@400;600;700;900&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ========== المتغيرات العامة ========== */
:root {
    /* الألوان الذهبية الفاخرة */
    --gold-primary: #D4AF37;
    --gold-dark: #B8941E;
    --gold-light: #F4E4B0;
    --gold-metallic: linear-gradient(135deg, #D4AF37 0%, #F4E4B0 50%, #D4AF37 100%);

    /* الألوان السوداء */
    --black-primary: #000000;
    --black-soft: #1A1A1A;
    --black-lighter: #2D2D2D;

    /* الخلفية البيضاء الزجاجية */
    --white-pure: #FFFFFF;
    --white-glass: rgba(255, 255, 255, 0.85);
    --white-glass-dark: rgba(255, 255, 255, 0.6);

    /* تدرجات Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);

    /* تدرجات ذهبية متقدمة */
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #FFE17B 50%, #D4AF37 100%);
    --gradient-gold-radial: radial-gradient(circle, #FFE17B 0%, #D4AF37 100%);
    --gradient-black-gold: linear-gradient(135deg, #000000 0%, #2D2D2D 50%, #D4AF37 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.05) 100%);

    /* الخطوط */
    --font-arabic: 'Cairo', 'Tajawal', sans-serif;
    --font-english: 'Poppins', 'Playfair Display', serif;
    --font-display: 'Playfair Display', serif;

    /* الظلال المتقدمة */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 12px 60px rgba(0, 0, 0, 0.2);
    --shadow-gold: 0 4px 30px rgba(212, 175, 55, 0.3);
    --shadow-gold-strong: 0 8px 40px rgba(212, 175, 55, 0.5);

    /* الانتقالات */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* المسافات */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Border Radius */
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --radius-xl: 40px;
}

/* ========== إعدادات أساسية ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-arabic);
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F8F8 100%);
    color: var(--black-primary);
    line-height: 1.8;
    direction: rtl;
    text-align: right;
    overflow-x: hidden;
    position: relative;
}

/* خلفية متحركة بالجزيئات الذهبية */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(212, 175, 55, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: backgroundMove 20s ease infinite;
}

@keyframes backgroundMove {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(10px, -10px) scale(1.02);
    }

    66% {
        transform: translate(-10px, 10px) scale(0.98);
    }
}

/* تنسيق عام */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul,
ol {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    position: relative;
    z-index: 1;
}

/* ========== HEADER - الترويسة الاحترافية ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--white-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--gold-primary);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    min-height: 90px;
}

/* Logo Container */
.logo-container {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    cursor: pointer;
    transition: var(--transition-normal);
}

.logo-container:hover {
    transform: translateY(-2px);
}

.logo-image {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: 3px solid var(--gold-primary);
    object-fit: cover;
    box-shadow: var(--shadow-gold);
    transition: var(--transition-normal);
    background: var(--white-pure);
    padding: 2px;
}

.logo-container:hover .logo-image {
    border-color: var(--gold-light);
    box-shadow: var(--shadow-gold-strong);
    transform: rotate(5deg) scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.logo-main {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.logo-sub {
    font-size: 0.85rem;
    color: var(--black-soft);
    font-weight: 500;
    opacity: 0.9;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--black-primary);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    position: relative;
    transition: var(--transition-normal);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: var(--transition-normal);
    transform: translateX(50%);
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold-primary);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 80%;
}

/* Language Toggle Button */
.lang-toggle {
    background: var(--gradient-gold);
    color: var(--black-primary);
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    box-shadow: var(--shadow-gold);
    transition: var(--transition-normal);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lang-toggle:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold-strong);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--gold-primary);
    border-radius: 3px;
    transition: var(--transition-normal);
}

/* ========== HERO SECTION ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 0 4rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.4);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(212, 175, 55, 0.3) 100%);
    z-index: 1;
}

.about-content {
    position: relative;
    z-index: 2;
    background: var(--white-glass);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    padding: 4rem;
    border-radius: var(--radius-xl);
    border: 2px solid var(--glass-border);
    box-shadow: var(--shadow-xl);
    max-width: 1100px;
    margin: 0 auto;
}

.about-content h3 {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    text-align: center;
    font-family: var(--font-display);
}

.about-content p {
    font-size: 1.2rem;
    color: var(--black-soft);
    line-height: 2;
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Features List */
.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    background: var(--white-glass-dark);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
    transition: var(--transition-normal);
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold);
    border-color: var(--gold-primary);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-gold);
}

.feature-icon i {
    font-size: 1.8rem;
    color: var(--black-primary);
}

.feature-content h4 {
    font-size: 1.3rem;
    color: var(--black-primary);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.feature-content p {
    font-size: 1rem;
    color: var(--black-lighter);
    margin: 0;
}

/* ========== STATS SECTION ========== */
.stats {
    background: var(--gradient-black-gold);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="%23D4AF37" opacity="0.1"/></svg>');
    opacity: 0.1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    color: var(--white-pure);
    padding: 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
    transition: var(--transition-normal);
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold-strong);
    border-color: var(--gold-primary);
}

.stat-number {
    display: block;
    font-size: 4rem;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-family: var(--font-display);
}

.stat-label {
    display: block;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white-pure);
    opacity: 0.9;
}

/* ========== SECTION STYLES ========== */
.section {
    padding: 6rem 0;
    position: relative;
}

.section-light {
    background: var(--white-pure);
}

.section-gradient {
    background: linear-gradient(135deg, #F8F8F8 0%, #FFFFFF 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-black-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-family: var(--font-display);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--black-lighter);
    max-width: 700px;
    margin: 1.5rem auto 0;
    line-height: 1.8;
}

/* ========== GRID LAYOUTS ========== */
.grid {
    display: grid;
    gap: 2.5rem;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* ========== SERVICE CARDS ========== */
.service-card {
    background: var(--white-glass);
    backdrop-filter: blur(15px);
    padding: 3rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--glass-border);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-gold-strong);
    border-color: var(--gold-primary);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-gold);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: var(--shadow-gold);
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--black-primary);
}

.service-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--black-primary);
    margin-bottom: 1rem;
}

.service-description {
    font-size: 1.1rem;
    color: var(--black-lighter);
    line-height: 1.8;
}

/* ========== GALLERY ========== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    height: 300px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-gold-strong);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-black-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
    opacity: 0.9;
}

.gallery-overlay i {
    font-size: 3rem;
    color: var(--gold-light);
}

/* ========== CARDS ========== */
.card {
    background: var(--white-glass);
    backdrop-filter: blur(15px);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid var(--glass-border);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold-strong);
    border-color: var(--gold-primary);
}

.card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-body {
    padding: 2rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black-primary);
    margin-bottom: 1rem;
}

.card-text {
    font-size: 1.05rem;
    color: var(--black-lighter);
    line-height: 1.8;
}

/* ========== CONTACT SECTION ========== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    background: var(--white-glass);
    backdrop-filter: blur(15px);
    padding: 3rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--glass-border);
    box-shadow: var(--shadow-md);
}

.contact-info h3 {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.contact-info>p {
    color: var(--black-lighter);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--white-glass-dark);
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-gold);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--black-primary);
}

.contact-details h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--black-primary);
    margin-bottom: 0.5rem;
}

.contact-details p {
    font-size: 1rem;
    color: var(--black-lighter);
    margin: 0.3rem 0;
}

/* Contact Form */
.contact-form {
    background: var(--white-glass);
    backdrop-filter: blur(15px);
    padding: 3rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--glass-border);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--black-primary);
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border: 2px solid var(--glass-border);
    border-radius: var(--radius-sm);
    background: var(--white-pure);
    color: var(--black-primary);
    transition: var(--transition-normal);
    font-family: var(--font-arabic);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-gold);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-normal);
    font-family: var(--font-arabic);
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--black-primary);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold-strong);
}

/* ========== FOOTER ========== */
.footer {
    background: var(--gradient-black-gold);
    color: var(--white-pure);
    padding: 4rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-links h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-normal);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--gold-light);
    padding-right: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white-pure);
    border: 1px solid var(--glass-border);
    transition: var(--transition-normal);
}

.social-link:hover {
    background: var(--gradient-gold);
    color: var(--black-primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-md);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* ========== SCROLL ANIMATIONS ========== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ========== ANIMATIONS ========== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    ```css box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold-strong);
}

/* ========== FOOTER ========== */
.footer {
    background: var(--gradient-black-gold);
    color: var(--white-pure);
    padding: 4rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-links h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-normal);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--gold-light);
    padding-right: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white-pure);
    border: 1px solid var(--glass-border);
    transition: var(--transition-normal);
}

.social-link:hover {
    background: var(--gradient-gold);
    color: var(--black-primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-md);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* ========== SCROLL ANIMATIONS ========== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ========== ANIMATIONS ========== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .mt-1 {
        margin-top: var(--spacing-xs);
    }

    .mt-2 {
        margin-top: var(--spacing-sm);
    }

    .mt-3 {
        margin-top: var(--spacing-md);
    }

    .mt-4 {
        margin-top: var(--spacing-lg);
    }

    .mb-1 {
        margin-bottom: var(--spacing-xs);
    }

    .mb-2 {
        margin-bottom: var(--spacing-sm);
    }

    .mb-3 {
        margin-bottom: var(--spacing-md);
    }

    .mb-4 {
        margin-bottom: var(--spacing-lg);
    }
}

@media (max-width: 768px) {

    /* Header & Navigation */
    .navbar {
        padding: 0.8rem 1rem;
        min-height: 70px;
    }

    .logo-container {
        gap: 0.8rem;
        z-index: 1001;
    }

    .logo-image {
        width: 50px;
        height: 50px;
        border-width: 2px;
    }

    .logo-main {
        font-size: 1.2rem;
    }

    .logo-sub {
        font-size: 0.75rem;
    }

    /* Mobile Menu */
    .nav-menu {
        position: fixed;
        right: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        height: calc(100vh - 70px);
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transition: all 0.3s ease;
        gap: 0;
        align-items: stretch;
        overflow-y: auto;
        z-index: 1000;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .nav-link {
        display: block;
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
        border-radius: var(--radius-sm);
        background: rgba(212, 175, 55, 0.05);
        margin-bottom: 0.5rem;
    }

    .nav-link::before {
        display: none;
    }

    .nav-link.active,
    .nav-link:hover {
        background: var(--gradient-gold);
        color: var(--black-primary);
    }

    .lang-toggle {
        width: 100%;
        justify-content: center;
        padding: 1rem;
        margin-top: 1rem;
    }

    .menu-toggle {
        display: flex;
        z-index: 1001;
    }

    /* Content */
    .container {
        padding: 0 1rem;
    }

    .hero {
        padding: 6rem 0 3rem;
        min-height: auto;
    }

    .about-content {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }

    .about-content h3 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .about-content p {
        font-size: 1rem;
        line-height: 1.8;
        margin-bottom: 1rem;
    }

    /* Features */
    .features-list {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }

    .feature-item {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
    }

    .feature-icon i {
        font-size: 1.5rem;
    }

    .feature-content h4 {
        font-size: 1.1rem;
    }

    .feature-content p {
        font-size: 0.95rem;
    }

    /* Stats */
    .stats {
        padding: 3rem 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-item {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .stat-label {
        font-size: 1.1rem;
    }

    /* Sections */
    .section {
        padding: 4rem 0;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    /* Grids */
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    /* Service Cards */
    .service-card {
        padding: 2rem 1.5rem;
    }

    .service-icon {
        width: 70px;
        height: 70px;
    }

    .service-icon i {
        font-size: 2rem;
    }

    .service-title {
        font-size: 1.4rem;
    }

    .service-description {
        font-size: 1rem;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .gallery-item {
        height: 250px;
    }

    /* Cards */
    .card-body {
        padding: 1.5rem;
    }

    .card-title {
        font-size: 1.3rem;
    }

    .card-text {
        font-size: 0.95rem;
    }

    /* Contact */
    .contact-wrapper {
        gap: 2rem;
    }

    .contact-info,
    .contact-form {
        padding: 2rem 1.5rem;
    }

    .contact-info h3 {
        font-size: 1.6rem;
    }

    .contact-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .contact-item:hover {
        transform: translateY(-5px);
    }

    /* Footer */
    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .footer-brand h3 {
        font-size: 1.6rem;
    }

    .footer-links h4 {
        font-size: 1.2rem;
    }

    .social-links {
        justify-content: center;
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {
    .logo-main {
        font-size: 1rem;
    }

    .logo-sub {
        font-size: 0.7rem;
    }

    .logo-image {
        width: 45px;
        height: 45px;
    }

    .navbar {
        min-height: 65px;
    }

    .nav-menu {
        top: 65px;
        height: calc(100vh - 65px);
    }

    .about-content {
        padding: 1.5rem 1rem;
    }

    .about-content h3 {
        font-size: 1.5rem;
    }

    .about-content p {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .service-card {
        padding: 1.5rem 1rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

/* ========== UTILITY CLASSES ========== */
.text-center {
    text-align: center;
}

.mt-1 {
    margin-top: var(--spacing-xs);
}

.mt-2 {
    margin-top: var(--spacing-sm);
}

.mt-3 {
    margin-top: var(--spacing-md);
}

.mt-4 {
    margin-top: var(--spacing-lg);
}

.mb-1 {
    margin-bottom: var(--spacing-xs);
}

.mb-2 {
    margin-bottom: var(--spacing-sm);
}

.mb-3 {
    margin-bottom: var(--spacing-md);
}

.mb-4 {
    margin-bottom: var(--spacing-lg);
}

/* ========== ENGLISH STYLES ========== */
[lang="en"] {
    direction: ltr;
    text-align: left;
    font-family: var(--font-english);
}

[lang="en"] .nav-link::before {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
}

[lang="en"] .section-title::after {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
}

[lang="en"] .footer-links a:hover {
    padding-right: 0;
    padding-left: 5px;
}

[lang="en"] .contact-item:hover {
    transform: translateX(-10px);
}

```