/* Global Styles */
:root {
    --primary-gold: #D4AF37;
    --secondary-gold: #AA8C2C;
    --dark-green: #0b3d0b;
    --light-green: #2E8B57;
    --dark-bg: #121212;
    --darker-bg: #0a0a0a;
    --card-bg: #1e1e1e;
    --text-light: #f4f4f4;
    --text-grey: #cccccc;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-light);
    overflow-x: hidden;
    direction: rtl;
    text-align: right;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-weight: 700;
}

p {
    color: var(--text-grey);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Section Common */
section {
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

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

.section-title {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

.section-title h2 {
    font-size: 2.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
    display: inline-block;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-gold);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-gold);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.nav-links li a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
    position: relative;
    padding: 5px 0;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: var(--transition);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--primary-gold);
}

.hamburger {
    display: none;
    cursor: pointer;
    color: var(--primary-gold);
    font-size: 1.5rem;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 0;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.8), rgba(11, 61, 11, 0.4));
    z-index: 1;
}

.hero-content {
    max-width: 900px;
    padding: 40px;
    z-index: 2;
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    border-radius: 10px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: #fff;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    color: #eee;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.8);
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-gold);
    color: #000;
    font-weight: bold;
    font-size: 1.1rem;
    border-radius: 50px;
    border: 2px solid var(--primary-gold);
    transition: var(--transition);
    cursor: pointer;
}

.btn:hover {
    background: transparent;
    color: var(--primary-gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

/* About Section */
.about {
    background: var(--darker-bg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
}

.about-list {
    margin: 30px 0;
}

.about-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
}

.about-list li i {
    color: var(--primary-gold);
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-gold);
}

.stat .label {
    color: var(--text-grey);
}

.about-image-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(12, 1fr);
    height: 500px;
    position: relative;
}

.about-image-grid img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 2px solid var(--primary-gold);
}

.about-image-grid .img-1 {
    grid-column: 1 / 9;
    grid-row: 1 / 10;
    z-index: 1;
}

.about-image-grid .img-2 {
    grid-column: 5 / 13;
    grid-row: 4 / 13;
    z-index: 2;
    border-color: var(--light-green);
}

/* Services Section */
.services {
    background: linear-gradient(to bottom, var(--dark-bg), var(--card-bg));
}

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

.service-card {
    background: var(--darker-bg);
    padding: 40px 30px;
    border-radius: 15px;
    border: 1px solid #333;
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gold);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    color: var(--primary-gold);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary-gold);
    color: var(--dark-bg);
}

/* Gallery Section */
.gallery {
    background: var(--darker-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 15px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    cursor: pointer;
}

.gallery-item img, .gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.item-1 { grid-column: 1 / 3; }
.item-2 { grid-column: 3 / 5; }
.item-3 { grid-column: 1 / 2; }
.item-4 { grid-column: 2 / 3; }
.item-video { grid-column: 3 / 5; border: 2px solid var(--primary-gold); }

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 1000px;
    max-height: 80vh;
    object-fit: contain;
    animation-name: zoom;
    animation-duration: 0.6s;
}

@keyframes zoom {
    from {transform:scale(0)}
    to {transform:scale(1)}
}

.close-lightbox {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 2001;
}

.close-lightbox:hover,
.close-lightbox:focus {
    color: var(--primary-gold);
    text-decoration: none;
    cursor: pointer;
}

/* Team Section */
.team {
    background: var(--dark-bg);
}

.team-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
}

.team-member {
    background: var(--card-bg);
    width: 380px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 1px solid #333;
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
}

.team-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: top;
    filter: grayscale(20%);
    transition: var(--transition);
}

.team-member:hover .team-img {
    filter: grayscale(0%);
}

.team-placeholder {
    height: 400px;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-grey);
}

.team-info {
    padding: 30px;
    text-align: center;
}

.team-info h3 {
    margin-bottom: 5px;
    color: #fff;
    font-size: 1.5rem;
}

.team-info span {
    color: var(--primary-gold);
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Why Us */
.why-us {
    background: var(--darker-bg);
}

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

.feature-item {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid #333;
    transition: var(--transition);
}

.feature-item:hover {
    border-color: var(--primary-gold);
}

.feature-icon {
    min-width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
}

.feature-item p {
    margin: 0;
    color: var(--text-light);
    font-weight: 500;
}

/* Contact/Footer */
.contact {
    background: #050505;
    padding-bottom: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid #333;
}

.footer-col h3 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #222;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    border: 1px solid #444;
}

.social-links a:hover {
    background: var(--primary-gold);
    color: #000;
    border-color: var(--primary-gold);
}

.footer-col p {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col p i {
    color: var(--primary-gold);
    width: 20px;
}

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

.quick-links li a {
    color: var(--text-grey);
}

.quick-links li a:hover {
    color: var(--primary-gold);
    padding-right: 10px;
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    background: #000;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 991px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 250px);
    }

    .item-1 { grid-column: 1 / 2; }
    .item-2 { grid-column: 2 / 3; }
    .item-3 { grid-column: 1 / 2; }
    .item-4 { grid-column: 2 / 3; }
    .item-video { grid-column: 1 / 3; }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        position: fixed;
        background: rgba(0,0,0,0.95);
        height: 100vh;
        width: 100%;
        top: 0;
        right: -100%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s;
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: block;
        z-index: 1000;
    }

    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image-grid {
        height: 400px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .gallery-item {
        height: 300px;
        grid-column: auto !important;
    }
}
