/* ================================
   CONTACT PAGE STYLES
   ================================ */

.contact-section {
    background: var(--color-bg);
    /*min-height: calc(100vh - 200px);*/
}

.contact-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 60px;
}

/* ================================
   LEFT SIDE - CONTACT INFO
   ================================ */

.contact-info {
    flex: 0 0 auto;
    max-width: 542px;
}

.contact-heading {
    font-family: var(--font-logo);
    font-style: normal;
    font-weight: 700;
    font-size: 68px;
    line-height: 64px;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.contact-description {
    font-family: var(--font-menu);
    font-style: normal;
    font-weight: 500;
    font-size: 22px;
    line-height: 30px;
    color: #E7E7E7;
    margin-bottom: 42px;
}

.contact-details {
    background: #4E30B3;
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-icon img {
    width: 60px;
    height: auto;
    object-fit: contain;
    margin-bottom: -15px;
}

.contact-text {
    font-family: var(--font-menu);
    font-style: normal;
    font-weight: 700;
    font-size: 30px;
    line-height: 38px;
    color: #FFFFFF;
    padding-top: 14px;
}

.contact-text a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.contact-text a:hover {
    color: var(--color-secondary);
}

/* ================================
   RIGHT SIDE - CONTACT FORM
   ================================ */

.contact-form-wrapper {
    flex: 1;
    background: #4E30B3;
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 53px 60px 81px 60px;
    max-width: 630px;
}

.form-title {
    font-family: var(--font-logo);
    font-style: normal;
    font-weight: 700;
    font-size: 48px;
    line-height: 48px;
    color: #FFFFFF;
    margin-bottom: 48px;
    text-align: center;
}

/* Contact Form 7 Styling */
.contact-form-wrapper .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form-wrapper .wpcf7-form p {
    margin: 0;
}

.contact-form-wrapper .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

/* Two Column Layout for Name/Email with .form-row wrapper */
.contact-form-wrapper .form-row {
    display: flex;
    flex-direction: row;
    gap: 16px;
}

.contact-form-wrapper .form-row p {
    flex: 1;
    margin: 0;
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.contact-form-wrapper input[type="text"],
.contact-form-wrapper input[type="email"],
.contact-form-wrapper input[type="tel"],
.contact-form-wrapper textarea {
    width: 100%;
    padding: 17px 32px;
    background: #FFFFFF;
    border-radius: 50px;
    border: none;
    font-family: var(--font-menu);
    font-style: normal;
    font-weight: 500;
    font-size: 22px;
    line-height: 120%;
    color: #AAAAAA;
    transition: var(--transition);
}

.contact-form-wrapper textarea {
    border-radius: 25px;
    height: 123px !important;
    resize: vertical;
    padding: 20px 24px;
}

.contact-form-wrapper input::placeholder,
.contact-form-wrapper textarea::placeholder {
    color: rgba(26, 26, 26, 0.4);
}

.contact-form-wrapper input:focus,
.contact-form-wrapper textarea:focus {
    outline: 2px solid var(--color-secondary);
}

/* Submit Button */
.contact-form-wrapper input[type="submit"],
.contact-form-wrapper button[type="submit"] {
    width: 100%;
    padding: 18px 24px;
    background: var(--color-secondary);
    border-radius: 50px;
    border: none;
    font-family: var(--font-menu);
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: #FFFFFF;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 8px;
}

.contact-form-wrapper input[type="submit"]:hover,
.contact-form-wrapper button[type="submit"]:hover {
    background: #FF8C3A;
    transform: translateY(-2px);
}

/* Form Messages */
.contact-form-wrapper .wpcf7-response-output {
    margin: 20px 0 0 0;
    padding: 16px 24px;
    border-radius: 15px;
    font-family: var(--font-menu);
    font-size: 16px;
    line-height: 24px;
}

.contact-form-wrapper .wpcf7-mail-sent-ok {
    background: rgba(0, 201, 32, 0.2);
    border: 2px solid #00C920;
    color: #FFFFFF;
}

.contact-form-wrapper .wpcf7-validation-errors,
.contact-form-wrapper .wpcf7-mail-sent-ng {
    background: rgba(255, 117, 24, 0.2);
    border: 2px solid var(--color-secondary);
    color: #FFFFFF;
}

.contact-form-wrapper .wpcf7-not-valid-tip {
    font-size: 14px;
    color: var(--color-secondary);
    margin-top: 8px;
}

.contact-form-wrapper .wpcf7-spinner {
    margin: 0 0 0 12px;
}

.no-form {
    font-family: var(--font-menu);
    font-size: 18px;
    color: #E7E7E7;
    text-align: center;
    padding: 40px 20px;
}

/* ================================
   RESPONSIVE - TABLET
   ================================ */

@media (max-width: 1024px) {
    .contact-wrapper {
        gap: 40px;
        flex-direction: column;
    }

    .contact-info, .contact-form-wrapper {
        max-width: 100%;
    }
    
    .contact-heading {
        font-size: 56px;
        line-height: 56px;
    }
    
    .contact-description {
        font-size: 20px;
        line-height: 28px;
    }
    
    .contact-details {
        padding: 36px 32px;
        gap: 14px;
    }
    
    .contact-form-wrapper {
        padding: 36px 32px;
    }
    
    .form-title {
        font-size: 40px;
        line-height: 44px;
    }
}

/* ================================
   RESPONSIVE - MOBILE
   ================================ */

@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    
    .contact-info {
        max-width: 100%;
        width: 100%;
    }
    
    .contact-heading {
        font-size: 48px;
        line-height: 48px;
        margin-bottom: 20px;
    }
    
    .contact-description {
        font-size: 18px;
        line-height: 26px;
        margin-bottom: 32px;
    }
    
    .contact-details {
        padding: 32px 24px;
        gap: 14px;
    }
    
    .contact-icon {
        width: 48px;
        height: 48px;
    }
    
    .contact-text {
        font-size: 18px;
        line-height: 26px;
        padding-top: 10px;
    }
    
    .contact-form-wrapper {
        max-width: 100%;
        padding: 32px 24px;
    }
    
    .form-title {
        font-size: 36px;
        line-height: 40px;
        margin-bottom: 28px;
    }
    
    /* Mobile: Name and Email stack vertically */
    .contact-form-wrapper .form-row {
        flex-direction: column;
    }
    
    .contact-form-wrapper input[type="text"],
    .contact-form-wrapper input[type="email"],
    .contact-form-wrapper input[type="tel"] {
        font-size: 16px;
        padding: 14px 20px;
    }
    
    .contact-form-wrapper textarea {
        font-size: 16px;
        padding: 16px 20px;
        min-height: 140px;
    }
    
    .contact-form-wrapper input[type="submit"],
    .contact-form-wrapper button[type="submit"] {
        font-size: 18px;
        padding: 16px 20px;
    }
}

@media (max-width: 480px) {
    .contact-heading {
        font-size: 40px;
        line-height: 44px;
    }
    
    .contact-description {
        font-size: 16px;
        line-height: 24px;
    }
    
    .contact-details {
        padding: 24px 20px;
        gap: 14px;
    }
    
    .contact-icon {
        width: 44px;
        height: 44px;
    }
    
    .contact-icon svg,
    .contact-icon img {
        width: 20px;
        height: 20px;
    }
    
    .contact-text {
        font-size: 16px;
        line-height: 24px;
    }
    
    .contact-form-wrapper {
        padding: 28px 20px;
    }
    
    .form-title {
        font-size: 32px;
        line-height: 36px;
    }
}