* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #1f2937;
    background: #ffffff;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1150px;
    margin: auto;
}


/* ================= HEADER ================= */

header {
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 23px;
    font-weight: 700;
    color: #172033;
}

.logo span {
    background: #b68a35;
    color: white;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    margin-right: 7px;
}

nav {
    display: flex;
    gap: 32px;
}

nav a {
    color: #4b5563;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}

nav a:hover {
    color: #b68a35;
}

.nav-btn {
    text-decoration: none;
    color: white;
    background: #b68a35;
    padding: 11px 20px;
    border-radius: 6px;
    font-size: 14px;
}


/* ================= HERO ================= */

.hero {
    background: #faf9f6;
    padding: 90px 0;
}

.hero-content {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
}

.hero-text {
    max-width: 620px;
}

.small-title,
.section-label {
    color: #b68a35;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.hero h1 {
    font-size: 58px;
    line-height: 1.1;
    color: #172033;
    margin-bottom: 22px;
}

.hero h1 span,
.about-text h2 span,
.section-heading h2 span,
.contact h2 span {
    color: #b68a35;
}

.hero-text p {
    color: #667085;
    font-size: 17px;
    max-width: 570px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.primary-btn {
    display: inline-block;
    background: #b68a35;
    color: white;
    text-decoration: none;
    padding: 13px 24px;
    border-radius: 6px;
    font-weight: 600;
}

.primary-btn:hover {
    background: #967027;
}

.secondary-btn {
    display: inline-block;
    background: white;
    color: #333;
    border: 1px solid #ddd;
    text-decoration: none;
    padding: 13px 24px;
    border-radius: 6px;
    font-weight: 600;
}

.secondary-btn:hover {
    border-color: #b68a35;
    color: #b68a35;
}


/* Hero Card */

.hero-card {
    width: 340px;
    height: 370px;
    background: #172033;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: #b68a35;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 75px;
    font-weight: bold;
    margin-bottom: 25px;
}

.hero-card h3 {
    font-size: 27px;
    margin-bottom: 5px;
}

.hero-card p {
    color: #c9ced8;
}


/* ================= FEATURES ================= */

.features {
    padding: 55px 0;
    background: white;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature {
    text-align: center;
    padding: 20px;
}

.icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: #f5efe3;
    color: #b68a35;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: bold;
}

.feature h3 {
    color: #172033;
    margin-bottom: 7px;
}

.feature p {
    color: #737b89;
    font-size: 14px;
}


/* ================= ABOUT ================= */

.about {
    padding: 100px 0;
    background: #f8f8f7;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

.about-box {
    height: 390px;
    background: #172033;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-letter {
    width: 180px;
    height: 180px;
    border: 2px solid #b68a35;
    color: #b68a35;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 90px;
    font-weight: bold;
    border-radius: 50%;
}

.about-text h2,
.section-heading h2,
.contact h2 {
    color: #172033;
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-text p {
    color: #687080;
    margin-bottom: 18px;
}


/* ================= PRODUCTS ================= */

.products {
    padding: 100px 0;
}

.section-heading {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 50px;
}

.section-heading p {
    color: #737b89;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card {
    border: 1px solid #e8e8e8;
    padding: 35px 30px;
    border-radius: 12px;
    transition: 0.3s;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.product-icon {
    width: 50px;
    height: 50px;
    background: #f5efe3;
    color: #b68a35;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: bold;
    margin-bottom: 20px;
}

.product-card h3 {
    color: #172033;
    margin-bottom: 10px;
}

.product-card p {
    color: #737b89;
    font-size: 14px;
}


/* ================= CONTACT ================= */

.contact {
    background: #172033;
    color: white;
    padding: 90px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact h2 {
    color: white;
}

.contact-content>div:first-child p {
    color: #c8ced8;
    max-width: 500px;
}

.contact-card {
    background: white;
    color: #172033;
    border-radius: 12px;
    padding: 30px;
}

.contact-item {
    padding: 13px 0;
    border-bottom: 1px solid #eeeeee;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item strong {
    font-size: 13px;
    color: #b68a35;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item p {
    margin-top: 3px;
}


/* ================= FOOTER ================= */

footer {
    background: #111827;
    color: white;
    padding: 30px 0;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-content strong {
    font-size: 18px;
}

.footer-content p {
    color: #9ca3af;
    font-size: 13px;
}


/* ================= MOBILE ================= */

@media (max-width: 800px) {

    .navbar {
        height: auto;
        padding: 18px 0;
        flex-wrap: wrap;
        gap: 15px;
    }

    nav {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 20px;
    }

    .nav-btn {
        display: none;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-card {
        width: 100%;
        max-width: 340px;
    }

    .feature-grid,
    .product-grid,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .about-content,
    .contact-content {
        gap: 40px;
    }

    .about-box {
        height: 300px;
    }

    .section-heading h2,
    .about-text h2,
    .contact h2 {
        font-size: 34px;
    }

    .footer-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}