:root {
    --primary: #d35400;
    /* Burnt Orange */
    --secondary: #2c3e50;
    /* Dark Blue Grey */
    --accent: #e67e22;
    --light: #ecf0f1;
    --dark: #1a252f;
    --text: #34495e;
    --white: #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Changa', sans-serif;
    color: var(--text);
    background-color: #f9f9f9;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background-color: var(--dark);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.9rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-mini span {
    margin-left: 15px;
}

.lang-switch a:hover {
    color: var(--primary);
}

/* Header */
.build-header {
    background-color: var(--white);
    padding: 20px 0;
    box-shadow: 0 4px 2px -2px gray;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    font-size: 2.5rem;
    color: var(--primary);
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--secondary);
    line-height: 1.2;
}

.logo span {
    display: block;
    font-size: 0.9rem;
    color: #7f8c8d;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--secondary);
}

/* Hero */
.hero-build {
    background-image: url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 62, 80, 0.7);
}

.hero-text {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-text h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px #000;
}

.hero-text p {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.btn-build {
    background-color: var(--primary);
    color: var(--white);
    padding: 15px 40px;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn-build:hover {
    background-color: #ca4e00;
}

/* Sections */
.section-build {
    padding: 80px 0;
}

.section-title-box {
    text-align: center;
    margin-bottom: 50px;
}

.section-title-box h2 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

.line {
    width: 80px;
    height: 5px;
    background-color: var(--primary);
    margin: 0 auto;
}

/* Products */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-item {
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.product-item:hover {
    transform: scale(1.02);
}

.img-wrap {
    height: 250px;
    overflow: hidden;
}

.img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-item:hover .img-wrap img {
    transform: scale(1.1);
}

.p-info {
    padding: 20px;
    text-align: center;
}

.p-info h3 {
    margin-bottom: 10px;
    color: var(--secondary);
}

/* Features */
.features-build {
    background-color: var(--secondary);
    color: var(--white);
    padding: 60px 0;
}

.features-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.feature-box {
    text-align: center;
    flex: 1;
    min-width: 250px;
}

.feature-box i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.feature-box h3 {
    margin-bottom: 10px;
    font-size: 1.4rem;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.info-row {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-row .icon {
    width: 60px;
    height: 60px;
    background-color: var(--light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border-radius: 5px;
}

.info-row h4 {
    margin-bottom: 5px;
    color: var(--secondary);
    font-size: 1.2rem;
}

.map-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--primary);
    font-weight: bold;
}

.map-embed {
    border: 5px solid var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Footer */
.build-footer {
    background-color: var(--dark);
    color: #95a5a6;
    text-align: center;
    padding: 20px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        padding: 20px 0;
        transition: 0.3s;
        box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: block;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}