:root {
    --primary-color: #1e3a8a;
    --secondary-color: #f59e0b;
    --accent-color: #3b82f6;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    position: relative;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9998;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(30, 58, 138, 0.1);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    padding: 0.5rem 0;
}

.header.scrolled .logo-image {
    height: 45px;
}

.header.scrolled .nav-container {
    height: 80px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    position: relative;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 8px;
}

.logo:hover {
    transform: translateY(-2px);
    background: rgba(30, 58, 138, 0.05);
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
    border-radius: 10px;
    transition: all 0.3s ease;
    filter: brightness(1);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
    border: 2px solid transparent;
}

.logo:hover .logo-image {
    transform: scale(1.08);
    filter: brightness(1.15);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(30, 58, 138, 0.2);
}

/* RTL Support for Logo */
[dir="rtl"] .logo {
    flex-direction: row-reverse;
}

/* Mobile Logo */
@media (max-width: 768px) {
    .logo {
        padding: 0.25rem;
    }

    .logo-image {
        height: 42px;
    }

    .nav-container {
        height: 80px;
    }

    .header.scrolled .logo-image {
        height: 38px;
    }

    .header.scrolled .nav-container {
        height: 70px;
    }
}

/* Small Mobile Logo */
@media (max-width: 480px) {
    .logo-image {
        height: 36px;
    }

    .nav-container {
        height: 70px;
        padding: 0 1rem;
    }

    .header.scrolled .logo-image {
        height: 32px;
    }

    .header.scrolled .nav-container {
        height: 60px;
    }
}

/* Home Page: Disable Logo Effects */
.home-page .logo,
.home-page .logo:hover {
    background: transparent !important;
    transform: none !important;
}

.home-page .logo-image {
    box-shadow: none !important;
    border: none !important;
    filter: none !important;
    transition: none !important;
}

.home-page .logo:hover .logo-image {
    transform: none !important;
    filter: none !important;
    box-shadow: none !important;
    border: none !important;
}

/* Keep logo height constant on scroll (no size effect) */
.home-page .header.scrolled .logo-image {
    height: 50px !important;
}

@media (max-width: 768px) {
    .home-page .header.scrolled .logo-image {
        height: 42px !important;
    }
}

@media (max-width: 480px) {
    .home-page .header.scrolled .logo-image {
        height: 36px !important;
    }
}

/* Home Page: Disable Footer Logo Effects */
.home-page .footer-logo,
.home-page .footer-logo:hover {
    transform: none !important;
}

.home-page .footer-logo-image {
    filter: none !important;
    transition: none !important;
    box-shadow: none !important;
}

.home-page .footer-logo:hover .footer-logo-image {
    transform: none !important;
    filter: none !important;
    box-shadow: none !important;
}

/* Global: Disable Logo Effects Everywhere */
.logo,
.logo:hover {
    background: transparent !important;
    transform: none !important;
    transition: none !important;
}

.logo-image {
    box-shadow: none !important;
    border: none !important;
    filter: none !important;
    transition: none !important;
}

.logo:hover .logo-image {
    transform: none !important;
    filter: none !important;
    box-shadow: none !important;
    border: none !important;
}

/* Keep logo height constant on scroll globally */
.header.scrolled .logo-image {
    height: 50px !important;
}

@media (max-width: 768px) {
    .header.scrolled .logo-image {
        height: 42px !important;
    }
}

@media (max-width: 480px) {
    .header.scrolled .logo-image {
        height: 36px !important;
    }
}

/* Global: Disable Footer Logo Effects Everywhere */
.footer-logo,
.footer-logo:hover {
    transform: none !important;
    transition: none !important;
}

.footer-logo-image {
    filter: none !important;
    transition: none !important;
    box-shadow: none !important;
}

.footer-logo:hover .footer-logo-image {
    transform: none !important;
    filter: none !important;
    box-shadow: none !important;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* Hero Section */
/* Hero Section with Parallax Background */
.hero {
    min-height: 80vh;

    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.1);
    transition: transform 0.3s ease;
    filter: brightness(0.8) contrast(1.1);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 3;
}

.hero-text {
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 80%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: transparent;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-description {
    color: var(--text-light);
    line-height: 1.6;
}

/* Products Section */
.products {
    padding: 6rem 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-content {
    padding: 2rem;
}

.product-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.product-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-btn {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.product-btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

/* Category Section Styles */
.category-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 3rem 0 2rem;
    padding: 1.5rem 0;
    border-bottom: 2px solid var(--primary-color);
}

.category-section-header:first-child {
    margin-top: 2rem;
}

.category-section-title-link {
    text-decoration: none;
    transition: all 0.3s ease;
    flex: 1;
}

.category-section-title-link:hover {
    transform: translateX(5px);
}

[dir="rtl"] .category-section-title-link:hover {
    transform: translateX(-5px);
}

.category-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-section-title-link:hover .category-section-title {
    color: var(--accent-color);
    transform: scale(1.02);
}

.category-section-title i {
    color: var(--secondary-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.category-section-title-link:hover .category-section-title i {
    color: var(--accent-color);
    transform: rotate(5deg);
}

.category-products-count {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
    padding: 0.5rem 1rem;
    background: var(--bg-light);
    border-radius: 20px;
}

.view-more-category {
    text-align: center;
    margin: 2rem 0;
}

.view-more-category-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.view-more-category-btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);
}

.view-more-category-btn i {
    transition: transform 0.3s ease;
}

.view-more-category-btn:hover i {
    transform: translateX(5px);
}

[dir="rtl"] .view-more-category-btn:hover i {
    transform: translateX(-5px);
}

.category-divider {
    border: none;
    border-top: 2px solid rgba(30, 58, 138, 0.1);
    margin: 3rem 0;
}

[dir="rtl"] .category-section-header {
    flex-direction: row-reverse;
}

[dir="rtl"] .category-section-title {
    flex-direction: row-reverse;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    padding: 6rem 0;
    text-align: center;
    color: var(--white);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #1e3a8a, #1e40af);
    color: white;
    padding: 60px 0 20px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.footer::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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    padding: 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.footer-title {
    color: #fbbf24;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    border-radius: 2px;
}

[dir="rtl"] .footer-title::after {
    left: auto;
    right: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
    position: relative;
}

.footer-link {
    color: #e5e7eb;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    padding: 8px 0;
    position: relative;
    font-weight: 500;
}

.footer-link::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #fbbf24;
    transition: width 0.3s ease;
}

[dir="rtl"] .footer-link::before {
    left: auto;
    right: 0;
}

.footer-link:hover {
    color: #fbbf24;
    transform: translateX(5px);
}

[dir="rtl"] .footer-link:hover {
    transform: translateX(-5px);
}

.footer-link:hover::before {
    width: 100%;
}

/* Contact Info Styles */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
}

.contact-icon {
    width: 16px;
    height: 16px;
    color: #fbbf24;
    flex-shrink: 0;
}

.contact-item span {
    color: #e5e7eb;
    font-weight: 500;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 40px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: #9ca3af;
    margin: 0;
    font-weight: 500;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.social-link:hover::before {
    transform: translateX(100%);
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.social-link.facebook:hover { background: #1877f2; }
.social-link.twitter:hover { background: #1da1f2; }
.social-link.instagram:hover { background: #e4405f; }
.social-link.linkedin:hover { background: #0077b5; }

/* RTL Support */
[dir="rtl"] .footer-content {
    direction: rtl;
}

[dir="rtl"] .footer-bottom-content {
    flex-direction: row-reverse;
}

[dir="rtl"] .contact-item {
    flex-direction: row-reverse;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .social-links {
        justify-content: center;
    }

    .footer-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 0 15px;
    }

    .footer-content {
        gap: 20px;
    }

    .footer-section {
        padding: 12px;
    }

    .social-links {
        gap: 10px;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }

    .contact-item {
        gap: 10px;
    }
}

/* About Section */
/* About section removed - keeping space for future use */

/* Contact Info in Footer */
.contact-info {
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

/* Language Switcher */
.language-switcher {
    margin-left: 1rem;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--secondary-color);
    color: white;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: #d97706;
    transform: translateY(-2px);
    color: white;
}

.lang-btn i {
    font-size: 0.9rem;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1000;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger:hover span {
    background: var(--accent-color);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        order: -1;
    }

    .hero-image img {
        max-width: 90%;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text {
        order: 2;
    }

    .why-us-content {
        grid-template-columns: 1fr;
    }

    .language-switcher {
        margin-left: 1rem;
    }

    .lang-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .lang-btn:hover {
        color: white;
    }

    .lang-btn:hover i {
        color: white;
    }

    /* Mobile Hero Background */
    .hero {
        min-height: 70vh;
    }

    .hero-bg-image {
        filter: brightness(0.7) contrast(1.2);
    }

    .hero::before {
        background: linear-gradient(135deg, rgba(30, 58, 138, 0.5), rgba(59, 130, 246, 0.4));
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .nav-menu.active {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        padding: 2rem;
        box-shadow: var(--shadow);
        border-top: 1px solid rgba(30, 58, 138, 0.1);
        z-index: 999;
    }

    .nav-menu.active li {
        margin: 10px 0;
    }

    .nav-menu.active a {
        padding: 15px 20px;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .nav-menu.active a:hover {
        background: rgba(30, 58, 138, 0.1);
        transform: translateX(5px);
    }
}

/* Loading Animation */
body.loaded {
    opacity: 1;
}

body {
    opacity: 0;
    transition: opacity 0.5s ease;
}

/* Additional Hover Effects */
.product-card:hover .product-image {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* RTL Support */
[dir="rtl"] .nav-menu a::after {
    left: auto;
    right: 0;
}

[dir="rtl"] .hero-buttons {
    flex-direction: row-reverse;
}

/* Print Styles */
@media print {
    .header,
    .mobile-menu-btn,
    .hero-buttons,
    .product-btn {
        display: none !important;
    }

    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
}

.page-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

/* About Page */
.about-section {
    padding: 20px 0 80px;
}

.about-heading {
    padding: 60px 0 20px;
}

.about-heading .about-title {
    font-size: 64px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.about-heading .about-subtitle {
    font-size: 20px;
    line-height: 1.9;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.about-col p {
    font-size: 20px;
    line-height: 2;
}

@media (max-width: 992px) {
    .about-grid { grid-template-columns: 1fr; }
}

/* About Page Parallax Hero */
.about-parallax-hero {
    min-height: 50vh;
    position: relative;
    overflow: hidden;
}

/* About Page Video */
.about-video-section {
    padding: 40px 0 80px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    box-shadow: var(--shadow);
    border-radius: 12px;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* Highlighted Features */
.features-highlight {
    padding: 60px 0 100px;
}

.features-header {
    text-align: center;
    margin-bottom: 40px;
}

.features-title {
    font-size: 44px;
    font-weight: 900;
    letter-spacing: 1px;
}

.features-subtitle {
    color: #9ca3af;
    font-weight: 700;
    margin-top: 8px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px 40px;
}

.feature-item {
    text-align: center;
}

.feature-media {
    width: 100%;
    height: 180px;
    border-radius: 16px;
    overflow: hidden;
    margin: 0 auto 16px;
    box-shadow: var(--shadow);
}

.feature-media-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.35s ease, transform 0.35s ease;
}

.feature-item:hover .feature-media-img {
    filter: blur(2px) brightness(0.9);
    transform: scale(1.03);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    margin: 0 auto 16px;
    display: grid;
    place-items: center;
    color: var(--accent-color);
    font-size: 28px;
    justify-self: center;
}

.feature-name {
    font-size: 14px;
    letter-spacing: 0.8px;
    font-weight: 800;
    margin-bottom: 10px;
}

.feature-desc {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 14px;
}

@media (max-width: 992px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .features-grid { grid-template-columns: 1fr; }
}

/* Sustainable Development */
.sustainable-section {
    padding: 40px 0 100px;
}

.sustainable-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
}

.sustainable-media img {
    width: 100%;
    height: auto;
    display: block;
}

.sustainable-title {
    font-size: 44px;
    font-weight: 900;
    margin-bottom: 16px;
}

.sustainable-list {
    margin-top: 16px;
}

.sustainable-list li {
    margin-bottom: 12px;
    line-height: 1.7;
}

@media (max-width: 992px) {
    .sustainable-grid { grid-template-columns: 1fr; }
}

/* Certifications */
.certifications-section {
    padding: 40px 0 100px;
}

.certifications-header {
    text-align: center;
    margin-bottom: 30px;
}

.certifications-title {
    font-size: 44px;
    font-weight: 900;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.cert-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cert-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.cert-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.cert-card:hover img {
    transform: scale(1.02);
    filter: brightness(1.02);
}

@media (max-width: 992px) {
    .certifications-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .certifications-grid { grid-template-columns: 1fr; }
}

/* Products Page */
.products-page {
    padding: 80px 0;
    background: var(--bg-light);
}

/* Filters Section */
.filters-section {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
}

.filters-form {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.filter-group {
    flex: 1;
    min-width: 200px;
}

.search-input,
.category-select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: var(--white);
}

.search-input:focus,
.category-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: 500;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
}

.filter-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Product Cards Enhancements */
.product-card {
    position: relative;
    overflow: hidden;
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    z-index: 10;
}

.product-category {
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* No Products */
.no-products {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-light);
}

.no-products i {
    font-size: 4rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.no-products h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

/* Pagination */
.pagination-wrapper {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagination {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.pagination .page-item {
    list-style: none;
}

.pagination .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.pagination .page-link:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.pagination .page-link:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Home extra sections */
.what-we-do {
    padding: 80px 0;
}
.wwd-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: center; }
.wwd-media img { width: 100%; border-radius: 12px; box-shadow: var(--shadow); }
.wwd-title { font-size: 32px; font-weight: 900; margin-bottom: 14px; }
.wwd-desc { color: var(--text-light); line-height: 1.8; }

.our-warehouses {
    padding: 40px 0 80px;
    background: #f8f9fa;
}
.warehouses-header {
    margin-bottom: 20px;
    text-align: center;
}
.ow-title {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 10px;
}
.ow-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: 18px 0;
}
.ow-grid img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}
.ow-grid img:hover {
    transform: scale(1.05);
}
.ow-desc-actions {
    display: grid;
    grid-template-columns: 1.2fr auto;
    gap: 20px;
    align-items: center;
    margin-top: 30px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.ow-desc {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 16px;
}
.ow-btn {
    padding: 12px 20px;
    white-space: nowrap;
}

.transit-packaging { padding: 40px 0 100px; }
.tp-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 30px; align-items: center; }
.tp-title { font-size: 28px; font-weight: 900; margin-bottom: 10px; }
.tp-desc { color: var(--text-light); line-height: 1.8; margin-bottom: 16px; }
.tp-media img { width: 100%; border-radius: 12px; box-shadow: var(--shadow); }

/* Mobile Responsive Design for Warehouses */
@media (max-width: 992px) {
    .wwd-grid, .tp-grid { grid-template-columns: 1fr; }
    .ow-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .our-warehouses {
        padding: 30px 0 60px;
    }
    .ow-title {
        font-size: 24px;
    }
    .ow-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .ow-grid img {
        height: 100px;
    }
    .ow-desc-actions {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
        padding: 15px;
    }
    .ow-desc {
        font-size: 14px;
        line-height: 1.6;
    }
    .ow-btn {
        padding: 10px 16px;
        font-size: 14px;
    }
}

@media (max-width: 640px) {
    .our-warehouses {
        padding: 20px 0 40px;
    }
    .ow-title {
        font-size: 22px;
        margin-bottom: 15px;
    }
    .ow-grid {
        grid-template-columns: 1fr;
        gap: 8px;
        margin: 15px 0;
    }
    .ow-grid img {
        height: 80px;
    }
    .ow-desc-actions {
        margin-top: 20px;
        padding: 12px;
    }
    .ow-desc {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 10px;
    }
    .ow-btn {
        padding: 8px 14px;
        font-size: 13px;
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }
}

/* Extra small devices (phones, 480px and down) */
@media (max-width: 480px) {
    .our-warehouses {
        padding: 15px 0 30px;
    }
    .ow-title {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .ow-grid {
        gap: 6px;
        margin: 10px 0;
    }
    .ow-grid img {
        height: 70px;
    }
    .ow-desc-actions {
        margin-top: 15px;
        padding: 10px;
    }
    .ow-desc {
        font-size: 12px;
        line-height: 1.4;
    }
    .ow-btn {
        padding: 6px 12px;
        font-size: 12px;
        max-width: 180px;
    }
}

.pagination .page-item.active .page-link {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
}

.pagination .page-item.disabled .page-link {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f8f9fa;
    color: #6c757d;
    border-color: #dee2e6;
    pointer-events: none;
}

.pagination .page-item.disabled .page-link:hover {
    transform: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Pagination Navigation Buttons */
.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
    font-weight: 700;
    font-size: 1.1rem;
    min-width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-color: #dee2e6;
}

.pagination .page-item:first-child .page-link:hover,
.pagination .page-item:last-child .page-link:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2563eb 100%);
    border-color: var(--primary-color);
}

.pagination .page-item:first-child .page-link::before {
    content: '‹';
    font-size: 1.5rem;
    line-height: 1;
    font-weight: 900;
}

.pagination .page-item:last-child .page-link::before {
    content: '›';
    font-size: 1.5rem;
    line-height: 1;
    font-weight: 900;
}

/* Dots styling */
.pagination .page-link.dots {
    background: transparent;
    border: none;
    color: var(--text-light);
    font-weight: 700;
    cursor: default;
    padding: 0.75rem 0.5rem;
}

.pagination .page-link.dots:hover {
    background: transparent;
    color: var(--text-light);
    transform: none;
    box-shadow: none;
}

/* Navigation buttons styling */
.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
    font-weight: 700;
    font-size: 1.1rem;
    min-width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-color: #dee2e6;
    text-indent: -9999px;
    overflow: hidden;
    position: relative;
}

.pagination .page-item:first-child .page-link:hover,
.pagination .page-item:last-child .page-link:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2563eb 100%);
    border-color: var(--primary-color);
}

.pagination .page-item:first-child .page-link::before,
.pagination .page-item:last-child .page-link::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-indent: 0;
    font-weight: 900;
    font-size: 1.5rem;
    line-height: 1;
}

.pagination .page-item.disabled .page-link:hover {
    transform: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Responsive Pagination */
@media (max-width: 768px) {
    .pagination {
        gap: 0.5rem;
    }

    .pagination .page-link {
        min-width: 40px;
        height: 40px;
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }

    .pagination .page-item:first-child .page-link,
    .pagination .page-item:last-child .page-link {
        min-width: 44px;
        height: 44px;
    }
}

@media (max-width: 480px) {
    .pagination {
        gap: 0.25rem;
    }

    .pagination .page-link {
        min-width: 36px;
        height: 36px;
        padding: 0.5rem;
        font-size: 0.85rem;
    }

    .pagination .page-item:first-child .page-link,
    .pagination .page-item:last-child .page-link {
        min-width: 40px;
        height: 40px;
    }
}

/* Product Detail Page */
.product-detail {
    padding: 120px 0 80px;
    background: var(--bg-light);
}

.product-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.product-gallery {
    position: sticky;
    top: 120px;
}

.main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-bottom: 1rem;
}

.thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.thumbnail {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.product-info h1 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.product-category-badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.product-features {
    margin-bottom: 2rem;
}

.product-features h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
}

.features-list li::before {
    content: '✓';
    color: var(--secondary-color);
    font-weight: bold;
}

.contact-cta {
    background: var(--primary-color);
    color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 2rem;
}

.contact-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-cta p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.cta-btn {
    background: var(--secondary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Modal */
.modal { display: none; }
.modal.open { display: block; }
.modal-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 9997; }
.modal-dialog { position: fixed; left: 50%; top: 50%; transform: translate(-50%, -50%); background: #fff; border-radius: 12px; width: min(560px, 92vw); z-index: 9998; box-shadow: var(--shadow-lg); overflow: hidden; }
.modal-header { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; background: var(--primary-color); color: #fff; }
.modal-close { background: transparent; border: 0; font-size: 28px; color: #fff; cursor: pointer; }
.modal-form { padding: 20px; }
.modal-form .form-row { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.modal-form input, .modal-form select { padding: 10px 12px; border: 1px solid #e5e7eb; border-radius: 8px; }
.modal-actions { display: flex; gap: 10px; justify-content: flex-end; padding-top: 8px; }

/* Related Products */
.related-products {
    padding: 80px 0;
    background: var(--white);
}

.related-products h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }

    .filters-form {
        flex-direction: column;
        gap: 1rem;
    }

    .filter-group {
        min-width: 100%;
    }

    .product-detail-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-gallery {
        position: static;
    }

    .thumbnail-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-info h1 {
        font-size: 2rem;
    }
}

/* Active Navigation */
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a.active::after {
    width: 100%;
}

/* RTL Support */
[dir="rtl"] {
    text-align: right;
}

[dir="rtl"] .nav-menu {
    flex-direction: row-reverse;
}

[dir="rtl"] .hero-buttons {
    flex-direction: row-reverse;
}

[dir="rtl"] .features-grid {
    direction: rtl;
}

[dir="rtl"] .products-grid {
    direction: rtl;
}

[dir="rtl"] .footer-content {
    direction: rtl;
}

[dir="rtl"] .filters-form {
    direction: rtl;
}

[dir="rtl"] .product-detail-content {
    direction: rtl;
}

/* Language Switcher */
.language-switcher {
    margin-left: 1rem;
}

[dir="rtl"] .language-switcher {
    margin-left: 0;
    margin-right: 1rem;
}

.lang-btn {
    background: rgba(30, 58, 138, 0.7);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.lang-btn:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    color: white;
}

.lang-btn:hover i {
    opacity: 1;
    color: white;
}

.lang-btn i {
    font-size: 1rem;
    opacity: 0.8;
}

/* Responsive Language Support */
@media (max-width: 768px) {
    [dir="rtl"] .nav-menu {
        flex-direction: column;
    }

    [dir="rtl"] .hero-buttons {
        flex-direction: column;
    }

    [dir="rtl"] .filters-form {
        flex-direction: column;
    }

    .language-switcher {
        margin: 0;
        width: 100%;
        justify-content: center;
    }
}

/* Font Loading for Arabic: use system font stack; load Google Fonts via <link>, not @font-face CSS url */

/* Improved Typography for Arabic */
[dir="rtl"] body {
    font-family: 'Cairo', 'Inter', sans-serif;
    line-height: 1.8;
}

[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3 {
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
}

/* Number Formatting for Arabic */
[dir="rtl"] .counter {
    font-family: 'Cairo', sans-serif;
}

/* Form Elements RTL Support */
[dir="rtl"] input,
[dir="rtl"] textarea,
[dir="rtl"] select {
    text-align: right;
}

[dir="rtl"] .checkbox-label {
    flex-direction: row-reverse;
}

/* Button RTL Support */
[dir="rtl"] .btn {
    flex-direction: row-reverse;
}

[dir="rtl"] .product-btn {
    flex-direction: row-reverse;
}

[dir="rtl"] .cta-btn {
    flex-direction: row-reverse;
}

/* Icon Positioning for RTL */
[dir="rtl"] .feature-icon {
    margin-left: 0;
    margin-right: 1rem;
}

[dir="rtl"] .product-image i {
    margin-left: 0;
    margin-right: 0;
}

/* Footer RTL Support */


/* Pagination RTL Support */
[dir="rtl"] .pagination {
    flex-direction: row-reverse;
}

[dir="rtl"] .pagination .page-item:first-child .page-link::before {
    content: '›';
}

[dir="rtl"] .pagination .page-item:last-child .page-link::before {
    content: '‹';
}

/* Filter Form RTL Support */
[dir="rtl"] .filter-group {
    text-align: right;
}

[dir="rtl"] .search-input::placeholder {
    text-align: right;
}

/* Product Card RTL Support */
[dir="rtl"] .product-content {
    text-align: right;
}

[dir="rtl"] .featured-badge {
    right: auto;
    left: 1rem;
}

/* Product Detail RTL Support */
[dir="rtl"] .product-info {
    text-align: right;
}

[dir="rtl"] .product-features {
    text-align: right;
}

[dir="rtl"] .features-list li {
    flex-direction: row-reverse;
}

/* Contact CTA RTL Support */
[dir="rtl"] .contact-cta {
    text-align: center;
}

/* Mobile Menu RTL Support */
@media (max-width: 768px) {
    [dir="rtl"] .nav-menu.active {
        text-align: right;
    }

    [dir="rtl"] .mobile-menu-btn {
        margin-left: 0;
        margin-right: auto;
    }

    [dir="rtl"] .nav-menu.active a:hover {
        transform: translateX(-5px);
    }
}

/* Success Messages */
.success-message {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 10000;
    background: #10b981;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    animation: slideInRight 0.5s ease;
    max-width: 400px;
}

[dir="rtl"] .success-message {
    right: auto;
    left: 20px;
    animation: slideInLeft 0.5s ease;
}

.success-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.success-content i {
    font-size: 1.25rem;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    margin-left: auto;
}

[dir="rtl"] .close-btn {
    margin-left: 0;
    margin-right: auto;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Error Messages */
.error-message {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 10000;
    background: #ef4444;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    animation: slideInRight 0.5s ease;
    max-width: 400px;
}

[dir="rtl"] .error-message {
    right: auto;
    left: 20px;
    animation: slideInLeft 0.5s ease;
}

.error-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.error-content i {
    font-size: 1.25rem;
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Footer Logo */
.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.footer-logo:hover {
    transform: translateY(-2px);
}

.footer-logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
    filter: brightness(0.9);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.footer-logo:hover .footer-logo-image {
    filter: brightness(1);
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* Company Description */
.company-description {
    color: #e5e7eb;
    line-height: 1.6;
    margin-top: 1rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* RTL Support for Footer Logo */
[dir="rtl"] .footer-logo {
    flex-direction: row-reverse;
}

/* Mobile Footer Logo */
@media (max-width: 768px) {
    .footer-logo {
        margin-bottom: 1rem;
    }

    .footer-logo-image {
        height: 45px;
    }

    .footer-section:first-child p {
        font-size: 0.9rem;
        margin-top: 0.75rem;
    }
}

/* Small Mobile Footer Logo */
@media (max-width: 480px) {
    .footer-logo-image {
        height: 40px;
    }

    .footer-section:first-child p {
        font-size: 0.85rem;
        margin-top: 0.5rem;
    }
}

/* Enhanced Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dropdown-toggle:hover {
    color: var(--primary-color);
}

.dropdown-toggle i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

/* Additional Dropdown Enhancements */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    min-width: 220px;
    max-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid rgba(30, 58, 138, 0.1);
    padding: 0.5rem 0;
    white-space: nowrap;
    overflow: visible;
    will-change: opacity, visibility, transform;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(30, 58, 138, 0.05);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
    will-change: transform, padding;
}

.dropdown-menu a:hover {
    background: rgba(30, 58, 138, 0.05);
    color: var(--primary-color);
    padding-left: 2rem;
    transform: translateX(5px);
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

/* Sub Dropdown - Fixed Position */
.dropdown-item {
    position: relative;
}

.sub-dropdown {
    position: absolute;
    left: 100%;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    min-width: 200px;
    max-width: 260px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    border: 1px solid rgba(30, 58, 138, 0.1);
    padding: 0.5rem 0;
    white-space: nowrap;
    overflow: visible;
    will-change: opacity, visibility, transform;
}

.dropdown-item:hover .sub-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.sub-dropdown a {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
    will-change: transform, padding;
}

.sub-dropdown a:hover {
    padding-left: 1.5rem;
    transform: translateX(3px);
}

/* Sub Arrow Icon Styles */
.sub-arrow {
    font-size: 0.7rem;
    margin-left: 0.5rem;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.dropdown-item:hover .sub-arrow {
    color: var(--primary-color);
    transform: translateX(3px);
}

/* RTL Support for Sub Arrow */
[dir="rtl"] .sub-arrow {
    margin-left: 0;
    margin-right: 0.5rem;
}

[dir="rtl"] .dropdown-item:hover .sub-arrow {
    transform: translateX(-3px);
}

/* Enhanced RTL Support */
[dir="rtl"] .dropdown-toggle {
    flex-direction: row-reverse;
}

[dir="rtl"] .dropdown-menu {
    left: auto;
    right: 0;
}

[dir="rtl"] .sub-dropdown {
    left: auto;
    right: 100%;
}

[dir="rtl"] .dropdown-menu a:hover {
    padding-left: 1.5rem;
    padding-right: 2rem;
    transform: translateX(-5px);
}

[dir="rtl"] .sub-dropdown a:hover {
    padding-left: 1rem;
    padding-right: 1.5rem;
    transform: translateX(-3px);
}

[dir="rtl"] .dropdown-menu a::before {
    left: auto;
    right: 0;
}

[dir="rtl"] .sub-dropdown a::before {
    left: auto;
    right: 0;
}

/* Enhanced Mobile Dropdown */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        background: transparent;
        box-shadow: none;
        border: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        min-width: auto;
        max-width: none;
        white-space: normal;
        padding: 0;
        margin-left: 1rem;
        will-change: auto;
    }

    .dropdown-menu a {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        white-space: normal;
        border-left: 2px solid transparent;
        transition: all 0.3s ease;
        will-change: auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .dropdown-menu a:hover {
        padding-left: 1.5rem;
        border-left-color: var(--primary-color);
        background: rgba(30, 58, 138, 0.05);
        transform: none;
    }

    .dropdown-menu a::before {
        display: none;
    }

    .sub-dropdown {
        position: static;
        background: transparent;
        box-shadow: none;
        border: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        min-width: auto;
        max-width: none;
        white-space: normal;
        padding: 0;
        margin-left: 1rem;
        will-change: auto;
    }

    .sub-dropdown a {
        padding: 0.3rem 1rem;
        font-size: 0.85rem;
        white-space: normal;
        border-left: 2px solid transparent;
        will-change: auto;
    }

    .sub-dropdown a:hover {
        padding-left: 1.5rem;
        border-left-color: var(--secondary-color);
        background: rgba(245, 158, 11, 0.05);
        transform: none;
    }

    .sub-dropdown a::before {
        display: none;
    }

    /* Mobile Sub Arrow Styles */
    .sub-arrow {
        font-size: 0.6rem;
        margin-left: 0.3rem;
    }

    [dir="rtl"] .sub-arrow {
        margin-left: 0;
        margin-right: 0.3rem;
    }

    /* Mobile Sub Sub Dropdown */
    .sub-sub-dropdown {
        position: static;
        background: transparent;
        box-shadow: none;
        border: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        min-width: auto;
        max-width: none;
        white-space: normal;
        padding: 0;
        margin-left: 1rem;
        will-change: auto;
    }

    .sub-sub-dropdown a {
        padding: 0.2rem 1rem;
        font-size: 0.8rem;
        white-space: normal;
        border-left: 2px solid transparent;
        will-change: auto;
    }

    .sub-sub-dropdown a:hover {
        padding-left: 1.5rem;
        border-left-color: var(--accent-color);
        background: rgba(59, 130, 246, 0.05);
        transform: none;
    }

    /* Mobile Sub Sub Arrow Styles */
    .sub-sub-arrow {
        font-size: 0.5rem;
        margin-left: 0.2rem;
    }

    [dir="rtl"] .sub-sub-arrow {
        margin-left: 0;
        margin-right: 0.2rem;
    }

    [dir="rtl"] .sub-sub-dropdown a:hover {
        padding-left: 1rem;
        padding-right: 1.5rem;
        border-left: none;
        border-right: 2px solid var(--accent-color);
    }
}

/* Sub Sub Dropdown (Third Level) */
.sub-dropdown-item {
    position: relative;
}

.sub-sub-dropdown {
    position: absolute;
    left: 100%;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    min-width: 180px;
    max-width: 240px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    z-index: 1002;
    border: 1px solid rgba(30, 58, 138, 0.1);
    padding: 0.5rem 0;
    white-space: nowrap;
    overflow: visible;
    will-change: opacity, visibility, transform;
}

.sub-dropdown-item:hover .sub-sub-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.sub-sub-dropdown a {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
    will-change: transform, padding;
}

.sub-sub-dropdown a:hover {
    padding-left: 1.2rem;
    transform: translateX(2px);
}

/* Sub Sub Arrow Icon Styles */
.sub-sub-arrow {
    font-size: 0.6rem;
    margin-left: 0.4rem;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.sub-dropdown-item:hover .sub-sub-arrow {
    color: var(--secondary-color);
    transform: translateX(2px);
}

/* RTL Support for Sub Sub Arrow */
[dir="rtl"] .sub-sub-arrow {
    margin-left: 0;
    margin-right: 0.4rem;
}

[dir="rtl"] .sub-dropdown-item:hover .sub-sub-arrow {
    transform: translateX(-2px);
}

/* RTL Support for Sub Sub Dropdown */
[dir="rtl"] .sub-sub-dropdown {
    left: auto;
    right: 100%;
}

[dir="rtl"] .sub-sub-dropdown a:hover {
    padding-left: 0.8rem;
    padding-right: 1.2rem;
    transform: translateX(-2px);
}

/* Show sub-dropdown to the right if .open-left is present (for RTL edge case) */
[dir="rtl"] .sub-dropdown.open-left {
    right: auto !important;
    left: 100% !important;
}

/* نفس الفكرة للإنجليزية إذا احتجنا لاحقاً */
[dir="ltr"] .sub-dropdown.open-right {
    left: auto !important;
    right: 100% !important;
}

/* Show sub-sub-dropdown to the right if needed (for RTL edge case) */
[dir="rtl"] .sub-sub-dropdown.open-left {
    right: auto !important;
    left: 100% !important;
}

[dir="ltr"] .sub-sub-dropdown.open-right {
    left: auto !important;
    right: 100% !important;
}

/* Why Us Section - New Grid Layout */
.why-us-section {
    padding: 5rem 0;
    background: transparent;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.why-us-item {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(30, 58, 138, 0.1);
}

.why-us-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.why-us-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--secondary-color);
}

.why-us-question i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.why-us-question h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.why-us-answer p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0;
}

/* RTL Support for Why Us */
[dir="rtl"] .why-us-question {
    flex-direction: row-reverse;
}

/* Mobile Responsive for Why Us */
@media (max-width: 768px) {
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .why-us-item {
        padding: 1.5rem;
    }

    .why-us-question h3 {
        font-size: 1.1rem;
    }

    .why-us-answer p {
        font-size: 0.95rem;
    }
}

/* Enhanced Category Select Styling */
.category-select {
    padding: 0.75rem 1rem;
    border: 2px solid rgba(30, 58, 138, 0.1);
    border-radius: 10px;
    font-size: 1rem;
    background: var(--white);
    color: var(--text-dark);
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 200px;
}

.category-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.category-select option {
    padding: 0.5rem;
    font-size: 0.95rem;
}

.category-select optgroup {
    font-weight: 600;
    color: var(--primary-color);
    background: rgba(30, 58, 138, 0.05);
    padding: 0.5rem;
}

.category-select optgroup option {
    font-weight: normal;
    color: var(--text-dark);
    padding-left: 1rem;
}

/* RTL Support for Category Select */
[dir="rtl"] .category-select optgroup option {
    padding-left: 0;
    padding-right: 1rem;
}

/* Mobile Responsive for Category Select */
@media (max-width: 768px) {
    .category-select {
        min-width: 100%;
        font-size: 0.9rem;
    }

    .category-select optgroup {
        font-size: 0.9rem;
    }

    .category-select optgroup option {
        font-size: 0.85rem;
    }
}

/* Force language button text to white on hover */
.lang-btn:hover, .lang-btn:hover span, .lang-btn:hover strong, .lang-btn:hover b {
    color: #fff !important;
}
.lang-btn:hover i {
    color: #fff !important;
}

/* Why Choose A GLASS Section */
.why-choose-aglass {
    min-height: 60vh;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.parallax-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.parallax-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.1);
    transition: transform 0.3s ease;
    filter: brightness(0.8) contrast(1.1);
}

.why-choose-aglass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.4), rgba(59, 130, 246, 0.3));
    z-index: 2;
}

.parallax-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    position: relative;
    z-index: 3;
    color: var(--white);
}

.parallax-text {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    font-weight: 400;
}

.parallax-title {
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    letter-spacing: 2px;
}

/* Mission Page Parallax Hero */
.mission-parallax-hero {
    min-height: 60vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: var(--white);
    padding: 140px 0 100px;
}

.mission-parallax-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.55), rgba(0,0,0,0.35));
    z-index: 2;
}

.mission-parallax-hero .parallax-background { z-index: 1; }
.mission-parallax-hero .page-header-content { z-index: 3; color: var(--white); text-align: center; }
.mission-parallax-hero .page-title { color: #fff; }
.mission-parallax-hero .page-subtitle { color: #f3f4f6; opacity: 0.95; }

@media (max-width: 768px) {
    .mission-parallax-hero { min-height: 50vh; padding: 120px 0 80px; }
    .mission-parallax-hero .page-title { font-size: 2.2rem; }
}

/* Mission Benefits spacing from Hero */
.mission-benefits {
    margin-top: 60px;
    padding: 40px 0 80px;
}

@media (max-width: 768px) {
    .mission-benefits { margin-top: 40px; padding: 30px 0 60px; }
}

/* Mission Banner Parallax */
.mission-banner {
    position: relative;
    padding: 80px 0;
    color: #fff;
    background: url('../imgs/galaxy.jpg') center / cover no-repeat fixed;
    overflow: hidden;
}

.mission-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,0,0,0.35));
    z-index: 1;
}

.mission-banner .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.mission-banner .features-title { color: #fff; }
.mission-banner .features-subtitle { color: #e5e7eb; }

@media (max-width: 768px) {
    .mission-banner { padding: 60px 0; background-attachment: scroll; }
}

/* Mission Impact Parallax */
.mission-impact {
    position: relative;
    padding: 80px 0;
    color: #fff;
    background: url('../imgs/money.jpg') center / cover no-repeat fixed;
    overflow: hidden;
}

.mission-impact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,0,0,0.35));
    z-index: 1;
}

.mission-impact .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.mission-impact .features-title { color: #fff; }
.mission-impact .features-subtitle { color: #e5e7eb; }

@media (max-width: 768px) {
    .mission-impact { padding: 60px 0; background-attachment: scroll; }
}

/* Responsive Design */
/* Our Model Page */
.model-hero {
    min-height: 55vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: #fff;
    padding: 140px 0 100px;
}
.model-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,0,0,0.55), rgba(0,0,0,0.35)); z-index: 2; }
.model-hero .parallax-background { z-index: 1; }
.model-hero .parallax-content { z-index: 3; text-align: center; }

.model-cards { padding: 60px 0; background: #f8fafc; }
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.card-media { height: 180px; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.card:hover .card-media img { transform: scale(1.05); }
.card-body { padding: 18px; }
.card-title { font-size: 1.1rem; font-weight: 800; margin-bottom: 8px; }
.card-desc { color: var(--text-light); margin-bottom: 12px; }
.card-link { color: var(--primary-color); text-decoration: none; font-weight: 700; }
.card-link:hover { color: var(--accent-color); }

.model-how { padding: 20px 0 10px; }

.model-products-banner { position: relative; padding: 60px 0; color: #fff; background: url('../imgs/whatwedo.webp') center/cover no-repeat fixed; }
.model-products-banner::before { content: ''; position: absolute; inset:0; background: rgba(0,0,0,0.45); }
.model-products-banner .container { position: relative; z-index: 2; text-align:center; }

.model-industries { padding: 60px 0; }
.industries-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.industry-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.industry-media { height: 220px; overflow: hidden; }
.industry-media img { width:100%; height:100%; object-fit: cover; transition: transform .35s ease; }
.industry-card:hover .industry-media img { transform: scale(1.05); }
.industry-name { padding: 16px 14px; font-weight: 700; text-align: center; }

.model-cta { position: relative; padding: 80px 0; text-align: center; color: #fff; background: url('../imgs/money.jpg') center/cover no-repeat fixed; }
.model-cta::before { content:''; position:absolute; inset:0; background: rgba(0,0,0,0.45); }
.model-cta .container { position: relative; z-index:2; }

@media (max-width: 992px) {
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .cards-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .why-choose-aglass {
        min-height: 50vh;
    }

    .parallax-text {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .parallax-title {
        font-size: 2rem;
    }
}

/* Global Reach Page */
.global-hero { min-height: 55vh; position: relative; overflow: hidden; display:flex; align-items:center; color:#fff; padding: 140px 0 100px; }
.global-hero::before { content:''; position:absolute; inset:0; background: linear-gradient(135deg, rgba(0,0,0,0.55), rgba(0,0,0,0.35)); z-index:2; }
.global-hero .parallax-background { z-index:1; }
.global-hero .parallax-content { z-index:3; text-align:center; }

.global-sourcing, .global-supply { padding: 60px 0; }
.split-grid { display:grid; grid-template-columns: 1.2fr 1fr; gap: 30px; align-items:center; }
.split-grid.alt { grid-template-columns: 1fr 1.2fr; }
.split-title { font-size: 32px; font-weight: 900; margin-bottom: 12px; }
.split-desc { color: var(--text-light); line-height: 1.8; margin-bottom: 12px; }
.split-media img { width:100%; height:auto; border-radius: 12px; box-shadow: var(--shadow); }

.global-believe { position:relative; padding: 80px 0; color:#fff; }
.global-believe::before { content:''; position:absolute; inset:0; background: rgba(0,0,0,0.45); z-index:2; }
.global-believe .parallax-background { z-index:1; }
.global-believe .parallax-content { z-index:3; text-align:center; }

@media (max-width: 992px) {
  .split-grid, .split-grid.alt { grid-template-columns: 1fr; }
}

/* Operations Page */
.ops-hero { min-height: 55vh; position: relative; overflow:hidden; display:flex; align-items:center; color:#fff; padding: 140px 0 100px; }
.ops-hero::before { content:''; position:absolute; inset:0; background: linear-gradient(135deg, rgba(0,0,0,0.55), rgba(0,0,0,0.35)); z-index:2; }
.ops-hero .parallax-background { z-index:1; }
.ops-hero .parallax-content { z-index:3; text-align:center; }

.ops-quality { padding: 60px 0; }
.ops-cards { padding: 40px 0 60px; background: #f8fafc; }
.ops-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.ops-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(30, 58, 138, 0.1);
    text-align: center;
}

.ops-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.ops-card-icon {
    width: 100%;
    height: 200px;
    margin-bottom: 1rem;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.ops-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ops-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.ops-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .ops-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ops-cards-grid {
        grid-template-columns: 1fr;
    }
}
.ops-award { position:relative; padding: 80px 0; color:#fff; }
.ops-award::before { content:''; position:absolute; inset:0; background: rgba(0,0,0,0.45); z-index:2; }
.ops-award .parallax-background { z-index:1; }
.ops-award .parallax-content { z-index:3; text-align:center; }
@media (max-width: 480px) {
    .why-choose-aglass {
        min-height: 40vh;
    }

    .parallax-text {
        font-size: 0.9rem;
    }

    .parallax-title {
        font-size: 1.5rem;
    }
}

/* RTL Support */
[dir="rtl"] .parallax-text {
    text-align: center;
}

[dir="rtl"] .parallax-title {
    text-align: center;
}

/* Categories Section */
.categories-section {
    padding: 5rem 0;
    background: transparent;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.category-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(30, 58, 138, 0.1);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.category-image {
    width: 100%;
    height: 200px;
    border-radius: 0.5rem;
    overflow: hidden;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.05);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.category-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.category-content {
    text-align: center;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}



.category-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.category-btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    color: var(--white);
}

.category-btn i {
    transition: transform 0.3s ease;
}

.category-btn:hover i {
    transform: translateX(3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .category-card {
        padding: 1.5rem;
    }

    .category-image {
        height: 180px;
    }

    .category-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .category-card {
        padding: 1rem;
    }

    .category-image {
        height: 150px;
    }

    .category-icon {
        width: 50px;
        height: 50px;
    }

    .category-icon i {
        font-size: 1.2rem;
    }

    .category-title {
        font-size: 1.2rem;
    }
}

/* RTL Support */
[dir="rtl"] .category-btn i {
    transform: rotate(180deg);
}

[dir="rtl"] .category-btn:hover i {
    transform: rotate(180deg) translateX(-3px);
}

/* Statistics Section */
.statistics-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.8), rgba(118, 75, 162, 0.8));
    z-index: 1;
}

.statistics-section .container {
    position: relative;
    z-index: 2;
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    text-align: center;
}

.stat-item {
    padding: 1.5rem 1rem;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 0.4rem;
    color: var(--white);
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .statistics-section {
        padding: 2.5rem 0;
    }

    .statistics-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-icon {
        font-size: 2.2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .statistics-section {
        padding: 2rem 0;
    }

    .stat-icon {
        font-size: 1.8rem;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }
}

/* RTL Support */
[dir="rtl"] .statistics-grid {
    direction: rtl;
}

/* Start Project Section */
.start-project-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.start-project-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
    z-index: 1;
}

.start-project-section .container {
    position: relative;
    z-index: 2;
}

.start-project-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
}

.start-project-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.start-project-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.start-project-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.start-project-btn:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.start-project-btn i {
    transition: transform 0.3s ease;
}

.start-project-btn:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .start-project-section {
        padding: 3rem 0;
    }

    .start-project-title {
        font-size: 2rem;
    }

    .start-project-subtitle {
        font-size: 1.1rem;
    }

    .start-project-btn {
        padding: 0.9rem 1.8rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .start-project-section {
        padding: 2.5rem 0;
    }

    .start-project-title {
        font-size: 1.8rem;
    }

    .start-project-subtitle {
        font-size: 1rem;
    }

    .start-project-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* RTL Support */
[dir="rtl"] .start-project-btn i {
    transform: rotate(180deg);
}

[dir="rtl"] .start-project-btn:hover i {
    transform: rotate(180deg) translateX(-5px);
}

/* Partners Page Styles */
.partners-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    text-align: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.partners-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../imgs/paralax1.jpg') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.partners-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.partners-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.partners-hero .hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.partners-section {
    padding: 80px 0;
    background: transparent;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.partner-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(30, 58, 138, 0.1);
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.partner-logo {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
}

.partner-image {
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    opacity: 0.7;
}

.partner-card:hover .partner-image {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.partner-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    transition: color 0.3s ease;
}

.partner-card:hover .partner-name {
    color: var(--primary-color);
}

/* RTL Support for Partners */
[dir="rtl"] .partners-grid {
    direction: rtl;
}

[dir="rtl"] .partner-card {
    text-align: center;
}

/* Mobile Responsive for Partners */
@media (max-width: 768px) {
    .partners-hero .hero-title {
        font-size: 2.5rem;
    }

    .partners-hero .hero-subtitle {
        font-size: 1rem;
    }

    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .partner-card {
        padding: 1.5rem;
    }

    .partner-logo {
        height: 100px;
    }

    .partner-image {
        max-height: 80px;
    }

    .partner-name {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .partners-hero .hero-title {
        font-size: 2rem;
    }

    .partners-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .partner-card {
        padding: 1rem;
    }

    .partner-logo {
        height: 80px;
    }

    .partner-image {
        max-height: 60px;
    }

    .partner-name {
        font-size: 1rem;
    }
}

/* Partners Slider Styles - Simplified */
.partners-slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
    padding: 40px 0;
    margin: 40px 0;
}

.partners-slider {
    position: relative;
    width: 100%;
    height: 150px; /* تقليل الارتفاع لأننا لا نعرض الأسماء */
    overflow: hidden;
}

.partners-slider-track {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.partner-slide-group {
    flex: 0 0 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 20px;
}

.partner-item {
    flex: 1;
    max-width: 120px; /* تقليل العرض لـ 6 لوغوهات */
    margin: 0 8px; /* تقليل المسافة */
}

.partner-logo-wrapper {
    background: var(--white);
    border-radius: 12px;
    padding: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
    height: 120px; /* تقليل الارتفاع */
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(30, 58, 138, 0.1);
}

.partner-logo-wrapper:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.partner-logo-image {
    max-width: 80px; /* تقليل حجم الصورة */
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    opacity: 0.7;
}

.partner-logo-wrapper:hover .partner-logo-image {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* Indicators */
.slider-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(30, 58, 138, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator-btn.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.indicator-btn:hover {
    background: var(--accent-color);
}

/* Navigation Buttons */
.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.slider-nav-btn:hover {
    background: var(--accent-color);
    transform: translateY(-50%) scale(1.1);
}

.slider-nav-btn.prev-btn {
    left: 20px;
}

.slider-nav-btn.next-btn {
    right: 20px;
}

.slider-nav-btn i {
    font-size: 1rem;
}

/* RTL Support */
[dir="rtl"] .slider-nav-btn.prev-btn {
    left: auto;
    right: 20px;
}

[dir="rtl"] .slider-nav-btn.next-btn {
    right: auto;
    left: 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .partners-slider {
        height: 120px;
    }

    .partner-slide-group {
        padding: 0 10px;
    }

    .partner-item {
        max-width: 100px;
        margin: 0 5px;
    }

    .partner-logo-wrapper {
        height: 100px;
        padding: 12px;
    }

    .partner-logo-image {
        max-width: 70px;
        max-height: 50px;
    }

    .slider-nav-btn {
        width: 35px;
        height: 35px;
    }

    .slider-nav-btn i {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .partners-slider {
        height: 100px;
    }

    .partner-item {
        max-width: 80px;
        margin: 0 3px;
    }

    .partner-logo-wrapper {
        height: 80px;
        padding: 10px;
    }

    .partner-logo-image {
        max-width: 50px;
        max-height: 35px;
    }

    .slider-nav-btn {
        width: 30px;
        height: 30px;
    }

    .slider-nav-btn i {
        font-size: 0.8rem;
    }
}

/* Partners Slider Section */
.partners-slider-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.partners-slider-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../imgs/paralax1.jpg') center/cover;
    opacity: 0.05;
    z-index: 1;
}

.partners-slider-section .container {
    position: relative;
    z-index: 2;
}

.partners-slider-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.partners-slider-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.partners-slider-section .section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* RTL Support for Partners Slider Section */
[dir="rtl"] .partners-slider-section .section-title {
    text-align: center;
}

[dir="rtl"] .partners-slider-section .section-subtitle {
    text-align: center;
}

/* Mobile Responsive for Partners Slider Section */
@media (max-width: 768px) {
    .partners-slider-section {
        padding: 60px 0;
    }

    .partners-slider-section .section-title {
        font-size: 2rem;
    }

    .partners-slider-section .section-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .partners-slider-section {
        padding: 40px 0;
    }

    .partners-slider-section .section-title {
        font-size: 1.8rem;
    }

    .partners-slider-section .section-subtitle {
        font-size: 0.9rem;
    }
}

/* WhatsApp Floating Button - Global Styles */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #128c7e;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    color: white;
    text-decoration: none;
}

.whatsapp-float i {
    font-size: 30px;
}

/* Pulse animation for WhatsApp button */
@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Responsive WhatsApp button */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
        font-size: 24px;
    }

    .whatsapp-float i {
        font-size: 24px;
    }
}

