@font-face {
    font-family: 'Pelak';
    src: url('../fonts/pelak/woff2/PelakFA-Regular.woff2') format('woff2'),
         url('../fonts/pelak/woff/PelakFA-Regular.woff') format('woff'),
         url('../fonts/pelak/eot/PelakFA-Regular.eot') format('embedded-opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Pelak';
    src: url('../fonts/pelak/woff2/PelakFA-light.woff2') format('woff2'),
         url('../fonts/pelak/woff/PelakFA-light.woff') format('woff'),
         url('../fonts/pelak/eot/PelakFA-light.eot') format('embedded-opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Pelak';
    src: url('../fonts/pelak/woff2/PelakFA-Medium.woff2') format('woff2'),
         url('../fonts/pelak/woff/PelakFA-Medium.woff') format('woff'),
         url('../fonts/pelak/eot/PelakFA-Medium.eot') format('embedded-opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Pelak';
    src: url('../fonts/pelak/woff2/PelakFA-SemiBold.woff2') format('woff2'),
         url('../fonts/pelak/woff/PelakFA-SemiBold.woff') format('woff'),
         url('../fonts/pelak/eot/PelakFA-SemiBold.eot') format('embedded-opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Pelak';
    src: url('../fonts/pelak/woff2/PelakFA-Bold.woff2') format('woff2'),
         url('../fonts/pelak/woff/PelakFA-Bold.woff') format('woff'),
         url('../fonts/pelak/eot/PelakFA-Bold.eot') format('embedded-opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Pelak';
    src: url('../fonts/pelak/woff2/PelakFA-ExtraBold.woff2') format('woff2'),
         url('../fonts/pelak/woff/PelakFA-ExtraBold.woff') format('woff'),
         url('../fonts/pelak/eot/PelakFA-ExtraBold.eot') format('embedded-opentype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Pelak';
    src: url('../fonts/pelak/woff2/PelakFA-Black.woff2') format('woff2'),
         url('../fonts/pelak/woff/PelakFA-Black.woff') format('woff'),
         url('../fonts/pelak/eot/PelakFA-Black.eot') format('embedded-opentype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --white: #ffffff;
    --text-dark: #000000;
    --text-light: #666666;
    --accent-blue: #009CB4;
    --dark-bg: #1a1a1a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Pelak', 'Tahoma', 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

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

.hero {
    background-color: transparent;
    height: calc(100vh + 130px);
    position: relative;
    overflow: hidden;
    margin-top: -130px;
    padding-top: 0;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.header {
    background-color: transparent;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    box-shadow: none;
    transition: background-color 0.3s ease;
}

.header.scrolled {
    background-color: #0000000d;
    box-shadow: none;
}

.header-top {
    padding: 0;
    width: 100%;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
    flex-direction: row-reverse;
    width: 100%;
    padding: 12px 40px 12px 40px;
    transition: padding 0.3s ease;
}

.phone-number {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    transition: color 0.3s ease;
    text-decoration: none;
}

.header.scrolled .phone-number {
    color: #000;
}

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

.logo-img {
    width: 97px;
    height: 32px;
    object-fit: contain;
    transition: width 0.3s ease, height 0.3s ease;
    filter: brightness(0);
}

.header.scrolled .logo-img {
    width: 120px;
    height: 40px;
    filter: brightness(0);
}

.hero .container {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 80px 40px 0px 40px;
}

.hero-content {
    text-align: center;
    color: var(--white);
    margin-top: 50px;
    align-self: flex-start;
    width: 100%;
    padding-top: 80px;
}

.hero-title-wrapper {
    text-align: right;
    direction: rtl;
    margin-top: 40px;
}

.hero-title-line {
    width: 175px;
    height: 10px;
    background-color: var(--accent-blue);
    margin-bottom: 10px;
    margin-right: 0;
    margin-left: auto;
}

.hero-title {
    font-family: 'Pelak', 'Tahoma', 'Arial', sans-serif;
    color: #000;
    display: flex;
    flex-direction: column;
    direction: rtl;
    gap: 4px;
    align-items: flex-end;
    margin-right: 0;
    margin-left: auto;
    width: max-content;
}

.hero-title-line1 {
    display: block;
    font-size: 36px;
    font-weight: 800;
    line-height: 1.1;
    text-align: justify;
    width: 100%;
    font-family: 'Pelak', 'Tahoma', 'Arial', sans-serif;
}

.hero-title-line2 {
    display: block;
    font-size: 65px;
    font-weight: 900;
    line-height: 1.1;
    text-align: justify;
    width: 100%;
    font-family: 'Helvetica', 'Helvetica Neue', 'Arial', sans-serif;
}

.hero-title-line3 {
    display: block;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.1;
    text-align: justify;
    width: 100%;
    font-family: 'Pelak', 'Tahoma', 'Arial', sans-serif;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    margin-top: 10px;
    font-family: 'Pelak', 'Tahoma', 'Arial', sans-serif;
    color: #000;
}

.hero-features {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: auto;
    align-self: flex-end;
    padding-bottom: 40px;
    position: relative;
}

.hero-slider-btn {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.hero-slider-prev {
    right: -20px;
}

.hero-slider-next {
    left: -20px;
}

.arrow-icon {
    color: #FFFFFF;
    font-size: 40px;
    line-height: 1;
    z-index: 9999999;
    display: block;
}

.hero-features-inline {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    direction: rtl;
}

.hero-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: #000;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.hero-feature-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: brightness(0);
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    -webkit-user-select: none;
    pointer-events: none;
}

.hero-feature-text {
    font-size: 14px;
    color: #000;
    font-weight: 600;
    text-align: center;
    direction: rtl;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    -webkit-user-select: none;
}

.intro-section {
    padding: 80px 0;
    background-color: var(--white);
}

.intro-content {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-direction: row-reverse;
}

.intro-text {
    flex: 1;
}

.intro-main-title {
    font-size: 30px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.intro-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-family: 'Pelak', 'Tahoma', 'Arial', sans-serif;
}

.intro-description {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-align: justify;
}

.intro-features {
    margin-top: 30px;
}

.intro-features-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-family: 'Pelak', 'Tahoma', 'Arial', sans-serif;
}

.intro-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    direction: rtl;
}

.intro-features-list li {
    font-size: 13px;
    font-weight: 400;
    line-height: 2;
    color: var(--text-dark);
    padding-right: 20px;
    position: relative;
    margin-bottom: 8px;
}

.intro-features-list li::before {
    content: '•';
    position: absolute;
    right: 0;
    top: 4px;
    color: var(--accent-blue);
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
}

.intro-image {
    flex: 1;
}

.intro-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 0;
}

.stats-section {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.stats-content {
    text-align: right;
    direction: rtl;
}

.stats-description {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 50px;
    line-height: 1.6;
}

.stats-grid {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    direction: rtl;
    flex-wrap: nowrap;
    width: 100%;
}

.stat-item {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
    padding: 20px 30px;
    text-align: center;
    flex: 0 0 auto;
    min-width: auto;
    gap: 20px;
    position: relative;
    direction: rtl;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 2.66px;
    height: 19px;
    background-color: #000000;
}

.stat-number {
    font-size: 40px;
    font-weight: 900;
    color: #009CB4;
    font-family: 'Pelak', 'Tahoma', 'Arial', sans-serif;
    direction: rtl;
}

.stat-label {
    font-size: 17px;
    color: #000;
    font-weight: 400;
    font-family: 'Pelak', 'Tahoma', 'Arial', sans-serif;
    direction: rtl;
}

.stat-separator {
    display: none;
}

.products-section {
    padding: 80px 0;
    background-color: var(--white);
    overflow: visible;
    position: relative;
}

.products-title {
    font-size: 36px;
    font-weight: 900;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 60px;
}

.products-slider-wrapper {
    overflow: visible;
    position: relative;
}

.product-slider-btn {
    display: none;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    overflow: visible;
    position: relative;
}

.product-card {
    background-color: #F9FAFB;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.product-card:hover {
    transform: scale(1.05);
    z-index: 10;
}

.product-card-image {
    width: 100%;
    height: 230px;
    overflow: hidden;
    background-color: #f9f9f9;
    position: relative;
    flex-shrink: 0;
    transition: height 0.9s ease;
}

.product-card-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.product-card:hover .product-card-image {
    height: 230px;
}


.product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
}

.product-card-content {
    padding: 24px;
    padding-bottom: 8px;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: visible;
    z-index: 2;
    transition: padding-bottom 0.9s ease;
}

.product-card-title {
    font-size: 11px;
    font-weight: 100;
    text-align: center;
    color: #717171;
    margin-bottom: 8px;
}

.product-card-model {
    font-size: 22px;
    text-align: center;
    color: #353535;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    font-family: Helvetica, Arial, sans-serif;
}

.product-card-model::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    height: 3px;
    background: #009CB4;
}

.product-card-specs {
    display: flex;
    flex-direction: column;
    gap: 2px;
    direction: rtl;
    transition: transform 0.3s ease;
    margin-bottom: 0;
}

.product-spec-item {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #009CB4;
    gap: 10px;
    direction: rtl;
}

.product-spec-item:last-child {
    border-bottom: none;
}

.product-card-specs .spec-name {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-light);
    text-align: right;
    order: 2;
}

.product-card-specs .spec-value {
    font-size: 12px;
    font-weight: 700;
    color: #353535;
    text-align: left;
    order: 1;
}

.product-view-btn {
    position: relative;
    width: 100%;
    margin-top: 8px;
    padding: 12px 20px;
    background-color: #009CB4;
    color: #FFFFFF;
    text-align: center;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 0;
    transition: all 0.9s ease;
    transform: translateY(20px);
    opacity: 0;
    pointer-events: none;
    z-index: 1000;
    display: block;
}

.product-card:hover .product-card-specs {
    transform: none;
}

.product-card:hover .product-card-content {
    padding-bottom: 8px;
}

.product-view-btn {
    display: none;
}

.product-view-btn:hover {
    background-color: #008099;
}

.new-footer {
    background-color: #E7E7E8;
    color: var(--text-dark);
    position: relative;
    padding-top: 140px;
}

.footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.pattern-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}



.footer-about .footer-logo {
    width: 120px;
    height: auto;
    margin-bottom: 20px;
}

.footer-description {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.8;
    color: #717171;
    margin-bottom: 24px;
}

.footer-description strong {
    color: #717171;
    font-weight: 600;
}

.social-media {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.mobile-social {
    display: none;
}

.social-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.social-icon:hover {
    opacity: 0.7;
}

.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-menu-title {
    font-size: 15px;
    font-weight: 700;
    color: #717171;
    margin-bottom: 20px;
}

@media (max-width: 480px) {
    .accordion-toggle {
        cursor: pointer;
        position: relative;
        user-select: none;
    }

    .accordion-toggle::after {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 0;
        height: 0;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-top: 8px solid #717171;
        transition: transform 0.3s ease;
    }

    .accordion-toggle.active::after {
        transform: translateY(-50%) rotate(180deg);
    }

    .accordion-content {
        max-height: 1000px;
        overflow: hidden;
        transition: max-height 0.3s ease, opacity 0.3s ease;
        opacity: 1;
    }

    .accordion-content.collapsed {
        max-height: 0;
        opacity: 0;
        margin-bottom: 0;
    }
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-link {
    font-size: 13px;
    font-weight: 500;
    color: #717171;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    padding-right: 15px;
}

.footer-link::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: #009CB4;
    border-radius: 50%;
}

.footer-link:hover {
    color: #009CB4;
}

.footer-contact .contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 20px;
}

.contact-row {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    font-weight: 400;
    color: #717171;
}

.contact-icon {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    margin-top: 2px;
    object-fit: contain;
}

.contact-text {
    flex: 1;
    line-height: 1.4;
}

.footer-map-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.scroll-to-top {
    position: absolute;
    top: -80px;
    left: -10px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.scroll-to-top:hover {
    opacity: 0.8;
}

.top-icon {
    width: 54px;
    height: 40px;
    object-fit: contain;
}

.footer-map {
    width: 100%;
    height: 160px;
    border-radius: 0;
    overflow: hidden;
}


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

.footer-copyright {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 40px;
}


.footer-copyright p {
    font-size: 13px;
    font-weight: 400;
    color: #717171;
    font-family: 'Helvetica', 'Helvetica Neue', 'Arial', sans-serif;
}

@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }

    .footer-contact {
        grid-column: 1 / -1;
    }
}

@media (max-width: 992px) {
    .intro-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .intro-text {
        order: 1;
    }
    
    .intro-image {
        order: 2;
    }

    .stats-grid {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: space-between;
    }

    .stat-item {
        flex: 0 1 calc(50% - 10px);
        min-width: 150px;
    }

    .stat-separator {
        display: none;
    }

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

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

    .footer-about {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .header-top-content {
        padding: 12px 20px 5px 20px;
    }

    .logo-img {
        width: 97px;
        height: 32px;
    }

    .header.scrolled .logo-img {
        width: 120px;
        height: 40px;
    }

    .phone-number {
        font-size: 16px;
    }

    .hero-title-wrapper {
        margin-top: 30px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-title-line {
        display: none;
    }
    
    .hero-title {
        align-items: center;
        text-align: center;
    }
    
    .hero-title-line1,
    .hero-title-line2,
    .hero-title-line3 {
        text-align: center;
    }
    
    .hero-title-line1 {
        font-size: 26px;
    }
    
    .hero-title-line2 {
        font-size: 54px;
    }
    
    .hero-title-line3 {
        font-size: 10px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-features-inline {
        gap: 15px;
    }

    .hero-feature-icon {
        width: 50px;
        height: 50px;
    }

    .hero-feature-text {
        font-size: 14px;
    }

    .intro-section,
    .stats-section,
    .products-section {
        padding: 60px 0;
    }

    .intro-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .intro-text {
        order: 1;
    }
    
    .intro-image {
        order: 2;
    }

    .intro-main-title {
        font-size: 28px;
    }

    .intro-subtitle {
        font-size: 20px;
    }

    .intro-description {
        font-size: 12px;
    }
    
    .intro-features-title {
        font-size: 14px;
    }
    
    .intro-features-list li {
        font-size: 12px;
        line-height: 1.8;
    }

    .stats-description {
        font-size: 18px;
    }

    .stats-grid {
        flex-direction: row;
        gap: 20px;
        justify-content: space-between;
    }

    .stat-item {
        flex: 1;
        min-width: 150px;
    }

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

    .stat-number {
        font-size: 32px;
    }

    .stat-label {
        font-size: 15px;
    }

    .products-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .products-slider-wrapper {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .products-slider-wrapper::-webkit-scrollbar {
        display: none;
    }
    
    .products-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        width: max-content;
        min-width: 100%;
    }
    
    .product-card {
        scroll-snap-align: start;
        min-width: calc(50% - 8px);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-about .social-media {
        display: none;
    }
    
    .mobile-social {
        display: flex;
        justify-content: center;
        gap: 12px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    
    .accordion-content {
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        margin-bottom: 0;
    }
    
    .accordion-content.active {
        max-height: 1000px;
        opacity: 1;
        margin-bottom: 20px;
    }

    .footer-pattern {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: calc(100vh + 100px);
    }
    .product-card-content {
        padding: 10px;
    }
    .hero-content {
        padding-top: 90px;
        text-align: center;
        align-items: center;
        display: flex;
        flex-direction: column;
    }
    .header-top-content {
        padding: 12px 15px 5px 15px;
    }

    .hero .container {
        padding: 40px 20px 0px 20px;
    }
    .hero-image {
       top:40px;
    }
    .logo-img {
        width: 80px;
        height: 26px;
    }

    .header.scrolled .logo-img {
        width: 100px;
        height: 33px;
    }

    .phone-number {
        font-size: 14px;
    }

    .hero-title-wrapper {
        margin-top: 20px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-title-line {
        display: none;
    }
    
    .hero-title {
        align-items: center;
        text-align: center;
    }
    
    .hero-title-line1,
    .hero-title-line2,
    .hero-title-line3 {
        text-align: center;
    }
    
    .hero-title-line1 {
        font-size: 26px;
    }
    
    .hero-title-line2 {
        font-size: 52px;
    }
    
    .hero-title-line3 {
        font-size: 10px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-features {
        padding-bottom: 45px;
        overflow: visible;
        position: relative;
        z-index: 100;
    }

    .hero-slider-btn {
        display: flex;
        z-index: 1001;
        padding-bottom: 50px;
    }

    .hero-features-inline {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: 0;
        padding: 0;
        padding-bottom: 10px;
        width: 100%;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
        scroll-behavior: smooth;
    }

    .hero-features-inline::-webkit-scrollbar {
        display: none;
    }
    
    .hero-feature-item {
        flex: 0 0 50%;
        min-width: 50%;
        max-width: 50%;
        scroll-snap-align: start;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        box-sizing: border-box;
        width: 50%;
        -webkit-tap-highlight-color: transparent;
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
    }
    
    .hero-feature-item:first-child {
        scroll-snap-align: start;
    }
    
    .hero-feature-item:last-child {
        scroll-snap-align: end;
    }

    .hero-feature-icon {
        width: 40px;
        height: 40px;
    }

    .hero-feature-text {
        font-size: 14px;
        text-align: center;
    }

    .intro-section,
    .stats-section,
    .products-section {
        padding: 40px 0;
    }

    .intro-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .intro-text {
        order: 1;
        text-align: center;
    }
    
    .intro-image {
        order: 2;
    }
    
    .intro-features-title {
        font-size: 13px;
        text-align: right;
    }
    
    .intro-features-list {
        text-align: right;
    }
    
    .intro-features-list li {
        font-size: 11px;
        line-height: 1.8;
    }
    
    .intro-features-list li::before {
        top: 2px;
    }

    .intro-main-title {
        font-size: 20px;
    }

    .intro-subtitle {
        font-size: 14px;
    }

    .stats-description {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        justify-content: center;
    }

    .stat-item {
        flex-direction: column;
        flex: 0 1 auto;
        min-width: auto;
        width: 100%;
        gap: 10px;
    }

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

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 14px;
    }

    .products-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .products-section .container {
        position: relative;
    }
    
    .products-slider-wrapper {
        overflow-x: auto;
        overflow-y: visible;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding-bottom: 10px;
        position: relative;
    }
    
    .products-slider-wrapper::-webkit-scrollbar {
        display: none;
    }
    
    .product-slider-btn {
        display: flex;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background-color: transparent;
        border: none;
        width: 40px;
        height: 40px;
        cursor: pointer;
        z-index: 1001;
        transition: all 0.3s ease;
        align-items: center;
        justify-content: center;
        padding: 0;
    }
    
    .product-slider-prev {
        right: 10px;
    }
    
    .product-slider-next {
        left: 10px;
    }
    
    .product-arrow-icon {
        color: #000000;
        font-size: 40px;
        line-height: 1;
        display: block;
    }
    
    .products-grid {
        display: flex;
        flex-direction: row;
        gap: 16px;
        width: max-content;
    }
    
    .product-card {
        scroll-snap-align: start;
        flex: 0 0 calc(100vw - 40px);
        min-width: calc(100vw - 40px);
        max-width: calc(100vw - 40px);
    }
    
    .product-card:hover {
        transform: none;
        z-index: 1;
    }
    
    .product-card:hover .product-card-image {
        height: 200px;
    }
    
    .product-card:hover .product-card-specs {
        transform: none;
    }
    
    .product-card:hover .product-card-content {
        padding-bottom: 24px;
    }
    
    .product-card-content {
        padding-bottom: 24px !important;
    }
    
    .product-view-btn {
        display: none !important;
    }

    .product-card-image {
        height: 200px;
        background-color: #F9FAFB;
    }
    
    .product-card-model {
        font-size: 18px;
    }
    
    .product-card-specs {
        direction: rtl;
        text-align: right;
        gap: 0;
        padding-right: 0;
    }
    
    .product-spec-item {
        direction: rtl;
        flex-direction: row-reverse;
    }
    
    .product-card-specs .spec-name {
        text-align: right;
    }
    
    .product-card-specs .spec-value {
        text-align: left;
        
    }

    .new-footer {
        padding-top: 60px;
    }
    
    .footer-about .social-media {
        display: none;
    }
    
    .mobile-social {
        display: flex;
        justify-content: center;
        gap: 12px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    
    .accordion-content {
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        margin-bottom: 0;
        background-color: #7F8080;
        padding: 0;
        transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
    }
    
    .accordion-content.active {
        max-height: 1000px;
        opacity: 1;
        margin-bottom: 0;
        padding: 15px;
    }
    
    .accordion-content .footer-link {
        color: #FFFFFF;
    }
    
    .accordion-content .footer-link::before {
        background-color: #FFFFFF;
    }
    
    .footer-menu-title.accordion-toggle {
        background-color: #7F8080;
        color: #FFFFFF;
        padding: 12px 15px 12px 50px;
        margin-bottom: 0;
        border-radius: 0;
        position: relative;
    }
    
    .footer-menu-title.accordion-toggle::after {
        content: '';
        position: absolute;
        left: 13px;
        top: 50%;
        transform: translateY(-50%);
        width: 20px;
        height: 20px;
        background-color: #FFFFFF;
        border-radius: 4px;
        border: none;
    }
    
    .footer-menu-title.accordion-toggle::before {
        content: '';
        position: absolute;
        left: 18px;
        top: 50%;
        transform: translateY(-50%);
        width: 0;
        height: 0;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 6px solid #7F8080;
        z-index: 2;
        transition: transform 0.3s ease;
    }
    
    .footer-menu-title.accordion-toggle.active::before {
        transform: translateY(-50%) rotate(180deg);
    }
    
    .footer-menu-title.accordion-toggle.active::after {
        transform: translateY(-50%);
    }
    
    .footer-copyright p strong {
        color: #009CB4;
    }
    
    .scroll-to-top {
        display: none;
    }
}

