* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    background: radial-gradient(circle at top, #142019, #0b0f0c 70%);
    color: #f1f1f1;
}


nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(11, 15, 12, 0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(214,179,106,0.25);
    z-index: 1000;
}

.logo {
    font-size: 2rem;
    letter-spacing: 3px;
    font-weight: bold;
    color: #d6b36a;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #9bb7a4;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #c88a4a;
}

.cta-offer {
    padding: 0.55rem 1.4rem;
    background: linear-gradient(
        135deg,
        #c88a4a,
        #d6b36a
    );
    color: #0b0f0c !important;
    border-radius: 30px;
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 1.05rem;
    transition: transform 0.3s ease,
                box-shadow 0.3s ease;
}

.cta-offer:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.45);
}



#contact {
    margin-top: 120px;
    padding: 4rem 2rem;
}

.contact-wrapper {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: start;
}


.contact-form {
    background: linear-gradient(
        145deg,
        rgba(25,45,33,0.9),
        rgba(15,26,20,0.95)
    );
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.55);
}

.contact-form h2 {
    font-size: 2.4rem;
    color: #f3e8d2;
    margin-bottom: 2rem;
    text-align: left;
}

.field {
    margin-bottom: 1.5rem;
}

.field label {
    display: block;
    margin-bottom: 0.4rem;
    color: #d7e1db;
}

.field input,
.field textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: #0f1a14;
    border: 1px solid #2f5d3f;
    border-radius: 8px;
    color: #f1f1f1;
    font-size: 1rem;
}

.field input:focus,
.field textarea:focus {
    outline: none;
    border-color: #d6b36a;
}


button {
    margin-top: 1.5rem;
    padding: 1rem 3rem;
    background: linear-gradient(135deg, #c88a4a, #d6b36a);
    color: #0b0f0c;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    letter-spacing: 2px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}


.contact-info {
    position: relative;
    padding-top: 2rem;
}

.contact-info h3 {
    font-size: 1.8rem;
    color: #d6b36a;
    margin-bottom: 1rem;
}

.contact-info p {
    color: #d7e1db;
    font-size: 1.05rem;
    line-height: 1.6;
}

.info-box {
    margin-top: 2rem;
    padding: 1.8rem;
    background: rgba(20,35,26,0.95);
    border-left: 4px solid #c88a4a;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    position: relative;
}
.footer {
    background: #0b0f0c;
    color: #f5f2ea;
    padding: 30px 20px;
    font-size: 14px;
    text-align: center;
}
.footer-item a {
    color: #d6b36a;  
    text-decoration: none;
    transition: all 0.3s ease;
}
.footer-item a:hover {
    color: #c88a4a;
    text-decoration: underline;
}

.footer-content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px; 
}

.footer-content .footer-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-item i {
    color: #d6b36a;
}

.footer-bottom {
    text-align: center;
    font-size: 12px;
    color: #B5B5B5;
    margin-top: 25px; 
}

.contact-form,
.contact-info {
    opacity: 0;
    transform: translateX(0);
    transition: 
        opacity 1.1s ease,
        transform 1.1s ease;
}


.contact-form {
    transform: translateX(-80px);
}


.contact-info {
    transform: translateX(80px);
}


.contact-form.show,
.contact-info.show {
    opacity: 1;
    transform: translateX(0);
}


@media (max-width: 768px) {

    nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        padding: 1rem 1rem 1.2rem;
        gap: 0.8rem;
        text-align: center;
    }

    .logo {
        font-size: 1.6rem;
        margin: 0;
    }

    .nav-links {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;

        width: 100%;
        gap: 0.8rem;
        flex-wrap: wrap;
        padding: 0;
        margin: 0;
    }

    .nav-links li {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .nav-links a {
        display: inline-flex;
        justify-content: center;
        align-items: center;

        font-size: 1rem;
        padding: 0.45rem 0.9rem;
        text-align: center;
    }

   
    .cta-offer {
        font-size: 1.05rem;
        padding: 0.55rem 1.4rem;
        border-radius: 30px;
    }
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

   
    .contact-form {
        order: 1;
    }

    
    .contact-info {
        order: 2;
        padding-top: 0;
        text-align: center;
    }

    .contact-info h3 {
        font-size: 1.6rem;
    }

    .contact-info p {
        font-size: 1rem;
    }

  
    .info-box {
        margin-top: 1.5rem;
        border-left: none;
        border-top: 3px solid #c88a4a;
        border-radius: 14px;
        padding: 1.5rem;
    }
 
    .footer-content {
        flex-direction: column;
        gap: 20px; 
    }

}


