.contact-section {
    padding: 25px 0%;
}

/* Header layout */
.contact-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    margin-top: 4%;
    background-image: url("../images/contact-banner-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding-left: 3%;
    padding-right: 3%;
}

.contact-left {
    padding: 2%
}

.brand-name {
    color: #d4af37;
    font-weight: 500;
    font-size: 14px;
}

.contact-header h1 {
    font-size: 42px;
    font-weight: normal;
    margin: 20px 0 40px;
    line-height: 1.2;
    color: #ffffff;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-info .info-item {
    display: flex;
    align-items: center;
    gap: 12px;

    color: #fff;
    padding: 12px 16px;
    border-radius: 10px;

    /* glass effect */
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);

    transition: 0.3s;
}

.contact-info .info-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
}

.contact-info i {
    font-size: 18px;
    color: #fff;
    min-width: 22px;
}

.contact-info span {
    font-size: 14px;
    line-height: 1.5;
}

/* SLIDER CONTAINER */
.contact-right {
    flex: 1;
    max-width: 650px;
    position: relative;
    margin-right: 1%;
    margin-top: 1%;
}

.contact-slider {
    border-radius: 30px 0 30px 0;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);

}

.contact-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px 0 30px 0;

}

/* SLICK CONTROLS */
.slick-prev,
.slick-next {
    display: none !important;
    /* Hide arrows */
}

.slick-slide img {
    display: block;
    padding: 5px !important;
}

.slick-dots {
    bottom: 12px;
}

.slick-dots li button:before {
    color: #d4af37;
    font-size: 10px;
}

.slick-dots li.slick-active button:before {
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .contact-header {
        flex-direction: column;
        text-align: center;
    }

    .contact-right {
        max-width: 100%;
    }
}

/* Form layout */
.form-desc {
    text-align: left;
    margin: 40px 0 20px;
    color: white;
    padding-left: 4%;

}

.contact-form-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 60px;
    padding: 4%;
}

.form-left,
.form-right {
    flex: 1;
}

label {
    display: block;
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 16px;
    color: #fff;
}

textarea,
input {
    width: 100%;
    background: transparent;
    border: 1px solid #333;
    border-radius: 6px;
    padding: 12px;
    color: #fff;
    font-size: 14px;
    margin-bottom: 20px;
}

textarea {
    height: 80px;
    resize: none;
}

.budget-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0;
}

.budget-options button {
    background: transparent;
    border: 1px solid #444;
    color: #fff;
    padding: 8px 20px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.budget-options button:hover {
    background: #d4af37;
    color: #000;
}

.budget-note {
    color: #999;
    font-size: 12px;
}


/* FAQ Section */
.faq-section {
    display: flex;
    gap: 60px;
    padding-top: 40px;
    border-top: 1px solid #2a2a2a;
    padding: 2%;
    padding-left: 5%;
    padding-right: 5%;
}

.faq-left {
    background: #141414;
    border: 1px solid #d4af37;
    border-radius: 15px;
    padding: 30px;
    flex: 0.8;
}

.faq-left h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.faq-left p {
    font-size: 13px;
    color: #d4af37;
    margin-bottom: 25px;
}

.faq-message {
    border-top: 1px solid #d4af37;
    padding-top: 90px;
}

.faq-message h4 {
    margin-bottom: 12px;
    color: #fff;
}

.send-message-btn {
    background: linear-gradient(90deg, #cfa93f, #f8e17c);
    color: #000;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.send-message-btn:hover {
    transform: translateY(-2px);
}

.faq-right {
    flex: 1.2;
}

.faq-item {
    border-bottom: 1px solid #2a2a2a;
    padding: 15px 0;
}

.faq-question {
    font-size: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}

.faq-question::after {
    content: "▾";
    transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    color: #d4af37;
    font-size: 13px;
    margin-top: 10px;
    line-height: 1.5;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Responsive */
@media (max-width: 900px) {

    .contact-header,
    .contact-form-wrapper,
    .faq-section {
        flex-direction: column;
    }

    .contact-right img {
        width: 100%;
    }
}

.project-form {
    background: #121212;
    color: #fff;
    /* padding: 20px; */
    border-radius: 16px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.form-container {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    width: 100%;
    /* max-width: 1100px; */
    justify-content: space-between;
}

.form-left {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-right {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.form-left label,
.form-right label {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 8px;
}

textarea,
input {
    width: 100%;
    background: #1e1e1e;
    border: none;
    border-radius: 10px;
    padding: 12px;
    color: #fff;
    font-size: 1rem;
    outline: none;
}

textarea {
    min-height: 160px;
    resize: vertical;
}

.budget-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.budget-options label {
    background: #1e1e1e;
    border: 1px solid #444;
    border-radius: 25px;
    padding: 10px 16px;
    cursor: pointer;
    transition: 0.3s ease;
    border-radius: 12px;
}

.budget-options input[type="radio"] {
    display: none;
}

.budget-options label:hover,
.budget-options input[type="radio"]:checked+label {
    background: #bfa35a;
    color: #000;
    border-color: #bfa35a;
    border-radius: 12px;
}

.send-btn {
    /* background: linear-gradient(90deg, #bfa35a, #e9d08c);
    color: #000;
    border: none;
    border-radius: 50px;
    padding: 14px 30px;
    font-size: 1rem;
    cursor: pointer;
    align-self: flex-start;
    transition: 0.3s ease; */
    width: 40%;
    background-color: #1a1a1a;
    border: none;
}

.send-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

.budget-note {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.5;
}