/* ===================================
   Steel Crane - Premium Real Estate
   Modern, Responsive, Production-Ready
   =================================== */

/* CSS Variables */
:root {
    --navy-blue: #1C355E;
    --industrial-red: #D32729;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --dark-gray: #2C3E50;
    --text-dark: #1a1a1a;
    --text-light: #6c757d;
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
    
    --shadow-sm: 0 2px 8px rgba(28, 53, 94, 0.08);
    --shadow-md: 0 4px 16px rgba(28, 53, 94, 0.12);
    --shadow-lg: 0 8px 32px rgba(28, 53, 94, 0.16);
    --shadow-xl: 0 16px 48px rgba(28, 53, 94, 0.24);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 48px;
    }
}

/* ===================================
   NAVIGATION
   =================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-smooth);
    background: transparent;
}

.navbar.scrolled {
    padding: 16px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    transition: var(--transition-fast);
}

.logo a:hover {
    opacity: 0.8;
}

.logo-image {
    height: 70px !important;
    width: auto !important;
    max-width: 300px !important;
    min-height: 70px !important;
    object-fit: contain !important;
    transition: var(--transition-smooth);
    display: block !important;
}

.navbar.scrolled .logo-image {
    height: 50px !important;
    min-height: 50px !important;
}

/* Fallback text logo (if image doesn't load) */
.logo-text {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--navy-blue);
}

.nav-menu {
    display: flex;
    gap: 48px;
    align-items: center;
    margin-top: 12px;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--navy-blue);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--industrial-red);
    transition: var(--transition-smooth);
}

.nav-link:hover::after {
    width: 100%;
}

.lang-toggle {
    padding: 8px 20px;
    background: var(--industrial-red);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    letter-spacing: 0.5px;
}

.lang-toggle:hover {
    background: var(--navy-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.lang-text {
    display: inline-block;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--navy-blue);
    transition: var(--transition-fast);
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 100px 40px;
        gap: 32px;
        box-shadow: var(--shadow-xl);
        transition: var(--transition-smooth);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .hamburger {
        display: flex;
        z-index: 1001;
    }
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--navy-blue) 0%, #2a4a7f 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.geometric-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(211, 39, 41, 0.1);
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
    animation-delay: 5s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 24px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 48px;
    font-weight: 300;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: var(--industrial-red);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 16px rgba(211, 39, 41, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(211, 39, 41, 0.4);
}

.button-arrow {
    font-size: 20px;
    transition: var(--transition-smooth);
}

.cta-button:hover .button-arrow {
    transform: translateX(4px);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% {
        transform: translateY(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(20px);
        opacity: 0;
    }
}

/* ===================================
   SECTION STYLES
   =================================== */

section {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--industrial-red);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: var(--navy-blue);
    letter-spacing: -1px;
}

/* ===================================
   ABOUT SECTION
   =================================== */

.about {
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
}

@media (min-width: 992px) {
    .about-content {
        grid-template-columns: 1.2fr 1fr;
    }
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.lead-text {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--navy-blue);
}

.about-text p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.stat-card {
    padding: 32px;
    background: var(--light-gray);
    border-radius: 8px;
    text-align: center;
    transition: var(--transition-smooth);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    color: var(--industrial-red);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===================================
   NETWORK SECTION
   =================================== */

.network {
    background: var(--navy-blue);
    color: var(--white);
}

.network .section-label {
    color: var(--industrial-red);
}

.network .section-title {
    color: var(--white);
}

.network-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .network-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.network-card {
    padding: 48px 32px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.network-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--industrial-red);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.network-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--industrial-red);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition-smooth);
}

.network-card:hover .network-icon {
    transform: scale(1.1) rotate(5deg);
}

.network-card h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.network-card p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

/* ===================================
   PROJECTS SECTION
   =================================== */

.projects {
    background: var(--light-gray);
}

.current-project {
    position: relative;
    margin-bottom: 80px;
}

.project-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--industrial-red);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    margin-bottom: 24px;
}

.project-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

@media (min-width: 992px) {
    .project-showcase {
        grid-template-columns: 1.2fr 1fr;
    }
}

.project-image {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.project-showcase:hover .project-image img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    top: 24px;
    right: 24px;
}

.project-status {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(211, 39, 41, 0.95);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    backdrop-filter: blur(8px);
}

.project-details {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-name {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    color: var(--navy-blue);
    margin-bottom: 8px;
}

.project-location {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 32px;
}

.project-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 32px;
    padding: 24px;
    background: var(--light-gray);
    border-radius: 8px;
}

.feature-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.feature-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy-blue);
}

.project-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: var(--navy-blue);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.project-cta:hover {
    background: var(--industrial-red);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Past Projects */
.past-projects {
    margin-top: 80px;
}

.subsection-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 32px;
}

.projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.project-placeholder {
    aspect-ratio: 4/3;
    background: var(--white);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 32px;
    text-align: center;
    border: 2px dashed rgba(28, 53, 94, 0.2);
    transition: var(--transition-smooth);
}

.project-placeholder:hover {
    border-color: var(--industrial-red);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.placeholder-icon {
    margin-bottom: 24px;
    color: rgba(28, 53, 94, 0.3);
    transition: var(--transition-smooth);
}

.project-placeholder:hover .placeholder-icon {
    color: var(--industrial-red);
    transform: scale(1.1);
}

.placeholder-text {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--navy-blue);
    margin-bottom: 8px;
}

.placeholder-subtext {
    font-size: 13px;
    color: var(--text-light);
    font-style: italic;
}

/* ===================================
   CONTACT SECTION
   =================================== */

.contact {
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
}

@media (min-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-info h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    color: var(--navy-blue);
    margin-bottom: 16px;
}

.contact-lead {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 48px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item {
    display: flex;
    gap: 20px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
    border-radius: 8px;
    color: var(--industrial-red);
    flex-shrink: 0;
}

.contact-item h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 8px;
}

.contact-item p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-item a {
    color: var(--industrial-red);
    transition: var(--transition-fast);
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--light-gray);
    padding: 48px;
    border-radius: 12px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid transparent;
    background: var(--white);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--industrial-red);
}

.form-group label {
    position: absolute;
    left: 16px;
    top: 16px;
    font-size: 15px;
    color: var(--text-light);
    pointer-events: none;
    transition: var(--transition-fast);
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -10px;
    left: 12px;
    font-size: 12px;
    background: var(--light-gray);
    padding: 0 8px;
    color: var(--industrial-red);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    background: var(--industrial-red);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.submit-button:hover {
    background: var(--navy-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.submit-button .button-arrow {
    transition: var(--transition-smooth);
}

.submit-button:hover .button-arrow {
    transform: translateX(4px);
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background: var(--navy-blue);
    color: var(--white);
    padding: 80px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 1.5fr 1fr;
    }
}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.footer-column h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: var(--transition-fast);
}

.footer-column a:hover {
    color: var(--industrial-red);
    padding-left: 4px;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--white);
}

/* ===================================
   RESPONSIVE ADJUSTMENTS
   =================================== */

@media (max-width: 768px) {
    section {
        padding: 80px 0;
    }
    
    .section-header {
        margin-bottom: 48px;
    }
    
    .hero {
        min-height: 90vh;
    }
    
    .project-details {
        padding: 32px 24px;
    }
    
    .contact-form-wrapper {
        padding: 32px 24px;
    }
}

/* ===================================
   UTILITY CLASSES
   =================================== */

.text-center {
    text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }


/* ===================================
   RTL (Arabic) SUPPORT
   =================================== */

html[dir="rtl"] {
    direction: rtl;
}

html[dir="rtl"] body {
    text-align: right;
}

/* RTL Navigation */
html[dir="rtl"] .nav-menu {
    flex-direction: row-reverse;
}

html[dir="rtl"] .nav-link::after {
    right: 0;
    left: auto;
}

/* RTL Hero */
html[dir="rtl"] .button-arrow {
    transform: scaleX(-1);
}

html[dir="rtl"] .cta-button:hover .button-arrow,
html[dir="rtl"] .submit-button:hover .button-arrow {
    transform: translateX(-4px) scaleX(-1);
}

/* RTL Grid Layouts */
html[dir="rtl"] .about-content,
html[dir="rtl"] .contact-content {
    direction: rtl;
}

html[dir="rtl"] .contact-item {
    flex-direction: row-reverse;
    text-align: right;
}

html[dir="rtl"] .feature-item {
    flex-direction: row-reverse;
}

/* RTL Footer */
html[dir="rtl"] .footer-content {
    direction: rtl;
}

html[dir="rtl"] .footer-bottom {
    flex-direction: row-reverse;
}

html[dir="rtl"] .footer-legal {
    flex-direction: row-reverse;
}

html[dir="rtl"] .footer-column a:hover {
    padding-left: 0;
    padding-right: 4px;
}

/* RTL Form Labels */
html[dir="rtl"] .form-group label {
    right: 16px;
    left: auto;
}

html[dir="rtl"] .form-group input:focus + label,
html[dir="rtl"] .form-group input:not(:placeholder-shown) + label,
html[dir="rtl"] .form-group textarea:focus + label,
html[dir="rtl"] .form-group textarea:not(:placeholder-shown) + label {
    right: 12px;
    left: auto;
}

/* Arabic Font Optimization */
html[dir="rtl"] body,
html[dir="rtl"] .nav-link,
html[dir="rtl"] .hero-title,
html[dir="rtl"] .hero-subtitle,
html[dir="rtl"] h1, html[dir="rtl"] h2, html[dir="rtl"] h3, html[dir="rtl"] h4 {
    font-family: 'Tajawal', 'Cairo', var(--font-heading), sans-serif;
}

/* RTL Mobile Menu */
@media (max-width: 768px) {
    html[dir="rtl"] .nav-menu {
        right: auto;
        left: -100%;
    }
    
    html[dir="rtl"] .nav-menu.active {
        left: 0;
        right: auto;
    }
}

/* Smooth Transition for Language Switch */
[data-en], [data-ar] {
    transition: opacity 0.3s ease;
}
