* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-gold: #f2c94c;
    --color-dark: #0a0f1a;
    --color-card: #151b28;
    --color-text: #ffffff;
    --color-text-light: #a0a0a0;
    --color-border: rgba(255, 255, 255, 0.05);
    --font-sans: 'Inter', ui-sans-serif, system-ui, sans-serif;
    --font-serif: 'Playfair Display', serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-dark);
    color: var(--color-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.rtl {
    direction: rtl;
    text-align: right;
}

body.rtl .portfolio-header {
    flex-direction: row-reverse;
}

body.rtl .hero-buttons {
    flex-direction: row;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.navbar {
    direction: ltr;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 50;
    background-color: rgba(10, 15, 26, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-brand {
    direction: ;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    width: 50px;
    height: 50px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    font-size: 1.5rem;
    color: var(--color-dark);
    overflow: hidden;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.brand-text {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

[dir="rtl"] .nav-container {
    flex-direction: row-reverse;
}

[dir="rtl"] .nav-links {
    flex-direction: row-reverse;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    color: var(--color-text);
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--color-gold);
}

.cta-button {
    background-color: var(--color-gold);
    color: var(--color-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 3px;
    font-size: 0.875rem;
    font-weight: bold;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: white;
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lang-btn {
    background: none;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    padding: 0.5rem 1rem;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background-color: var(--color-gold);
    color: var(--color-dark);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-text);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background-color: var(--color-dark);
    border-bottom: 1px solid var(--color-border);
    flex-direction: column;
    padding: 1rem 0;
}

.mobile-link {
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    color: var(--color-text);
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 1px solid var(--color-border);
}

.mobile-menu.active {
    display: flex;
}

@media (max-width: 768px) {
    .nav-links.desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .nav-container {
        justify-content: space-between;
    }
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-background::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10, 15, 26, 0.6), rgba(10, 15, 26, 0.8));
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 56rem;
    text-align: center;
    padding: 0 1rem;
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.golden {
    color: var(--color-gold);
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #d0d0d0;
    margin-bottom: 2.5rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    sm-flex-direction: row;
    justify-content: center;
    align-items: center;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        gap: 1rem;
    }
}

.btn {
    padding: 1rem 2rem;
    border-radius: 3px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-transform: none;
}

.btn-primary {
    background-color: var(--color-gold);
    color: var(--color-dark);
}

.btn-primary:hover {
    background-color: white;
}

.btn-secondary {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--color-text);
    background: transparent;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-full {
    width: 100%;
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-dot {
    width: 6px;
    height: 10px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    padding: 2px;
    animation: bounce 2s infinite;
}

.scroll-dot::after {
    content: '';
    display: block;
    width: 2px;
    height: 2px;
    background-color: var(--color-gold);
    border-radius: 50%;
    margin: 2px auto;
    animation: bounce 2s infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

/* ===== ABOUT SECTION ===== */
.section-about {
    padding: 6rem 0;
    background-color: var(--color-dark);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.about-image {
    position: relative;
}

.image-frame {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

.image-frame::before {
    content: '';
    position: absolute;
    top: -1rem;
    left: -1rem;
    width: 6rem;
    height: 6rem;
    border-top: 4px solid var(--color-gold);
    border-left: 4px solid var(--color-gold);
    z-index: 10;
}

.image-frame::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    width: 6rem;
    height: 6rem;
    border-bottom: 4px solid var(--color-gold);
    border-right: 4px solid var(--color-gold);
    z-index: 10;
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.7s ease;
}

.image-frame:hover img {
    filter: grayscale(0%);
}

.about-content {
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: bold;
    margin-bottom: 2rem;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    color: #a0a0a0;
    line-height: 1.8;
    font-weight: 300;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--color-border);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: bold;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #707070;
    font-weight: bold;
}

/* ===== SERVICES SECTION ===== */
.section-services {
    padding: 6rem 0;
    background-color: var(--color-dark);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    color: var(--color-gold);
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.3em;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background-color: var(--color-card);
    padding: 2rem;
    border: 1px solid var(--color-border);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: rgba(242, 201, 76, 0.3);
    transform: translateY(-5px);
}

.service-icon {
    width: 40px;
    height: 40px;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.service-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.service-desc {
    color: #a0a0a0;
    font-size: 0.875rem;
    line-height: 1.6;
    font-weight: 300;
}

/* ===== TRUST BADGES ===== */
.section-trust {
    padding: 4rem 0;
    background-color: var(--color-card);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.trust-icon {
    width: 32px;
    height: 32px;
    color: var(--color-gold);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.trust-title {
    font-size: 0.875rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.trust-subtitle {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #707070;
}

/* ===== CONTACT SECTION ===== */
.section-contact {
    padding: 6rem 0;
    background-color: var(--color-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.contact-info {
}

.contact-intro {
    color: #a0a0a0;
    line-height: 1.8;
    margin-bottom: 3rem;
    font-weight: 300;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: start;
    gap: 1rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: var(--color-card);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.5rem;
    color: var(--color-gold);
}

.contact-label {
    font-size: 0.875rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.contact-value {
    color: #a0a0a0;
    font-size: 0.875rem;
    font-weight: 300;
}

.contact-form {
    background-color: var(--color-card);
    padding: 3rem;
    border: 1px solid var(--color-border);
    border-radius: 3px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 640px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.form-label {
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #a0a0a0;
    margin-bottom: 0.5rem;
}

.form-input {
    background-color: var(--color-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1rem;
    color: var(--color-text);
    border-radius: 3px;
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--color-gold);
}

.form-textarea {
    resize: none;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--color-dark);
    padding-top: 6rem;
    padding-bottom: 3rem;
    border-top: 1px solid var(--color-border);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-section {
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo .logo {
    width: 32px;
    height: 32px;
    font-size: 1.25rem;
}

.footer-logo span {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-desc {
    color: #a0a0a0;
    font-size: 0.875rem;
    line-height: 1.6;
    font-weight: 300;
}

.footer-title {
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: #a0a0a0;
    font-size: 0.875rem;
    text-decoration: none;
    font-weight: 300;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-gold);
}

.footer-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        align-items: start;
    }
}

.footer-copyright {
    color: #707070;
    font-size: 0.75rem;
    font-weight: 300;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    color: #707070;
    font-size: 0.75rem;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--color-gold);
}

/* ===== UTILITIES ===== */
.italic {
    font-style: italic;
}

@media (max-width: 640px) {
    .section-about,
    .section-services,
    .section-portfolio,
    .section-contact {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .hero-title {
        font-size: 2rem;
    }
}
