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

:root {
    --primary-color: #152343;
    --accent-color: #C28D3F;
    --text-dark: #152343;
    --text-light: #ffffff;
    --bg-light: #f4f4f4;
    --white: #ffffff;
    --font-main: 'Montserrat', sans-serif;
    --font-kurdish: 'Noto Sans Arabic', 'Arial', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Kurdish-friendly font for RTL languages */
body.rtl,
html[dir="rtl"] body {
    font-family: var(--font-kurdish);
}

/* Ensure proper font rendering for Kurdish text - apply to specific text elements only */
body.rtl p,
body.rtl h1,
body.rtl h2,
body.rtl h3,
body.rtl h4,
body.rtl h5,
body.rtl h6,
body.rtl span:not(.lang-flag):not([class*="fa-"]),
body.rtl div:not([class*="fa-"]):not([class*="icon"]),
body.rtl a:not([class*="fa-"]):not([class*="icon"]),
body.rtl li:not([class*="fa-"]):not([class*="icon"]),
body.rtl label:not([class*="fa-"]),
body.rtl input:not([class*="fa-"]),
body.rtl textarea:not([class*="fa-"]),
body.rtl select:not([class*="fa-"]),
html[dir="rtl"] p,
html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] h4,
html[dir="rtl"] h5,
html[dir="rtl"] h6,
html[dir="rtl"] span:not(.lang-flag):not([class*="fa-"]),
html[dir="rtl"] div:not([class*="fa-"]):not([class*="icon"]),
html[dir="rtl"] a:not([class*="fa-"]):not([class*="icon"]),
html[dir="rtl"] li:not([class*="fa-"]):not([class*="icon"]),
html[dir="rtl"] label:not([class*="fa-"]),
html[dir="rtl"] input:not([class*="fa-"]),
html[dir="rtl"] textarea:not([class*="fa-"]),
html[dir="rtl"] select:not([class*="fa-"]) {
    font-family: var(--font-kurdish);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Ensure Font Awesome icons and all icon elements keep their font - highest priority */
body.rtl i,
body.rtl [class*="fa-"],
body.rtl [class^="fas"],
body.rtl [class^="far"],
body.rtl [class^="fal"],
body.rtl [class^="fab"],
html[dir="rtl"] i,
html[dir="rtl"] [class*="fa-"],
html[dir="rtl"] [class^="fas"],
html[dir="rtl"] [class^="far"],
html[dir="rtl"] [class^="fal"],
html[dir="rtl"] [class^="fab"] {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "Font Awesome 6 Pro", "FontAwesome" !important;
    font-style: normal !important;
    font-weight: 900 !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Ensure emoji flags render correctly */
.lang-flag {
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji", "Twemoji Mozilla", sans-serif !important;
    font-style: normal !important;
    font-weight: normal !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
}

.header-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 60px;
}

.navbar {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100px;
    gap: 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-icon {
    height: 45px;
    width: auto;
    margin-right: 15px;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    letter-spacing: 4px;
    line-height: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-text span {
    display: block;
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 6px;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.6);
    margin-left: 2px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: nowrap;
    margin-left: auto;
}

.nav-menu {
    margin-left: 60px;
}

.btn-quote {
    margin-left: 30px;
}

.lang-switch {
    margin-left: 30px;
}

.search-btn {
    margin-left: 30px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-item {
    position: relative;
    padding: 0;
    height: auto;
    line-height: 1;
    border: none;
    margin-left: 0;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    white-space: nowrap;
    background: transparent;
}

.nav-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 20px;
    width: 1px;
    background: rgba(255, 255, 255, 0.35);
}

.nav-item:last-child::after {
    display: none;
}

.nav-link {
    display: inline-block;
    padding: 10px 28px;
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: opacity 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    opacity: 0.7;
}

.btn-quote {
    display: inline-block;
    padding: 14px 28px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-left: 35px;
    transition: all 0.3s ease;
    background: transparent;
    position: relative;
}

.btn-quote::before {
    display: none;
}

.btn-quote:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 0;
    margin-left: 0;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    padding: 0 20px;
}

.lang-switch::before {
    display: none;
}

.lang-link {
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.lang-link.active {
    opacity: 1;
}

.lang-link:hover {
    opacity: 1;
}

.lang-separator {
    opacity: 0.5;
    margin: 0 8px;
    position: relative;
}

.lang-separator::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 12px;
    width: 1px;
    background: rgba(255, 255, 255, 0.4);
}

.search-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    margin-left: 30px;
    transition: all 0.3s ease;
    position: relative;
    flex-shrink: 0;
    background: transparent;
    font-size: 14px;
}

.search-btn::before {
    display: none;
    /* No separator before search button in this style, or maybe there is? Let's assume the spacing handles it or add it if needed. */
}

.search-btn:hover {
    background: #fff;
    transition: all 0.3s ease;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Slider (cinematic like root index) */
.hero-slider {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    z-index: 1;
}

/* Background image as pseudo-element for independent animation */
.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 0.3s ease;
    z-index: -1;
}

.slide.active {
    opacity: 1;
}

.slide.active::before {
    animation: zoomIn 10s ease-out forwards;
}

@keyframes zoomIn {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.08);
    }
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #050505 0%, transparent 50%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    min-height: 100vh;
    padding: 140px 0 80px;
    pointer-events: auto;
}

.hero-text {
    max-width: 700px;
    text-align: left;
    position: relative;
    z-index: 5;
    pointer-events: auto;
}

.hero-badge {
    display: inline-block;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 20px;
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 30px;
    text-transform: uppercase;
    opacity: 0.95;
    border-radius: 50px;
    backdrop-filter: blur(5px);
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.15;
    margin-bottom: 25px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -1.5px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-title strong {
    font-weight: 800;
    color: var(--white);
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: 0.3px;
    max-width: 600px;
}

.btn-hero {
    background: var(--white);
    color: var(--primary-color);
    padding: 15px 35px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid var(--white);
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    cursor: pointer;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.btn-hero:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Dots & scroll indicator */
.slider-dots {
    position: absolute;
    bottom: 40px;
    right: 50px;
    z-index: 4;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.dot.active {
    background: var(--white);
    border-color: var(--white);
    transform: scale(1.3);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 60px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}



@keyframes scrollMouse {
    0% {
        top: 6px;
        opacity: 1;
    }

    100% {
        top: 20px;
        opacity: 0;
    }
}

/* Decorative logo - hidden */
.hero-decorative-logo {
    display: none;
}

.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    z-index: 9999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.whatsapp-widget:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.2);
}

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

.swiper-pagination {
    bottom: 30px !important;
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    width: 12px;
    height: 12px;
}

.swiper-pagination-bullet-active {
    background: #fff;
}

/* ===== Video Showcase Section ===== */
.video-showcase {
    background: var(--white);
    padding: 100px 0 80px;
}

.video-grid-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.video-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-info {
    padding: 24px;
    background: #fff;
}

.video-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.video-info p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive for video grid */
@media (max-width: 1024px) {
    .video-grid {
        gap: 24px;
    }

    .video-info {
        padding: 20px;
    }
}

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

    .video-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 16px;
    }

    .video-info h4 {
        font-size: 1rem;
    }

    .video-info p {
        font-size: 0.85rem;
    }
}

/* Center a lone (orphaned) last landscape video card */
.video-grid > .video-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: calc(50% - 15px);
    margin-left: auto;
    margin-right: auto;
}

/* ===== Shorts / Reels (vertical videos) ===== */
.shorts-heading {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 60px 0 30px;
}

.shorts-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.short-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    width: 300px;
    max-width: 100%;
}

.short-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.short-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 177.78%;
    /* 9:16 portrait aspect ratio */
    background: #000;
}

.short-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .video-grid > .video-card:last-child:nth-child(odd) {
        max-width: 100%;
    }

    .shorts-heading {
        margin: 48px 0 24px;
        font-size: 1.25rem;
    }

    .shorts-strip {
        gap: 20px;
    }
}

/* Product Groups Section */
.product-groups-section {
    background: var(--white);
    padding: 100px 0 80px;
}

.section-heading {
    font-size: 1rem;
    color: #1a1a1a;
    font-weight: 500;
    margin-bottom: 12px;
    text-align: left;
    letter-spacing: 0.3px;
    text-transform: none;
}

.section-subheading {
    font-size: 2.5rem;
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 18px;
    text-align: left;
    letter-spacing: -1px;
    line-height: 1.2;
}

.section-text {
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.6;
    text-align: left;
    max-width: 650px;
    font-weight: 400;
    margin: 0;
}

/* Product Showcase */
.product-showcase {
    padding: 60px 0 90px;
    background: #f7f7f7;
}

.product-showcase-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

@media (max-width: 992px) {
    .product-showcase-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 0 24px;
    }

    .product-showcase-image {
        height: 260px;
    }

    .product-showcase-info {
        padding: 20px 22px 22px;
    }
}

@media (max-width: 768px) {
    .product-showcase-grid {
        grid-template-columns: 1fr;
        padding: 0 16px;
    }

    .product-showcase-image {
        height: 240px;
    }

    .product-showcase-text h4 {
        font-size: 1rem;
    }

    .product-showcase-subtitle {
        font-size: 0.8rem;
    }

    .product-showcase-arrow {
        width: 38px;
        height: 38px;
        font-size: 1.2rem;
    }
}

.product-showcase-item {
    background: #ffffff;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.product-showcase-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.product-showcase-image {
    position: relative;
    overflow: hidden;
}

.product-showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(21, 35, 67, 0) 0%, rgba(21, 35, 67, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.product-showcase-item:hover .product-showcase-image img {
    transform: scale(1.1);
}

.product-showcase-item:hover .product-overlay {
    opacity: 1;
}

.product-showcase-info {
    position: static;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 26px 26px;
    background: #ffffff;
    color: #1a2335;
}

.product-showcase-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 4px 0;
    line-height: 1.4;
}

.product-showcase-subtitle {
    font-size: 0.85rem;
    color: #8e95a3;
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-showcase-arrow {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 6px;
    border: 1px solid #d3d7e3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #182645;
    font-size: 1.4rem;
    background: #ffffff;
    text-decoration: none;
    transition: all 0.25s ease;
}

.product-showcase-item:hover .product-showcase-arrow {
    background: #182645;
    color: #ffffff;
    border-color: #182645;
}

/* Quality Section */
.quality-section {
    padding: 80px 0;
    background: #f8f8f8;
}

.quality-title {
    font-size: 1rem;
    color: #1a1a1a;
    font-weight: 500;
    margin-bottom: 12px;
    text-align: left;
    letter-spacing: 0.3px;
    text-transform: none;
}

.quality-subtitle {
    font-size: 2.5rem;
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 18px;
    text-align: left;
    letter-spacing: -1px;
    line-height: 1.2;
}

.quality-text {
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.6;
    text-align: left;
    max-width: 650px;
    font-weight: 400;
    margin: 0;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

.about-text {
    text-align: left;
}

.about-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-text p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.btn-about {
    display: inline-block;
    margin-top: 15px;
    padding: 14px 35px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-about:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(21, 35, 67, 0.2);
}

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

.stat-item {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-item p {
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
    background: var(--white);
}

.blog-heading {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 50px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-item {
    padding: 40px;
    border: 1px solid #eee;
    background: #fff;
    transition: all 0.3s ease;
}

.blog-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.blog-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-item p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.blog-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

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

/* Promo Section */
.promo-section {
    padding: 80px 0;
    background: var(--primary-color);
    color: #fff;
}

.promo-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 30px;
}

.promo-text {
    flex: 1;
    min-width: 300px;
}

.promo-brand {
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.promo-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.promo-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

.promo-btn {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
}

.promo-btn:hover {
    background: #fff;
    color: var(--primary-color);
    transform: scale(1.1);
}

.partners {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.partner-item {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.partner-item:hover {
    opacity: 1;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: space-between;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-heading {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.8;
}

.contact-info strong {
    color: var(--primary-color);
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.contact-map {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background: #333;
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer */
.footer {
    background: #fff;
    color: #333;
    padding: 60px 0 20px;
    border-top: 1px solid #e0e0e0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.footer-col p {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}

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

.footer-col ul li a {
    font-size: 14px;
    color: #666;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #e0e0e0;
    padding-top: 25px;
    font-size: 13px;
    color: #999;
}

.developer-credit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    background: #f5f6f8;
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid #e6e8ec;
    transition: all 0.3s ease;
}

.developer-credit:hover {
    background: rgba(194, 141, 63, 0.1);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.developer-credit .made-by {
    color: #777;
    font-size: 0.85rem;
}

.developer-credit .agency-link {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.5px;
}

.developer-credit .agency-link i {
    color: var(--accent-color);
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.developer-credit:hover .agency-link i {
    transform: translate(2px, -2px);
}

/* Footer Social Media Icons */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    align-items: center;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 16px;
}

.footer-social a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.footer-social a i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* Footer Contact Info */
.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    color: #666;
    font-size: 14px;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact li i {
    color: var(--accent-color);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact li a {
    color: #666;
    transition: color 0.3s ease;
}

.footer-contact li a:hover {
    color: var(--accent-color);
}

/* Responsive */
@media (max-width: 1200px) {
    .nav-link {
        padding: 0 15px;
    }
}

@media (max-width: 991px) {
    .header-container {
        padding: 0 20px;
    }

    .navbar {
        height: 80px;
        /* Force LTR layout regardless of language */
        flex-direction: row !important;
        direction: ltr !important;
        justify-content: space-between !important;
    }

    /* Keep logo on left side always */
    .logo {
        order: 1 !important;
        margin-right: auto !important;
        margin-left: 0 !important;
    }

    /* Keep nav-right on right side always */
    .nav-right {
        order: 2 !important;
        margin-left: auto !important;
        margin-right: 0 !important;
        flex-direction: row !important;
        direction: ltr !important;
        gap: 15px !important;
    }

    /* Override RTL for navbar on mobile */
    body.rtl .navbar,
    html[dir="rtl"] .navbar {
        flex-direction: row !important;
        direction: ltr !important;
        justify-content: space-between !important;
    }

    body.rtl .logo,
    html[dir="rtl"] .logo {
        order: 1 !important;
        margin-right: auto !important;
        margin-left: 0 !important;
    }

    body.rtl .nav-right,
    html[dir="rtl"] .nav-right {
        order: 2 !important;
        margin-left: auto !important;
        margin-right: 0 !important;
        flex-direction: row !important;
        direction: ltr !important;
    }

    body.rtl .logo-icon,
    html[dir="rtl"] .logo-icon {
        margin-right: 15px !important;
        margin-left: 0 !important;
    }

    .hamburger {
        display: flex;
        z-index: 10000;
        position: relative;
    }

    .nav-menu {
        display: none;
        position: fixed;
        left: 0;
        top: 0;
        flex-direction: column;
        background: rgba(21, 35, 67, 0.98);
        width: 100%;
        padding: 100px 0 20px 0;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
        height: 100vh;
        z-index: 10001;
        overflow-y: auto;
        justify-content: flex-start;
        align-items: center;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-item {
        width: 100%;
        text-align: center;
    }

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

    .nav-link {
        line-height: 60px;
        padding: 0 30px;
        display: block;
        font-size: 16px;
        width: 100%;
    }

    .nav-link:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .btn-quote,
    .lang-switch,
    .search-btn {
        display: none;
    }

    .logo-text {
        font-size: 16px;
    }

    .logo-text span {
        font-size: 8px;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 15px;
    }

    .navbar {
        height: 70px;
    }

    .slide-title {
        font-size: 28px;
    }

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

    .hero-badge {
        font-size: 0.6rem;
        margin-bottom: 20px;
        padding: 6px 15px;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .btn-hero {
        padding: 12px 28px;
        font-size: 0.85rem;
    }

    .hero-text {
        max-width: 100%;
        padding: 0 15px;
    }

    .section-heading,
    .quality-title {
        font-size: 28px;
    }

    .product-showcase-image {
        height: 280px;
    }

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

    .contact-content {
        flex-direction: column;
    }

    .contact-map {
        height: 300px;
    }

    .scroll-indicator {
        left: 20px;
        bottom: 20px;
        font-size: 10px;
    }

    .whatsapp-widget {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }

    .slider-dots {
        right: 20px;
        bottom: 20px;
        gap: 8px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 15px;
    }

    .navbar {
        height: 60px;
        /* Force LTR layout regardless of language */
        flex-direction: row !important;
        direction: ltr !important;
        justify-content: space-between !important;
    }

    /* Keep logo on left side always */
    .logo {
        order: 1 !important;
        margin-right: auto !important;
        margin-left: 0 !important;
    }

    /* Keep nav-right on right side always */
    .nav-right {
        order: 2 !important;
        margin-left: auto !important;
        margin-right: 0 !important;
        flex-direction: row !important;
        direction: ltr !important;
        gap: 15px !important;
    }

    /* Override RTL for navbar on mobile */
    body.rtl .navbar,
    html[dir="rtl"] .navbar {
        flex-direction: row !important;
        direction: ltr !important;
        justify-content: space-between !important;
    }

    body.rtl .logo,
    html[dir="rtl"] .logo {
        order: 1 !important;
        margin-right: auto !important;
        margin-left: 0 !important;
    }

    body.rtl .nav-right,
    html[dir="rtl"] .nav-right {
        order: 2 !important;
        margin-left: auto !important;
        margin-right: 0 !important;
        flex-direction: row !important;
        direction: ltr !important;
    }

    .logo-text {
        font-size: 14px;
        letter-spacing: 2px;
    }

    .logo-text span {
        font-size: 7px;
        letter-spacing: 3px;
    }

    .slide-title {
        font-size: 24px;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
        letter-spacing: -0.5px;
    }

    .hero-badge {
        font-size: 0.55rem;
        letter-spacing: 2px;
        margin-bottom: 15px;
        padding: 5px 12px;
    }

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }

    .btn-hero {
        font-size: 0.8rem;
        padding: 12px 24px;
    }

    .product-showcase-image {
        height: 240px;
    }

    .hamburger .bar {
        width: 22px;
    }

    .scroll-indicator span {
        display: none;
    }
}

/* --- CORPORATE PAGE STYLES (Skyline Style) --- */

/* Interior Page Header - Solid Dark */
.page-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--primary-color);
}

/* Page Hero Banner - Full Width */
.page-hero {
    position: relative;
    height: 350px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 50px;
    margin-top: 0;
    overflow: hidden;
    width: 100%;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(21, 35, 67, 0.6), rgba(21, 35, 67, 0.85));
}

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

.page-hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 4px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #fff;
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-current {
    color: rgba(255, 255, 255, 0.95);
}

/* About Section - Proper Layout */
.about-section {
    padding: 100px 0;
    background: #fff;
}

.about-section .container {
    max-width: 1200px;
}

.about-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 80px;
    align-items: start;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-content {
    position: relative;
    padding-right: 40px;
}

.about-decorative {
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 120px;
    color: var(--primary-color);
    opacity: 0.12;
}

.window-icon {
    width: 100%;
    height: 100%;
}

.about-company-name {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 400;
}

.about-heading {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-tagline {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 30px;
    font-style: italic;
}

.about-text {
    font-size: 0.92rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 18px;
    text-align: justify;
}

/* Mission & Vision Section */
.mv-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.mv-section .container {
    max-width: 1200px;
}

.mv-header {
    text-align: center;
    margin-bottom: 50px;
}

.mv-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.mv-subtitle {
    font-size: 1rem;
    color: #666;
}

.mv-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mv-card {
    background: #fff;
    padding: 50px 40px;
    border-radius: 4px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.mv-card-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.8rem;
}

.mv-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.mv-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.8;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: #fff;
}

.values-section .container {
    max-width: 1200px;
}

.values-header {
    text-align: center;
    margin-bottom: 50px;
}

.values-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.value-card {
    text-align: center;
    padding: 40px 25px;
    background: #f8f9fa;
    border-radius: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    background: #fff;
}

.value-card .value-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
}

.value-card h4 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.7;
}

/* Responsive Corporate Page */
@media (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-content {
        padding-right: 0;
    }

    .about-decorative {
        display: none;
    }

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

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

@media (max-width: 768px) {}

.nav-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 20px;
    width: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.nav-item:last-child::after {
    display: none;
}

.nav-link {
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    padding: 0 20px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: block;
    opacity: 0.95;
}

.nav-link.active {
    opacity: 1;
}

.nav-link:hover {
    opacity: 1;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Quote button fix */
.btn-quote {
    font-size: 10px;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    padding: 0 20px;
    height: 40px;
    line-height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    margin-left: 20px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
    background: transparent;
}

/* ========================================
   MOBILE SLIDE-IN MENU
   ======================================== */
@media (max-width: 991px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 100px 40px 40px;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 9998;
        box-shadow: 5px 0 30px rgba(0, 0, 0, 0.15);
        margin-left: 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu::before {
        content: 'SiMART';
        position: absolute;
        top: 30px;
        left: 40px;
        font-size: 22px;
        font-weight: 600;
        color: var(--primary-color);
        letter-spacing: 3px;
    }

    .nav-menu::after {
        content: 'ALUMINIUM SYSTEMS';
        position: absolute;
        top: 55px;
        left: 40px;
        font-size: 8px;
        font-weight: 400;
        color: rgba(21, 35, 67, 0.5);
        letter-spacing: 4px;
    }

    .nav-item {
        width: 100%;
        padding: 0;
        margin: 0;
    }

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

    .nav-link {
        display: block;
        color: var(--primary-color);
        font-size: 15px;
        font-weight: 500;
        padding: 18px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        width: 100%;
        opacity: 1;
        letter-spacing: 0.5px;
    }

    .nav-link:hover {
        color: var(--accent-color);
        opacity: 1;
        text-shadow: none;
    }

    .hamburger {
        display: flex;
        z-index: 10000;
        position: relative;
    }

    .hamburger.active .bar {
        background: var(--primary-color);
    }

    /* Close button X animation */
    .hamburger.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Mobile menu overlay */
    .nav-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 9997;
    }

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

    .btn-quote {
        display: none;
    }

    .lang-switch {
        display: none;
    }

    .search-btn {
        display: none;
    }

    .header-container {
        padding: 0 20px;
    }

    .navbar {
        height: 70px;
    }

    .logo-text {
        font-size: 20px;
    }
}

/* Enhanced Scroll Indicator */
.scroll-indicator {
    background: rgba(0, 0, 0, 0.25);
    padding: 12px 20px;
    border-radius: 30px;
    backdrop-filter: blur(8px);
    font-weight: 500;
}

.scroll-indicator span {
    line-height: 1.3;
}

.mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    position: relative;
    display: flex;
    justify-content: center;
}

.mouse::before {
    content: '';
    width: 3px;
    height: 10px;
    background: #fff;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    animation: scrollMouseNew 1.8s infinite;
}

@keyframes scrollMouseNew {
    0% {
        top: 8px;
        opacity: 1;
    }

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

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

/* Scroll indicator visible on mobile */
@media (max-width: 991px) {
    .scroll-indicator {
        left: 20px;
        bottom: 30px;
        padding: 10px 16px;
        font-size: 11px;
        gap: 12px;
    }

    .scroll-indicator span {
        display: block !important;
    }

    .mouse {
        width: 20px;
        height: 32px;
    }

    .mouse::before {
        height: 8px;
        top: 6px;
    }
}

/* Product Groups Section - Mobile Improvements */
@media (max-width: 991px) {
    .product-groups-section {
        padding: 60px 0 40px;
        text-align: center;
    }

    .product-groups-section .container {
        padding: 0 20px;
    }

    .section-heading {
        text-align: center;
        font-size: 0.9rem;
    }

    .section-subheading {
        text-align: center;
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .section-text {
        text-align: center;
        margin: 0 auto;
        font-size: 0.9rem;
    }

    .product-showcase {
        padding: 40px 0 60px;
    }

    .product-showcase-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 20px;
    }

    .product-showcase-item {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    }

    .product-showcase-image {
        height: 220px;
    }

    .product-showcase-info {
        padding: 20px;
    }

    .product-showcase-text h4 {
        font-size: 1rem;
        margin-bottom: 6px;
    }

    .product-showcase-subtitle {
        font-size: 0.75rem;
        line-height: 1.4;
    }

    .product-showcase-arrow {
        width: 38px;
        height: 38px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .section-subheading {
        font-size: 1.6rem;
    }

    .product-showcase-image {
        height: 200px;
    }
}

/* ========================================
   CORPORATE PAGE - MOBILE FIXES
   ======================================== */
@media (max-width: 991px) {

    .corporate-about,
    .about-section .about-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .about-section .about-content {
        padding: 0 15px;
        text-align: center;
    }

    .about-section .about-image {
        max-width: 100%;
        margin: 0 auto;
    }

    .about-section .about-image img {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .about-section .about-heading {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }

    .about-section .about-company-name {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .about-section .about-text {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 15px;
        text-align: left;
    }

    .about-section .about-tagline {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }

    .about-section .about-decorative {
        display: none;
    }

    .about-section .btn-about {
        margin-top: 20px;
    }

    /* Mission & Vision Cards */
    .mv-section {
        padding: 50px 0;
    }

    .mv-cards {
        flex-direction: column;
        gap: 20px;
    }

    .mv-card {
        padding: 25px 20px;
    }

    .mv-card h3 {
        font-size: 1.2rem;
    }

    .mv-card p {
        font-size: 0.88rem;
        line-height: 1.5;
    }

    /* Values Grid */
    .values-section {
        padding: 50px 0;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .value-card {
        padding: 25px 15px;
    }

    .value-card h4 {
        font-size: 0.95rem;
    }

    .value-card p {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .value-card .value-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 40px 0;
    }

    .about-section .about-text {
        font-size: 0.85rem;
    }

    .about-section .about-heading {
        font-size: 1.4rem;
    }

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

/* ========================================
   ACHIEVEMENTS SECTION - OWNER STATS
   ======================================== */
.achievements-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.achievements-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.achievements-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

.btn-achievements {
    display: inline-block;
    padding: 14px 35px;
    background: var(--primary-color);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-achievements:hover {
    background: var(--accent-color);
}

.achievements-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-card h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-card p {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.stat-card span {
    display: block;
    font-size: 0.8rem;
    color: var(--accent-color);
    font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .achievements-section {
        padding: 50px 0;
    }

    .achievements-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .achievements-text h2 {
        font-size: 1.6rem;
    }

    .achievements-text p {
        font-size: 0.95rem;
    }

    .achievements-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat-card {
        padding: 25px 15px;
    }

    .stat-card h3 {
        font-size: 1.8rem;
    }

    .stat-card p {
        font-size: 0.75rem;
    }

    .stat-card span {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .achievements-stats {
        grid-template-columns: 1fr 1fr;
    }

    .stat-card h3 {
        font-size: 1.5rem;
    }
}

/* ========================================
   SOLUTIONS SECTION (INSIGHTS & EXPERTISE)
   ======================================== */
.solutions-section {
    padding: 80px 0;
    background: #fff;
}

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

.solutions-image {
    border-radius: 12px;
    overflow: hidden;
}

.solutions-image img {
    width: 100%;
    height: auto;
    display: block;
}

.solutions-content {
    padding: 20px 0;
}

.solutions-heading {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.solutions-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.solutions-content>p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.solutions-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.solutions-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 1rem;
    color: #333;
}

.solutions-features li i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.btn-solutions {
    display: inline-block;
    padding: 14px 35px;
    background: var(--accent-color);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

/* Mobile Responsive */
@media (max-width: 991px) {
    .solutions-section {
        padding: 50px 0;
    }

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

    .solutions-image {
        max-width: 400px;
        margin: 0 auto;
    }

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

    .solutions-title {
        font-size: 1.6rem;
    }

    .solutions-features {
        text-align: left;
        max-width: 350px;
        margin: 0 auto 25px;
    }
}

/* ========================================
   IMPROVED PROMO SECTION STYLING
   ======================================== */
.promo-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a2d4d 100%);
    position: relative;
    overflow: hidden;
}

.promo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></svg>') repeat;
    background-size: 100px 100px;
}

.promo-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 0;
    position: relative;
    z-index: 1;
}

.promo-brand {
    font-size: 0.85rem !important;
    letter-spacing: 3px;
    color: var(--accent-color) !important;
    margin-bottom: 10px !important;
}

.promo-title {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: #fff !important;
    margin-bottom: 10px !important;
}

.promo-subtitle {
    font-size: 1.1rem !important;
    color: rgba(255, 255, 255, 0.8) !important;
    font-style: italic;
}

.promo-btn {
    width: 60px;
    height: 60px;
    background: var(--accent-color) !important;
    border-radius: 8px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-size: 1.5rem;
    transition: all 0.3s ease !important;
    flex-shrink: 0;
}

.promo-btn:hover {
    background: #fff !important;
    color: var(--primary-color) !important;
    transform: translateX(5px);
}

.partners {
    background: #fff;
    padding: 40px;
    margin-top: 0;
    border-top: 3px solid var(--accent-color);
}

.partners-heading {
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    color: var(--primary-color) !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px !important;
}

.partners-grid {
    display: flex;
    gap: 40px;
    align-items: center;
}

.partner-logo-placeholder {
    font-size: 0.85rem;
    font-weight: 600;
    color: #666;
    padding: 10px 20px;
    background: #f5f5f5;
    border-radius: 4px;
}

@media (max-width: 991px) {
    .promo-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 40px 20px;
    }

    .promo-title {
        font-size: 1.8rem !important;
    }

    .partners {
        padding: 30px 20px;
    }

    .partners-grid {
        flex-direction: column;
        gap: 15px;
    }
}

/* ========================================
   LANGUAGE DROPDOWN STYLES
   ======================================== */
.lang-dropdown {
    position: relative;
    display: inline-block;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 12px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.lang-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.lang-toggle i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.lang-dropdown.open .lang-toggle i {
    transform: rotate(180deg);
}

.lang-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
}

.lang-dropdown.open .lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: #333;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

.lang-option:hover {
    background: #f5f5f5;
}

.lang-option.active {
    background: var(--primary-color);
    color: #fff;
}

.lang-option .lang-flag {
    font-size: 1.1rem;
}

/* Header scrolled state */
.header.scrolled .lang-toggle {
    border-color: rgba(21, 35, 67, 0.2);
    color: var(--primary-color);
}

.header.scrolled .lang-toggle:hover {
    background: rgba(21, 35, 67, 0.05);
}

/* RTL Support */
body.rtl {
    direction: rtl;
    text-align: right;
}

body.rtl .nav-menu {
    flex-direction: row-reverse;
}

body.rtl .lang-menu {
    right: auto;
    left: 0;
}

body.rtl .hero-text {
    text-align: right;
}

body.rtl .footer-content {
    flex-direction: row-reverse;
}

/* Enhanced RTL text alignment */
body.rtl h1,
body.rtl h2,
body.rtl h3,
body.rtl h4,
body.rtl h5,
body.rtl h6,
body.rtl p,
body.rtl span,
body.rtl div {
    text-align: right;
}

body.rtl .section-heading,
body.rtl .section-text,
body.rtl .product-card-content,
body.rtl .projects-intro,
body.rtl .products-intro {
    text-align: right;
}

/* Center-aligned elements should remain centered in RTL */
body.rtl .page-hero-title,
body.rtl .breadcrumb,
body.rtl .projects-intro h2,
body.rtl .products-intro h2 {
    text-align: center;
}

/* Better font rendering for Kurdish */
body.rtl,
html[dir="rtl"] {
    font-feature-settings: "kern" 1, "liga" 1;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Mobile Language Dropdown */
@media (max-width: 991px) {
    .lang-dropdown {
        width: 100%;
        margin-top: 15px;
    }

    .lang-toggle {
        width: 100%;
        justify-content: center;
        padding: 12px;
        background: rgba(255, 255, 255, 0.1);
    }

    .lang-menu {
        position: relative;
        width: 100%;
        margin-top: 10px;
        box-shadow: none;
        border: 1px solid rgba(255, 255, 255, 0.2);
        background: rgba(255, 255, 255, 0.05);
    }

    .lang-option {
        color: #fff;
        justify-content: center;
    }

    .lang-option:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .lang-option.active {
        background: var(--accent-color);
    }
}

/* ========================================
   MOBILE LANGUAGE DROPDOWN FIX
   ======================================== */
@media (max-width: 991px) {
    .lang-dropdown {
        order: 1 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .nav-menu.active .lang-dropdown,
    .nav-right .lang-dropdown {
        display: block !important;
    }

    .lang-toggle {
        padding: 8px 12px;
        background: rgba(255, 255, 255, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .lang-menu {
        position: absolute;
        top: 100%;
        right: 0;
        left: auto;
        width: auto;
        min-width: 150px;
        background: #fff;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        border: none;
        z-index: 9999;
        direction: ltr !important;
        text-align: left !important;
    }

    /* Keep lang-menu positioning consistent in RTL */
    body.rtl .lang-menu,
    html[dir="rtl"] .lang-menu {
        right: 0 !important;
        left: auto !important;
        direction: ltr !important;
        text-align: left !important;
    }

    .lang-menu .lang-option {
        color: #333;
        padding: 12px 16px;
    }

    .lang-menu .lang-option:hover {
        background: #f5f5f5;
    }

    .lang-menu .lang-option.active {
        background: var(--primary-color);
        color: #fff;
    }
}

/* ========================================
   LANGUAGE DROPDOWN SPACING FIX
   ======================================== */
.lang-dropdown {
    margin-left: 20px;
}

.btn-quote {
    margin-right: 10px;
}

@media (max-width: 991px) {
    .lang-dropdown {
        margin-left: 0;
        margin-right: 20px;
    }

    .hamburger {
        margin-left: 10px;
    }
}

/* Mobile Language Dropdown - More Spacing */
@media (max-width: 991px) {
    .nav-right .lang-dropdown {
        margin-right: 25px !important;
        margin-left: 15px !important;
    }

    .nav-right .hamburger {
        margin-left: 0 !important;
    }
}

/* ========================================
   MOBILE HEADER - CLEAN LAYOUT FIX
   ======================================== */
@media (max-width: 991px) {
    .nav-right {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        gap: 15px !important;
        flex-direction: row !important;
        direction: ltr !important;
    }

    .nav-right .lang-dropdown {
        order: 1 !important;
        margin: 0 !important;
    }

    .nav-right .hamburger {
        order: 2 !important;
        margin: 0 !important;
    }

    .nav-right .btn-quote,
    .nav-right .nav-menu {
        display: none !important;
    }

    .lang-toggle {
        padding: 6px 10px !important;
        font-size: 0.8rem !important;
    }

    /* Force LTR layout for nav-right even in RTL */
    body.rtl .nav-right,
    html[dir="rtl"] .nav-right {
        flex-direction: row !important;
        direction: ltr !important;
        justify-content: flex-end !important;
    }

    body.rtl .nav-right .lang-dropdown,
    html[dir="rtl"] .nav-right .lang-dropdown {
        order: 1 !important;
    }

    body.rtl .nav-right .hamburger,
    html[dir="rtl"] .nav-right .hamburger {
        order: 2 !important;
    }
}

/* ========================================
   MOBILE HEADER FIX - HAMBURGER + LANG
   ======================================== */
@media (max-width: 991px) {
    .nav-right {
        display: flex !important;
        align-items: center !important;
        gap: 20px !important;
        flex-direction: row !important;
        direction: ltr !important;
    }

    /* Language dropdown first (left), then hamburger (right) */
    .nav-right .lang-dropdown {
        order: 1 !important;
    }

    .nav-right .hamburger {
        order: 2 !important;
        display: flex !important;
        flex-direction: column !important;
        cursor: pointer !important;
        z-index: 1000 !important;
    }

    /* Hide quote button on mobile */
    .nav-right .btn-quote {
        display: none !important;
    }

    /* Make sure hamburger bars are visible */
    .hamburger .bar {
        display: block !important;
        width: 25px !important;
        height: 3px !important;
        background: #fff !important;
        margin: 4px 0 !important;
    }

    /* Force LTR layout even in RTL */
    body.rtl .nav-right,
    html[dir="rtl"] .nav-right {
        flex-direction: row !important;
        direction: ltr !important;
    }

    body.rtl .nav-right .lang-dropdown,
    html[dir="rtl"] .nav-right .lang-dropdown {
        order: 1 !important;
    }

    body.rtl .nav-right .hamburger,
    html[dir="rtl"] .nav-right .hamburger {
        order: 2 !important;
    }
}

/* ========================================
   MOBILE NAV MENU FIX - RESTORE ORIGINAL
   ======================================== */
@media (max-width: 991px) {

    /* Restore hamburger original styling */
    .nav-right .hamburger {
        display: flex !important;
        flex-direction: column !important;
        cursor: pointer !important;
        z-index: 1001 !important;
        background: none !important;
        border: none !important;
        padding: 5px !important;
    }

    /* Ensure nav-menu shows when active */
    .nav-menu {
        display: none;
    }

    .nav-menu.active {
        display: flex !important;
        flex-direction: column !important;
        position: fixed !important;
        top: 80px !important;
        left: 0 !important;
        right: 0 !important;
        background: var(--primary-color) !important;
        padding: 20px !important;
        z-index: 999 !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
    }

    .nav-menu.active .nav-item {
        margin: 10px 0 !important;
    }

    .nav-menu.active .nav-link {
        color: #fff !important;
        font-size: 1.1rem !important;
        padding: 10px 0 !important;
    }
}

/* ========================================
   MOBILE MENU - SKYLINE STYLE
   ======================================== */
@media (max-width: 991px) {

    /* Smaller hamburger bars */
    .hamburger .bar {
        width: 22px !important;
        height: 2px !important;
        margin: 3px 0 !important;
        background: #fff !important;
        transition: all 0.3s ease !important;
    }

    /* Full screen mobile menu */
    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        background: #fff !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 100px 40px 40px !important;
        transform: translateX(100%) !important;
        transition: transform 0.3s ease !important;
        z-index: 998 !important;
    }

    .nav-menu.active {
        display: flex !important;
        transform: translateX(0) !important;
    }

    .nav-menu .nav-item {
        width: 100% !important;
        margin: 0 !important;
        border-bottom: 1px solid #eee !important;
    }

    .nav-menu .nav-link {
        display: block !important;
        color: #333 !important;
        font-size: 1rem !important;
        font-weight: 400 !important;
        padding: 18px 0 !important;
    }

    .nav-menu .nav-link:hover {
        color: var(--primary-color) !important;
    }

    /* X button when menu is open */
    .hamburger.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px) !important;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0 !important;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px) !important;
    }

    /* Keep hamburger visible above menu */
    .hamburger {
        z-index: 1001 !important;
    }

    .hamburger.active .bar {
        background: #333 !important;
    }
}

/* ========================================
   MOBILE MENU - WHITE + SMALLER HAMBURGER
   ======================================== */
@media (max-width: 991px) {

    /* Smaller hamburger icon */
    .hamburger {
        padding: 3px !important;
    }

    .hamburger .bar {
        width: 18px !important;
        height: 2px !important;
        margin: 2px 0 !important;
    }

    /* White background menu */
    .nav-menu {
        background: #fff !important;
    }

    .nav-menu.active {
        background: #fff !important;
    }

    .nav-menu .nav-link {
        color: #333 !important;
        text-transform: uppercase !important;
        font-weight: 500 !important;
        letter-spacing: 1px !important;
    }

    .nav-menu .nav-item {
        border-bottom: 1px solid #ddd !important;
        text-align: center !important;
    }
}

/* ========================================
   MOBILE MENU - VISIBLE TEXT FIX
   ======================================== */
@media (max-width: 991px) {
    .nav-menu.active .nav-item {
        display: block !important;
        width: 100% !important;
    }

    .nav-menu.active .nav-link {
        display: block !important;
        color: #1a2d4d !important;
        font-size: 1rem !important;
        font-weight: 400 !important;
        padding: 20px 0 !important;
        text-align: left !important;
        text-transform: none !important;
    }

    .nav-menu.active .nav-item {
        border-bottom: 1px solid #e5e5e5 !important;
    }

    /* Add Get a Quote link in mobile menu */
    .nav-menu.active .btn-quote {
        display: block !important;
        color: #1a2d4d !important;
        padding: 20px 0 !important;
        font-size: 1rem !important;
        background: none !important;
        border: none !important;
        text-align: left !important;
    }
}

/* ========================================
   MOBILE MENU - SKYLINE EXACT SPACING
   ======================================== */
@media (max-width: 991px) {
    .nav-menu.active {
        padding: 30px 35px !important;
    }

    .nav-menu.active .nav-item {
        margin: 0 !important;
        padding: 0 !important;
        border-bottom: 1px solid #e8e8e8 !important;
    }

    .nav-menu.active .nav-link {
        padding: 15px 0 !important;
        font-size: 0.95rem !important;
        font-weight: 400 !important;
        color: #1a2d4d !important;
        letter-spacing: 0 !important;
    }

    .nav-menu.active .nav-item:first-child .nav-link {
        padding-top: 0 !important;
    }
}

/* ========================================
   CLEAN MOBILE MENU - FINAL FIX
   ======================================== */
@media (max-width: 991px) {

    /* Reset nav-menu */
    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 85% !important;
        max-width: 350px !important;
        background: #fff !important;
        flex-direction: column !important;
        padding: 80px 40px 40px !important;
        margin: 0 !important;
        transform: translateX(-100%) !important;
        transition: transform 0.3s ease !important;
        z-index: 998 !important;
        box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1) !important;
        overflow-y: auto !important;
    }

    .nav-menu.active {
        transform: translateX(0) !important;
        display: flex !important;
    }

    /* Menu items */
    .nav-menu .nav-item {
        display: block !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        border-bottom: 1px solid #eee !important;
    }

    .nav-menu .nav-link {
        display: block !important;
        color: #1a2d4d !important;
        font-size: 0.95rem !important;
        font-weight: 400 !important;
        padding: 16px 0 !important;
        text-transform: none !important;
        letter-spacing: 0 !important;
        text-align: left !important;
    }

    /* Logo in mobile menu */
    .nav-menu::before {
        content: 'SiMART' !important;
        display: block !important;
        font-size: 1.5rem !important;
        font-weight: 700 !important;
        color: #1a2d4d !important;
        margin-bottom: 30px !important;
        padding-bottom: 15px !important;
        border-bottom: none !important;
    }

    /* Hamburger styling */
    .hamburger {
        display: flex !important;
        flex-direction: column !important;
        cursor: pointer !important;
        z-index: 1001 !important;
        padding: 5px !important;
    }

    .hamburger .bar {
        width: 20px !important;
        height: 2px !important;
        background: #fff !important;
        margin: 2px 0 !important;
        transition: all 0.3s ease !important;
    }

    .header.scrolled .hamburger .bar {
        background: #1a2d4d !important;
    }
}

/* ========================================
   MOBILE MENU CLOSE BUTTON & LOGO
   ======================================== */
@media (max-width: 991px) {

    /* Mobile menu close button - X in top right corner */
    .mobile-menu-close {
        position: absolute !important;
        top: 20px !important;
        right: 20px !important;
        width: 40px !important;
        height: 40px !important;
        background: none !important;
        border: none !important;
        font-size: 28px !important;
        font-weight: 300 !important;
        color: #333 !important;
        cursor: pointer !important;
        display: none !important;
        align-items: center !important;
        justify-content: center !important;
        line-height: 1 !important;
        z-index: 1002 !important;
        padding: 0 !important;
    }

    .nav-menu.active .mobile-menu-close {
        display: flex !important;
    }

    /* Mobile menu logo */
    .mobile-menu-logo {
        display: none !important;
        margin-bottom: 30px !important;
        font-size: 1.5rem !important;
        font-weight: 700 !important;
        color: #1a2d4d !important;
        line-height: 1.2 !important;
    }

    .nav-menu.active .mobile-menu-logo {
        display: block !important;
    }

    .mobile-menu-logo span {
        display: block !important;
        font-size: 0.55rem !important;
        font-weight: 400 !important;
        color: #888 !important;
        letter-spacing: 4px !important;
        margin-top: 3px !important;
    }

    /* Hide the ::after pseudo X button */
    .nav-menu::after {
        display: none !important;
    }
}

/* ========================================
   MOBILE MENU - FINAL CLEAN FIX
   ======================================== */
@media (max-width: 991px) {

    /* Remove pseudo-element logo */
    .nav-menu::before {
        display: none !important;
        content: none !important;
    }

    /* Clean mobile menu */
    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 80% !important;
        max-width: 320px !important;
        height: 100vh !important;
        background: #fff !important;
        padding: 90px 30px 30px !important;
        transform: translateX(-100%) !important;
        transition: transform 0.3s ease !important;
        z-index: 998 !important;
        box-shadow: 2px 0 15px rgba(0, 0, 0, 0.1) !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .nav-menu.active {
        transform: translateX(0) !important;
    }

    /* Menu items - proper spacing */
    .nav-menu .nav-item {
        display: block !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        border-bottom: 1px solid #eaeaea !important;
    }

    .nav-menu .nav-link {
        display: block !important;
        color: #1a2d4d !important;
        font-size: 0.95rem !important;
        font-weight: 400 !important;
        padding: 14px 0 !important;
        text-transform: none !important;
        letter-spacing: 0 !important;
        text-align: left !important;
    }

    /* Hamburger - clean styling */
    .hamburger {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        cursor: pointer !important;
        z-index: 1001 !important;
        padding: 5px !important;
        background: transparent !important;
        border: none !important;
    }

    .hamburger .bar {
        width: 22px !important;
        height: 2px !important;
        background: #fff !important;
        margin: 2.5px 0 !important;
        transition: all 0.3s ease !important;
        display: block !important;
    }

    .header.scrolled .hamburger .bar {
        background: #1a2d4d !important;
    }

    /* X animation when menu open */
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg) !important;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0 !important;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg) !important;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0 !important;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px) !important;
        background: #333 !important;
    }
}

/* ========================================
   HAMBURGER ICON - ENHANCED VISIBILITY FIX
   ======================================== */
@media (max-width: 991px) {

    /* Force hamburger to be visible and properly styled */
    .hamburger {
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        width: 24px !important;
        height: 18px !important;
        cursor: pointer !important;
        z-index: 1001 !important;
        padding: 0 !important;
        margin: 0 !important;
        background: transparent !important;
        border: none !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    /* Hamburger bars - always visible */
    .hamburger .bar {
        display: block !important;
        width: 100% !important;
        height: 2px !important;
        background-color: #fff !important;
        margin: 0 !important;
        border-radius: 1px !important;
        transition: all 0.3s ease !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    /* Dark bars when header is scrolled (white background) */
    .header.scrolled .hamburger .bar {
        background-color: #1a2d4d !important;
    }

    /* X animation when menu is active */
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg) !important;
        background-color: #1a2d4d !important;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0 !important;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg) !important;
        background-color: #1a2d4d !important;
    }
}

/* ========================================
   HAMBURGER ICON - ULTRA FORCE VISIBLE
   ======================================== */
/* Base hamburger - always flex on mobile */
.nav-right .hamburger,
.navbar .hamburger,
.header .hamburger,
div.hamburger {
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    width: 24px !important;
    height: 18px !important;
    cursor: pointer !important;
    z-index: 1001 !important;
    padding: 0 !important;
    margin: 0 0 0 15px !important;
    background: transparent !important;
    border: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative !important;
}

/* Hamburger bars - ultra visible */
.nav-right .hamburger .bar,
.navbar .hamburger .bar,
.header .hamburger .bar,
div.hamburger span.bar {
    display: block !important;
    width: 100% !important;
    height: 2px !important;
    background-color: #fff !important;
    margin: 0 !important;
    border-radius: 1px !important;
    transition: all 0.3s ease !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative !important;
}

/* Dark bars when scrolled */
.header.scrolled .hamburger .bar,
.header.scrolled .nav-right .hamburger .bar {
    background-color: #1a2d4d !important;
}

/* Desktop - hide hamburger */
@media (min-width: 992px) {

    .hamburger,
    .nav-right .hamburger,
    .navbar .hamburger {
        display: none !important;
    }
}

/* Mobile - force visible */
@media (max-width: 991px) {

    .hamburger,
    .nav-right .hamburger,
    .navbar .hamburger,
    .header .hamburger {
        display: flex !important;
    }

    .hamburger .bar,
    .nav-right .hamburger .bar,
    .navbar .hamburger .bar {
        display: block !important;
        background-color: #fff !important;
    }

    .header.scrolled .hamburger .bar {
        background-color: #1a2d4d !important;
    }
}

/* ========================================
   HAMBURGER X ANIMATION - IMPROVED
   ======================================== */
@media (max-width: 991px) {

    /* X animation when menu is active - better visibility */
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg) !important;
        background-color: #1a2d4d !important;
        width: 100% !important;
        opacity: 1 !important;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0 !important;
        transform: scale(0) !important;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg) !important;
        background-color: #1a2d4d !important;
        width: 100% !important;
        opacity: 1 !important;
    }

    /* Ensure X is visible on white menu background */
    .nav-menu.active~.hamburger .bar,
    .hamburger.active .bar {
        background-color: #1a2d4d !important;
    }
}

/* ========================================
   PHONE NUMBERS - FORCE LTR IN RTL MODE
   ======================================== */
/* Force LTR direction for phone numbers in RTL languages */
body.rtl a[href^="tel:"],
html[dir="rtl"] a[href^="tel:"],
body.rtl a[href*="wa.me"],
html[dir="rtl"] a[href*="wa.me"],
body.rtl input[type="tel"],
html[dir="rtl"] input[type="tel"] {
    direction: ltr !important;
    text-align: left !important;
    unicode-bidi: embed !important;
}

/* Force LTR for phone number text content */
body.rtl .footer-contact a[href^="tel:"],
html[dir="rtl"] .footer-contact a[href^="tel:"],
body.rtl .contact-item a[href^="tel:"],
html[dir="rtl"] .contact-item a[href^="tel:"],
body.rtl .contact-details a[href^="tel:"],
html[dir="rtl"] .contact-details a[href^="tel:"],
body.rtl .quote-contact a[href^="tel:"],
html[dir="rtl"] .quote-contact a[href^="tel:"] {
    direction: ltr !important;
    text-align: left !important;
    unicode-bidi: embed !important;
    display: inline-block !important;
}

/* Force LTR for phone number spans and text nodes */
body.rtl .phone-number,
html[dir="rtl"] .phone-number {
    direction: ltr !important;
    text-align: left !important;
    unicode-bidi: embed !important;
    display: inline-block !important;
}

/* ===== Innovation Section ===== */
.innovation-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f2f5 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.innovation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 50%, var(--primary-color) 100%);
}

.innovation-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.innovation-content {
    padding-right: 40px;
}

.innovation-heading {
    font-size: 1rem;
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.innovation-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 24px;
}

.innovation-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 32px;
}

.innovation-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.innovation-features li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    font-size: 1.05rem;
    color: #333;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.innovation-features li:last-child {
    border-bottom: none;
}

.innovation-features li i {
    color: var(--accent-color);
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
}

.btn-innovation {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 16px 40px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.btn-innovation:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(21, 35, 67, 0.15);
}

.innovation-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.innovation-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 60%, rgba(194, 141, 63, 0.1) 100%);
    z-index: 1;
    pointer-events: none;
}

.innovation-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.innovation-image:hover img {
    transform: scale(1.03);
}

/* Innovation Section RTL Support */
html[dir="rtl"] .innovation-content {
    padding-right: 0;
    padding-left: 40px;
}

html[dir="rtl"] .innovation-wrapper {
    direction: rtl;
}

/* Innovation Section Responsive */
@media (max-width: 1024px) {
    .innovation-section {
        padding: 80px 0;
    }

    .innovation-wrapper {
        gap: 50px;
    }

    .innovation-title {
        font-size: 2.2rem;
    }

    .innovation-content {
        padding-right: 20px;
    }
}

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

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

    .innovation-content {
        padding-right: 0;
        order: 2;
    }

    .innovation-image {
        order: 1;
    }

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

    .innovation-heading {
        font-size: 0.9rem;
    }

    .innovation-content p {
        font-size: 1rem;
    }

    .innovation-features li {
        font-size: 0.95rem;
        padding: 10px 0;
    }

    html[dir="rtl"] .innovation-content {
        padding-left: 0;
    }
}

/* ===== Map Open Button ===== */
.map-button-wrapper {
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-open-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a3a5c 100%);
    color: #fff;
    padding: 22px 50px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.4s ease;
    box-shadow: 0 15px 50px rgba(21, 35, 67, 0.3);
    border: 3px solid var(--primary-color);
}

.map-open-btn:hover {
    background: #fff;
    color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(21, 35, 67, 0.25);
}

.map-open-btn i:first-child {
    font-size: 1.4rem;
}

.map-open-btn i:last-child {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.map-open-btn:hover i:last-child {
    transform: translateX(5px) translateY(-3px);
}

@media (max-width: 768px) {
    .map-button-wrapper {
        padding: 30px 15px;
    }

    .map-open-btn {
        padding: 16px 28px;
        font-size: 0.9rem;
        gap: 10px;
    }

    .map-open-btn i:first-child {
        font-size: 1.1rem;
    }
}

/* RTL Support for Map Button */
html[dir="rtl"] .map-open-btn {
    flex-direction: row-reverse;
}

html[dir="rtl"] .map-open-btn:hover i:last-child {
    transform: translateX(-5px) translateY(-3px);
}

/* ===== Social Media Section ===== */
.social-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f2f5 100%);
}

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

.social-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.social-text {
    font-size: 1.15rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.social-icons-large {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.social-icon-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 40px 50px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    text-decoration: none;
    min-width: 180px;
}

.social-icon-card i {
    font-size: 3.5rem;
    transition: transform 0.3s ease;
}

.social-icon-card span {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-icon-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.social-icon-card:hover i {
    transform: scale(1.15);
}

/* Facebook */
.social-icon-card.facebook {
    border: 2px solid #1877f2;
}

.social-icon-card.facebook i,
.social-icon-card.facebook span {
    color: #1877f2;
}

.social-icon-card.facebook:hover {
    background: #1877f2;
}

.social-icon-card.facebook:hover i,
.social-icon-card.facebook:hover span {
    color: #fff;
}

/* Instagram */
.social-icon-card.instagram {
    border: 2px solid #e4405f;
}

.social-icon-card.instagram i,
.social-icon-card.instagram span {
    color: #e4405f;
}

.social-icon-card.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icon-card.instagram:hover i,
.social-icon-card.instagram:hover span {
    color: #fff;
}

/* WhatsApp */
.social-icon-card.whatsapp {
    border: 2px solid #25d366;
}

.social-icon-card.whatsapp i,
.social-icon-card.whatsapp span {
    color: #25d366;
}

.social-icon-card.whatsapp:hover {
    background: #25d366;
}

.social-icon-card.whatsapp:hover i,
.social-icon-card.whatsapp:hover span {
    color: #fff;
}

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

    .social-heading {
        font-size: 1.8rem;
    }

    .social-text {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .social-icons-large {
        gap: 20px;
    }

    .social-icon-card {
        padding: 30px 40px;
        min-width: 150px;
    }

    .social-icon-card i {
        font-size: 2.5rem;
    }

    .social-icon-card span {
        font-size: 0.95rem;
    }
}