﻿/* ==================== HEADER STYLES - KKIA EXACT MATCH ==================== */
:root {
    --header-top-bg: #e8f4f3;
    --header-main-bg: #ffffff;
    --primary-color: #04615C;
    --primary-hover: #034d49;
    --text-primary: #1a1a1a;
    --text-secondary: #04615C;
    --text-gray: #666666;
    --border-color: #e0e0e0;
    --dropdown-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

/* Reset */
.header-wrapper * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.header-wrapper {
    font-family: 'Frutiger', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    position: relative;
    z-index: 1000;
}

    .header-wrapper a {
        text-decoration: none;
    }

/* ==================== TOP BAR ==================== */
.header-top-bar {
    background-color: var(--header-top-bg);
    height: 32px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 52;
    display: none;
}

@media (min-width: 1024px) {
    .header-top-bar {
        display: block;
    }
}

.header-top-container {
    max-width: 1320px;
    width: 90%;
    margin: 0 auto;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

[dir="rtl"] .header-top-container {
    flex-direction: row-reverse;
}

.header-top-item {
    display: flex;
    align-items: center;
    padding: 0 12px;
    height: 100%;
    font-size: 12px;
    color: var(--text-secondary);
    border-right: 1px solid rgba(0,0,0,0.1);
    gap: 6px;
    cursor: pointer;
    transition: background-color var(--transition-fast);
    position: relative;
}

[dir="rtl"] .header-top-item {
    border-right: none;
    border-left: 1px solid rgba(0,0,0,0.1);
}

.header-top-item:hover {
    background-color: rgba(4, 97, 92, 0.05);
}

.header-top-item svg {
    width: 18px;
    height: 18px;
    color: var(--primary-color);
}

.header-top-item p {
    margin: 0;
    font-size: 12px;
    font-weight: 400;
}

.header-top-arrow {
    width: 8px !important;
    height: 8px !important;
    margin-left: 6px;
    transition: transform var(--transition-fast);
}

[dir="rtl"] .header-top-arrow {
    margin-left: 0;
    margin-right: 6px;
}

/* Language Dropdown */
.header-language {
    position: relative;
}

.header-language-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 12px;
    color: var(--text-secondary);
    padding: 0;
    height: 32px;
}

.header-language-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 150px;
    background: #fff;
    box-shadow: var(--dropdown-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-fast);
    z-index: 100;
    list-style: none;
}

[dir="rtl"] .header-language-dropdown {
    left: auto;
    right: 0;
}

.header-language:hover .header-language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-language:hover .header-top-arrow {
    transform: rotate(180deg);
}

.header-language-dropdown li {
    list-style: none;
}

.header-language-dropdown button {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 12px 16px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-primary);
    text-align: left;
    transition: background-color var(--transition-fast);
}

[dir="rtl"] .header-language-dropdown button {
    text-align: right;
}

.header-language-dropdown button:hover {
    background-color: #f5f5f5;
}

.header-language-dropdown img {
    width: 21px;
    height: 15px;
    object-fit: cover;
}

/* Corporate Link */
.header-corporate-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 12px;
}

    .header-corporate-link img {
        width: 9px;
        height: 17px;
    }

/* Accessibility */
.header-accessibility {
    position: relative;
}

.header-accessibility-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-secondary);
    padding: 0;
}

.header-accessibility-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 400px;
    background: #fff;
    box-shadow: var(--dropdown-shadow);
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-fast);
    z-index: 100;
}

[dir="rtl"] .header-accessibility-dropdown {
    right: auto;
    left: 0;
}

.header-accessibility:hover .header-accessibility-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-accessibility:hover .header-top-arrow {
    transform: rotate(180deg);
}

.header-accessibility-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    display: block;
}

.header-accessibility-options {
    display: flex;
    gap: 12px;
}

.header-accessibility-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 12px;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
}

    .header-accessibility-item:hover {
        border-color: var(--primary-color);
        background-color: rgba(4, 97, 92, 0.05);
    }

    .header-accessibility-item img,
    .header-accessibility-item svg {
        width: 24px;
        height: 24px;
        margin-bottom: 8px;
    }

    .header-accessibility-item span {
        font-size: 11px;
        color: var(--text-primary);
        text-align: center;
    }

/* ==================== MAIN HEADER ==================== */
.header-main {
    background-color: var(--header-main-bg);
    position: relative;
    z-index: 51;
}

@media (min-width: 1024px) {
    .header-main {
        margin-top: 32px;
    }
}

.header-main-container {
    max-width: 1320px;
    width: 90%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    position: relative;
}

@media (min-width: 768px) {
    .header-main-container {
        padding: 16px;
    }
}

/* Logo */
.header-logo a {
    display: block;
}

.header-logo img {
    height: 50px;
    width: auto;
}

@media (min-width: 768px) {
    .header-logo img {
        height: 55px;
    }
}

/* ==================== NAVIGATION ==================== */
.header-nav {
    display: none;
    align-items: center;
    gap: 0;
}

@media (min-width: 1024px) {
    .header-nav {
        display: flex;
    }
}

[dir="rtl"] .header-nav {
    flex-direction: row-reverse;
}

/* Nav Item */
.header-nav-item {
    position: static;
}

.header-nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 20px 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

@media (min-width: 1280px) {
    .header-nav-link {
        padding: 20px 16px;
    }
}

.header-nav-link:hover {
    color: var(--primary-color);
}

.header-nav-item:hover .header-nav-link {
    border-bottom-color: var(--primary-color);
}

.header-nav-arrow {
    width: 12px;
    height: 12px;
    transition: transform var(--transition-fast);
}

.header-nav-item:hover .header-nav-arrow {
    transform: rotate(180deg);
}

/* Search Button */
.header-search-btn {
    width: 40px;
    height: 40px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
}

[dir="rtl"] .header-search-btn {
    margin-left: 0;
    margin-right: 8px;
}

.header-search-btn svg {
    width: 22px;
    height: 22px;
    color: var(--text-secondary);
}

/* Mobile Menu Button */
.header-mobile-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

@media (min-width: 1024px) {
    .header-mobile-btn {
        display: none;
    }
}

.header-mobile-btn img {
    width: 24px;
    height: auto;
}

/* ==================== MEGA MENU - HOVER DROPDOWN ==================== */
.header-mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: var(--dropdown-shadow);
    padding: 32px 0 40px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-normal);
    z-index: 50;
    border-top: 1px solid #eee;
}

.header-nav-item:hover .header-mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-mega-container {
    max-width: 1320px;
    width: 90%;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

[dir="rtl"] .header-mega-container {
    flex-direction: row-reverse;
}

/* Mega Menu Columns */
.header-mega-column {
    min-width: 160px;
}

.header-mega-column-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
    padding-bottom: 12px;
}

.header-mega-list {
    list-style: none;
}

    .header-mega-list li {
        margin-bottom: 12px;
    }

        .header-mega-list li:hover {
            border-bottom: 2px solid var(--primary-color);
        }

    .header-mega-list a {
        color: var(--primary-color);
        text-decoration: none;
        transition: opacity var(--transition-fast);
        display: block;
        font-size: 14px;
        font-weight: 700;
    }

    /* .header-mega-list a:hover { */
    /*     opacity: 0.7; */
    /* } */

    .header-mega-list .highlight {
        font-weight: 700;
    }



.header-mega-list-normal {
    list-style: none;
}

    .header-mega-list-normal li {
        margin-bottom: 12px;
    }

        .header-mega-list-normal li:hover {
            border-bottom: 2px solid var(--primary-color);
        }

    .header-mega-list-normal a {
        color: var(--primary-color);
        text-decoration: none;
        transition: opacity var(--transition-fast);
        display: block;
        font-size: 14px;
    }

/* .header-mega-list a:hover { */
/*     opacity: 0.7; */
/* } */

.header-mega-list .highlight {
    font-weight: 700;
}


/* Explore More Section */
.header-mega-explore {
    margin-left: auto;
    min-width: 280px;
}

[dir="rtl"] .header-mega-explore {
    margin-left: 0;
    margin-right: auto;
}

.header-mega-explore-title {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-gray);
    margin-bottom: 16px;
    text-transform: capitalize;
}

.header-mega-cards {
    display: flex;
    gap: 16px;
}

.header-mega-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 24px;
    background: #fff;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
    min-width: 120px;
}

    .header-mega-card:hover {
        border-color: var(--primary-color);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

.header-mega-card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .header-mega-card-icon img {
        max-width: 100%;
        max-height: 100%;
    }

.header-mega-card span {
    font-size: 13px;
    color: var(--text-primary);
    text-align: center;
}

/* ==================== MOBILE MENU ==================== */
.header-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 100;
    display: none;
    flex-direction: column;
    overflow-y: auto;
}

[dir="rtl"] .header-mobile-menu {
    direction: rtl;
}

.header-mobile-menu.open {
    display: flex;
}

.header-mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
    background: #f8f8f8;
    min-height: 60px;
}

    .header-mobile-header h6 {
        font-size: 14px;
        font-weight: 700;
        color: var(--primary-color);
        text-transform: uppercase;
        margin: 0;
        flex: 1;
        text-align: center;
    }

.header-mobile-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .header-mobile-close svg {
        width: 24px;
        height: 24px;
        color: var(--text-primary);
    }

/* Mobile Weather */
.header-mobile-weather {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    background: #fff;
    border-bottom: 1px solid var(--border-color);
}

.header-mobile-weather-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-mobile-weather img {
    width: 24px;
    height: 24px;
}

.header-mobile-weather p {
    margin: 0;
    font-size: 14px;
    color: var(--text-secondary);
}

.header-mobile-weather .arrow {
    width: 20px;
    height: 20px;
}

[dir="rtl"] .header-mobile-weather .arrow {
    transform: rotate(180deg);
}

/* Mobile Nav Items */
.header-mobile-nav {
    flex: 1;
    background: #fff;
}

.header-mobile-nav-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
    text-decoration: none;
    color: var(--text-primary);
    font-size: 15px;
    cursor: pointer;
    background: none;
    width: 100%;
    text-align: left;
}

[dir="rtl"] .header-mobile-nav-item {
    text-align: right;
}

.header-mobile-nav-item:hover,
.header-mobile-nav-item:active {
    background: #f8f8f8;
}

.header-mobile-nav-item-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-mobile-nav-item .nav-icon {
    width: 24px;
    height: 24px;
}

.header-mobile-nav-item .arrow {
    width: 16px;
    height: 16px;
    opacity: 0.5;
}

[dir="rtl"] .header-mobile-nav-item .arrow {
    transform: rotate(180deg);
}

/* Mobile Language */
.header-mobile-lang-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px;
    background: none;
    border: none;
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
}

.header-mobile-lang-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .header-mobile-lang-info img {
        width: 24px;
        height: 16px;
        object-fit: cover;
    }

    .header-mobile-lang-info span {
        font-size: 15px;
        color: var(--text-primary);
    }

/* Mobile Corporate Link */
.header-mobile-corporate {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 14px;
    background: #fff;
}

    .header-mobile-corporate img {
        width: 9px;
        height: 17px;
    }

/* Mobile Accessibility */
.header-mobile-accessibility {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
    background: #fff;
    cursor: pointer;
}

.header-mobile-accessibility-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .header-mobile-accessibility-info svg {
        width: 24px;
        height: 24px;
        color: var(--primary-color);
    }

    .header-mobile-accessibility-info span {
        font-size: 15px;
        color: var(--text-primary);
    }

/* ==================== LANGUAGE DRAWER (Mobile) ==================== */
.header-lang-drawer {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 101;
    display: none;
    flex-direction: column;
}

    .header-lang-drawer.open {
        display: flex;
    }

.header-lang-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
    background: #f8f8f8;
    min-height: 60px;
}

.header-lang-back-btn,
.header-lang-close-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .header-lang-back-btn img,
    .header-lang-close-btn img {
        width: 20px;
        height: 20px;
    }

[dir="rtl"] .header-lang-back-btn img {
    transform: rotate(180deg);
}

.header-lang-drawer-header h6 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.header-lang-content {
    padding: 24px 16px;
}

.header-lang-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    display: block;
}

.header-lang-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.header-lang-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: none;
    border: 1px solid var(--border-color);
    cursor: pointer;
    font-size: 16px;
    color: var(--text-primary);
    text-align: left;
    transition: all var(--transition-fast);
    width: 100%;
}

[dir="rtl"] .header-lang-option {
    text-align: right;
}

.header-lang-option:hover {
    border-color: var(--primary-color);
    background: rgba(4, 97, 92, 0.05);
}

.header-lang-option img {
    width: 28px;
    height: 18px;
    object-fit: cover;
}

/* ==================== UTILITIES ==================== */
.d-none {
    display: none !important;
}

/*---------------- Footer -------------------*/

/* Footer Base Styles */
.footer-main {
    background-color: #1e514f;
    padding: 40px 0;
}

.footer-bottom {
    background-color: #1e514f;
    padding: 16px 0;
}

.footer-container {
    max-width: 1320px;
    width: 90%;
    margin: 0 auto;
    padding: 0 16px;
}

/* Main Grid - 4 columns */
.footer-main-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 1024px) {
    .footer-main-grid {
        grid-template-columns: 1fr 1fr 1fr 280px;
        gap: 40px;
    }
}

/* Row 1 Items */
.footer-logo {
    grid-column: 1;
}

@media (min-width: 1024px) {
    .footer-logo {
        grid-column: 1 / 3; /* Spans Information and Legal columns */
    }
}

.footer-logo img {
    max-width: 300px;
    height: auto;
}

/* Social Section - Aligned with Managed By */
.footer-social {
    grid-column: 1;
}

@media (min-width: 1024px) {
    .footer-social {
        grid-column: 3; /* Aligned with Managed By column */
    }
}

.footer-social-title {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.footer-social-icons {
    display: flex;
    gap: 20px;
}

[dir="rtl"] .footer-social-icons {
    justify-content: flex-start;
}

.footer-social-icons a {
    color: #fff;
    transition: opacity 0.3s;
}

    .footer-social-icons a:hover {
        opacity: 0.7;
    }

.footer-social-icons svg {
    width: 24px;
    height: 24px;
}

/* Address - Right side */
.footer-address-wrapper {
    grid-column: 1;
}

@media (min-width: 1024px) {
    .footer-address-wrapper {
        grid-column: 4;
        justify-self: end;
    }
}

.footer-address {
    display: flex;
    align-items: flex-start;
    color: #fff;
    font-size: 14px;
    gap: 8px;
}

    .footer-address a {
        color: #fff;
        text-decoration: none;
        transition: opacity 0.3s;
    }

        .footer-address a:hover {
            opacity: 0.7;
        }

    .footer-address svg {
        flex-shrink: 0;
        margin-top: 2px;
    }

/* Row 2: Navigation Columns */
.footer-nav-col {
    grid-column: 1;
}

@media (min-width: 1024px) {
    .footer-info-col {
        grid-column: 1;
        grid-row: 2;
    }

    .footer-legal-col {
        grid-column: 2;
        grid-row: 2;
    }

    .footer-managed-col {
        grid-column: 3;
        grid-row: 2;
    }
}

.footer-nav-title {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.footer-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .footer-nav-list li {
        margin-bottom: 10px;
    }

    .footer-nav-list a {
        color: #fff;
        font-size: 14px;
        text-decoration: none;
        transition: opacity 0.3s;
    }

        .footer-nav-list a:hover {
            opacity: 0.7;
        }

/* Managed By */
.footer-managed-col img {
    max-width: 160px;
    height: auto;
    margin-top: 8px;
}

/* WhatsApp Card - Spans both rows on right */
.footer-whatsapp-card {
    grid-column: 1;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

@media (min-width: 1024px) {
    .footer-whatsapp-card {
        grid-column: 4;
        grid-row: 2 / 4;
        align-self: start;
    }
}

.footer-whatsapp-qr {
    width: 180px;
    height: 180px;
    margin-bottom: 16px;
}

    .footer-whatsapp-qr img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.footer-whatsapp-title {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.footer-whatsapp-text {
    color: #fff;
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 16px;
    opacity: 0.9;
}

.footer-whatsapp-btn {
    width: 100%;
    padding: 10px 20px;
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

    .footer-whatsapp-btn:hover {
        background: rgba(255, 255, 255, 0.1);
    }

/* Bottom Bar */
.footer-bottom-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.footer-copyright {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}

.footer-back-top {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.3s;
    background: none;
    border: none;
}

    .footer-back-top:hover {
        opacity: 0.7;
    }

/* RTL Support */
[dir="rtl"] .footer-main-grid {
    direction: rtl;
}

[dir="rtl"] .footer-nav-title,
[dir="rtl"] .footer-nav-list {
    text-align: right;
}

[dir="rtl"] .footer-address {
    flex-direction: row-reverse;
    text-align: right;
}

[dir="rtl"] .footer-bottom-content {
    flex-direction: row-reverse;
}

[dir="rtl"] .footer-back-top {
    flex-direction: row-reverse;
}

@media (min-width: 1024px) {
    [dir="rtl"] .footer-logo {
        grid-column: 3 / 5;
        justify-self: end;
    }

    [dir="rtl"] .footer-social {
        grid-column: 2;
    }

    [dir="rtl"] .footer-address-wrapper {
        grid-column: 1;
        justify-self: start;
    }

    [dir="rtl"] .footer-info-col {
        grid-column: 4;
    }

    [dir="rtl"] .footer-legal-col {
        grid-column: 3;
    }

    [dir="rtl"] .footer-managed-col {
        grid-column: 2;
    }

    [dir="rtl"] .footer-whatsapp-card {
        grid-column: 1;
    }
}

/* Mobile Styles */
@media (max-width: 1023px) {
    .footer-main-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .footer-logo {
        text-align: center;
    }

        .footer-logo img {
            margin: 0 auto;
        }

    .footer-social {
        text-align: center;
    }

    .footer-social-icons {
        justify-content: center;
    }

    .footer-address-wrapper {
        text-align: center;
    }

    .footer-address {
        justify-content: center;
    }

    .footer-nav-title,
    .footer-nav-list {
        text-align: center;
    }

    .footer-managed-col {
        text-align: center;
    }

        .footer-managed-col img {
            margin: 8px auto 0;
        }

    .footer-whatsapp-card {
        max-width: 320px;
        margin: 0 auto;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    [dir="rtl"] .footer-nav-title,
    [dir="rtl"] .footer-nav-list,
    [dir="rtl"] .footer-managed-col,
    [dir="rtl"] .footer-address {
        text-align: center;
    }
}
