﻿/* ============================================
   SGSOLAR - COMPLETE STYLESHEET
   ============================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #0C2D1C;
    background-color: #FFFFFF;
    transition: all 0.3s ease;
}

/* Arabic RTL Support */
[dir="rtl"] body {
    font-family: 'Cairo', 'Tajawal', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

[dir="rtl"] {
    text-align: right;
}

[dir="rtl"] .navbar-menu {
    flex-direction: row-reverse;
}

[dir="rtl"] .navbar-wrapper {
    flex-direction: row-reverse;
}

[dir="rtl"] .navbar-dropdown .dropdown-menu {
    left: auto;
    right: 0;
}

[dir="rtl"] .footer-grid {
    direction: rtl;
}

[dir="rtl"] .product-card-features li,
[dir="rtl"] .feature-card,
[dir="rtl"] .service-card {
    text-align: right;
}

[dir="rtl"] .floating-social {
    left: auto;
    right: 20px;
}

@media (max-width: 768px) {
    [dir="rtl"] .floating-social {
        right: 10px;
        left: auto;
    }
}

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

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

ul {
    list-style: none;
}

/* ============================================
   FLOATING SOCIAL BUTTONS
   ============================================ */
.floating-social {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-social a {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.floating-social a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    animation: none;
}

.floating-social .whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.floating-social .whatsapp-btn i {
    font-size: 34px;
}

.floating-social .chat-btn {
    background: linear-gradient(135deg, #FFDF41, #E3A000);
}

.floating-social .call-btn {
    background: linear-gradient(135deg, #E3A000, #d89000);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75;
}

.bg-light {
    background-color: #F9FAFB;
}

.bg-gradient {
    background: linear-gradient(135deg, #8CC63F 0%, #115F45 100%);
    color: white;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-align: center;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 1rem;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, #FFDF41 0%, #E3A000 100%);
    color: #0C2D1C;
    border-color: #FFDF41;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 223, 65, 0.3);
}

.btn-secondary {
    background-color: #115F45;
    color: white;
}

.btn-secondary:hover {
    background-color: #0C2D1C;
}

.btn-outline {
    background-color: transparent;
    border-color: white;
    color: white;
}

.btn-outline:hover {
    background-color: white;
    color: #0C2D1C;
}

.btn-white {
    background-color: white;
    color: #0C2D1C;
}

.btn-white:hover {
    background-color: #FFDF41;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
    display: block;
}

.btn svg {
    width: 20px;
    height: 20px;
    margin-right: 0.5rem;
    display: inline-block;
    vertical-align: middle;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 0.5rem 0;
}

.navbar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    transition: all 0.3s ease;
}

.navbar-brand a {
    display: flex;
    align-items: center;
}

.navbar-brand .logo {
    height: 30px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar.scrolled .navbar-brand .logo {
    height: 40px;
}

/* Footer logo sizing */
.footer .logo {
    height: 120px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Navbar dropdown for product categories */
.navbar-dropdown {
    position: relative;
}
.navbar-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    border-radius: 6px;
    padding: 0.5rem 0;
    min-width: 220px;
    display: none;
    z-index: 1003;
}
.navbar-dropdown:hover .dropdown-menu,
.navbar-dropdown:focus-within .dropdown-menu {
    display: block;
}
.dropdown-item {
    display: block;
    padding: 0.6rem 1rem;
    color: #0C2D1C;
    white-space: nowrap;
    text-decoration: none;
    transition: background 0.2s ease;
}
.dropdown-item:hover {
    background: #F9FAFB;
}

/* Nested Dropdown (Submenu) */
.dropdown-item.has-submenu {
    position: relative;
    cursor: pointer;
}

.dropdown-item.has-submenu > span {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dropdown-item.has-submenu > span::after {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.7rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

[dir="rtl"] .dropdown-item.has-submenu > span::after {
    content: '\f053';
    margin-left: 0;
    margin-right: 0.5rem;
}

.submenu {
    position: absolute;
    left: 100%;
    top: 0;
    background: white;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    border-radius: 6px;
    padding: 0.5rem 0;
    min-width: 220px;
    display: none;
    z-index: 1004;
}

[dir="rtl"] .submenu {
    left: auto;
    right: 100%;
}

.dropdown-item.has-submenu:hover .submenu {
    display: block;
}

.submenu-item {
    display: block;
    padding: 0.6rem 1rem;
    color: #0C2D1C;
    white-space: nowrap;
    text-decoration: none;
    transition: background 0.2s ease;
}

.submenu-item:hover {
    background: #F9FAFB;
}

@media (max-width: 992px) {
    .navbar-dropdown .dropdown-menu {
        position: static;
        display: block;
        box-shadow: none;
        padding-left: 0;
    }
    .navbar-dropdown .dropdown-item {
        padding-left: 2rem;
    }
    
    .submenu {
        position: static;
        display: none;
        box-shadow: none;
        padding-left: 1rem;
        background: #F9FAFB;
    }
    
    .dropdown-item.has-submenu:hover .submenu,
    .dropdown-item.has-submenu.active .submenu {
        display: block;
    }
    
    .submenu-item {
        padding-left: 2rem;
        font-size: 0.9rem;
    }
}

/* Solution Pages Styling */
.solution-intro {
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    border-left: 5px solid #F5C518;
}

[dir="rtl"] .solution-intro {
    border-left: none;
    border-right: 5px solid #F5C518;
}

.solution-title {
    font-size: 32px;
    font-weight: 700;
    color: #004d26;
    margin-bottom: 20px;
}

.lead-text {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

.solution-section {
    margin-bottom: 40px;
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.solution-heading {
    font-size: 24px;
    font-weight: 700;
    color: #004d26;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.solution-heading i {
    color: #F5C518;
    font-size: 28px;
}

.solution-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.solution-list li {
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
}

.solution-list li:last-child {
    border-bottom: none;
}

.solution-list li i {
    position: absolute;
    left: 0;
    top: 14px;
    color: #F5C518;
    font-size: 18px;
}

[dir="rtl"] .solution-list li {
    padding-left: 0;
    padding-right: 35px;
}

[dir="rtl"] .solution-list li i {
    left: auto;
    right: 0;
}

@media (max-width: 768px) {
    .solution-title {
        font-size: 26px;
    }
    
    .solution-heading {
        font-size: 20px;
    }
    
    .solution-intro,
    .solution-section {
        padding: 20px;
    }
    
    .lead-text {
        font-size: 16px;
    }
}

.navbar-link {
    color: #0C2D1C;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.navbar-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #FFDF41 0%, #E3A000 100%);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-link:hover::before {
    width: 100%;
}

.navbar-link:hover {
    color: #E3A000;
    transform: translateY(-2px);
}

.navbar-link.active {
    color: #E3A000;
}

.navbar-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(135deg, #FFDF41 0%, #E3A000 100%);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        width: 0;
        left: 50%;
    }
    to {
        width: 100%;
        left: 0;
    }
}

/* ============================================
   LANGUAGE SWITCHER
   ============================================ */
.language-switcher {
    display: flex;
    align-items: center;
    margin: 0 1rem;
}

.lang-btn {
    padding: 0.6rem 1.2rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: #0C2D1C;
    background: linear-gradient(135deg, #FFDF41 0%, #E3A000 100%);
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 2px 8px rgba(227, 160, 0, 0.25);
}

.lang-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(227, 160, 0, 0.4);
}

.lang-btn span {
    font-family: 'Cairo', sans-serif;
    line-height: 1;
}


.navbar-toggle {
    display: none;
    flex-direction: column;
    background: linear-gradient(135deg, #0C2D1C 0%, #115F45 100%);
    border: 2px solid #FFDF41;
    cursor: pointer;
    padding: 0.6rem 0.7rem;
    z-index: 1001;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(12, 45, 28, 0.3);
    transition: all 0.3s ease;
}

.navbar-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 223, 65, 0.4);
}

.navbar-toggle span {
    width: 26px;
    height: 3px;
    background-color: #FFDF41;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* Mobile Menu Overlay */
.navbar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1001;
    opacity: 0;
    transition: opacity 0.3s ease;
}

@media (max-width: 992px) {
    .navbar-overlay.active {
        display: block;
        opacity: 1;
    }
}

/* Mobile Menu */
@media (max-width: 992px) {
    .navbar-brand .logo {
        height: 50px;
    }
    
    .navbar-toggle {
        display: flex;
        z-index: 1003;
    }

    .navbar-menu {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        left: auto !important;
        width: 320px !important;
        max-width: 90% !important;
        height: 100vh !important;
        background: linear-gradient(180deg, #FFFFFF 0%, #F8F9FA 100%) !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: flex-start !important;
        padding: 6rem 2rem 2rem !important;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
        box-shadow: 
            -4px 0 30px rgba(0, 0, 0, 0.15),
            -2px 0 10px rgba(0, 0, 0, 0.1) !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        z-index: 1002 !important;
    }

    .navbar-menu.active {
        right: 0 !important;
        left: auto !important;
    }

    .navbar-link {
        font-size: 1.15rem !important;
        font-weight: 600 !important;
        padding: 1.2rem 0 !important;
        width: 100% !important;
        text-align: left !important;
        border-bottom: 1px solid #E5E7EB !important;
        word-wrap: break-word;
        white-space: normal;
        color: #0C2D1C !important;
        transition: all 0.3s ease !important;
    }
    
    .navbar-link:hover {
        color: #FFDF41 !important;
        padding-left: 10px !important;
        transform: none !important;
    }
    
    .navbar-link.active {
        color: #FFDF41 !important;
        background: rgba(255, 223, 65, 0.1) !important;
        padding-left: 10px !important;
        border-left: 4px solid #FFDF41 !important;
    }
    
    .navbar-link.active::after {
        display: none;
    }

    .navbar-dropdown {
        width: 100% !important;
    }
    
    .navbar-dropdown .dropdown-menu {
        background: rgba(255, 223, 65, 0.05) !important;
        border-radius: 8px !important;
        margin-top: 8px !important;
        padding: 8px 0 !important;
    }
    
    .dropdown-item {
        font-size: 1rem !important;
        padding: 0.8rem 1.2rem !important;
    }

    .language-switcher {
        margin: 2rem 0 1rem !important;
        padding: 1.5rem 0 !important;
        border-top: 2px solid #E5E7EB !important;
        border-bottom: none !important;
        width: 100% !important;
        justify-content: center !important;
    }
    
    .navbar-toggle.active {
        background: linear-gradient(135deg, #115F45 0%, #0C2D1C 100%);
        border-color: #FFDF41;
        box-shadow: 0 4px 15px rgba(255, 223, 65, 0.5);
    }
    
    .navbar-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
        background-color: #FFDF41;
    }
    
    .navbar-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .navbar-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
        background-color: #FFDF41;
    }
}

/* RTL Support for Mobile Menu */
@media (max-width: 992px) {
    [dir="rtl"] .navbar-menu {
        right: auto !important;
        left: -100% !important;
        align-items: flex-end !important;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
        box-shadow: 
            4px 0 30px rgba(0, 0, 0, 0.15),
            2px 0 10px rgba(0, 0, 0, 0.1) !important;
    }
    
    [dir="rtl"] .navbar-menu.active {
        left: 0 !important;
        right: auto !important;
    }
    
    [dir="rtl"] .navbar-link {
        text-align: right !important;
        direction: rtl !important;
    }
    
    [dir="rtl"] .navbar-link:hover {
        padding-right: 10px !important;
        padding-left: 0 !important;
    }
    
    [dir="rtl"] .navbar-link.active {
        padding-right: 10px !important;
        padding-left: 0 !important;
        border-left: none !important;
        border-right: 4px solid #FFDF41 !important;
    }
    
    [dir="rtl"] .language-switcher {
        direction: rtl !important;
        justify-content: center !important;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(12, 45, 28, 0.85) 0%, rgba(17, 95, 69, 0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero {
        min-height: 500px;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ============================================
   HERO SLIDER
   ============================================ */
.hero-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background: #0C2D1C;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.dot:hover {
    background: rgba(255, 223, 65, 0.7);
    transform: scale(1.2);
}

.dot.active {
    background: #FFDF41;
    border-color: #FFDF41;
    transform: scale(1.3);
}

@media (max-width: 768px) {
    .hero-slider {
        height: 20vh;
        min-height: 200px;
        max-height: 300px;
    }
    
    /* .slide img {
        object-fit: cover;
        object-position: center;
    } */
    
    .slider-dots {
        bottom: 20px;
        gap: 8px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 29vh;
        /* min-height: 300px; */
        /* max-height: 400px; */
        background: transparent;
        margin-bottom: 0;
    }
    
    .slider-container {
        height: 100%;
        width: 100%;
    }
    
    .slide {
        height: 100%;
        width: 100%;
    }
    
    .slide img {
        width: 100%;
        height: 80%;
        object-fit: cover;
        object-position: center center;
        display: block;
    }
    
    .slider-dots {
        display: none;
    }
    
    .section-about-home {
        padding-top: 0;
        margin-top: 0;
    }
}

/* Hero Location Overlay */
.hero-location-overlay {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    background: rgba(12, 45, 28, 0.90);
    backdrop-filter: blur(10px);
    padding: 15px 35px;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.location-text {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #FFDF41;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
}

.location-text i {
    font-size: 20px;
    color: #FFDF41;
}

.location-text span {
    color: white;
}

@media (max-width: 768px) {
    .hero-location-overlay {
        bottom: 60px;
        padding: 12px 25px;
    }
    
    .location-text {
        font-size: 13px;
        gap: 8px;
    }
    
    .location-text i {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero-location-overlay {
        bottom: 50px;
        padding: 10px 20px;
        max-width: 90%;
    }
    
    .location-text {
        font-size: 11px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .location-text span {
        text-align: center;
        white-space: normal;
    }
}

/* Solutions Banner Section */
.solutions-banner {
    background: linear-gradient(135deg, #0C2D1C 0%, #115F45 100%);
    padding: 50px 0;
    margin-top: -5px;
}

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

.banner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 25px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid rgba(255, 223, 65, 0.2);
}

.banner-item:hover {
    background: rgba(255, 223, 65, 0.15);
    transform: translateY(-8px);
    border-color: #FFDF41;
    box-shadow: 0 10px 30px rgba(255, 223, 65, 0.3);
}

.banner-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.banner-item span {
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
}

@media (max-width: 1024px) {
    .banner-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .solutions-banner {
        padding: 40px 0;
    }
    
    .banner-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .banner-item {
        padding: 20px 10px;
    }
    
    .banner-item img {
        width: 60px;
        height: 60px;
        margin-bottom: 10px;
    }
    
    .banner-item span {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .solutions-banner {
        padding: 30px 0;
    }
    
    .banner-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .banner-item {
        padding: 15px 8px;
    }
    
    .banner-item img {
        width: 50px;
        height: 50px;
        margin-bottom: 8px;
    }
    
    .banner-item span {
        font-size: 12px;
    }
}

/* Product category selector on homepage */
.section-product-cats {
    padding: 4rem 0;
}
.category-selector-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}
.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: white;
    border-radius: 14px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(12,45,28,0.06);
    color: inherit;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    min-height: 260px;
}
.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(12,45,28,0.12);
}
.category-card-media {
    width: 96px;
    height: 96px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,#FFDF41,#E3A000);
    color: #0C2D1C;
    font-size: 36px;
    margin-bottom: 1rem;
}
.category-card-body {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.category-card-body h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}
.category-card-body p {
    color: #6B746C;
    font-size: 0.95rem;
    text-align: center;
}
.category-card-cta {
    margin-top: 1.5rem;
    background: linear-gradient(135deg,#FFDF41,#E3A000);
    color: #0C2D1C;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-weight: 700;
    align-self: center;
}

@media (max-width: 992px) {
    .category-selector-grid {
        grid-template-columns: 1fr;
    }
    .category-card {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
        padding: 1rem;
        min-height: 100px;
    }
    .category-card-media { width:64px; height:64px; font-size:22px }
    .category-card-body p { text-align: center }
    .category-card-cta { margin-top: 0; margin-left: 0; align-self: center }
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 5rem 0;
}

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

/* ============================================
   SECTION TITLE
   ============================================ */
.section-title {
    margin-bottom: 3rem;
}

.section-title-main {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0C2D1C;
    margin-bottom: 1rem;
}

.section-title-subtitle {
    font-size: 1.125rem;
    color: #115F45;
}

.bg-gradient .section-title-main,
.bg-gradient .section-title-subtitle {
    color: white;
}

@media (max-width: 768px) {
    .section-title-main {
        font-size: 1.875rem;
    }

    .section-title-subtitle {
        font-size: 1rem;
    }
}

/* ============================================
   ABOUT SECTION (HOME)
   ============================================ */
.section-about-home {
    background-color: white;
}

.about-home-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-home-image img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-home-content p {
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .about-home-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ============================================
   PRODUCTS GRID
   ============================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.products-page-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* ============================================
   PRODUCT CARD
   ============================================ */
.product-card {
    background-color: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 12px 40px rgba(17, 95, 69, 0.15);
}

.product-card-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-card-image img {
    transform: scale(1.08);
}

.product-price-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #FFDF41 0%, #E3A000 100%);
    padding: 10px 16px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(227, 160, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}

[dir="rtl"] .product-price-badge {
    right: auto;
    left: 16px;
}

.price-amount {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0C2D1C;
    line-height: 1;
}

.price-currency {
    font-size: 0.75rem;
    font-weight: 600;
    color: #115F45;
    margin-top: 2px;
}

.product-card-content {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #0C2D1C;
    line-height: 1.3;
}

.product-card-description {
    color: #115F45;
    margin-bottom: 1.25rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.product-card-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
    flex: 1;
}

.product-card-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.65rem;
    font-size: 0.9rem;
    color: #0C2D1C;
}

.feature-icon {
    width: 18px;
    height: 18px;
    color: #8CC63F;
    margin-right: 0.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

[dir="rtl"] .feature-icon {
    margin-right: 0;
    margin-left: 0.5rem;
}

.product-card-footer {
    margin-top: auto;
    padding-top: 1.25rem;
    border-top: 2px solid #F3F4F6;
}

.product-price-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.price-label {
    font-size: 0.85rem;
    color: #6B7280;
    font-weight: 500;
}

.price-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0C2D1C;
}

.price-value small {
    font-size: 0.9rem;
    color: #115F45;
    font-weight: 600;
}

.product-cta {
    margin-top: 0.75rem;
    font-weight: 600;
    padding: 0.85rem 1.5rem;
}

.product-cta:hover {
    transform: translateY(-2px);
}

/* ============================================
   FEATURES GRID
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.feature-card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    color: #FFDF41;
}

.feature-card-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #0C2D1C;
}

.feature-card-description {
    color: #115F45;
}

.feature-card-white {
    background-color: rgba(255, 255, 255, 0.95);
}

.feature-card-white .feature-card-title,
.feature-card-white .feature-card-description {
    color: #0C2D1C;
}

/* ============================================
   SERVICES GRID
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card-content {
    padding: 1.5rem;
}

.service-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #0C2D1C;
}

.service-card-description {
    color: #115F45;
}

/* ============================================
   CALL TO ACTION
   ============================================ */
.section-cta {
    background: linear-gradient(135deg, #FFDF41 0%, #E3A000 100%);
    padding: 4rem 0;
}

.cta-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0C2D1C;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: #115F45;
    margin-bottom: 2rem;
}

/* CTA Button Override - Green on Yellow Background */
.section-cta .btn,
.section-cta .btn-primary {
    background: linear-gradient(135deg, #0C2D1C 0%, #115F45 100%);
    color: white;
    border-color: #0C2D1C;
    border-radius: 8px;
}

.section-cta .btn:hover,
.section-cta .btn-primary:hover {
    background: linear-gradient(135deg, #115F45 0%, #0C2D1C 100%);
    box-shadow: 0 10px 20px rgba(12, 45, 28, 0.3);
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 1.875rem;
    }

    .cta-subtitle {
        font-size: 1rem;
    }
}

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
    padding: 5rem 0 3rem;
    background-color: white;
    text-align: center;
}

.page-header.bg-gradient {
    color: white;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .page-header {
        padding: 3rem 0 2rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-grid.reverse {
    direction: rtl;
}

.about-grid.reverse > * {
    direction: ltr;
}

.about-image img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.technology-content {
    margin-top: 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #0C2D1C;
}

.benefit-card p {
    color: #115F45;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-grid.reverse {
        direction: ltr;
    }
}

/* ============================================
   PRODUCTS PAGE
   ============================================ */
.products-page-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(17, 95, 69, 0.12);
}

.benefit-icon-box {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #FFDF41 0%, #E3A000 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(227, 160, 0, 0.25);
}

.benefit-icon-box svg {
    width: 34px;
    height: 34px;
    color: #0C2D1C;
}

.benefit-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.65rem;
    color: #0C2D1C;
    line-height: 1.3;
}

.benefit-content p {
    color: #115F45;
    line-height: 1.7;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .benefit-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .benefit-icon-box {
        margin: 0 auto;
    }
    
    .products-page-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.process-timeline {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    flex: 1;
    text-align: center;
}

.process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFDF41 0%, #E3A000 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0C2D1C;
    margin: 0 auto 1rem;
}

.process-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #0C2D1C;
}

.process-description {
    color: #115F45;
    font-size: 0.95rem;
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.guarantee-card {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.guarantee-icon {
    font-size: 2.5rem;
    color: #8CC63F;
    margin-bottom: 1rem;
}

.guarantee-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #0C2D1C;
}

.guarantee-card p {
    color: #115F45;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .process-timeline {
        flex-direction: column;
    }
}

/* ============================================
   GALLERY PAGE
   ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(12, 45, 28, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay svg {
    width: 50px;
    height: 50px;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #FFDF41;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.125rem;
    color: #ffffff !important;
    font-weight: 600;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    padding: 1rem;
    user-select: none;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
/* Hero Section */
.about-hero {
    background: linear-gradient(135deg, #0C2D1C 0%, #115F45 100%);
    padding: 80px 0 60px;
    text-align: center;
}

.about-hero .section-title {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FFDF41 0%, #E3A000 100%);
    margin: 0 auto;
    border-radius: 2px;
}

/* Introduction Section */
.about-intro {
    padding: 60px 0;
    background: #fff;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #374151;
    text-align: center;
}

/* Vision & Mission Section */
.vision-mission {
    padding: 80px 0;
    background: linear-gradient(135deg, #F9FAFB 0%, #FFFFFF 100%);
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.vm-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.vm-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.vision-card {
    border-color: #FFDF41;
}

.vision-card:hover {
    border-color: #E3A000;
}

.mission-card {
    border-color: #115F45;
}

.mission-card:hover {
    border-color: #0C2D1C;
}

.vm-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #FFDF41 0%, #E3A000 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #0C2D1C;
}

.mission-card .vm-icon {
    background: linear-gradient(135deg, #0C2D1C 0%, #115F45 100%);
    color: #FFDF41;
}

.vm-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0C2D1C;
    margin-bottom: 1rem;
}

.vm-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4B5563;
}

/* Statistics Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFDF41 0%, #E3A000 100%);
}

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

.stat-card {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 2.5rem;
    color: #0C2D1C;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #0C2D1C;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-suffix {
    font-size: 2rem;
    color: #0C2D1C;
    margin-left: 2px;
}

[dir="rtl"] .stat-suffix {
    margin-left: 0;
    margin-right: 2px;
}

.stat-label {
    font-size: 1rem;
    color: #0C2D1C;
    font-weight: 600;
}

/* Why Choose Us Section */
.why-choose {
    padding: 80px 0;
    background: #fff;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #0C2D1C;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.5rem;
    color: #115F45;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-intro {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #6B7280;
}

/* Guarantees Grid */
.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.guarantee-card {
    background: linear-gradient(135deg, #F9FAFB 0%, #FFFFFF 100%);
    padding: 2rem;
    border-radius: 16px;
    border-left: 4px solid #FFDF41;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    gap: 1.5rem;
}

[dir="rtl"] .guarantee-card {
    border-left: none;
    border-right: 4px solid #FFDF41;
}

.guarantee-card:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
    border-left-color: #E3A000;
}

[dir="rtl"] .guarantee-card:hover {
    transform: translateX(-5px);
    border-right-color: #E3A000;
}

.guarantee-card:nth-child(2) { border-left-color: #115F45; }
.guarantee-card:nth-child(2):hover { border-left-color: #0C2D1C; }
.guarantee-card:nth-child(3) { border-left-color: #E3A000; }
.guarantee-card:nth-child(3):hover { border-left-color: #FFDF41; }
.guarantee-card:nth-child(4) { border-left-color: #0C2D1C; }
.guarantee-card:nth-child(4):hover { border-left-color: #115F45; }
.guarantee-card:nth-child(5) { border-left-color: #22C55E; }
.guarantee-card:nth-child(5):hover { border-left-color: #16A34A; }

[dir="rtl"] .guarantee-card:nth-child(2) { border-right-color: #115F45; }
[dir="rtl"] .guarantee-card:nth-child(2):hover { border-right-color: #0C2D1C; }
[dir="rtl"] .guarantee-card:nth-child(3) { border-right-color: #E3A000; }
[dir="rtl"] .guarantee-card:nth-child(3):hover { border-right-color: #FFDF41; }
[dir="rtl"] .guarantee-card:nth-child(4) { border-right-color: #0C2D1C; }
[dir="rtl"] .guarantee-card:nth-child(4):hover { border-right-color: #115F45; }
[dir="rtl"] .guarantee-card:nth-child(5) { border-right-color: #22C55E; }
[dir="rtl"] .guarantee-card:nth-child(5):hover { border-right-color: #16A34A; }

.guarantee-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, #FFDF41 0%, #E3A000 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #0C2D1C;
}

.guarantee-content {
    flex: 1;
}

.guarantee-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0C2D1C;
    margin-bottom: 0.25rem;
}

.guarantee-subtitle {
    font-size: 0.9rem;
    color: #E3A000;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.guarantee-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #6B7280;
}

/* Responsive Design for About Page */
@media (max-width: 992px) {
    .vm-grid,
    .guarantees-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .about-hero .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

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

    .stat-suffix {
        font-size: 1.5rem;
    }

    .about-hero .section-title {
        font-size: 1.75rem;
    }

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

    .section-subtitle {
        font-size: 1.25rem;
    }

    .guarantee-card {
        flex-direction: column;
        text-align: center;
    }

    .guarantee-icon {
        margin: 0 auto;
    }

    [dir="rtl"] .guarantee-card {
        flex-direction: column;
    }
}

/* ============================================
   SOLUTIONS PAGE
   ============================================ */
/* Solutions Hero */
.solutions-hero {
    background: linear-gradient(135deg, #0C2D1C 0%, #115F45 100%);
    padding: 80px 0 60px;
    text-align: center;
}

.solutions-hero .section-title {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.solutions-hero .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 20px;
}

/* Tabs Section */
.solutions-tabs-section {
    padding: 60px 0;
    background: #fff;
}

/* Main Tabs */
.main-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.main-tab-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: #F3F4F6;
    border: 2px solid transparent;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    color: #4B5563;
    cursor: pointer;
    transition: all 0.3s ease;
}

.main-tab-btn i {
    font-size: 1.5rem;
}

.main-tab-btn:hover {
    background: #E5E7EB;
    border-color: #FFDF41;
}

.main-tab-btn.active {
    background: linear-gradient(135deg, #FFDF41 0%, #E3A000 100%);
    color: #0C2D1C;
    border-color: #E3A000;
}

/* Tab Content */
.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.tab-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.tab-header h2 {
    font-size: 2rem;
    color: #0C2D1C;
    margin-bottom: 1rem;
}

.tab-header p {
    font-size: 1.05rem;
    color: #6B7280;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Sub Tabs (for Solar Energy) */
.sub-tabs {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.sub-tab-btn {
    padding: 0.75rem 1.5rem;
    background: #fff;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #6B7280;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sub-tab-btn:hover {
    background: #F9FAFB;
    border-color: #115F45;
    color: #115F45;
}

.sub-tab-btn.active {
    background: #0C2D1C;
    border-color: #0C2D1C;
    color: #FFDF41;
}

/* Sub Tab Content */
.sub-tab-content {
    display: none;
}

.sub-tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

/* Solution Card */
.solution-card {
    background: linear-gradient(135deg, #F9FAFB 0%, #FFFFFF 100%);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 1000px;
    margin: 0 auto;
}

.solution-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #FFDF41 0%, #E3A000 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #0C2D1C;
}

.solution-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0C2D1C;
    text-align: center;
    margin-bottom: 0.5rem;
}

.solution-subtitle {
    font-size: 1.15rem;
    color: #E3A000;
    text-align: center;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.solution-intro {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 2rem;
    text-align: justify;
}

.solution-section-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #115F45;
    margin: 2rem 0 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.solution-section-title i {
    color: #FFDF41;
}

.solution-steps,
.solution-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.solution-steps li,
.solution-benefits li {
    padding: 1rem 1rem 1rem 3rem;
    margin-bottom: 0.75rem;
    background: #fff;
    border-left: 4px solid #FFDF41;
    border-radius: 8px;
    position: relative;
    line-height: 1.7;
    color: #374151;
}

[dir="rtl"] .solution-steps li,
[dir="rtl"] .solution-benefits li {
    border-left: none;
    border-right: 4px solid #FFDF41;
    padding: 1rem 3rem 1rem 1rem;
}

.solution-steps li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 1rem;
    color: #22C55E;
}

[dir="rtl"] .solution-steps li::before {
    left: auto;
    right: 1rem;
}

.solution-benefits li::before {
    content: "\f005";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 1rem;
    color: #FFDF41;
}

[dir="rtl"] .solution-benefits li::before {
    left: auto;
    right: 1rem;
}

/* SWH Content */
.swh-content {
    max-width: 1100px;
    margin: 0 auto;
}

.swh-section {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

.swh-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0C2D1C;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.swh-section-title i {
    color: #FFDF41;
}

.swh-list {
    list-style: none;
    padding: 0;
}

.swh-list li {
    padding: 1rem;
    margin-bottom: 0.75rem;
    background: #F9FAFB;
    border-radius: 8px;
    line-height: 1.7;
    color: #374151;
}

.swh-types-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 1.5rem;
}

.swh-type-card {
    background: linear-gradient(135deg, #F9FAFB 0%, #FFFFFF 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #E5E7EB;
    transition: all 0.3s ease;
}

.swh-type-card:hover {
    border-color: #FFDF41;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.swh-type-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFDF41 0%, #E3A000 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #0C2D1C;
    margin-bottom: 1rem;
}

.swh-type-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0C2D1C;
    margin-bottom: 0.5rem;
}

.swh-type-label {
    font-size: 0.9rem;
    color: #E3A000;
    font-weight: 600;
    margin-bottom: 1rem;
}

.swh-type-detail {
    margin-bottom: 1rem;
}

.swh-type-detail strong {
    color: #115F45;
    font-weight: 600;
}

.swh-type-detail p {
    margin-top: 0.25rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4B5563;
}

.swh-principle {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #374151;
    text-align: justify;
}

/* Solar Lights Content */
.solar-lights-content {
    max-width: 1100px;
    margin: 0 auto;
}

.lights-section {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

.lights-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0C2D1C;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.lights-section-title i {
    color: #FFDF41;
}

.lights-list {
    list-style: none;
    padding: 0;
}

.lights-list li {
    padding: 1rem;
    margin-bottom: 0.75rem;
    background: #F9FAFB;
    border-radius: 8px;
    line-height: 1.7;
    color: #374151;
}

.lights-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.light-category-card {
    background: linear-gradient(135deg, #F9FAFB 0%, #FFFFFF 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #E5E7EB;
    text-align: center;
    transition: all 0.3s ease;
}

.light-category-card:hover {
    border-color: #FFDF41;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.light-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #FFDF41 0%, #E3A000 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #0C2D1C;
}

.light-category-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0C2D1C;
    margin-bottom: 0.5rem;
}

.light-label {
    font-size: 0.85rem;
    color: #E3A000;
    font-weight: 600;
    margin-bottom: 1rem;
}

.light-detail {
    text-align: right;
    margin-bottom: 1rem;
}

[dir="ltr"] .light-detail {
    text-align: left;
}

.light-detail strong {
    color: #115F45;
    font-weight: 600;
    font-size: 0.9rem;
}

.light-detail p {
    margin-top: 0.25rem;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #4B5563;
}

.lights-advantages {
    list-style: none;
    padding: 0;
}

.lights-advantages li {
    padding: 1rem 1rem 1rem 3rem;
    margin-bottom: 0.75rem;
    background: #F9FAFB;
    border-left: 4px solid #22C55E;
    border-radius: 8px;
    position: relative;
    line-height: 1.7;
    color: #374151;
}

[dir="rtl"] .lights-advantages li {
    border-left: none;
    border-right: 4px solid #22C55E;
    padding: 1rem 3rem 1rem 1rem;
}

.lights-advantages li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 1rem;
    color: #22C55E;
}

[dir="rtl"] .lights-advantages li::before {
    left: auto;
    right: 1rem;
}

/* Responsive Design for Solutions Page */
@media (max-width: 992px) {
    .swh-types-grid,
    .lights-categories-grid {
        grid-template-columns: 1fr;
    }

    .solution-card {
        padding: 2rem;
    }
}

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

    .main-tabs {
        flex-direction: column;
    }

    .main-tab-btn {
        justify-content: center;
        width: 100%;
    }

    .sub-tabs {
        flex-direction: column;
    }

    .sub-tab-btn {
        width: 100%;
        text-align: center;
    }

    .tab-header h2 {
        font-size: 1.5rem;
    }

    .solution-card {
        padding: 1.5rem;
    }

    .solution-title {
        font-size: 1.5rem;
    }

    .swh-section,
    .lights-section {
        padding: 1.5rem;
    }
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    background: linear-gradient(135deg, #F9FAFB 0%, #FFFFFF 100%);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    height: fit-content;
}

.contact-info-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #0C2D1C;
}

.contact-info-text {
    color: #6B7280;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-method {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 0.75rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background-color: #F3F4F6;
    transform: translateX(5px);
}

[dir="rtl"] .contact-method:hover {
    transform: translateX(-5px);
}

.contact-method-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #FFDF41 0%, #E3A000 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
}

.contact-method-icon svg {
    width: 22px;
    height: 22px;
    color: #0C2D1C;
}

.contact-method-icon i {
    color: white;
}

.contact-method-icon-phone {
    background: linear-gradient(135deg, #FFDF41 0%, #E3A000 100%);
}

.contact-method-icon-phone i {
    color: #0C2D1C;
}

.contact-method-icon-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.contact-method-icon-gmail {
    background: linear-gradient(135deg, #EA4335 0%, #C5221F 100%);
    box-shadow: 0 4px 12px rgba(234, 67, 53, 0.3);
}

.contact-method-icon-location {
    background: linear-gradient(135deg, #4285F4 0%, #1967D2 100%);
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
}

.contact-method-content {
    flex: 1;
}

.contact-method-content h3 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #374151;
}

.contact-method-content a {
    color: #115F45;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.contact-method-content a:hover {
    color: #E3A000;
}

.contact-method-content p {
    color: #6B7280;
    font-size: 0.9rem;
    margin: 0;
}

.contact-form-wrapper {
    background-color: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.75rem;
    color: #0C2D1C;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

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

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #374151;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.875rem 1rem;
    border: 2px solid #E5E7EB;
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background-color: #F9FAFB;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #FFDF41;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(255, 223, 65, 0.1);
}

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

.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #FFDF41 0%, #E3A000 100%);
    color: #0C2D1C;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(227, 160, 0, 0.3);
    font-family: inherit;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(227, 160, 0, 0.4);
}

.submit-btn svg {
    width: 18px;
    height: 18px;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, #0C2D1C 0%, #115F45 100%);
    padding: 4rem 0;
    margin-top: 4rem;
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cta-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.cta-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-btn svg {
    width: 20px;
    height: 20px;
}

.cta-btn-primary {
    background: linear-gradient(135deg, #FFDF41 0%, #E3A000 100%);
    color: #0C2D1C;
}

.cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(227, 160, 0, 0.4);
}

.cta-btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn-secondary:hover {
    background-color: white;
    color: #0C2D1C;
}

@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background-color: #0C2D1C;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column .logo {
    margin-bottom: 1rem;
    height: 50px;
    width: auto;
}

.footer-description {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 223, 65, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, #FFDF41 0%, #E3A000 100%);
    color: #0C2D1C;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: #FFDF41;
    padding-left: 5px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-contact a {
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-contact a:hover {
    opacity: 1;
    color: #FFDF41;
}

.footer-text {
    opacity: 0.9;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
}

.newsletter-form .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
    font-family: inherit;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    color: #0C2D1C;
    font-weight: 600;
    font-size: 0.95rem;
}

.feedback-modal .form-input,
.feedback-modal .form-textarea {
    background: rgba(12, 45, 28, 0.03);
    border: 1px solid rgba(12, 45, 28, 0.15);
    border-radius: 10px;
    padding: 0.875rem 1rem;
    color: #0C2D1C;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.feedback-modal .form-input::placeholder,
.feedback-modal .form-textarea::placeholder {
    color: rgba(12, 45, 28, 0.4);
}

.feedback-modal .form-input:focus,
.feedback-modal .form-textarea:focus {
    outline: none;
    border-color: #FFDF41;
    background: rgba(255, 223, 65, 0.05);
    box-shadow: 0 0 0 3px rgba(255, 223, 65, 0.1);
}

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

/* Star Rating Input */
.star-rating-input {
    position: relative;
}

.star-rating-display {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.star-btn {
    cursor: pointer;
    color: rgba(12, 45, 28, 0.2);
    transition: all 0.2s ease;
    display: inline-flex;
    padding: 0.25rem;
}

.star-btn:hover {
    transform: scale(1.2);
    color: #FFDF41;
}

.star-btn.active {
    color: #FFDF41;
}

.btn-feedback-submit {
    width: 100%;
    margin-top: 1rem;
    padding: 1rem 2rem;
    font-size: 1.05rem;
    font-weight: 600;
    background: linear-gradient(135deg, #FFDF41 0%, #E3A000 100%);
    border: none;
    border-radius: 10px;
    color: #0C2D1C;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-feedback-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 223, 65, 0.4);
}

.btn-feedback-submit:active {
    transform: translateY(0);
}

/* RTL Support for Arabic */
[dir="rtl"] .form-row {
    direction: rtl;
}

[dir="rtl"] .star-rating-display {
    flex-direction: row-reverse;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form .btn {
        width: 100%;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feedback-modal {
        width: 95%;
        padding: 1.5rem;
    }
    
    .feedback-modal-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .feedback-modal-title {
        font-size: 1.4rem;
    }
    
    .feedback-modal-form {
        padding: 1.5rem;
    }
    
    .success-modal {
        margin: 1rem;
        padding: 2rem;
    }
    
    .success-modal h2 {
        font-size: 1.5rem;
    }
    
    .floating-social {
        left: 10px;
        gap: 10px;
    }
    
    .floating-social a {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   PRODUCTS PAGE (NEW)
   ============================================ */
.products-hero {
    background: linear-gradient(135deg, #0C2D1C 0%, #115F45 100%);
    padding: 80px 0 60px;
    text-align: center;
}

.products-hero .section-title {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.products-hero .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.products-section {
    padding: 60px 0;
    background: #fff;
}

.product-category {
    margin-bottom: 80px;
}

.product-category:last-child {
    margin-bottom: 0;
}

.category-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #FFDF41 0%, #E3A000 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #0C2D1C;
}

.category-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0C2D1C;
    margin-bottom: 1rem;
}

.category-description {
    font-size: 1.05rem;
    color: #6B7280;
    line-height: 1.7;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

.product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.product-card-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #0C2D1C 0%, #115F45 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
}

.product-card:hover .product-card-image img {
    transform: scale(1.08);
}

.product-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(12, 45, 28, 0) 0%, rgba(12, 45, 28, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.product-view-btn {
    background: linear-gradient(135deg, #FFDF41 0%, #E3A000 100%);
    color: #0C2D1C;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 223, 65, 0.3);
}

.product-card:hover .product-view-btn {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 223, 65, 0.4);
}

.product-card-body {
    padding: 1.75rem;
}

.product-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0C2D1C;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.product-card-description {
    color: #115F45;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.product-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #F3F4F6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

/* Image Placeholder for Missing Images */
.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #F3F4F6 0%, #E5E7EB 100%);
    font-size: 5rem;
    font-weight: 700;
    color: #9CA3AF;
    font-family: Arial, sans-serif;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #FFDF41 0%, #E3A000 100%);
    color: #0C2D1C;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

[dir="rtl"] .product-badge {
    right: auto;
    left: 15px;
}

.product-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0C2D1C;
    margin-bottom: 0.5rem;
}

.product-capacity,
.product-power {
    font-size: 0.9rem;
    color: #E3A000;
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-capacity i {
    font-size: 1rem;
}

.product-description {
    font-size: 0.95rem;
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 4.8rem;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.5rem;
    max-height: 150px;
    overflow: hidden;
}

.product-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.4rem 0;
    font-size: 0.85rem;
    color: #374151;
    line-height: 1.4;
}

.product-features li i {
    color: #22C55E;
    font-size: 0.85rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #0C2D1C 0%, #115F45 100%);
    color: #FFDF41;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
    text-decoration: none;
}

.btn-download:hover {
    background: linear-gradient(135deg, #115F45 0%, #0C2D1C 100%);
    transform: translateY(-2px);
}

.btn-download i {
    font-size: 1rem;
}

/* ============================================
   PROJECTS PAGE (NEW)
   ============================================ */
.projects-hero {
    background: linear-gradient(135deg, #0C2D1C 0%, #115F45 100%);
    padding: 80px 0 60px;
    text-align: center;
}

.projects-hero .section-title {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.projects-hero .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.projects-gallery-section {
    padding: 60px 0;
    background: #fff;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

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

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.project-image-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #F3F4F6;
}

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

.project-card:hover .project-image {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(12, 45, 28, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.btn-view-project {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #FFDF41 0%, #E3A000 100%);
    color: #0C2D1C;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-view-project:hover {
    transform: scale(1.05);
}

.project-info {
    padding: 1.5rem;
}

.project-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0C2D1C;
    margin-bottom: 0.5rem;
}

.project-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: #6B7280;
    margin-bottom: 1rem;
}

.project-location i {
    color: #E3A000;
}

.project-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.project-type,
.project-capacity {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #F9FAFB;
    border-radius: 6px;
    font-size: 0.85rem;
    color: #374151;
    font-weight: 500;
}

.project-type i,
.project-capacity i {
    color: #115F45;
}

/* Project Modal */
.project-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.project-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: #fff;
    border-radius: 16px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 10000;
    animation: modalSlideUp 0.3s ease;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1.25rem;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
}

[dir="rtl"] .modal-close {
    right: auto;
    left: 15px;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: rotate(90deg);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.modal-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-info {
    padding: 2rem;
}

.modal-project-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0C2D1C;
    margin-bottom: 0.5rem;
}

.modal-project-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: #6B7280;
    margin-bottom: 1.5rem;
}

.modal-project-location i {
    color: #E3A000;
}

.modal-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.detail-item i {
    color: #115F45;
    font-size: 1.25rem;
    margin-top: 2px;
}

.detail-item strong {
    color: #0C2D1C;
    font-weight: 600;
}

.detail-item span {
    color: #374151;
}

.modal-description h3,
.modal-features h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0C2D1C;
    margin-bottom: 0.75rem;
}

.modal-description p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4B5563;
    margin-bottom: 1.5rem;
}

.modal-features ul {
    list-style: none;
    padding: 0;
}

.modal-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: #374151;
}

.modal-features li i {
    color: #22C55E;
    font-size: 1rem;
}

/* Responsive - Products & Projects Pages */
@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .modal-body {
        grid-template-columns: 1fr;
    }

    .modal-image {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .products-hero .section-title,
    .projects-hero .section-title {
        font-size: 2rem;
    }

    .products-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .category-title {
        font-size: 1.5rem;
    }

    .modal-info {
        padding: 1.5rem;
    }

    .modal-project-title {
        font-size: 1.5rem;
    }
}

/* ============================================
   RESPONSIVE UTILITIES
   ============================================ */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.25rem;
    }
}

@media (max-width: 640px) {
    .features-grid,
    .products-grid,
    .services-grid,
    .benefits-grid,
    .guarantees-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   NEWS/ARTICLES PAGE STYLES - PREMIUM REDESIGN
   ============================================ */
.news-hero {
    padding: 7rem 0 5rem !important;
    background: #0C2D1C !important;
    background-image: 
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FFDF41' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
        radial-gradient(circle at 20% 30%, rgba(255, 223, 65, 0.1), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(140, 198, 63, 0.08), transparent 50%),
        linear-gradient(180deg, #0C2D1C 0%, #0A2318 100%) !important;
    color: white !important;
    text-align: center !important;
    position: relative !important;
    overflow: hidden !important;
}

.news-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 223, 65, 0.4), transparent);
}

.news-hero .section-title {
    font-size: 3.5rem !important;
    font-weight: 800 !important;
    margin-bottom: 1rem !important;
    background: linear-gradient(135deg, #FFFFFF 0%, #F0F0F0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
    letter-spacing: -0.02em !important;
}

[dir="rtl"] .news-hero .section-title {
    font-family: 'Cairo', 'Tajawal', sans-serif !important;
    letter-spacing: 0 !important;
}

.news-hero .section-subtitle {
    font-size: 1.25rem !important;
    opacity: 0.92 !important;
    max-width: 600px !important;
    margin: 0 auto !important;
    line-height: 1.7 !important;
}

[dir="rtl"] .news-hero .section-subtitle {
    font-family: 'Cairo', 'Tajawal', sans-serif !important;
    line-height: 1.9 !important;
}

.news-section {
    padding: 5rem 0 !important;
    background: linear-gradient(180deg, #F9FAFB 0%, #FFFFFF 100%) !important;
}

.news-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(480px, 1fr)) !important;
    gap: 2.5rem !important;
}

/* Premium News Cards */
.news-card {
    background: white !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.08),
        0 4px 12px rgba(0, 0, 0, 0.05) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    display: flex !important;
    flex-direction: column !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    position: relative !important;
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #FFDF41 0%, #FFA000 50%, #8CC63F 100%);
    background-size: 200% 100%;
    animation: newsShimmer 4s ease-in-out infinite;
}

@keyframes newsShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.news-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 223, 65, 0.04), transparent 60%);
    pointer-events: none;
}

.news-card:hover {
    transform: translateY(-10px) scale(1.01) !important;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.12),
        0 8px 20px rgba(255, 223, 65, 0.15) !important;
    border-color: rgba(255, 223, 65, 0.2) !important;
}

/* Card Header */
.news-card-header {
    padding: 2rem !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    background: linear-gradient(135deg, rgba(255, 223, 65, 0.08) 0%, rgba(140, 198, 63, 0.05) 100%) !important;
    border-bottom: 1px solid rgba(255, 223, 65, 0.15) !important;
    position: relative !important;
}

.news-card-header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 223, 65, 0.3), transparent);
}

/* News Icon */
.news-icon {
    width: 60px !important;
    height: 60px !important;
    background: linear-gradient(135deg, #FFDF41 0%, #E3A000 100%) !important;
    border-radius: 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.75rem !important;
    color: #0C2D1C !important;
    box-shadow: 
        0 6px 18px rgba(255, 223, 65, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.5) !important;
    transition: all 0.3s ease !important;
}

.news-card:hover .news-icon {
    transform: scale(1.1) rotate(5deg) !important;
    box-shadow: 
        0 8px 24px rgba(255, 223, 65, 0.5),
        inset 0 2px 4px rgba(255, 255, 255, 0.7) !important;
}

/* News Meta */
.news-meta {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;
    gap: 0.75rem !important;
}

[dir="rtl"] .news-meta {
    align-items: flex-start !important;
}

.news-category {
    background: linear-gradient(135deg, #115F45 0%, #0C2D1C 100%) !important;
    color: white !important;
    padding: 0.5rem 1.2rem !important;
    border-radius: 25px !important;
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 4px 12px rgba(17, 95, 69, 0.3) !important;
    transition: all 0.3s ease !important;
}

[dir="rtl"] .news-category {
    font-family: 'Cairo', 'Tajawal', sans-serif !important;
    letter-spacing: 0 !important;
}

.news-card:hover .news-category {
    transform: scale(1.05) !important;
    box-shadow: 0 6px 16px rgba(17, 95, 69, 0.4) !important;
}

.news-date {
    color: #6B7280 !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
}

.news-date::before {
    content: '📅';
    font-size: 1.1rem;
}

[dir="rtl"] .news-date {
    font-family: 'Cairo', 'Tajawal', sans-serif !important;
}

/* News Content */
.news-content {
    padding: 2rem !important;
    flex-grow: 1 !important;
    display: flex !important;
    flex-direction: column !important;
}

.news-title {
    font-size: 1.6rem !important;
    font-weight: 700 !important;
    color: #0C2D1C !important;
    margin-bottom: 1.2rem !important;
    line-height: 1.4 !important;
    letter-spacing: -0.01em !important;
    transition: color 0.3s ease !important;
}

[dir="rtl"] .news-title {
    font-family: 'Cairo', 'Tajawal', sans-serif !important;
    letter-spacing: 0 !important;
    line-height: 1.6 !important;
}

.news-card:hover .news-title {
    color: #115F45 !important;
}

.news-excerpt {
    color: #4B5563 !important;
    line-height: 1.8 !important;
    margin-bottom: 1.5rem !important;
    font-size: 1.02rem !important;
}

[dir="rtl"] .news-excerpt {
    font-family: 'Cairo', 'Tajawal', sans-serif !important;
    line-height: 2 !important;
}

/* News Highlights */
.news-highlights {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.85rem !important;
    margin-bottom: 1.75rem !important;
    padding: 1.25rem !important;
    background: linear-gradient(135deg, rgba(140, 198, 63, 0.05) 0%, rgba(255, 223, 65, 0.05) 100%) !important;
    border-radius: 12px !important;
    border-left: 4px solid #8CC63F !important;
}

[dir="rtl"] .news-highlights {
    border-left: none !important;
    border-right: 4px solid #8CC63F !important;
}

.highlight-item {
    display: flex !important;
    align-items: center !important;
    gap: 0.85rem !important;
    color: #115F45 !important;
    font-weight: 600 !important;
    font-size: 0.98rem !important;
    transition: all 0.3s ease !important;
}

.highlight-item:hover {
    color: #0C2D1C !important;
    transform: translateX(5px) !important;
}

[dir="rtl"] .highlight-item:hover {
    transform: translateX(-5px) !important;
}

.highlight-item i {
    font-size: 1.15rem !important;
    color: #FFDF41 !important;
    transition: all 0.3s ease !important;
}

.highlight-item:hover i {
    transform: scale(1.2) !important;
    color: #FFA000 !important;
}

[dir="rtl"] .highlight-item {
    font-family: 'Cairo', 'Tajawal', sans-serif !important;
}

/* Read More Button */
.btn-read-more {
    margin-top: auto !important;
    background: linear-gradient(135deg, #FFDF41 0%, #E3A000 100%) !important;
    color: #0C2D1C !important;
    border: 2px solid transparent !important;
    padding: 1.1rem 2.2rem !important;
    border-radius: 12px !important;
    font-size: 1.08rem !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.85rem !important;
    box-shadow: 
        0 6px 20px rgba(227, 160, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.5) !important;
    position: relative !important;
    overflow: hidden !important;
}

[dir="rtl"] .btn-read-more {
    font-family: 'Cairo', 'Tajawal', sans-serif !important;
}

.btn-read-more::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-read-more:hover::before {
    opacity: 1;
}

.btn-read-more:hover {
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: 
        0 10px 30px rgba(227, 160, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.7) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

.btn-read-more:active {
    transform: translateY(-1px) scale(1) !important;
}

.btn-read-more i {
    transition: all 0.3s ease !important;
}

.btn-read-more:hover i {
    transform: translateX(5px) !important;
}

[dir="rtl"] .btn-read-more:hover i {
    transform: translateX(-5px) !important;
}

/* Article Modal */
.article-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.article-modal.active {
    display: flex;
}

.article-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.article-modal-content {
    position: relative;
    background: white;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideUp 0.4s ease;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: sticky;
    top: 1rem;
    left: calc(100% - 4rem);
    width: 45px;
    height: 45px;
    background: #EF4444;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.modal-close:hover {
    background: #DC2626;
    transform: rotate(90deg);
}

.article-full {
    padding: 3rem;
}

.article-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 3px solid #FFDF41;
}

.article-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FFDF41 0%, #E3A000 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #0C2D1C;
}

.article-meta-full {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.article-category {
    background: #115F45;
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
}

.article-date {
    color: #6B7280;
    font-size: 1rem;
}

.article-title-full {
    font-size: 2.25rem;
    font-weight: 800;
    color: #0C2D1C;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.article-body {
    color: #374151;
    line-height: 1.8;
    font-size: 1.05rem;
}

.article-section {
    margin-bottom: 2.5rem;
}

.article-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #115F45;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #FFDF41;
}

.article-section h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: #0C2D1C;
    margin: 1.5rem 0 1rem;
}

.article-section p {
    margin-bottom: 1rem;
}

.article-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.article-list li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    border-left: 3px solid #FFDF41;
    margin-bottom: 1rem;
    background: #F9FAFB;
    border-radius: 0 8px 8px 0;
}

.article-list li::before {
    content: "?";
    position: absolute;
    left: 0.5rem;
    color: #FFDF41;
    font-size: 0.7rem;
}

.article-list li strong {
    color: #115F45;
}

.comparison-table {
    background: #F9FAFB;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.comparison-table h3 {
    background: linear-gradient(135deg, #115F45 0%, #0C2D1C 100%);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.qa-item {
    background: #F9FAFB;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid #FFDF41;
}

.qa-item h3 {
    color: #115F45;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.qa-item p {
    margin: 0;
    color: #4B5563;
}

/* News CTA Section - Enhanced */
.news-cta {
    padding: 5rem 0 !important;
    background: linear-gradient(180deg, #FFFFFF 0%, #F9FAFB 100%) !important;
}

.cta-card {
    background: linear-gradient(135deg, #115F45 0%, #0C2D1C 100%) !important;
    border-radius: 28px !important;
    padding: 3.5rem !important;
    text-align: center !important;
    color: white !important;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.2),
        0 8px 20px rgba(17, 95, 69, 0.3) !important;
    position: relative !important;
    overflow: hidden !important;
}

.cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 223, 65, 0.08), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(140, 198, 63, 0.06), transparent 50%);
    pointer-events: none;
}

.cta-card .cta-icon {
    width: 90px !important;
    height: 90px !important;
    background: linear-gradient(135deg, #FFDF41 0%, #E3A000 100%) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 2.8rem !important;
    color: #0C2D1C !important;
    margin: 0 auto 2.5rem !important;
    box-shadow: 
        0 8px 24px rgba(255, 223, 65, 0.4),
        inset 0 3px 6px rgba(255, 255, 255, 0.5) !important;
    position: relative !important;
    z-index: 1 !important;
}

.cta-card h2 {
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    margin-bottom: 1.2rem !important;
    letter-spacing: -0.02em !important;
    position: relative !important;
    z-index: 1 !important;
}

[dir="rtl"] .cta-card h2 {
    font-family: 'Cairo', 'Tajawal', sans-serif !important;
    letter-spacing: 0 !important;
}

.cta-card p {
    font-size: 1.2rem !important;
    opacity: 0.95 !important;
    margin-bottom: 3rem !important;
    line-height: 1.7 !important;
    position: relative !important;
    z-index: 1 !important;
}

[dir="rtl"] .cta-card p {
    font-family: 'Cairo', 'Tajawal', sans-serif !important;
    line-height: 1.9 !important;
}

.cta-guarantees {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important;
    gap: 1.75rem !important;
    margin-bottom: 3rem !important;
    position: relative !important;
    z-index: 1 !important;
}

.guarantee-item {
    background: rgba(255, 223, 65, 0.12) !important;
    border: 2px solid rgba(255, 223, 65, 0.35) !important;
    border-radius: 16px !important;
    padding: 1.75rem !important;
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.guarantee-item:hover {
    background: rgba(255, 223, 65, 0.2) !important;
    border-color: #FFDF41 !important;
    transform: translateY(-5px) scale(1.02) !important;
    box-shadow: 0 10px 25px rgba(255, 223, 65, 0.3) !important;
}

.guarantee-item i {
    font-size: 2.2rem !important;
    color: #FFDF41 !important;
    margin-bottom: 1.2rem !important;
    transition: all 0.3s ease !important;
}

.guarantee-item:hover i {
    transform: scale(1.15) !important;
    filter: drop-shadow(0 4px 8px rgba(255, 223, 65, 0.5));
}

.guarantee-item h3 {
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    line-height: 1.5 !important;
}

[dir="rtl"] .guarantee-item h3 {
    font-family: 'Cairo', 'Tajawal', sans-serif !important;
    line-height: 1.7 !important;
}

.btn-cta {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.85rem !important;
    background: linear-gradient(135deg, #FFDF41 0%, #E3A000 100%) !important;
    color: #0C2D1C !important;
    padding: 1.35rem 3.5rem !important;
    border-radius: 14px !important;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    box-shadow: 
        0 8px 25px rgba(255, 223, 65, 0.45),
        inset 0 2px 4px rgba(255, 255, 255, 0.5) !important;
    position: relative !important;
    z-index: 1 !important;
    border: 2px solid transparent !important;
    overflow: hidden !important;
}

[dir="rtl"] .btn-cta {
    font-family: 'Cairo', 'Tajawal', sans-serif !important;
}

.btn-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-cta:hover::before {
    opacity: 1;
}

.btn-cta:hover {
    transform: translateY(-4px) scale(1.02) !important;
    box-shadow: 
        0 12px 35px rgba(255, 223, 65, 0.6),
        inset 0 2px 4px rgba(255, 255, 255, 0.7) !important;
    color: #0C2D1C !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

.btn-cta i {
    transition: all 0.3s ease !important;
}

.btn-cta:hover i {
    transform: translateX(5px) !important;
}

[dir="rtl"] .btn-cta:hover i {
    transform: translateX(-5px) !important;
}

@media (max-width: 768px) {
    .cta-card {
        padding: 2.5rem 1.75rem !important;
    }
    
    .cta-card .cta-icon {
        width: 75px !important;
        height: 75px !important;
        font-size: 2.2rem !important;
    }
    
    .cta-card h2 {
        font-size: 2rem !important;
    }
    
    .cta-card p {
        font-size: 1.05rem !important;
    }
    
    .cta-guarantees {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }
    
    .guarantee-item {
        padding: 1.5rem !important;
    }
    
    .btn-cta {
        padding: 1.15rem 2.5rem !important;
        font-size: 1.1rem !important;
    }
}

@media (max-width: 480px) {
    .news-cta {
        padding: 4rem 0 !important;
    }
    
    .cta-card {
        border-radius: 20px !important;
        padding: 2rem 1.5rem !important;
    }
    
    .cta-card h2 {
        font-size: 1.75rem !important;
    }
    
    .cta-card p {
        font-size: 1rem !important;
    }
    
    .btn-cta {
        width: 100% !important;
        max-width: 300px !important;
        padding: 1.1rem 2rem !important;
        font-size: 1.05rem !important;
    }
}

/* Responsive News Page */
@media (max-width: 992px) {
    .news-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .news-hero .section-title {
        font-size: 2.8rem !important;
    }
    
    .article-full {
        padding: 2rem;
    }
    
    .article-title-full {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .news-hero {
        padding: 5rem 0 4rem !important;
    }
    
    .news-hero .section-title {
        font-size: 2.2rem !important;
        line-height: 1.3 !important;
    }
    
    .news-hero .section-subtitle {
        font-size: 1.1rem !important;
        padding: 0 20px !important;
    }
    
    .news-section {
        padding: 3.5rem 0 !important;
    }
    
    .news-grid {
        gap: 1.75rem !important;
    }
    
    .news-card::before {
        animation: none !important;
        background: linear-gradient(90deg, #FFDF41 0%, #FFA000 100%) !important;
    }
    
    .news-card-header {
        flex-direction: column !important;
        gap: 1.2rem !important;
        padding: 1.5rem !important;
    }
    
    .news-icon {
        width: 55px !important;
        height: 55px !important;
        font-size: 1.6rem !important;
    }
    
    .news-meta {
        align-items: flex-start !important;
        width: 100% !important;
    }
    
    .news-content {
        padding: 1.5rem !important;
    }
    
    .news-title {
        font-size: 1.4rem !important;
    }
    
    .news-excerpt {
        font-size: 0.98rem !important;
    }
    
    .news-highlights {
        padding: 1rem !important;
    }
    
    .highlight-item {
        font-size: 0.95rem !important;
    }
    
    .btn-read-more {
        padding: 1rem 1.8rem !important;
        font-size: 1.02rem !important;
    }
    
    .article-modal-content {
        border-radius: 0;
        max-height: 100vh;
    }
    
    .article-full {
        padding: 1.5rem;
    }
    
    .modal-close {
        left: calc(100% - 3.5rem);
    }
    
    .cta-guarantees {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .news-hero {
        padding: 4rem 0 3rem !important;
    }
    
    .news-hero .section-title {
        font-size: 1.85rem !important;
    }
    
    .news-hero .section-subtitle {
        font-size: 1rem !important;
    }
    
    .news-section {
        padding: 3rem 0 !important;
    }
    
    .news-card {
        border-radius: 16px !important;
    }
    
    .news-card-header {
        padding: 1.25rem !important;
    }
    
    .news-icon {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.5rem !important;
    }
    
    .news-category {
        font-size: 0.8rem !important;
        padding: 0.45rem 1rem !important;
    }
    
    .news-date {
        font-size: 0.85rem !important;
    }
    
    .news-content {
        padding: 1.25rem !important;
    }
    
    .news-title {
        font-size: 1.25rem !important;
    }
    
    .news-excerpt {
        font-size: 0.95rem !important;
        line-height: 1.7 !important;
    }
    
    [dir="rtl"] .news-excerpt {
        line-height: 1.9 !important;
    }
    
    .news-highlights {
        padding: 0.9rem !important;
        gap: 0.75rem !important;
    }
    
    .highlight-item {
        font-size: 0.9rem !important;
        gap: 0.7rem !important;
    }
    
    .highlight-item i {
        font-size: 1rem !important;
    }
    
    .btn-read-more {
        padding: 0.95rem 1.5rem !important;
        font-size: 0.98rem !important;
        gap: 0.7rem !important;
    }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

/* Elements ready to animate */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* When element is visible */
.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delay for multiple elements */
.scroll-animate:nth-child(1) {
    transition-delay: 0.1s;
}

.scroll-animate:nth-child(2) {
    transition-delay: 0.2s;
}

.scroll-animate:nth-child(3) {
    transition-delay: 0.3s;
}

.scroll-animate:nth-child(4) {
    transition-delay: 0.4s;
}

.scroll-animate:nth-child(5) {
    transition-delay: 0.5s;
}

.scroll-animate:nth-child(6) {
    transition-delay: 0.6s;
}

/* Slide from left */
.scroll-slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Slide from right */
.scroll-slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Fade in only */
.scroll-fade {
    opacity: 0;
    transition: opacity 0.8s ease-out;
}

.scroll-fade.visible {
    opacity: 1;
}

/* Scale up */
.scroll-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* ============================================
   FEEDBACK SECTION - PREMIUM REDESIGN
   ============================================ */
.section-feedback {
    padding: 7rem 0 8rem !important;
    background: #0C2D1C !important;
    background-image: 
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FFDF41' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
        radial-gradient(circle at 10% 20%, rgba(255, 223, 65, 0.12), transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(140, 198, 63, 0.1), transparent 50%),
        linear-gradient(180deg, #0C2D1C 0%, #0A2318 100%) !important;
    color: white !important;
    position: relative !important;
    overflow: hidden !important;
}

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

.section-feedback::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 223, 65, 0.3), transparent);
}

.section-feedback .container {
    position: relative !important;
    z-index: 2 !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

/* Enhanced Section Heading */
.feedback-heading {
    text-align: center !important;
    margin-bottom: 5rem !important;
    position: relative !important;
}

.feedback-heading-text {
    display: inline-block !important;
    position: relative !important;
}

.feedback-heading-text .section-title {
    color: #FFFFFF !important;
    font-size: 3.2rem !important;
    font-weight: 800 !important;
    letter-spacing: -0.03em !important;
    margin: 0 0 1.2rem 0 !important;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4) !important;
    position: relative !important;
    display: inline-block !important;
    background: linear-gradient(135deg, #FFFFFF 0%, #F0F0F0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[dir="rtl"] .feedback-heading-text .section-title {
    font-family: 'Cairo', 'Tajawal', sans-serif !important;
    letter-spacing: 0 !important;
    font-weight: 800 !important;
}

.feedback-heading-text .section-title::after {
    content: '';
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, transparent, #FFDF41, #8CC63F, transparent);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 223, 65, 0.5);
}

/* Carousel Container */
.feedback-carousel-container {
    position: relative !important;
    margin: 0 auto !important;
    max-width: 100% !important;
    padding: 0 75px !important;
}

.feedback-carousel-wrapper {
    overflow: visible !important;
    position: relative !important;
}

.feedback-carousel {
    display: flex !important;
    gap: 30px !important;
    overflow-x: auto !important;
    scroll-behavior: smooth !important;
    padding: 35px 15px 60px !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
    scroll-snap-type: x mandatory !important;
}

.feedback-carousel::-webkit-scrollbar {
    display: none !important;
}

/* Premium Feedback Cards */
.feedback-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFB 100%) !important;
    border-radius: 20px !important;
    padding: 0 !important;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.12),
        0 4px 12px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
    min-width: calc(33.333% - 22px) !important;
    max-width: 380px !important;
    flex-shrink: 0 !important;
    position: relative !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    scroll-snap-align: start !important;
}

.feedback-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #FFDF41 0%, #FFA000 50%, #FFDF41 100%);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.feedback-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 223, 65, 0.05), transparent 60%);
    pointer-events: none;
}

.feedback-card:hover {
    transform: translateY(-12px) scale(1.02) !important;
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.22),
        0 10px 25px rgba(255, 223, 65, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 1) !important;
    border-color: rgba(255, 223, 65, 0.4) !important;
}

/* Card Header */
.feedback-card-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    padding: 20px 24px 0 !important;
    position: relative !important;
    z-index: 2 !important;
}

.feedback-quote-icon {
    color: #FFDF41 !important;
    opacity: 0.25 !important;
    transition: all 0.4s ease !important;
}

.feedback-card:hover .feedback-quote-icon {
    opacity: 0.4 !important;
    transform: scale(1.1) rotate(-5deg) !important;
}

[dir="rtl"] .feedback-quote-icon {
    transform: scaleX(-1);
}

[dir="rtl"] .feedback-card:hover .feedback-quote-icon {
    transform: scaleX(-1) scale(1.1) rotate(5deg) !important;
}

/* Card Content */
.feedback-card-content {
    flex: 1 !important;
    padding: 18px 24px !important;
}

.feedback-card-message {
    color: #1F2937 !important;
    line-height: 1.7 !important;
    font-size: 0.95rem !important;
    font-weight: 400 !important;
    margin: 0 !important;
    letter-spacing: 0.01em !important;
    text-align: start !important;
}

[dir="rtl"] .feedback-card-message {
    text-align: start !important;
    font-family: 'Cairo', 'Tajawal', sans-serif !important;
    line-height: 1.85 !important;
    font-size: 0.98rem !important;
    letter-spacing: 0 !important;
}

/* Stars Rating - Enhanced */
.feedback-card-stars {
    display: flex !important;
    gap: 5px !important;
    align-items: center !important;
}

.star-icon {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    width: 18px !important;
    height: 18px !important;
}

.star-icon.filled {
    fill: #FFDF41 !important;
    filter: drop-shadow(0 2px 6px rgba(255, 223, 65, 0.4)) !important;
}

.star-icon:not(.filled) {
    fill: #E5E7EB !important;
}

.feedback-card:hover .star-icon.filled {
    animation: starPulse 0.6s ease-in-out !important;
}

.feedback-card:hover .star-icon.filled:nth-child(1) { animation-delay: 0s !important; }
.feedback-card:hover .star-icon.filled:nth-child(2) { animation-delay: 0.1s !important; }
.feedback-card:hover .star-icon.filled:nth-child(3) { animation-delay: 0.2s !important; }
.feedback-card:hover .star-icon.filled:nth-child(4) { animation-delay: 0.3s !important; }
.feedback-card:hover .star-icon.filled:nth-child(5) { animation-delay: 0.4s !important; }

@keyframes starPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); filter: drop-shadow(0 3px 10px rgba(255, 223, 65, 0.7)); }
}

/* Card Footer - Premium Design */
.feedback-card-footer {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 18px 24px !important;
    background: linear-gradient(135deg, rgba(255, 223, 65, 0.08) 0%, rgba(140, 198, 63, 0.05) 100%) !important;
    border-top: 1px solid rgba(255, 223, 65, 0.15) !important;
    position: relative !important;
}

.feedback-card-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 223, 65, 0.3), transparent);
}

/* Customer Avatar */
.feedback-customer-avatar {
    width: 42px !important;
    height: 42px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, #FFDF41 0%, #E3A000 100%) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: 800 !important;
    font-size: 1.15rem !important;
    color: #0C2D1C !important;
    box-shadow: 
        0 4px 12px rgba(255, 223, 65, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.5) !important;
    flex-shrink: 0 !important;
    transition: all 0.3s ease !important;
}

.feedback-card:hover .feedback-customer-avatar {
    transform: scale(1.1) !important;
    box-shadow: 
        0 6px 18px rgba(255, 223, 65, 0.5),
        inset 0 2px 4px rgba(255, 255, 255, 0.7) !important;
}

/* Customer Info */
.feedback-customer-info {
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
    flex: 1 !important;
}

.feedback-card-name {
    font-weight: 700 !important;
    font-size: 1rem !important;
    color: #0C2D1C !important;
    margin: 0 !important;
    letter-spacing: 0.01em !important;
    line-height: 1.3 !important;
}

[dir="rtl"] .feedback-card-name {
    font-family: 'Cairo', 'Tajawal', sans-serif !important;
    letter-spacing: 0 !important;
    font-weight: 700 !important;
}

.feedback-card-verified {
    font-size: 0.85rem !important;
    color: #6B7280 !important;
    font-weight: 500 !important;
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
}

[dir="rtl"] .feedback-card-verified {
    font-family: 'Cairo', 'Tajawal', sans-serif !important;
}

.feedback-card-verified::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    font-size: 11px;
    font-weight: 700;
}

/* Navigation Buttons - Premium */
.feedback-scroll-btn {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%) !important;
    border: 2px solid transparent !important;
    border-radius: 50% !important;
    width: 56px !important;
    height: 56px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    z-index: 10 !important;
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    color: #0C2D1C !important;
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.15),
        0 3px 10px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
    background-image: linear-gradient(135deg, rgba(255, 223, 65, 0.1) 0%, transparent 100%) !important;
}

.feedback-scroll-btn svg {
    width: 26px !important;
    height: 26px !important;
    transition: all 0.3s ease !important;
}

.feedback-scroll-btn:hover:not(.disabled) {
    background: linear-gradient(135deg, #FFDF41 0%, #E3A000 100%) !important;
    transform: translateY(-50%) scale(1.15) !important;
    box-shadow: 
        0 12px 35px rgba(255, 223, 65, 0.4),
        0 5px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 1) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

.feedback-scroll-btn:hover:not(.disabled) svg {
    transform: scale(1.1) !important;
}

.feedback-scroll-btn:active:not(.disabled) {
    transform: translateY(-50%) scale(1.05) !important;
}

.feedback-scroll-btn.disabled {
    opacity: 0.3 !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
}

.feedback-scroll-left {
    left: 8px !important;
}

.feedback-scroll-right {
    right: 8px !important;
}

[dir="rtl"] .feedback-scroll-left {
    left: auto !important;
    right: 8px !important;
}

[dir="rtl"] .feedback-scroll-right {
    right: auto !important;
    left: 8px !important;
}

[dir="rtl"] .feedback-scroll-btn svg {
    transform: scaleX(-1) !important;
}

[dir="rtl"] .feedback-scroll-btn:hover:not(.disabled) svg {
    transform: scaleX(-1) scale(1.1) !important;
}

/* Action Button - Enhanced */
.feedback-action {
    display: flex !important;
    justify-content: center !important;
    margin-top: 5.5rem !important;
}

.btn-feedback-open {
    background: linear-gradient(135deg, #FFDF41 0%, #FFA000 100%) !important;
    color: #0C2D1C !important;
    padding: 1.1rem 3rem !important;
    border: 2px solid transparent !important;
    border-radius: 50px !important;
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    box-shadow: 
        0 10px 30px rgba(255, 223, 65, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.5) !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    letter-spacing: 0.02em !important;
    position: relative !important;
    overflow: hidden !important;
}

.btn-feedback-open::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-feedback-open:hover::before {
    opacity: 1;
}

.btn-feedback-open:hover {
    transform: translateY(-4px) scale(1.02) !important;
    box-shadow: 
        0 15px 40px rgba(255, 223, 65, 0.5),
        0 8px 20px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.7) !important;
    background: linear-gradient(135deg, #FFE55C 0%, #FFB000 100%) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

.btn-feedback-open:active {
    transform: translateY(-2px) scale(1) !important;
}

.btn-feedback-open svg {
    width: 22px !important;
    height: 22px !important;
    transition: all 0.3s ease !important;
}

.btn-feedback-open:hover svg {
    transform: scale(1.1) !important;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .feedback-card {
        min-width: calc(50% - 18px) !important;
    }
}

@media (max-width: 1024px) {
    .section-feedback {
        padding: 5rem 0 6rem !important;
    }
    
    .feedback-heading-text .section-title {
        font-size: 2.6rem !important;
    }
    
    .feedback-card-header,
    .feedback-card-content,
    .feedback-card-footer {
        padding-left: 28px !important;
        padding-right: 28px !important;
    }
}

@media (max-width: 768px) {
    .section-feedback {
        padding: 3.5rem 0 4.5rem !important;
    }
    
    .feedback-heading {
        margin-bottom: 3rem !important;
        padding: 0 15px !important;
    }
    
    .feedback-heading-text .section-title {
        font-size: 2rem !important;
        line-height: 1.3 !important;
    }
    
    .feedback-heading-text .section-title::after {
        width: 60px !important;
        height: 4px !important;
        bottom: -12px !important;
    }
    
    .feedback-carousel-container {
        padding: 0 58px !important;
    }
    
    .feedback-carousel {
        gap: 20px !important;
        padding: 20px 8px 45px !important;
    }
    
    .feedback-card {
        min-width: calc(100% - 10px) !important;
        border-radius: 20px !important;
    }
    
    .feedback-card-header {
        padding: 24px 20px 0 !important;
        flex-direction: column !important;
        gap: 12px !important;
        align-items: flex-start !important;
    }
    
    .feedback-quote-icon {
        opacity: 0.2 !important;
    }
    
    .feedback-quote-icon svg {
        width: 28px !important;
        height: 28px !important;
    }
    
    .feedback-card-stars {
        order: 2 !important;
    }
    
    .feedback-card-content {
        padding: 20px !important;
    }
    
    .feedback-card-message {
        font-size: 0.98rem !important;
        line-height: 1.8 !important;
    }
    
    [dir="rtl"] .feedback-card-message {
        line-height: 1.95 !important;
        font-size: 1rem !important;
    }
    
    .feedback-card-footer {
        padding: 18px 20px !important;
        gap: 14px !important;
    }
    
    .feedback-customer-avatar {
        width: 44px !important;
        height: 44px !important;
        font-size: 1.15rem !important;
    }
    
    .feedback-card-name {
        font-size: 1.05rem !important;
    }
    
    .feedback-card-verified {
        font-size: 0.8rem !important;
    }
    
    .feedback-scroll-btn {
        width: 46px !important;
        height: 46px !important;
    }
    
    .feedback-scroll-btn svg {
        width: 20px !important;
        height: 20px !important;
    }
    
    .feedback-action {
        margin-top: 3.5rem !important;
        padding: 0 20px !important;
    }
    
    .btn-feedback-open {
        padding: 1rem 2.2rem !important;
        font-size: 1.02rem !important;
    }
    
    .btn-feedback-open svg {
        width: 20px !important;
        height: 20px !important;
    }
}

@media (max-width: 480px) {
    .section-feedback {
        padding: 3rem 0 4rem !important;
    }
    
    .feedback-heading {
        margin-bottom: 2.5rem !important;
    }
    
    .feedback-heading-text .section-title {
        font-size: 1.75rem !important;
    }
    
    .feedback-heading-text .section-title::after {
        width: 50px !important;
        height: 3px !important;
    }
    
    .feedback-carousel-container {
        padding: 0 50px !important;
    }
    
    .feedback-carousel {
        gap: 16px !important;
        padding: 18px 6px 40px !important;
    }
    
    .feedback-card {
        min-width: calc(100% - 8px) !important;
        border-radius: 18px !important;
    }
    
    .feedback-card-header {
        padding: 20px 18px 0 !important;
        gap: 10px !important;
    }
    
    .feedback-quote-icon svg {
        width: 24px !important;
        height: 24px !important;
    }
    
    .feedback-card-content {
        padding: 18px !important;
    }
    
    .feedback-card-message {
        font-size: 0.95rem !important;
        line-height: 1.75 !important;
    }
    
    [dir="rtl"] .feedback-card-message {
        font-size: 0.98rem !important;
        line-height: 1.9 !important;
    }
    
    .feedback-card-footer {
        padding: 16px 18px !important;
        gap: 12px !important;
    }
    
    .feedback-customer-avatar {
        width: 40px !important;
        height: 40px !important;
        font-size: 1.05rem !important;
    }
    
    .feedback-card-name {
        font-size: 1rem !important;
    }
    
    .feedback-card-verified {
        font-size: 0.75rem !important;
    }
    
    .feedback-card-verified::before {
        width: 14px !important;
        height: 14px !important;
        font-size: 10px !important;
    }
    
    .star-icon {
        width: 16px !important;
        height: 16px !important;
    }
    
    .feedback-scroll-btn {
        width: 42px !important;
        height: 42px !important;
    }
    
    .feedback-scroll-btn svg {
        width: 18px !important;
        height: 18px !important;
    }
    
    .feedback-action {
        margin-top: 3rem !important;
    }
    
    .btn-feedback-open {
        padding: 0.85rem 1.8rem !important;
        font-size: 0.95rem !important;
        gap: 0.6rem !important;
    }
    
    .btn-feedback-open svg {
        width: 18px !important;
        height: 18px !important;
    }
}

/* RTL Mobile Fixes */
@media (max-width: 768px) {
    [dir="rtl"] .feedback-card-header {
        align-items: flex-start !important;
    }
    
    [dir="rtl"] .feedback-customer-info {
        align-items: flex-start !important;
    }
    
    [dir="rtl"] .feedback-card-verified {
        text-align: right !important;
    }
    
    /* Disable hover effects on mobile */
    .feedback-card:hover {
        transform: translateY(-4px) !important;
    }
    
    .feedback-card:hover .star-icon.filled {
        animation: none !important;
    }
    
    /* Better touch targets */
    .feedback-scroll-btn {
        touch-action: manipulation !important;
    }
    
    /* Mobile button positioning */
    .feedback-scroll-left {
        left: 5px !important;
    }
    
    .feedback-scroll-right {
        right: 5px !important;
    }
    
    [dir="rtl"] .feedback-scroll-left {
        left: auto !important;
        right: 5px !important;
    }
    
    [dir="rtl"] .feedback-scroll-right {
        right: auto !important;
        left: 5px !important;
    }
    
    /* Optimize animations for mobile */
    .feedback-card::before {
        animation: none !important;
        background: linear-gradient(90deg, #FFDF41 0%, #FFA000 100%) !important;
    }
}

@media (max-width: 480px) {
    /* Further optimize for very small screens */
    .feedback-card {
        box-shadow: 
            0 10px 30px rgba(0, 0, 0, 0.12),
            0 4px 12px rgba(0, 0, 0, 0.08) !important;
    }
    
    .feedback-card:hover {
        transform: translateY(-2px) !important;
        box-shadow: 
            0 12px 35px rgba(0, 0, 0, 0.15),
            0 5px 15px rgba(0, 0, 0, 0.1) !important;
    }
    
    /* Extra small screens adjustments */
    .feedback-heading {
        padding: 0 10px !important;
    }
    
    .feedback-carousel-container {
        padding: 0 48px !important;
    }
    
    .feedback-scroll-left {
        left: 3px !important;
    }
    
    .feedback-scroll-right {
        right: 3px !important;
    }
    
    [dir="rtl"] .feedback-scroll-left {
        left: auto !important;
        right: 3px !important;
    }
    
    [dir="rtl"] .feedback-scroll-right {
        right: auto !important;
        left: 3px !important;
    }
    
    .btn-feedback-open {
        width: 100% !important;
        max-width: 280px !important;
    }
}

/* Feedback Modal */
.feedback-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
    backdrop-filter: blur(5px);
}

.feedback-modal {
    background: white;
    border-radius: 24px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideDown 0.4s ease;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
}

.feedback-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #6B7280;
}

.feedback-modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

.feedback-modal-header {
    padding: 2.5rem 2.5rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.feedback-modal-title {
    color: #0C2D1C;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feedback-modal-description {
    color: #6B7280;
    font-size: 1rem;
}

.feedback-modal-form {
    padding: 2rem 2.5rem 2.5rem;
}

/* Success Alert (from contact page) */
.success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

.success-modal {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 450px;
    width: 90%;
    animation: slideDown 0.5s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

@keyframes slideDown {
    from {
        transform: translateY(-100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
}

.success-icon svg {
    width: 100%;
    height: 100%;
}

.success-icon circle {
    stroke: #10B981;
    stroke-width: 2;
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.success-icon path {
    stroke: #10B981;
    stroke-width: 3;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.5s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

.success-modal h2 {
    color: #0C2D1C;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.success-modal p {
    color: #6B7280;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.close-alert-btn {
    background: linear-gradient(135deg, #FFDF41 0%, #E3A000 100%);
    color: #0C2D1C;
    padding: 1rem 3rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(227, 160, 0, 0.3);
}

.close-alert-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 160, 0, 0.5);
}

/* Navigation Arrows */
.feedback-nav {
    display: none;
}

@media (max-width: 768px) {
    .feedback-heading-text .section-title {
        font-size: 1.8rem;
    }
}

/* Product Actions Buttons */
.product-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
    padding-top: 1rem;
}

.btn-product {
    width: 100%;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-download-pdf {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
}

.btn-download-pdf:hover {
    background: linear-gradient(135deg, #c82333 0%, #bd2130 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

.btn-view-more {
    background: linear-gradient(135deg, #004d26 0%, #006633 100%);
    color: white;
}

.btn-view-more:hover {
    background: linear-gradient(135deg, #006633 0%, #008844 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 51, 0.4);
}

/* Product Modal */
.product-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content-product {
    background-color: #ffffff;
    border-radius: 16px;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.4s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    color: #666;
    font-size: 35px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 1;
}

.close-modal:hover,
.close-modal:focus {
    color: #004d26;
}

[dir="rtl"] .close-modal {
    right: auto;
    left: 25px;
}

.modal-body-product {
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.modal-product-image {
    position: sticky;
    top: 20px;
    height: fit-content;
    position: relative;
}

.modal-product-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.modal-product-image .image-placeholder {
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    min-height: 300px;
}

.modal-product-details h2 {
    font-size: 28px;
    color: #004d26;
    margin-bottom: 10px;
    font-weight: 700;
}

.modal-product-power,
.modal-product-capacity {
    font-size: 18px;
    color: #F5C518;
    font-weight: 600;
    margin-bottom: 15px;
}

.modal-product-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 2px solid #f0f0f0;
}

.modal-section {
    margin-bottom: 30px;
}

.modal-section h3 {
    font-size: 20px;
    color: #004d26;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.modal-section h3 i {
    color: #F5C518;
    font-size: 22px;
}

.modal-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modal-features-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    border-bottom: 1px solid #f5f5f5;
}

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

.modal-features-list li i {
    position: absolute;
    left: 0;
    top: 12px;
    color: #F5C518;
    font-size: 16px;
}

[dir="rtl"] .modal-features-list li {
    padding-left: 0;
    padding-right: 30px;
}

[dir="rtl"] .modal-features-list li i {
    left: auto;
    right: 0;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.spec-item {
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.6;
}

.spec-item strong {
    color: #004d26;
    display: block;
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .modal-body-product {
        grid-template-columns: 1fr;
        padding: 25px;
        gap: 25px;
    }
    
    .modal-product-image {
        position: relative;
        top: 0;
    }
    
    .modal-product-details h2 {
        font-size: 22px;
    }
    
    .modal-section h3 {
        font-size: 18px;
    }
    
    .close-modal {
        top: 15px;
        right: 15px;
        font-size: 30px;
    }
    
    [dir="rtl"] .close-modal {
        right: auto;
        left: 15px;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .btn-product {
        width: 100%;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
    }
}

/* Type Cards for Solutions Pages */
.type-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #F5C518;
    transition: all 0.3s ease;
}

.type-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

[dir="rtl"] .type-card {
    border-left: none;
    border-right: 4px solid #F5C518;
}

.type-title {
    font-size: 22px;
    font-weight: 700;
    color: #004d26;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.type-detail {
    margin-bottom: 15px;
}

.type-detail strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #004d26;
    margin-bottom: 8px;
}

.type-detail p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin: 0;
    padding-left: 15px;
    border-left: 2px solid #F5C518;
}

[dir="rtl"] .type-detail p {
    padding-left: 0;
    padding-right: 15px;
    border-left: none;
    border-right: 2px solid #F5C518;
}

@media (max-width: 768px) {
    .type-card {
        padding: 20px;
    }
    
    .type-title {
        font-size: 18px;
    }
    
    .type-detail strong {
        font-size: 14px;
    }
    
    .type-detail p {
        font-size: 14px;
    }
}

/* Modal Actions Section */
.modal-actions {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid #f0f0f0;
    display: flex;
    justify-content: center;
}

.modal-actions .btn-product {
    min-width: 200px;
}

/* Modal Product Badge */
.modal-product-image {
    position: relative;
}

.modal-product-image .product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #FFDF41 0%, #F5C518 100%);
    color: #004d26;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(245, 197, 24, 0.4);
    z-index: 1;
}

[dir="rtl"] .modal-product-image .product-badge {
    right: auto;
    left: 15px;
}

@media (max-width: 768px) {
    .modal-actions {
        margin-top: 20px;
        padding-top: 20px;
    }
    
    .modal-actions .btn-product {
        width: 100%;
        min-width: auto;
    }
}
