:root {
    --primary: #0e1f30;
    --secondary: #0e1f30;
    --heading: #111827;
    --body: #4B5563;
    --white: #fff;
    --border: #E5E7EB;
}

.contact-hero {
    background: var(--hero-bg, #f8f9fa);
    padding: 100px 0;
	background-image: radial-gradient(1200px 600px at 80% -10%, lab(76.423% -41.3108 54.1025 / .18), transparent 60%), radial-gradient(900px 500px at 0% 0%, lab(11.1223% -2.33959 -13.6099 / .06), transparent 60%);
}

.contact-hero .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.contact-hero-title {
    max-width: 900px;
    font-size: 36px;
    line-height: 1.1;
    font-weight: 600;
    margin-bottom: 24px;
}

.contact-hero-description {
    max-width: 750px;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #6b7280;
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 70px 0;
    }

    .contact-hero-title {
        font-size: 2.5rem;
    }

    .contact-hero-description {
        font-size: 1rem;
    }
}

.contact-form-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
}

.contact-form-card,
.contact-info-card,
.contact-process-card,
.contact-careers-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 32px;
}

.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cf7-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}

.cf7-full {
    margin-top: 20px;
}

.cf7-submit {
    margin-top: 25px;
}

.cf7-submit input[type="submit"] {
    padding: 14px 28px;
    border: 0;
    border-radius: 8px;
    cursor: pointer;
}

.process-list {
    list-style: none;
    margin: 20px 0 0;
    padding: 0;
}

.process-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.step-number {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .cf7-grid {
        grid-template-columns: 1fr;
    }
}
.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 20px;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field label {
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #1f2937;
}

.form-field label span {
    color: #dc2626;
}

.full-width {
    margin-top: 24px;
}

.wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.contact-form-grid input,
.contact-form-grid select,
.full-width textarea {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: #fff;
    font-size: 14px;
    box-sizing: border-box;
}

.full-width textarea {
    height: 140px;
    padding: 14px;
    resize: vertical;
}

.contact-form-grid input:focus,
.contact-form-grid select:focus,
.full-width textarea:focus {
    outline: none;
    border-color: #0ea5e9;
    box-shadow: 0 0 0 3px rgba(14,165,233,.15);
}

.contact-submit {
    margin-top: 30px;
}

.contact-submit .wpcf7-submit {
    background: #111827;
    color: #fff;
    border: 0;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

.contact-submit .wpcf7-submit:hover {
    opacity: .9;
}

.wpcf7-spinner {
    display: none;
}

@media (max-width: 768px) {

    .contact-form-grid {
        grid-template-columns: 1fr;
    }

}

.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 32px;
}

.sidebar-secondary {
    background: #f8fafc;
}

.sidebar-card h3 {
    margin: 0;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 700;
    color: #111827;
}

/* Contact Items */

.contact-list {
    margin-top: 24px;
}

.contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #82d04f26;
    color: #82d04f;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
}

.contact-item .label {
    display: block;
    margin-bottom: 5px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #6b7280;
    font-weight: 600;
}

.contact-item a {
    color: #111827;
    font-weight: 600;
    text-decoration: none;
    transition: .3s ease;
}

.contact-item a:hover {
    color: #0062ff;
}

/* Steps */

.steps-list {
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.steps-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 18px;
}

.steps-list li:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background: #82d04f;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.steps-list p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #6b7280;
}

/* Careers */

.career-text {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.8;
    color: #6b7280;
}

.career-text a {
    color: #111827;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: .3s ease;
}

.career-text a:hover {
    border-color: currentColor;
}

/* Responsive */

@media (max-width: 768px) {
    .sidebar-card {
        padding: 24px;
    }

    .sidebar-card h3 {
        font-size: 20px;
    }
}