/* ===== Global Styles ===== */
.body {
    background-color: #0e0c0d;
}

/* ===== Content ===== */
.main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9rem;
    height: calc(100vh - 28.8px - (16px*2));
    padding: 0px 5%;
    font-family: system-ui, sans-serif;
    color: #e4e4e7;
    align-items: center;
}

/* ===== Contact Section ===== */
.contact-section .heading {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.contact-section {
    margin-left: auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 480px;
}

.form-label {
    font-weight: 600;
    color: #f95a25;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #3f3f46;
    border-radius: 8px;
    background-color: #121212;
    color: #f4f4f5;
    font-size: 1rem;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #f95a25;
    box-shadow: 0 0 0 2px #f95a25;
}

.send-btn {
    align-self: flex-start;
    background-color: #303030;
    color: #e4e4e7;
    border: none;
    border-radius: 8px;
    padding: 0.8rem 1.6rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.send-btn:hover {
    background-color: #3b3b3b;
}

/* ===== Testimonial Section ===== */
.testimonial-card {
    background-color: #101010;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 40px #f95a25;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.5rem;
    overflow-x: hidden;
    margin-right: auto;
    display: flex;
    max-width: 28vw;
    min-height: 70vh;
}

.testimonial-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo.white {
    font-weight: 700;
    font-size: 1.5rem;
    color: #f95a25;
}

.testimonial-nav {
    display: flex;
    gap: 0.5rem;
}

.nav-arrow {
    background: #303030;
    border: none;
    color: #e4e4e7;
    border-radius: 8px;
    padding: 0.4rem 0.8rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.nav-arrow:hover {
    background-color: #3b3b3b;
}

.testimonial-text {
    font-style: italic;
    line-height: 1.6;
    color: #d4d4d8;
}

.highlight {
    color: #f95a25;
    font-weight: 600;
}

.testimonial-source {
    display: flex;
    justify-content: flex-end;
}

.nexify-logo {
    height: 22px;
    opacity: 0.8;
}