header{
    width:100%;
    height:80px;
    background:#3B2F2F;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 60px;
    box-sizing:border-box;
}


.logo h1{
    color:#F5F1E8;
    margin:0;
    font-size:30px;
}

.logo span{
    color:#C96A1B;
    font-size:14px;
}


nav a{
    color:#F5F1E8;
    text-decoration:none;
    margin:0 15px;
    font-size:16px;
}


nav a:hover{
    color:#C96A1B;
}


.phone{
    color:#F5F1E8;
    border:1px solid #C96A1B;
    padding:12px 20px;
    border-radius:8px;
}
/* افکت هدر */
header{
    position: sticky;
    top:0;
    z-index:1000;
    box-shadow:0 4px 15px rgba(0,0,0,0.25);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #111315;
    color: #ffffff;
    font-family: "Vazirmatn", sans-serif;
    direction: rtl;
}


/* ================= HEADER ================= */

.header {
    height: 90px;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;

    background: #0c0f11;
    border-bottom: 1px solid #4d3b1c;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo span {
    color: #e4a52b;
    font-size: 25px;
    font-weight: 800;
}

.logo small {
    color: #aaa;
    font-size: 12px;
    margin-top: 3px;
}


nav {
    display: flex;
    gap: 35px;
}
nav a {
    color: #eee;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 33px 0;
    transition: .3s;
}

nav a:hover,
nav a.active {
    color: #e4a52b;
    border-bottom: 3px solid #e4a52b;
}


.contact-btn {
    text-decoration: none;
    color: #111;
    background: #e4a52b;
    padding: 13px 25px;
    border-radius: 30px;
    font-weight: 700;
    transition: .3s;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px #000;
}


/* ================= ABOUT ================= */

.about {
    max-width: 1400px;
    margin: auto;
    padding: 70px 5%;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;

    align-items: center;
}


.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.about-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;

    display: block;

    filter: brightness(.7);
    
    transition: .5s;
}

.about-image:hover img {
    transform: scale(1.04);
    filter: brightness(.85);
}


/* ================= TEXT ================= */

.title-small {
    color: #e4a52b;
    font-size: 18px;
    font-weight: 700;

    margin-bottom: 15px;

    display: flex;
    align-items: center;
    gap: 12px;
}

.title-small::before {
    content: "";
    width: 40px;
    height: 2px;
    background: #e4a52b;
}


.about-text h1 {
    font-size: 50px;
    margin-bottom: 8px;
    font-weight: 800;
}

.about-text h2 {
    color: #e4a52b;
    font-size: 23px;
    margin-bottom: 30px;
}

.about-text p {
    color: #d0d0d0;
    line-height: 2.2;
    font-size: 16px;
    margin-bottom: 17px;
}


/* ================= FEATURES ================= */

.features {
    max-width: 1400px;
    margin: 0 auto;

    padding: 10px 5% 50px;

    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}


.feature-card {
    background: #181a1c;

    border: 1px solid #303030;

    border-radius: 15px;

    padding: 28px 15px;

    text-align: center;

    transition: .3s;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: #e4a52b;
    box-shadow: 0 10px 30px rgba(0,0,0,.4);
}


.icon {
    font-size: 36px;
    margin-bottom: 18px;
    color: #e4a52b;
}


.feature-card h3 {
    color: #e4a52b;
    font-size: 16px;
    margin-bottom: 12px;
}


.feature-card p {
    color: #bbb;
    font-size: 13px;
    line-height: 1.9;
}


/* ================= BOTTOM ================= */

.bottom-title {
    padding: 25px 5% 45px;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;

    color: #ddd;
}


.bottom-title span {
    width: 45px;
    height: 2px;
    background: #e4a52b;
}


.bottom-title strong {
    color: #e4a52b;
    font-size: 20px;
}


.bottom-title p {
    font-size: 18px;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 1100px) {

    nav {
        gap: 18px;
    }

    nav a {
        font-size: 13px;
    }

.features {
        grid-template-columns: repeat(3, 1fr);
    }

}


@media (max-width: 800px) {

    .header {
        height: auto;
        padding: 20px;
        flex-direction: column;
        gap: 20px;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    nav a {
        padding: 5px;
        border: none !important;
    }

    .about {
        grid-template-columns: 1fr;
        padding-top: 40px;
    }

    .about-image img {
        height: 350px;
    }

    .about-text h1 {
        font-size: 38px;
    }

    .features {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 500px) {

    .features {
        grid-template-columns: 1fr;
    }

    .about {
        padding: 30px 20px;
    }

    .about-text h1 {
        font-size: 32px;
    }

    .bottom-title {
        flex-wrap: wrap;
    }

}

