:root {
    --gold: #D4AF37;
    --gold-dark: #B8941F;
    --dark-green: #1A433A;
    --light-gold: #FDFBF5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Heebo', sans-serif;
    background-color: var(--light-gold);
    direction: rtl;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #f3f4f6;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo img {
    height: 80px;
    object-fit: contain;
}

.desktop-nav {
    display: none;
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
        align-items: center;
        gap: 3rem;
    }
}

.nav-link {
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    text-decoration: none;
    color: #4b5563;
    transition: color 0.2s;
}

.nav-link:hover, .nav-link.active {
    color: var(--gold);
}

.nav-link.active {
    font-weight: 500;
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    color: #4b5563;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu {
    display: none;
    border-top: 1px solid #f3f4f6;
    padding: 1.5rem;
}

.mobile-menu.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.mobile-nav-link {
    display: block;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    text-decoration: none;
    color: #4b5563;
    padding: 0.5rem 0;
    transition: color 0.2s;
}

.mobile-nav-link:hover, .mobile-nav-link.active {
    color: var(--gold);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Main Content */
main {
    padding-top: 80px;
    min-height: 100vh;
}

/* Footer */
footer {
    background-color: var(--dark-green);
    color: white;
    margin-top: 6rem;
    background-image: repeating-linear-gradient(45deg, rgba(212, 175, 55, 0.05), rgba(212, 175, 55, 0.05) 1px, transparent 1px, transparent 20px);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-column h4 {
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    color: var(--gold);
}

.footer-column p, .footer-column a {
    font-size: 0.875rem;
    color: #9ca3af;
    text-decoration: none;
}

.footer-column a:hover {
    color: white;
}

.branch-info {
    display: flex;
    justify-content: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.branch-text {
    text-align: right;
}

.branch-text p:first-child {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #e5e7eb;
}

.space-y-2 a {
    color: white !important;
    display: block;
    text-decoration: none;
    padding-bottom: 10px;
}

.space-y-2 a:link,
.space-y-2 a:visited,
.space-y-2 a:hover,
.space-y-2 a:active,
.space-y-2 a:focus {
    color: white !important;
}

.social-links {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
}

.social-links a {
    color: white !important;
}

.copyright {
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.875rem;
    color: #9ca3af;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Page Sections */
.section {
    padding: 6rem 1.5rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

/* Hero Section */
.hero {
    background-color: var(--dark-green);
    background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.02) 1px, transparent 1px, transparent 20px);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-text {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 1.5rem;
}

@media (min-width: 768px) {
    .hero-text {
        justify-content: flex-end;
        text-align: right;
        padding: 0 4rem;
    }
}

.hero-content {
    max-width: 28rem;
}

.hero-icon {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 300;
    color: white;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 3.75rem;
    }
}

.hero-divider {
    width: 6rem;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 auto 2rem;
}

@media (min-width: 768px) {
    .hero-divider {
        margin: 0 0 2rem;
    }
}

.hero p {
    font-size: 1.25rem;
    color: #d1d5db;
    font-weight: 300;
    letter-spacing: 0.025em;
    margin-bottom: 3rem;
}

.hero-image {
    height: 50vh;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero-image {
        height: 60vh;
    }
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.hero-image:hover img {
    transform: scale(1.1);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-decoration: none;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background-color 0.2s;
}


.btn-primary {
    background-color: var(--gold);
    color: white;
}

.btn-primary:hover {
    background-color: var(--gold-dark);
}

.btn-outline {
    background-color: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}

.btn-outline:hover {
    background-color: var(--gold);
    color: white;
}

/* Loading Spinner */
.loading-spinner {
    display: inline-block;
    width: 3rem;
    height: 3rem;
    border: 2px solid transparent;
    border-top: 2px solid var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Utility Classes */
.bg-gray-50 {
    background-color: #f9fafb;
}

.bg-transparent {
    background-color: transparent;
}

.border-b {
    border-bottom: 1px solid #e5e7eb;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.mt-12 {
    margin-top: 3rem;
}

.py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.space-y-4 > * + * {
    margin-top: 1rem;
}

.space-y-6 > * + * {
    margin-top: 1.5rem;
}

.space-y-8 > * + * {
    margin-top: 2rem;
}

.hidden {
    display: none;
}

@media (min-width: 768px) {
    .md\:hidden {
        display: none;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease;
}

.slide-in-right {
    animation: slideInRight 0.5s ease;
}

.slide-in-left {
    animation: slideInLeft 0.5s ease;
}

.scale-in {
    animation: scaleIn 0.5s ease;
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}