@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");
@import url("./contact-faq.css");
@import url("../blog//cta-section.css");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --primary-hover: #8c0d5f;
    --accent-yellow: #f7ce5b;
    --text-primary: #0f172a;
    --bg-light-pink: rgba(240, 207, 228, 0.4);
    --border-radius-sm: 6px;
    --border-radius-lg: 12px;
}
body {
    font-family: "Roboto", sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
}

.section-container {
    display: flex;
    gap: 3rem;
    padding: 3rem 2rem;
    margin: 0 5rem;
}
.section-header {
    font-size: 3rem;
    font-weight: 800;
    text-align: left;
    margin-bottom: 1.5rem;
}


.hero-section {
    background-color: var(--bg-light-pink);
    min-height: 60vh;
    display: flex;
    justify-content: start;
    align-items: start;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
}

.hero__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 0;
}

.hero__title-highlight {
    position: relative;
    display: inline-block;
}

.hero__title-underline {
    position: absolute;
    left: 0;
    bottom: -0.15em;
    width: 100%;
    height: 0.6em;
    pointer-events: none;
}

.contact-decription {
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.hero__quick-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.hero__quick-links-label {
    font-size: 1.125rem;
    font-weight: 400;
    margin-bottom: 0;
}

.quick-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-links__item {
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.quick-links__link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 400;
    font-size: 1.125rem;
    transition: opacity 0.2s ease;
}

.quick-links__link:hover {
    opacity: 0.8;
}

.quick-links__separator {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--primary-color);
}

.section--form {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    margin-top: -5rem;
    padding: 2rem 0 4rem;
}

.contact-description {
    font-size: 15px;
    line-height: 1.6;
    color: #374151;
    margin: 0 0 20px 0;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.carousel-container {
    position: relative;
    margin: 0 0;
    overflow: hidden;
}

.carousel-wrapper {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 16px;
    padding: 20px 0;
    scrollbar-width: none;
}

.carousel-wrapper::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 2rem 2.25rem;
    min-width: 450px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.avatar {
    width: 64px;
    height: 64px;
    background-color: rgba(248, 231, 242, 1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-size: 1.325rem;
    color: rgba(81, 81, 81, 1);
    flex-shrink: 0;
}
.testimotional-description {
    font-weight: 400;
    color: black;
    font-size: 1.225rem;
}
.user-details h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
}

.user-details p {
    margin: 2px 0 0 0;
    font-size: 14px;
    color: rgba(71, 85, 105, 1);
}

@media (min-width: 992px) {
    .section__container {
        padding: 0 2rem;
    }

    .form-layout {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
    }
    .section-container {
        padding: 1rem 1rem;
    }
    .section-header {
        text-align: center;
        font-size: 2.4rem;
    }
}

@media (max-width: 991px) {
    .hero-section {
        padding: 3rem 0;
    }
}
.nav-btns {
    display: flex;
    width: 100%;
    justify-content: end;
    align-items: center;
    gap: 4px;
}
.nav-btn {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-color);
    border-radius: 100% !important;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
    background-color: white;
}

.nav-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

.nav-btn.left {
    left: -20px;
}

.nav-btn.right {
    right: -20px;
}

.nav-btn svg {
    width: 24px;
    height: 24px;
    fill: var(--primary-color);
    transition: fill 0.2s ease;
}

.nav-btn:hover svg {
    fill: white;
}


.contact-container {
    display: flex;
    justify-content: space-between;
    margin: 0;
    gap: 15rem;
}
.contact-illustration {
    display: flex;
    align-items: end;
    justify-content: center;
    background-color: transparent;
    padding: 1rem;
}

.contact-illustration img {
    width: 100%;
    height: 100%;
    max-height: 700px;
    margin-top: -7rem;
    object-fit: contain;
    z-index: 100;
}

.contact-form-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form-card {
    width: 100%;
    max-width: 500px;
}
.contact-section {
    background-color: transparent;
    margin-top: -20rem;
    z-index: 50;
}

@media (max-width: 768px) {
    .contact-section {
        margin-top: 0rem;
    }
    .contact-container {
        grid-template-columns: 1fr;
    }
    .contact-illustration {
        display: none;
    }

    .contact-illustration img {
        display: hidden;
    }

    .contact-form-wrapper {
        justify-content: center;
        padding: 1rem 0;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 2rem 0.5rem;
    }

    .contact-illustration img {
        max-height: 250px;
    }
}

@media (max-width: 900px){
    .section-container{
        margin: 0;
    }
    .mobCal{
        flex-direction: column;
        align-items: center;
    }
    .quick-links{
        flex-direction: column;
        align-items: flex-start;
    }
}