        /* ===== SECTION 1: CONTACT FORM + DETAILS ===== */
        .contact-section {
            padding: 90px 0;
            background: #fff;
            position: relative;
            overflow: hidden;
        }
        .contact-section::before {
            content: '';
            position: absolute; top: -120px; right: -120px;
            width: 350px; height: 350px; border-radius: 50%;
            background: radial-gradient(circle, rgba(30,58,95,0.04) 0%, transparent 70%);
        }
        .contact-section::after {
            content: '';
            position: absolute; bottom: -100px; left: -100px;
            width: 300px; height: 300px; border-radius: 50%;
            background: radial-gradient(circle, rgba(191,26,46,0.03) 0%, transparent 70%);
        }

        /* Form side */
        .cf-wrapper {
            background: #fff;
            border-radius: 16px;
            padding: 40px 36px;
            box-shadow: 0 8px 35px rgba(15,23,42,0.08);
            border: 1px solid rgba(30,58,95,0.06);
            position: relative;
            z-index: 2;
        }
        .cf-wrapper h3 {
            font-family: var(--font);
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 6px;
        }
        .cf-wrapper .cf-sub {
            font-family: var(--font);
            font-size: 14px;
            color: #707070;
            margin-bottom: 28px;
        }
        .cf-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 16px;
        }
        .cf-field {
            display: flex;
            flex-direction: column;
        }
        .cf-field.full { grid-column: span 2; }
        .cf-field label {
            font-family: var(--font);
            font-size: 12px;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 6px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .cf-field input,
        .cf-field select,
        .cf-field textarea {
            font-family: var(--font);
            font-size: 14px;
            padding: 12px 16px;
            border: 1px solid rgba(30,58,95,0.12);
            border-radius: 8px;
            background: #f8f9fc;
            color: var(--dark);
            transition: all 0.3s;
            outline: none;
        }
        .cf-field input:focus,
        .cf-field select:focus,
        .cf-field textarea:focus {
            border-color: var(--primary-light);
            background: #fff;
            box-shadow: 0 0 0 3px rgba(74,111,165,0.1);
        }
        .cf-field input::placeholder,
        .cf-field textarea::placeholder {
            color: #aaa;
        }
        .cf-field textarea {
            min-height: 130px;
            resize: vertical;
        }
        .cf-field select {
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpolyline points='6,9 12,15 18,9'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 14px center;
            padding-right: 36px;
        }
        .btn-send {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 13px 32px;
            background: var(--primary);
            color: #fff;
            border: none;
            border-radius: 8px;
            font-family: var(--font);
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 8px;
        }
        .btn-send:hover {
            background: var(--primary-light);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(30,58,95,0.3);
        }

        /* Details side */
        .cd-wrapper {
            background: linear-gradient(145deg, #edf1f8, #e4eaf4);
            border: 1px solid rgba(30,58,95,0.08);
            border-radius: 16px;
            padding: 40px 36px;
            height: 100%;
            position: relative;
            z-index: 2;
        }
        .cd-wrapper h3 {
            font-family: var(--font);
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 10px;
        }
        .cd-wrapper .cd-sub {
            font-family: var(--font);
            font-size: 14px;
            color: #505050;
            line-height: 1.7;
            margin-bottom: 28px;
        }
        .cd-items {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .cd-item {
            display: flex;
            align-items: flex-start;
            gap: 14px;
        }
        .cd-item-icon {
            width: 42px;
            height: 42px;
            border-radius: 10px;
            background: var(--primary);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            flex-shrink: 0;
        }
        .cd-item-text {
            font-family: var(--font);
        }
        .cd-item-text span {
            display: block;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--primary-light);
            margin-bottom: 3px;
        }
        .cd-item-text a,
        .cd-item-text p {
            font-size: 14.5px;
            color: var(--dark);
            text-decoration: none;
            margin: 0;
            line-height: 1.5;
            transition: color 0.3s;
        }
        .cd-item-text a:hover { color: var(--accent); }
        .cd-socials {
            margin-top: 28px;
            padding-top: 22px;
            border-top: 1px solid rgba(30,58,95,0.1);
        }
        .cd-socials span {
            font-family: var(--font);
            font-size: 13px;
            font-weight: 600;
            color: var(--dark);
            margin-right: 12px;
        }
        .cd-socials a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            border-radius: 10px;
            background: var(--primary);
            color: #fff;
            font-size: 15px;
            text-decoration: none;
            transition: all 0.3s;
            margin-right: 8px;
        }
        .cd-socials a:hover {
            background: var(--accent);
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgba(191,26,46,0.3);
        }

        /* ===== FAQ SECTION ===== */
        .faq-section {
            padding: 90px 0;
            background: #fff;
            position: relative;
        }
        .faq-header {
            text-align: center;
            margin-bottom: 50px;
        }
        .faq-header .section-divider { justify-content: center; }
        .faq-header p {
            font-family: var(--font); font-size: 15px; color: #606060;
            max-width: 550px; margin: 14px auto 0;
        }
        .faq-grid {
            max-width: 850px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .faq-item {
            background: #f8f9fc;
            border: 1px solid rgba(30,58,95,0.06);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s;
        }
        .faq-item:hover {
            box-shadow: 0 6px 20px rgba(15,23,42,0.06);
        }
        .faq-item.active {
            border-color: rgba(74,111,165,0.2);
            box-shadow: 0 6px 20px rgba(15,23,42,0.06);
        }
        .faq-q {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 24px;
            cursor: pointer;
            gap: 16px;
            user-select: none;
        }
        .faq-q h5 {
            font-family: var(--font);
            font-size: 15px;
            font-weight: 600;
            color: var(--dark);
            margin: 0;
        }
        .faq-item.active .faq-q h5 { color: var(--primary); }
        .faq-q-icon {
            width: 32px; height: 32px;
            border-radius: 8px;
            background: rgba(30,58,95,0.07);
            display: flex; align-items: center; justify-content: center;
            font-size: 13px; color: var(--primary-light);
            flex-shrink: 0;
            transition: all 0.3s;
        }
        .faq-item.active .faq-q-icon {
            background: var(--primary);
            color: #fff;
            transform: rotate(180deg);
        }
        .faq-a {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.3s ease;
        }
        .faq-item.active .faq-a {
            max-height: 300px;
        }
        .faq-a-inner {
            padding: 0 24px 20px;
            font-family: var(--font);
            font-size: 14px;
            line-height: 1.8;
            color: #606060;
        }

        /* ===== CTA STRIP ===== */
        .ct-cta {
            padding: 55px 0;
            background: var(--gradient-1);
            position: relative; overflow: hidden;
        }
        .ct-cta::before {
            content: '';
            position: absolute; inset: 0;
            background: radial-gradient(ellipse at 30% 50%, rgba(74,111,165,0.15) 0%, transparent 60%);
        }
        .ct-cta .container { position: relative; z-index: 2; }
        .ct-cta p { font-family: var(--font); font-size: 15px; line-height: 1.8; color: rgba(255,255,255,0.85); margin: 0; }
        .btn-cta-outline-w {
            display: inline-flex; align-items: center; gap: 8px;
            padding: 13px 30px; background: transparent;
            border: 2px solid rgba(255,255,255,0.5); color: #fff;
            border-radius: 6px; font-family: var(--font); font-size: 14px; font-weight: 500;
            text-decoration: none; transition: all 0.3s; white-space: nowrap;
        }
        .btn-cta-outline-w:hover {
            background: #fff; color: var(--dark); border-color: #fff;
            transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        }

        /* ===== PARTNERSHIP ===== */
        .ct-partners {
            padding: 90px 0;
            background: #fff;
        }
        .ct-partners-desc { font-family: var(--font); font-size: 15px; line-height: 1.85; color: #505050; }
        .ct-partners-grid {
            display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px;
        }
        .ct-partner-logo {
            background: #f8f9fc; border: 1px solid rgba(30,58,95,0.06); border-radius: 12px;
            padding: 22px 16px; display: flex; align-items: center; justify-content: center;
            min-height: 90px; transition: all 0.3s;
        }
        .ct-partner-logo:hover {
            box-shadow: 0 8px 25px rgba(15,23,42,0.08); transform: translateY(-3px);
            border-color: rgba(30,58,95,0.12);
        }
        .ct-partner-logo img {
            max-width: 100%; max-height: 45px; object-fit: contain;
            filter: grayscale(40%); opacity: 0.85; transition: all 0.3s;
        }
        .ct-partner-logo:hover img { filter: grayscale(0%); opacity: 1; }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 991px) {
            .cd-wrapper { margin-top: 20px; }
            .ct-partners-grid { grid-template-columns: repeat(3, 1fr); }
        }
        @media (max-width: 768px) {
            .cf-row { grid-template-columns: 1fr; }
            .cf-field.full { grid-column: span 1; }
            .ct-partners-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 576px) {
            .cf-wrapper { padding: 28px 22px; }
            .cd-wrapper { padding: 28px 22px; }
        }

/* ===== CF7 Integration Overrides ===== */
.cf-wrapper .wpcf7 { margin: 0; }
.cf-wrapper .wpcf7-form-control-wrap { display: block; }
.cf-wrapper .wpcf7 input[type="text"],
.cf-wrapper .wpcf7 input[type="email"],
.cf-wrapper .wpcf7 input[type="tel"],
.cf-wrapper .wpcf7 select,
.cf-wrapper .wpcf7 textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Ubuntu', sans-serif;
    background: #f8f8fa;
    color: #222;
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
}
.cf-wrapper .wpcf7 input:focus,
.cf-wrapper .wpcf7 select:focus,
.cf-wrapper .wpcf7 textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.10);
    background: #fff;
}
.cf-wrapper .wpcf7 textarea { min-height: 120px; resize: vertical; }
.cf-wrapper .wpcf7 select { appearance: auto; }
.cf-wrapper .wpcf7-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 38px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Ubuntu', sans-serif;
    cursor: pointer;
    transition: background 0.3s, box-shadow 0.3s;
    margin-top: 8px;
}
.cf-wrapper .wpcf7-submit:hover {
    background: #a01525;
    box-shadow: 0 4px 16px rgba(191,26,46,0.15);
}
.cf-wrapper .wpcf7-not-valid-tip {
    font-size: 12px;
    color: var(--accent);
    margin-top: 4px;
}
.cf-wrapper .wpcf7-response-output {
    border-radius: 8px;
    margin: 16px 0 0;
    padding: 12px 16px;
    font-size: 14px;
}
.cf-wrapper .wpcf7 .cf-row { margin-bottom: 0; }
.cf-wrapper .wpcf7 .cf-field label { display: block; margin-bottom: 6px; }
.cf-wrapper .wpcf7-spinner { display: none; }
