/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #000000;
    color: #FFFFFF;
    overflow-x: hidden;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 80px;
}

@media (max-width: 1279px) {
    .container {
        padding: 0 40px;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 20px;
    }
}

/* Hero Section */
.hero-section {
    display: flex;
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.90) -1.19%,
        rgba(0, 0, 0, 0.00) 12.9%
    ),
    linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.00) 0%,
        rgba(56, 56, 56, 0.06) 49.91%,
        rgba(0, 0, 0, 0.08) 100%
    ),
    #000000;
    background-size: cover;
    padding-bottom: 48px;
}

@media (max-width: 1279px) {
    .hero-section {
        padding-bottom: 120px;
    }
}

@media (max-width: 600px) {
    .hero-section {
        padding-bottom: 100px;
    }
}

.hero-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 130px;
}

@media (max-width: 1279px) {
    .hero-content {
        flex-direction: column;
        gap: 64px;
        padding-top: 100px;
    }
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 320px;
}

@media (max-width: 1279px) {
    .hero-text {
        min-width: unset;
    }
}

.hero-label {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    color: #FFFFFF;
}

@media (max-width: 1279px) {
    .hero-label {
        font-size: 18px;
        line-height: 22px;
    }
}

.hero-title {
    font-family: 'Inter', sans-serif;
    font-size: 64px;
    font-weight: 400;
    line-height: 63px;
    color: #FFFFFF;
    letter-spacing: -2.56px;
    margin-bottom: 24px;
}

@media (max-width: 1279px) {
    .hero-title {
        font-size: 48px;
        line-height: 49px;
        letter-spacing: -1.92px;
    }
}

.hero-title-italic {
    font-weight: 700;
    font-style: italic;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    color: #FFFFFF;
}

@media (max-width: 1279px) {
    .hero-subtitle {
        font-size: 18px;
        line-height: 22px;
    }
}

@media (max-width: 600px) {
    .hero-subtitle {
        font-size: 20px;
        line-height: 30px;
    }
}

/* Form Wrapper and Card */
.form-wrapper {
    display: flex;
    justify-content: flex-end;
    flex: 1;
    width: 100%;
}

@media (max-width: 1279px) {
    .form-wrapper {
        justify-content: center;
    }
}

.form-card {
    width: calc(100% - 40%);
    max-width: 600px;
    padding: 40px;
    border-radius: 1px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
    gap: 28px;
}

@media (max-width: 1279px) {
    .form-card {
        width: 100%;
        gap: 48px;
        padding: 40px 20px;
    }
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.form-row {
    display: flex;
    gap: 28px;
}

@media (max-width: 1279px) {
    .form-row {
        flex-direction: column;
        gap: 19px;
    }
}

.form-field {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.form-field label {
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 8px;
}

@media (max-width: 1279px) {
    .form-field label {
        font-size: 18px;
        line-height: 24px;
    }
}

.form-field input,
.form-field textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid #FFFFFF;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    padding: 20px 0 5px 0;
    outline: none;
    transition: border-bottom-color 0.2s ease;
}

@media (max-width: 1279px) {
    .form-field input,
    .form-field textarea {
        padding-top: 16px;
    }
}

.form-field input:focus,
.form-field textarea:focus {
    border-bottom: 2px solid #FFFFFF;
}

.form-field textarea {
    resize: vertical;
    min-height: 80px;
}

.toggle-label {
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 16px;
}

.toggle-group {
    display: flex;
    width: 100%;
    gap: 12px;
    flex-wrap: nowrap;
}

@media (max-width: 1589px) {
    .toggle-group {
        flex-wrap: wrap;
    }
}

@media (max-width: 1279px) {
    .toggle-group {
        gap: 9px;
    }
}

.toggle-btn {
    flex: 1 1 0;
    min-width: 0;
    white-space: nowrap;
    border-radius: 38px;
    padding: 10px 24px;
    border: 2px solid rgba(255, 255, 255, 0.60);
    background: transparent;
    font-weight: 400;
    font-size: 18px;
    line-height: 23px;
    color: rgba(255, 255, 255, 0.60);
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

@media (max-width: 1500px) {
    .toggle-btn {
        font-size: 14px;
        line-height: 16px;
        padding: 8px 20px;
    }
}

@media (max-width: 1279px) {
    .toggle-btn {
        flex: unset;
    }
}

.toggle-btn:hover {
    border-color: #FFFFFF;
    color: #FFFFFF;
}

.toggle-btn.active {
    background: rgba(255, 255, 255, 0.22);
    border: 2px solid #FFFFFF;
    color: #FFFFFF;
}

/* Submit Button */
.submit-btn {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    padding: 16px 40px;
    border: 1px solid #FFFFFF;
    background: #FFFFFF;
    color: #000000;
    font-size: 18px;
    line-height: 24px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.6s ease;
    align-self: flex-start;
}

.submit-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #000000;
    transition: width 0.6s ease;
    z-index: 0;
}

.submit-btn:hover::before {
    width: 100%;
}

.submit-btn:hover {
    color: #FFFFFF;
    border-color: #000000;
}

/* FAQ Section */
.faq-section {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: #000000;
    padding: 160px 0 87px 0;
}

@media (max-width: 1279px) {
    .faq-section {
        padding: 89px 0 50px 0;
    }
}

@media (max-width: 600px) {
    .faq-section {
        padding: 100px 0 46px 0;
    }
}

.faq-list {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 0;
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 28px;
    font-weight: 400;
    line-height: 36px;
    text-align: left;
    cursor: pointer;
    transition: opacity 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.faq-question:hover {
    opacity: 0.7;
}

.faq-icon {
    font-size: 32px;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 32px;
}

.faq-answer p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: rgba(255, 255, 255, 0.8);
}

/* Footer Section */
.footer-section {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: #000000;
    padding-bottom: 140px;
}

@media (max-width: 1279px) {
    .footer-section {
        padding-bottom: 75px;
    }
}

.footer-nav {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding-bottom: 40px;
}

@media (max-width: 1279px) {
    .footer-nav {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
}

.footer-link {
    font-family: 'Inter', sans-serif;
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 400;
    line-height: 29px;
    text-transform: uppercase;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-link:hover {
    opacity: 0.6;
}

.footer-logo {
    position: relative;
    height: 164px;
    width: 100%;
    margin-bottom: 40px;
}

@media (max-width: 1279px) {
    .footer-logo {
        height: 72px;
        margin-bottom: 54px;
    }
}

@media (max-width: 600px) {
    .footer-logo {
        height: 42px;
        margin-bottom: 44px;
    }
}

.logo-placeholder {
    width: 100%;
    height: 100%;
    background: transparent;
}

.footer-divider {
    height: 1px;
    width: 100%;
    background-color: #FFFFFF;
    margin-bottom: 40px;
}

@media (max-width: 1279px) {
    .footer-divider {
        margin-bottom: 22px;
    }
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

@media (max-width: 1279px) {
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 39px;
    }
}

.footer-copyright {
    font-family: 'Inter', sans-serif;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 17px;
}

.footer-legal {
    display: flex;
    gap: 32px;
}

@media (max-width: 1279px) {
    .footer-legal {
        gap: 20px;
    }
}

.legal-link {
    font-family: 'Inter', sans-serif;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 17px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

@media (max-width: 1279px) {
    .legal-link {
        font-size: 14px;
        line-height: 15px;
    }
}

.legal-link:hover {
    opacity: 0.6;
}


