* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: rgb(255, 244, 255);
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 15px 30px;
    box-shadow: 0 0 6px rgba(0,0,0,0.1);
}
.logo {
    height: 60px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.estimate-btn {
    background: RGB(41, 170, 243);
    color: #fff;
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    font-weight: bold;
}

.menu-icon {
    font-size: 26px;
    cursor: pointer;
}

.estimate-btn:hover{
    background: #7a2f7a;
    color: #ffffff;
    transform: translateY(-3px);
}

/* TITLE */
.title-section {
    text-align: center;
    padding: 60px 20px 40px;
}

.title-section h2 {
    color: #7a2f7a;
    font-size: 32px;
    margin-bottom: 15px;
}

.title-section h3 {
    font-size: 22px;
    font-weight: 500;
    color: #7a2f7a;
    text-decoration: underline;
    text-decoration-color: orange;
}

/* FORM */
.form-section {
    padding: 40px 60px 80px;
}

.contact-form {
    max-width: 1200px;
    margin: auto;
    border: 2px solid #eee;
    border-radius: 15px;
    padding: 50px;
}

.form-row {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.form-group {
    flex: 1;
}

.form-group label {
    font-weight: bold;
    display: block;
    margin-bottom: 15px;
}

.form-group label span {
    color: red;
}

.form-group input {
    width: 100%;
    border: none;
    border-bottom: 2px solid #ddd;
    padding: 12px 5px;
    font-size: 16px;
    outline: none;
}

.form-group input:focus {
    border-color: #7a2f7a;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .form-row {
        flex-direction: column;
    }

    .header {
        padding: 20px;
    }

    .form-section {
        padding: 20px;
    }
}

/* FORM */
.form-wrapper {
    padding: 60px;
}

.row {
    display: flex;
    gap: 80px;
    margin-bottom: 60px;
}

.col {
    flex: 1;
}

.col.full {
    flex: 100%;
}

h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

h3 span {
    color: red;
}

/* CHECKBOX GRID */
.checkbox-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.checkbox-grid label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
}

.checkbox-grid input {
    width: 20px;
    height: 20px;
}

/* INPUTS */
select,
textarea {
    width: 100%;
    border: none;
    border-bottom: 2px solid #ddd;
    padding: 12px 5px;
    font-size: 16px;
    outline: none;
    background: transparent;
}

textarea {
    min-height: 100px;
    resize: none;
}

select:focus,
textarea:focus {
    border-color: #7a2f7a;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .row {
        flex-direction: column;
        gap: 40px;
    }

    .form-wrapper {
        padding: 30px;
    }

    .checkbox-grid {
        grid-template-columns: 1fr;
    }
}

/*--cta--*/
.cta-section {
    background-color: #35b6ff;
    text-align: center;
    padding: 100px 20px;
    color: #ffffff;
}

.cta-section h2 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 40px;
}

.cta-section p {
    max-width: 900px;
    margin: 50px auto 0;
    font-size: 22px;
    line-height: 1.6;
}

/* Button */
.cta-btn {
    display: inline-block;
    padding: 16px 40px;
    background: #ffffff;
    color: #7a2f7a;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

/* Hover effect */
.cta-btn:hover {
    background: #7a2f7a;
    color: #ffffff;
    transform: translateY(-3px);
}

/*--FOOTER--*/
.footer {
    background: #75356f;
    color: #fff;
    padding: 60px 80px 30px;
}

/* Top section */
.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer-column h3 {
    margin-bottom: 20px;
    font-size: 22px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 14px;
}

.footer-column ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

.footer-column ul li a:hover {
    text-decoration: underline;
}

/* Divider */
.footer hr {
    margin: 40px 0 20px;
    border: none;
    border-top: 1px solid rgba(255,255,255,0.5);
}

/* Bottom section */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 16px;
}

/* Social icons */
.social-icons a {
    color: #fff;
    border: 1px solid #fff;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 18px;
}

.social-icons a:hover {
    background: #fff;
    color: #75356f;
}

/* Responsive */
@media (max-width: 900px) {
    .footer-top {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}
