body {
    font-family: "Inter", sans-serif;
}

.contact-hero {
    margin-top: 130px;
    display: flex;
    min-height: 90vh;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.contact-left {
    display: flex;
    width: 50%;
    flex-direction: column;
    justify-content: center;
    flex: 1 1 450px;
}

.contact-left h3 {
    font-size: 70px;
    line-height: 1;
    margin-bottom: 30px;
    text-align: left;
}

.contact-left p {
    font-size: 20px;
    text-align: left;
    color: #ffffffa8;
    margin-bottom: 30px;
}

.contact-right-hero {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    align-items: flex-end;
    flex: 1 1 450px;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-feature {
    display: flex;
    background: transparent;
    width: min(400px, 100%);
    height: 100px;
    font-size: 72px;
    padding: 20px;
    border-radius: 15px;
    align-items: center;
    gap: 15px;
}

.hero-feature i {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffffcc;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.hero-feature-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.hero-feature-content h4 {
    font-size: 22.5px;
    line-height: 1;
}

.hero-feature-content p {
    font-size: 17.5px;
    line-height: 1;
    color: #ffffffa8;
    margin-bottom: 0px;
}

.contact-right {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: flex-end;
    flex: 1 1 450px;
    width: 50%;
}

.contact-form-container {
    width: min(500px, 100%);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(25px);
    border: 1px solid #181d1d;
    background: rgba(9, 9, 9, 0.3);
}

.contact-form-header {
    text-align: center;
    margin-bottom: 30px;
}

.contact-form-header h4 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #fff;
}

.contact-form-header p {
    color: #ffffffa8;
    font-size: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-input {
    width: 100%;
    padding: 15px 20px;
    background: rgba(24, 29, 29, 0.6);
    border: 1px solid #181d1d;
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #fff;
    box-shadow: 0 0 0 2px rgba(72, 184, 100, 0.2);
}

.form-input::placeholder {
    color: #ffffff66;
}

.form-textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(24, 29, 29, 0.6);
    border: 1px solid #181d1d;
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    resize: none;
    min-height: 120px;
    transition: all 0.3s ease;
}

.form-textarea:focus {
    outline: none;
    border-color: #fff;
    box-shadow: 0 0 0 2px rgba(72, 184, 100, 0.2);
}

.form-textarea::placeholder {
    color: #ffffff66;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: #fff;
}

.checkbox-label {
    font-size: 14px;
    color: #ffffffa8;
    line-height: 1.4;
}

.checkbox-label a {
    color: #fff;
    transition: all 0.3s ease;
}

.checkbox-label a:hover {
    text-shadow: 0 0 10px #fff;
}

.captcha-container {
    display: flex;
    justify-content: flex-start;
    padding: 20px 0px;
    width: 100%;
}

.cf-turnstile {
    width: 100%;
}

.submit-button {
    width: 100%;
    padding: 15px;
    background: transparent;
    border: 2px solid #fff;
    border-radius: 12px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    transform: scale(1.02);
}

@media (max-width: 1000px) {
    .contact-hero {
        gap: 70px;
        flex-direction: column;
    }

    .contact-left {
        min-height: 80vh;
    }

    .contact-left,
    .contact-right,
    .contact-right-hero {
        width: 100%;
        align-items: center;
    }

    .contact-left h3 {
        text-align: center;
        font-size: 50px;
    }

    .contact-left p {
        text-align: center;
    }

    
    .contact-form-container {
        width: min(400px, 100%);
    }

    .hero-feature {
        padding: 0 60px 0 20px;
        
    }


}

.notifications-container {
    position: fixed;
    top: 20px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
    align-items: flex-end;
    width: fit-content;
    margin: 0 20px;
}


.notification {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    border-radius: 12px;
    backdrop-filter: blur(25px);
    border: 1px solid #181d1d;
    background: rgba(9, 9, 9, 0.3);
    color: #fff;
    font-size: 16px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.5s ease-out forwards;
    width: min(100%, 430px);
    max-width: 100%;
}

.notification .icon {
    font-size: 24px;
    margin-right: 15px;
    flex-shrink: 0;
}

.notification .message {
    flex-grow: 1;
}

.notification .close-btn {
    font-size: 20px;
    margin-left: 15px;
    cursor: pointer;
    color: #ffffffa8;
    transition: color 0.2s ease;
}

.notification .close-btn:hover {
    color: #fff;
}

.notification.success {
    color: #fff;
}

.notification.error {
    color: #ff6347;
}


@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}