/* ========================================
   ALHAMMADI AGENCY - LIGHT THEME
   Professional Creative Agency Website
   ========================================
*/

/* ========================================
   FONT FACE - ITF Shaheen Arabic
   ========================================
*/
@font-face {
    font-family: 'ITF Shaheen Arabic';
    src: url('../assets/fonts/itfshaheenArabicC-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ITF Shaheen Arabic';
    src: url('../assets/fonts/itfshaheenArabicC-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ITF Shaheen Arabic';
    src: url('../assets/fonts/itfshaheenArabicC-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ITF Shaheen Arabic';
    src: url('../assets/fonts/itfshaheenArabicC-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ITF Shaheen Arabic';
    src: url('../assets/fonts/itfshaheenArabicC-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* ========================================
   CSS VARIABLES (Light Theme)
   ========================================
*/
:root {
    /* Primary Colors - Brand Identity */
    --primary: #575756;
    --primary-dark: #3a3a39;
    --primary-light: #6e6f6e;
    --primary-rgb: 87, 87, 86;
    --accent: #E9C46A;
    --accent-dark: #D4A84B;

    /* Light Theme Backgrounds */
    --bg-main: #FFFFFF;
    --bg-secondary: #F8FAFC;
    --bg-tertiary: #F1F5F9;
    --bg-card: #FFFFFF;

    /* Text Colors */
    --text-primary: #1E293B;
    --text-secondary: #475569;
    --text-muted: #64748B;
    --text-light: #94A3B8;
    --text-white: #FFFFFF;

    /* Borders & Shadows */
    --border-color: rgba(0, 0, 0, 0.08);
    --border-strong: rgba(0, 0, 0, 0.12);
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.12);

    /* Dark Section (Footer) */
    --dark-bg: #1a1a1a;
    --dark-surface: #1a1a1a;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    --gradient-hero: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 50%, #F1F5F9 100%);
    --gradient-text: linear-gradient(135deg, var(--text-primary) 0%, var(--primary) 100%);

    /* Layout */
    --container-width: 1280px;
    --header-height: 80px;

    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-fast: all 0.2s ease;
}

/* ========================================
   RESET & BASE
   ========================================
*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: 'ITF Shaheen Arabic', 'IBM Plex Sans Arabic', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.7;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ========================================
   TYPOGRAPHY
   ========================================
*/
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 2.5vw, 1.8rem);
}

p {
    color: var(--text-secondary);
    line-height: 1.8;
}

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

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero gradient text override - pure white */
.hero .gradient-text {
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #FFFFFF;
    background-clip: unset;
    color: #FFFFFF;
}

/* ========================================
   LAYOUT
   ========================================
*/
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    margin-bottom: 60px;
    max-width: 700px;
}

.section-subtitle {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    position: relative;
    padding-right: 20px;
}

.section-subtitle::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--text-primary);
    margin-bottom: 20px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ========================================
   SCROLL PROGRESS BAR
   ========================================
*/
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--gradient-primary);
    z-index: 9999;
    transition: width 0.1s linear;
}

/* ========================================
   LOADING SCREEN
   ========================================
*/
.preloader {
    position: fixed;
    inset: 0;
    background: var(--bg-main);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 30px;
}

.loader-logo span {
    color: var(--primary);
}

.loading-bar {
    width: 200px;
    height: 3px;
    background: var(--bg-tertiary);
    border-radius: 3px;
    overflow: hidden;
    margin: 0 auto;
}

.loading-bar::after {
    content: '';
    display: block;
    width: 0%;
    height: 100%;
    background: var(--gradient-primary);
    animation: loading 1.5s ease-in-out forwards;
}

@keyframes loading {
    0% {
        width: 0%;
    }

    50% {
        width: 70%;
    }

    100% {
        width: 100%;
    }
}

/* ========================================
   HEADER & NAVIGATION
   ========================================
*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

/* Header on Hero (before scroll) - white text for dark background */
.header:not(.scrolled) .logo {
    color: var(--text-white);
}

.header:not(.scrolled) .logo-img {
    filter: brightness(0) invert(1);
}

.header:not(.scrolled) .nav-links a {
    color: rgba(255, 255, 255, 0.8);
}

.header:not(.scrolled) .nav-links a:hover,
.header:not(.scrolled) .nav-links a.active {
    color: var(--text-white);
}

.header:not(.scrolled) .nav-links a::after {
    background: var(--text-white);
}

.header:not(.scrolled) .nav-btn {
    background: var(--text-white);
    color: var(--primary);
    border-color: var(--text-white);
}

.header:not(.scrolled) .nav-btn:hover {
    background: transparent;
    color: var(--text-white);
    border-color: var(--text-white);
}

.header:not(.scrolled) .mobile-toggle {
    color: var(--text-white);
}

.header.scrolled {
    background: rgba(248, 250, 252, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    padding: 15px 0;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.logo span {
    color: var(--primary);
    font-size: 2.2rem;
    line-height: 1;
}

.logo:hover {
    transform: scale(1.02);
}

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

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

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

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

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

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

.nav-btn {
    background: var(--primary);
    color: var(--text-white);
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--primary);
}

.nav-btn:hover {
    background: transparent;
    color: var(--primary);
    transform: translateY(-2px);
}

/* Navigation Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-tertiary);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    border: 2px solid transparent;
}

.lang-switcher:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.lang-switcher .lang-code {
    font-weight: 700;
    letter-spacing: 1px;
}

.lang-switcher i {
    font-size: 1rem;
}

/* LTR Support */
html[dir="ltr"] .nav-links a::after {
    right: auto;
    left: 0;
}

html[dir="ltr"] .hero-actions .btn i {
    margin-left: 10px;
    margin-right: 0;
}

html[dir="ltr"] .service-link i {
    margin-left: 8px;
    margin-right: 0;
}

.mobile-toggle {
    display: none;
    color: var(--text-primary);
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

/* ========================================
   BUTTONS
   ========================================
*/
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    gap: 10px;
    border: 2px solid transparent;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary);
    color: var(--text-white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(42, 157, 143, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--border-strong);
    color: var(--text-primary);
}

.btn-outline:hover {
    background: var(--text-primary);
    border-color: var(--text-primary);
    color: var(--text-white);
    transform: translateY(-3px);
}

.btn-white {
    background: var(--text-white);
    color: var(--text-primary);
    border-color: var(--text-white);
}

.btn-white:hover {
    background: transparent;
    color: var(--text-white);
    transform: translateY(-3px);
}

/* Hero Section Button Overrides */
.hero .btn-primary {
    background: var(--text-white);
    color: var(--primary);
    border-color: var(--text-white);
}

.hero .btn-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--text-white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero .btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: var(--text-white);
}

.hero .btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.6);
    color: var(--text-white);
}

/* ========================================
   HERO SECTION
   ========================================
*/
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: var(--primary);
    overflow: hidden;
    padding-top: var(--header-height);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: url('../assets/images/KAFD-DJI_10004.webp') center/cover no-repeat;
    animation: zoomSlow 20s infinite alternate;
}

@keyframes zoomSlow {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

/* Geometric Shapes */
.hero-shapes {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    top: -100px;
    left: -100px;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
    bottom: 10%;
    right: 5%;
    animation: float 10s ease-in-out infinite reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    top: 40%;
    right: 20%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(5deg);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.75) 0%, rgba(45, 45, 45, 0.85) 100%);
    z-index: 1;
}

/* Geometric Pattern overlay for Hero - Right Side, fades to left */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(30deg, transparent 49%, rgba(255, 255, 255, 0.06) 49%, rgba(255, 255, 255, 0.06) 51%, transparent 51%),
        linear-gradient(150deg, transparent 49%, rgba(255, 255, 255, 0.06) 49%, rgba(255, 255, 255, 0.06) 51%, transparent 51%),
        linear-gradient(90deg, transparent 49%, rgba(255, 255, 255, 0.04) 49%, rgba(255, 255, 255, 0.04) 51%, transparent 51%);
    background-size: 60px 100px;
    pointer-events: none;
    z-index: 2;
    mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
    -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
}

.hero::after {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 700px;
    margin-right: 5%;
    margin-left: auto;
}

.hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    color: var(--text-white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-tagline i {
    font-size: 0.9rem;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 30px;
    color: var(--text-white);
    line-height: 1.5;
}

.hero-desc {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 580px;
    line-height: 2;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-indicator .mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
}

.scroll-indicator .mouse::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--text-white);
    border-radius: 2px;
    animation: scroll-wheel 1.5s ease-in-out infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes scroll-wheel {

    0%,
    100% {
        opacity: 1;
        top: 8px;
    }

    50% {
        opacity: 0.3;
        top: 18px;
    }
}

/* ========================================
   MARQUEE STRIP
   ========================================
*/
.marquee-container {
    background: var(--primary);
    padding: 18px 0;
    overflow: hidden;
    position: relative;
    z-index: 5;
}

.marquee-content {
    display: flex;
    gap: 50px;
    white-space: nowrap;
    animation: marquee 25s linear infinite;
}

.marquee-item {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 12px;
}

.marquee-item i {
    color: var(--accent);
    font-size: 0.7rem;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(100%);
    }
}

/* ========================================
   ABOUT SECTION
   ========================================
*/
.about-section {
    background: var(--bg-secondary);
}

/* Custom styling for About section - make subtitle bigger */
.about-section .section-subtitle {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.about-section .section-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 500;
    color: var(--text-secondary);
}

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

.about-text p {
    font-size: 1.25rem;
    line-height: 1.9;
    color: var(--text-secondary);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--bg-main);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.about-feature i {
    color: var(--primary);
    font-size: 1.2rem;
}

.about-feature span {
    font-weight: 500;
    color: var(--text-primary);
}

/* ========================================
   SERVICES SECTION
   ========================================
*/
.services-section {
    background: var(--bg-main);
}

/* Custom styling for Services section - make subtitle bigger */
.services-section .section-subtitle {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.services-section .section-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 500;
    color: var(--text-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 40px 35px;
    border-radius: 16px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    min-height: 320px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

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

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(42, 157, 143, 0.1) 0%, rgba(42, 157, 143, 0.05) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 1.6rem;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.service-en {
    color: var(--text-light);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
    font-family: 'Inter', sans-serif;
}

.service-desc {
    color: var(--text-muted);
    font-size: 1.15rem;
    line-height: 1.8;
    flex-grow: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    margin-top: 20px;
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition);
}

.service-card:hover .service-link {
    opacity: 1;
    transform: translateX(0);
}

/* ========================================
   STATS SECTION
   ========================================
*/
.stats-section {
    background: #1a1a1a;
    padding: 80px 0;
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: rgba(255, 255, 255, 0.15);
}

.stat-item:first-child::after {
    display: none;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(87, 87, 86, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 1.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    display: block;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    font-weight: 500;
}

/* ========================================
   CLIENTS SECTION
   ========================================
*/
.clients-section {
    background: var(--bg-main);
    padding: 80px 0;
    overflow: hidden;
    position: relative;
}

/* Custom styling for Clients section - make subtitle bigger */
.clients-section .section-subtitle {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.clients-section .section-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 500;
    color: var(--text-secondary);
}

/* Pattern Background for Clients Section */
.clients-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../assets/logos/pattren.png') repeat;
    opacity: 0.03;
    pointer-events: none;
}

.clients-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.clients-marquee-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    overflow: hidden;
    padding-bottom: 20px;
}

.clients-marquee {
    --marquee-gap: 30px;
    position: relative;
    width: 100%;
    overflow: hidden;
    /* Extra padding to prevent hover cutoff and border eating */
    padding: 30px 0;
    /* Force LTR for correct animation math logic regardless of site direction */
    direction: ltr;

    /* Fade edges */
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.clients-track {
    display: flex;
    gap: var(--marquee-gap);
    width: max-content;
    animation: scroll-left 40s linear infinite;
    will-change: transform;
}

.clients-track.reverse {
    animation: scroll-right 40s linear infinite;
}

/* Pause animation on hover */
.clients-marquee:hover .clients-track {
    animation-play-state: paused;
}

/* Animation Calculations
   Moves by exactly half the content width + half the gap
   Formula: -50% - (gap / 2) 
   This matches perfectly if content is duplicated 1x
*/
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - (var(--marquee-gap) / 2)));
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(calc(-50% - (var(--marquee-gap) / 2)));
    }

    100% {
        transform: translateX(0);
    }
}

.client-logo {
    flex-shrink: 0;
    width: 200px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 20px 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.client-logo:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 25px rgba(87, 87, 86, 0.15);
    transform: translateY(-5px) scale(1.02);
}

.client-logo img {
    max-width: 150px;
    max-height: 75px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(30%);
    opacity: 0.85;
    transition: all 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Tablet */
@media (max-width: 992px) {
    .clients-marquee {
        --marquee-gap: 25px;
    }

    .client-logo {
        width: 160px;
        height: 90px;
        padding: 15px 20px;
    }

    .client-logo img {
        max-width: 120px;
        max-height: 55px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .clients-marquee {
        --marquee-gap: 20px;
    }

    .clients-marquee-wrapper {
        gap: 20px;
    }

    .clients-track {
        animation-duration: 25s;
    }

    .client-logo {
        width: 140px;
        height: 80px;
        padding: 12px 16px;
        border-radius: 12px;
    }

    .client-logo img {
        max-width: 100px;
        max-height: 50px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .clients-marquee {
        --marquee-gap: 16px;
    }

    .clients-marquee-wrapper {
        gap: 15px;
    }

    .clients-track {
        animation-duration: 20s;
    }

    .client-logo {
        width: 120px;
        height: 70px;
        padding: 10px 14px;
        border-radius: 10px;
    }

    .client-logo img {
        max-width: 85px;
        max-height: 45px;
    }
}

/* ========================================
   PROJECTS SECTION
   ========================================
*/
.projects-section {
    background: var(--bg-secondary);
}

/* Custom styling for Projects section - make subtitle bigger */
.projects-section .section-subtitle {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.projects-section .section-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 500;
    color: var(--text-secondary);
}

.projects-filters {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 10px 25px;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    font-family: inherit;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--text-white);
}

.swiper-container {
    width: 100%;
    padding-bottom: 60px;
}

.project-card {
    position: relative;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
}

/* Project Services Tags */
.project-services {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    z-index: 30;
    direction: rtl;
    pointer-events: none;
}

.project-service-tag {
    background-color: rgba(87, 87, 86, 0.75);
    color: #fff;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    pointer-events: auto;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card:hover .project-img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(30, 41, 59, 0.95) 0%, rgba(30, 41, 59, 0.4) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0.9;
    transition: var(--transition);
    z-index: 10;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-cat {
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-title {
    color: var(--text-white);
    font-size: 1.5rem;
    margin: 0 0 8px 0;
}

.project-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-white);
    margin-top: 15px;
    font-weight: 500;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}

.project-card:hover .project-link {
    opacity: 1;
    transform: translateY(0);
}

/* Swiper Pagination */
.swiper-pagination-bullet {
    background: var(--text-light);
    opacity: 0.5;
    width: 10px;
    height: 10px;
}

.swiper-pagination-bullet-active {
    background: var(--primary);
    opacity: 1;
    width: 30px;
    border-radius: 5px;
}

/* Swiper Navigation Arrows */
.swiper-button-next,
.swiper-button-prev {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    color: var(--primary);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
    font-weight: 700;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary);
    color: var(--text-white);
    transform: scale(1.1);
}

/* ========================================
   CONTACT SECTION
   ========================================
*/
.contact-section {
    background: var(--bg-secondary);
}

/* Custom styling for Contact section - make subtitle bigger */
.contact-section .section-subtitle {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.contact-section .section-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 500;
    color: var(--text-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg-main);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.form-group label .required {
    color: #e74c3c;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    background: var(--bg-secondary);
    color: var(--text-primary);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--bg-main);
    box-shadow: 0 0 0 4px rgba(87, 87, 86, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
}

.form-message {
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(39, 174, 96, 0.1);
    color: #27ae60;
    border: 1px solid rgba(39, 174, 96, 0.3);
}

.form-message.error {
    display: block;
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

/* Contact Info */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--bg-main);
    padding: 20px;
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    background: rgba(87, 87, 86, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-card-content h4 {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.contact-card-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

/* Map Container */
.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    display: block;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-info-cards {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 25px;
    }
}

/* ========================================
   CTA SECTION
   ========================================
*/
.cta-section {
    background: #1a1a1a;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

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

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-white);
    margin-bottom: 20px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1.2rem;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   FOOTER
   ========================================
*/
.footer {
    background: var(--dark-bg);
    padding-top: 80px;
    color: var(--text-white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    padding-bottom: 60px;
}

.footer-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: var(--text-light);
    max-width: 300px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: var(--text-white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: var(--text-white);
    margin-bottom: 25px;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 15px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-light);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--text-white);
    padding-right: 5px;
}

.office-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
}

.office-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
}

.office-card img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
}

.office-info h5 {
    color: var(--text-white);
    font-size: 1rem;
    margin-bottom: 3px;
}

.office-info p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin: 0 0 10px 0;
}

.office-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.office-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-white);
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
}

.office-link:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.back-to-top {
    width: 45px;
    height: 45px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(42, 157, 143, 0.4);
}

/* ========================================
   WHATSAPP FLOATING BUTTON
   ========================================
*/
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: #25D366;
    color: var(--text-white);
    padding: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
    width: 60px;
    height: 60px;
}

.whatsapp-float i {
    font-size: 1.8rem;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
    position: absolute;
    right: calc(100% + 15px);
    background: var(--text-primary);
    color: var(--text-white);
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* ========================================
   RESPONSIVE DESIGN
   ========================================
*/
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }

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

    .stat-item::after {
        display: none;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .section {
        padding: 80px 0;
    }

    .mobile-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--bg-main);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: 0.4s ease;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

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

    .nav-links a {
        font-size: 1.2rem;
    }

    .nav-btn {
        display: none;
    }

    .nav-actions {
        position: fixed;
        top: 25px;
        left: 70px;
        transform: none;
        z-index: 1001;
    }

    .nav-actions .nav-btn {
        display: none;
    }

    .lang-switcher {
        padding: 6px 12px;
        font-size: 0.85rem;
        background: rgba(255, 255, 255, 0.9);
    }

    .hero {
        text-align: center;
    }

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

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

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .scroll-indicator {
        display: none;
    }

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

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        width: 55px;
        height: 55px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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

    /* Reduce section subtitle sizes on mobile */
    .about-section .section-subtitle,
    .services-section .section-subtitle,
    .clients-section .section-subtitle,
    .projects-section .section-subtitle,
    .contact-section .section-subtitle {
        font-size: 1.8rem;
    }

    .about-section .section-title,
    .services-section .section-title,
    .clients-section .section-title,
    .projects-section .section-title,
    .contact-section .section-title {
        font-size: 1.1rem;
    }

    .service-card {
        padding: 30px 25px;
        min-height: auto;
    }

    .stat-number {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }
}

/* ========================================
   MOBILE MENU OVERLAY
   ========================================
*/
.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ========================================
   UTILITY CLASSES
   ========================================
*/
.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary) !important;
}

.bg-light {
    background: var(--bg-secondary) !important;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

/* ========================================
   ANIMATIONS (AOS Enhancements)
   ========================================
*/
[data-aos] {
    transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
}

/* ========================================
   PRINT STYLES
   ========================================
*/
@media print {

    .header,
    .whatsapp-float,
    .back-to-top,
    .scroll-progress {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }
}

/* ========================================
   LTR (English) LANGUAGE SUPPORT
   ========================================
*/
html[dir="ltr"] body {
    font-family: 'Inter', 'IBM Plex Sans Arabic', sans-serif;
}

/* Section subtitle indicator */
html[dir="ltr"] .section-subtitle {
    padding-right: 0;
    padding-left: 20px;
}

html[dir="ltr"] .section-subtitle::before {
    right: auto;
    left: 0;
}

/* Hero content alignment */
html[dir="ltr"] .hero-content {
    margin-right: auto;
    margin-left: 5%;
    text-align: left;
}

/* Arrow icons flip */
html[dir="ltr"] .hero .btn-primary i,
html[dir="ltr"] .hero-arrow,
html[dir="ltr"] .service-arrow {
    transform: rotate(180deg);
}

/* Footer office link */
html[dir="ltr"] .office-link i {
    margin-right: 0;
    margin-left: 8px;
}

/* WhatsApp tooltip */
html[dir="ltr"] .whatsapp-tooltip {
    right: auto;
    left: 70px;
}

html[dir="ltr"] .whatsapp-tooltip::after {
    right: auto;
    left: -5px;
    border-right-color: transparent;
    border-left-color: var(--primary);
}

/* Contact form */
html[dir="ltr"] .contact-form label,
html[dir="ltr"] .contact-form input,
html[dir="ltr"] .contact-form textarea,
html[dir="ltr"] .contact-form select {
    text-align: left;
}

/* Footer columns */
html[dir="ltr"] .footer-col {
    text-align: left;
}

/* Smooth transition for language switch */
body.lang-en * {
    transition: all 0.3s ease;
}