
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #d4af37;
    --accent-color: #2a2a2a;
    --text-color: #ffffff;
    --text-light: #e0e0e0;
    --bg-light: #1a1a1a;
    --bg-dark: #0f0f0f;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.5);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Cairo', 'Inter', 'Arial', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    background-color: var(--bg-dark);
    direction: rtl;
    text-align: right;
    overflow-x: hidden;
    transition: direction 0.3s ease;
}

body[dir="ltr"] {
    direction: ltr;
    text-align: left;
}

img,
video {
user-select: none;
-webkit-user-drag: none;
}

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

/* Header Styles */
.header {
    background: var(--bg-dark);
    box-shadow: 0 2px 10px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
    width: 100%;
}

.branding-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.logo h1 {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--white);
    margin: 0;
}

.nav {
    width: 100%;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-link {
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

body[dir="ltr"] .nav-link::after {
    right: auto;
    left: 0;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}


.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-inline-start: auto;
    flex-wrap: wrap;
}

/* Language Switcher */
.language-dropdown {
    position: relative;
}

.lang-toggle {
    background: transparent;
    border: 2px solid rgba(212, 175, 55, 0.5);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.lang-toggle:hover,
.lang-toggle:focus-visible {
    border-color: var(--secondary-color);
    outline: none;
}

.lang-caret {
    font-size: 0.8rem;
}

.language-menu {
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: var(--primary-color);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    min-width: 150px;
    box-shadow: 0 10px 25px var(--shadow);
    display: none;
    flex-direction: column;
    z-index: 1200;
}

body[dir="ltr"] .language-menu {
    right: auto;
    left: 0;
}

.language-dropdown.open .language-menu {
    display: flex;
}

.language-menu li {
    width: 100%;
}

.language-menu .lang-btn {
    width: 100%;
    border: none;
    background: transparent;
    color: var(--white);
    text-align: inherit;
    padding: 0.5rem 1rem;
    cursor: pointer;
}

.language-menu .lang-btn:hover,
.language-menu .lang-btn.active {
    background: rgba(212, 175, 55, 0.15);
}

.lang-btn {
    background: transparent;
    border: 2px solid rgba(212, 175, 55, 0.5);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    font-size: 0.9rem;
}

.lang-btn:hover {
    border-color: var(--secondary-color);
    background: rgba(212, 175, 55, 0.1);
}

.lang-btn.active {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white);
}

.nav {
    flex-shrink: 0;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    height: 500px;
    background: var(--bg-dark) url('assets/cover.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(120deg, rgba(0, 0, 0, 0.75), rgba(15, 15, 15, 0.4));
    z-index: 1;
}

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

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.95;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-top: 1rem;
}

/* Vision Section */
.vision-section {
    padding: 5rem 0;
    background: var(--bg-dark);
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    align-items: center;
}

.vision-content {
    max-width: 100%;
}

.vision-text {
    font-size: 1.2rem;
    line-height: 2;
    color: var(--white);
    text-align: justify;
    padding: 2rem;
    background: transparent;
    border-radius: 10px;
}

.vision-image {
    position: relative;
}

.vision-image img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
    object-fit: cover;
    height: 100%;
    min-height: 280px;
}

.vision-caption {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.6);
    padding: 1rem 1.25rem;
    border-radius: 12px;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Slogans Section */
.slogans-section {
    padding: 5rem 0;
    background: var(--bg-dark);
}

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

.slogan-title-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin: 1.5rem 0;
    line-height: 1.4;
}

/* Membership Section */
.membership-section {
    padding: 5rem 0;
    background: var(--bg-dark);
}

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

.membership-content p {
    font-size: 1.2rem;
    color: var(--white);
}

.membership-description {
    color: var(--text-light);
    margin-top: 1.5rem;
    line-height: 1.8;
}

/* Goals Section */
.goals-section {
    padding: 5rem 0;
    background: var(--bg-dark);
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.goals-visual {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    align-items: center;
    margin-top: 2rem;
}

.goals-visual img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
    object-fit: cover;
    height: 100%;
    min-height: 260px;
}

.goals-highlight {
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 16px;
    padding: 2rem;
    font-size: 1.05rem;
    line-height: 1.9;
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.delay-1 {
    transition-delay: 0.1s;
}

.reveal.delay-2 {
    transition-delay: 0.2s;
}

.reveal.delay-3 {
    transition-delay: 0.3s;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.goal-item {
    padding: 2rem;
    background: transparent;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.goal-item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 12px;
    margin: 0 auto 1.25rem auto;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    -webkit-user-drag: none;
    user-select: none;
    display: block;
}

.goal-item:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow);
    background: rgba(212, 175, 55, 0.1);
}

.goal-item h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 700;
}

.goal-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: var(--bg-dark);
    color: var(--white);
}

.contact-section .section-title {
    color: var(--white);
}

.contact-section .section-title::after {
    background: var(--secondary-color);
}

.contact-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    margin-top: 1rem;
}

.highlighted-text {
    position: relative;
    display: inline-block;
}

.highlighted-text::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 100%;
    height: 3px;
    background: var(--secondary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

body[dir="ltr"] .highlighted-text::after {
    right: auto;
    left: 0;
    transform-origin: left;
}

.highlighted-text:hover::after {
    transform: scaleX(1);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-info {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 2.5rem;
    height: 100%;
}

.contact-info h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--white);
}

.contact-info p {
    color: var(--text-light);
    line-height: 1.9;
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-info-label {
    font-weight: 600;
    color: var(--secondary-color);
}

.contact-info-value a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.contact-info-value a:hover {
    color: var(--secondary-color);
}

.contact-form-wrapper {
    height: 100%;
}

.contact-form {
    background: rgba(26, 26, 26, 0.8);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.form-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.form-row .form-group {
    flex: 1;
    min-width: 200px;
}

.contact-map {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 2.5rem;
    margin-top: 2.5rem;
}

.contact-map h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.contact-map iframe {
    width: 100%;
    border: none;
    border-radius: 12px;
    height: 320px;
}

.map-btn {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.85rem 1.75rem;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}

.map-btn:hover {
    background: #b8941f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.35);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--white);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}


.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.15);
}

.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'Cairo', sans-serif;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 1rem;
}

.btn-submit:hover {
    background: #b8941f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--white);
    padding: 3.5rem 0 1.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-brand img {
    max-width: 180px;
    height: auto;
}

.footer-description {
    color: var(--text-light);
    line-height: 1.8;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-links,
.footer-services {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a,
.footer-services a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--secondary-color);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-contact li span {
    display: block;
}

.footer-contact-label {
    font-weight: 600;
    color: var(--secondary-color);
}

.footer-contact-value,
.footer-contact-value a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact-value a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    opacity: 0.95;
    font-size: 1.05rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

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

.footer-bottom-links a:hover {
    color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .header-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        position: relative;
    }

    .logo {
        order: 1;
        width: 100%;
        margin-bottom: 1rem;
    }

    .branding-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .mobile-menu-toggle {
        order: 0;
        position: absolute;
        top: 1rem;
        left: 1rem;
    }

    body[dir="ltr"] .mobile-menu-toggle {
        left: auto;
        right: 1rem;
    }

    .nav {
        display: none;
        width: 100%;
        margin-top: 1rem;
    }

    .nav.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-link {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }

    .header-actions {
        width: 100%;
        justify-content: center;
        order: 3;
        flex-wrap: wrap;
        gap: 0.75rem;
        margin-inline-start: 0;
    }

    .language-dropdown {
        width: 100%;
    }

    .language-menu {
        position: static;
        width: 100%;
        margin-top: 0.5rem;
        box-shadow: none;
    }

    .logo-img {
        height: 40px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .vision-text {
        font-size: 1rem;
        padding: 1.5rem;
    }

    .footer-ornament {
        display: none;
    }

    .goals-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 400px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .logo h1 {
        font-size: 1.2rem;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vision-content,
.slogans-grid,
.goals-grid {
    animation: fadeIn 0.8s ease-out;
}

/* Company Info Section */
.company-info {
    padding: 5rem 0;
    background: var(--bg-dark);
}

.company-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.company-text {
    font-size: 1.2rem;
    line-height: 2;
    color: var(--white);
    text-align: justify;
}

.company-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px var(--shadow);
}

/* Manager Section within Company Info */
.manager-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid rgba(212, 175, 55, 0.3);
}

.manager-content-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
}

.manager-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.manager-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
}

.manager-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(212, 175, 55, 0.3);
}

.manager-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 300px;
}

.manager-info {
    padding: 1rem;
}

.manager-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.manager-position {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 2rem;
    font-weight: 600;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.manager-description {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--text-light);
    text-align: justify;
}

@media (max-width: 968px) {
    .manager-content-grid {
        grid-template-columns: 1fr;
    }

    .manager-images {
        grid-template-columns: 1fr;
    }

    .manager-name {
        font-size: 2rem;
    }
}

/* Membership Cards */
.membership-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.membership-card {
    background: rgba(26, 26, 26, 0.8);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: var(--transition);
    text-align: center;
}

.membership-badge {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.membership-badge img {
    width: 190px;
   
    border-radius: 12px;
    border: 2px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
    object-fit: cover;
    background: #0f0f0f;
}

.membership-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow);
}

.membership-card h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.membership-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin: 1.5rem 0;
}

.membership-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.membership-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.membership-features li:before {
    content: '✓';
    color: var(--secondary-color);
    font-weight: bold;
    margin-left: 0.5rem;
}

body[dir="ltr"] .membership-features li:before {
    margin-left: 0;
    margin-right: 0.5rem;
}

/* Offices Section */
.offices-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 1200px) {
    .offices-grid {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
    }
}

@media (max-width: 640px) {
    .offices-grid {
        grid-template-columns: 1fr;
    }
}

.office-card {
    background: rgba(26, 26, 26, 0.8);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: var(--transition);
}

.office-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow);
}

.office-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.office-info {
    color: var(--text-light);
    line-height: 1.8;
}

.office-info p {
    margin: 0.5rem 0;
}

/* Agreements Section */
.agreements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.agreement-card {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: var(--transition);
}

.agreement-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow);
}

.agreement-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.video-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.agreement-video {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.agreement-content {
    padding: 2rem;
}

.agreement-content h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.agreement-content p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Projects Section */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.project-card {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: var(--transition);
}

.project-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow);
}

.project-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.project-video {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.project-content {
    padding: 2rem;
}

.project-content h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.project-content p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Meetings Section */
.meetings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.meeting-card {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 15px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: var(--transition);
    overflow: hidden;
}

.meeting-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow);
}

.meeting-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.meeting-content {
    padding: 2rem;
}

.meeting-date {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.meeting-card h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.meeting-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Media Gallery */
.media-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.media-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    aspect-ratio: 1;
}

.media-item img,
.media-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.media-item:hover img,
.media-item:hover video {
    transform: scale(1.1);
}

/* Exhibition Section */
.exhibition-content {
    margin-top: 3rem;
}

.exhibition-main-image {
    margin-bottom: 3rem;
}

.exhibition-main-image img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
    object-fit: cover;
    height: 400px;
}

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

.exhibition-card {
    background: rgba(26, 26, 26, 0.8);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: var(--transition);
}

.exhibition-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow);
}

.exhibition-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.exhibition-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.partners-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.partner-item {
    padding: 1rem;
    background: rgba(26, 26, 26, 0.8);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: var(--transition);
}

.partner-item:hover {
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px var(--shadow);
}

.partner-item p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.project-details {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.project-details p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.project-details strong {
    color: var(--secondary-color);
}

/* Responsive Updates */
@media (max-width: 768px) {
    .company-info-grid {
        grid-template-columns: 1fr;
    }

    .membership-cards,
    .offices-grid,
    .agreements-grid,
    .projects-grid,
    .meetings-grid {
        grid-template-columns: 1fr;
    }

    .media-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .exhibition-main-image img {
        height: 250px;
    }

    .exhibition-grid {
        grid-template-columns: 1fr;
    }

    .partners-list {
        grid-template-columns: 1fr;
    }
}
