* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
}

:root {
    --primary: #ff7a00;
    --bg: #0d2f3a;
    --bg2: #174b5a;
    --card: #1e5c6d;
    --text: #ffffff;
    --text-light: #d7e4e8;
    --border: rgba(255, 255, 255, .12);
}

body {
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: auto;
}

/* NAVBAR */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(13, 47, 58, .95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .15);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 85px;
}

.logo img {
    height: 58px;
    width: auto;
    object-fit: contain;
}

.logo {
    transition: .3s;
}

.logo:hover {
    transform: scale(1.03);
}

nav {
    display: flex;
    gap: 35px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 0;
    width: 0;
    height: 2px;
    background: #ff7a00;
    transition: .3s;
}

nav a:hover::after,
nav .active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 26px;
    color: #fff;
    cursor: pointer;
}

/* HERO */
.hero {
    position: relative;
    min-height: 85vh;
    background: linear-gradient(rgba(13, 47, 58, .75), rgba(13, 47, 58, .75)), url("bg.jpg") center center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 40px 0;
    overflow: hidden;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 20, 25, .65);
    backdrop-filter: blur(3px);
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    max-width: 650px;
    height: auto;
    object-fit: contain;
}

.hero-content {
    flex: 1;
    text-align: right;
}

.hero-content h1 {
    font-size: clamp(28px, 5vw, 50px);
    font-weight: 800;
    color: #ff7a00;
    margin-bottom: 10px;
}

.hero-content h2 {
    font-size: clamp(24px, 4vw, 48px);
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content p {
    color: #d7e4e8;
    font-size: 16px;
    line-height: 1.8;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    margin-top: 25px;
    flex-wrap: wrap;
}

.btn-orange {
    background: #ff7a00;
    padding: 14px 30px;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: .3s;
}

.btn-dark {
    border: 1px solid #ff7a00;
    padding: 14px 30px;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: .3s;
}

.btn-orange:hover {
    transform: translateY(-2px);
}

.btn-dark:hover {
    background: #ff7a00;
}

/* FEATURES */
.features {
    margin-top: -30px;
    position: relative;
    z-index: 10;
}

.features .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.feature-box {
    background: var(--card);
    padding: 30px 20px;
    text-align: center;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .05);
}

.feature-box i {
    font-size: 40px;
    color: #ff7a00;
    margin-bottom: 20px;
}

/* STATS */
.stats {
    padding: 40px 0;
    margin-bottom: 40px;
}

.stats .container {
    background: linear-gradient(90deg, #181818, #ff7a00);
    border-radius: 15px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    padding: 40px;
}

.stat {
    text-align: center;
}

.stat i {
    font-size: 35px;
    margin-bottom: 15px;
}

.stat h3 {
    font-size: 34px;
    margin-bottom: 10px;
}

/* SECTIONS COMMON */
.services,
.brands-section,
.latest-products,
.contact-section {
    padding: 50px 0;
}

.section-title {
    text-align: center;
    font-size: clamp(28px, 4vw, 45px);
    margin-bottom: 35px;
}

/* SERVICES */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.service-card {
    background: var(--card);
    border: 1px solid rgba(255, 255, 255, .08);
    padding: 25px;
    border-radius: 12px;
    transition: .4s;
}

.service-card:hover {
    border-color: #ff7a00;
    transform: translateY(-5px);
}

.service-card i {
    font-size: 30px;
    color: #ff7a00;
    margin-bottom: 15px;
}

/* BRANDS */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.brand-item {
    height: 120px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.brand-item img {
    max-width: 100%;
    max-height: 50px;
    object-fit: contain;
}

/* LATEST PRODUCTS */
.latest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.latest-card {
    background: #f7fafb;
    color: #12313b;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
}

.latest-card img {
    height: 180px;
    width: 100%;
    object-fit: contain;
}

.latest-card h4 {
    margin-top: 10px;
    font-size: 15px;
}

.latest-card span {
    font-size: 13px;
}

.products-btn {
    text-align: center;
    margin-top: 30px;
}

.products-btn a {
    border: 1px solid #777;
    padding: 12px 30px;
    text-decoration: none;
    color: #fff;
    border-radius: 8px;
    display: inline-block;
}

/* PRODUCTS PAGE & SWIPER */
.products-page {
    padding: 60px 0;
    background: #0b2731;
}

.product-section {
    padding: 50px 0;
    border-top: 1px solid rgba(255, 122, 0, .3);
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: clamp(24px, 4vw, 38px);
    font-weight: 700;
}

.section-header p {
    color: #ff7a00;
    margin-top: 8px;
    font-size: 14px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.products-grid.four {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    max-width: 1000px;
    margin: auto;
}

.product-item {
    background: var(--card);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 15px;
    padding: 15px;
    text-align: center;
    transition: .3s;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.product-item:hover {
    transform: translateY(-8px);
    border-color: #ff7a00;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .25);
}

.product-item img {
    width: 100%;
    max-width: 250px;
    height: 200px;
    object-fit: contain;
    margin-bottom: 10px;
}

.product-item h4 {
    font-size: 14px;
    font-weight: 700;
    color: #d7e4e8;
}

.view-all {
    text-align: center;
    margin-top: 40px;
}

.view-all a {
    display: inline-block;
    padding: 12px 35px;
    border: 1px solid #666;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    transition: .3s;
}

.view-all a:hover {
    background: #ff7a00;
    border-color: #ff7a00;
}

/* SWIPER CUSTOMS */
.swiper {
    width: 100%;
    padding: 10px 0 40px !important;
}

.swiper-slide {
    height: auto;
    display: flex;
}

.swiper-slide > .product-item {
    width: 100%;
}

.swiper-button-next,
.swiper-button-prev {
    background: rgba(255, 122, 0, .3);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 122, 0, .6);
    color: #fff !important;
}

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

/* CONTACT */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-box {
    background: var(--card);
    padding: 18px;
    border-radius: 10px;
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.info-box i {
    color: #ff7a00;
    font-size: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: #133f4c;
    border: 1px solid rgba(255, 255, 255, .15);
    color: #fff;
    padding: 14px;
    margin-bottom: 15px;
    border-radius: 8px;
    outline: none;
}

.contact-form textarea {
    height: 140px;
    resize: none;
}

.contact-form button {
    width: 100%;
    background: #ff7a00;
    border: none;
    padding: 15px;
    color: white;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: .3s;
}

.contact-form button:hover {
    background: #e06c00;
}

.map-box iframe {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border: none;
    border-radius: 10px;
}

/* FOOTER */
footer {
    background: #0b2731;
    border-top: 1px solid var(--border);
    padding: 40px 0 25px !important;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    align-items: start;
}

.footer-logo {
    width: 170px;
    margin-bottom: 15px;
}

.footer-grid h3 {
    margin: 0 0 20px;
    font-size: 18px;
}

.footer-grid ul {
    list-style: none;
}

.footer-grid li {
    margin-bottom: 10px;
    color: #d7e4e8;
}

.socials {
    margin-top: 18px;
    display: flex;
    gap: 10px;
}

.socials a {
    width: 40px;
    height: 40px;
    background: #174b5a;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    transition: .3s;
}

.socials a:hover {
    background: #ff7a00;
}

/* MEDIA QUERIES FOR RESPONSIVENESS */
@media (max-width: 991px) {
    .menu-toggle {
        display: block;
    }

    nav {
        position: absolute;
        top: 85px;
        right: 0;
        width: 100%;
        background: #0d2f3a;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        gap: 20px;
        border-bottom: 1px solid var(--border);
        display: none;
    }

    nav.active {
        display: flex;
    }

    .hero-container {
        flex-direction: column-reverse;
        text-align: center;
    }

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

    .hero-buttons {
        justify-content: center;
    }

    .features {
        margin-top: 20px;
    }
}

@media (max-width: 600px) {
    .container {
        width: 92%;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-orange, .btn-dark {
        width: 100%;
    }

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

    .socials {
        justify-content: center;
    }
}
