/* ═══════════════════════════════════════════════════════
   CONTACT US PAGE — DreamSoft
   Theme-consistent with style.css & theme.css
   ═══════════════════════════════════════════════════════ */

/* ── Shared Kicker ── */
.cu-kicker {
    display: inline-block;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.75rem;
    color: #7c3aed;
    margin-bottom: 12px;
}

/* ═══════════════════════════════════════════════════════
   HERO / PAGE HEADER
   ═══════════════════════════════════════════════════════ */
.cu-hero {
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg-light) 0%, #ffffff 100%);
}

.cu-hero-blob {
    position: absolute;
    border-radius: 9999px;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.cu-hero-blob--left {
    width: 500px;
    height: 500px;
    top: -200px;
    left: -200px;
    background: rgba(168, 85, 247, 0.14);
}

.cu-hero-blob--right {
    width: 600px;
    height: 600px;
    top: -150px;
    right: -250px;
    background: rgba(236, 72, 153, 0.10);
}

.cu-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cu-hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 18px;
    color: #0f172a;
}

.cu-hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

/* Breadcrumb */
.cu-hero-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.cu-hero-breadcrumb a {
    color: var(--primary-color);
    font-weight: 600;
    transition: color 0.2s;
}

.cu-hero-breadcrumb a:hover {
    color: #7c3aed;
}

.cu-breadcrumb-sep {
    color: rgba(148, 163, 184, 0.6);
    font-size: 1.1rem;
}

.cu-breadcrumb-current {
    font-weight: 600;
    color: var(--text-dark);
}

/* ═══════════════════════════════════════════════════════
   CONTACT INFO CARDS
   ═══════════════════════════════════════════════════════ */
.cu-info-section {
    padding: 0 0 80px;
    margin-top: -30px;
    position: relative;
    z-index: 2;
}

.cu-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.cu-info-card {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cu-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4338ca, #8b5cf6, #ec4899);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cu-info-card:hover {
    transform: translateY(-6px);
    border-color: rgba(168, 85, 247, 0.35);
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.14);
}

.cu-info-card:hover::before {
    opacity: 1;
}

.cu-info-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    box-shadow: 0 12px 26px -16px rgba(124, 58, 237, 0.5);
    transition: transform 0.3s ease;
}

.cu-info-card:hover .cu-info-card-icon {
    transform: scale(1.1);
}

.cu-icon-location {
    color: #e11d48;
    background: linear-gradient(135deg, rgba(225, 29, 72, 0.12), rgba(251, 146, 60, 0.10));
}

.cu-icon-phone {
    color: #0284c7;
    background: linear-gradient(135deg, rgba(2, 132, 199, 0.14), rgba(34, 211, 238, 0.10));
}

.cu-icon-email {
    color: #7c3aed;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.14), rgba(236, 72, 153, 0.10));
}

.cu-icon-clock {
    color: #ea580c;
    background: linear-gradient(135deg, rgba(234, 88, 12, 0.14), rgba(251, 191, 36, 0.10));
}

.cu-info-card-title {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.cu-info-card-text {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.7;
}

.cu-info-link {
    color: var(--primary-color);
    font-weight: 600;
    transition: color 0.2s;
}

.cu-info-link:hover {
    color: #7c3aed;
}

/* Open/Closed Badge */
.cu-info-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 14px;
}

.cu-badge-open {
    color: #065f46;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.cu-badge-closed {
    color: #991b1b;
    background: rgba(239, 68, 68, 0.10);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.cu-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.cu-badge-open .cu-status-dot {
    background: #10b981;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
    animation: cu-pulse-dot 2s ease-in-out infinite;
}

.cu-badge-closed .cu-status-dot {
    background: #ef4444;
}

@keyframes cu-pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.3);
    }
}

/* ═══════════════════════════════════════════════════════
   CONTACT FORM + MAP SECTION
   ═══════════════════════════════════════════════════════ */
.cu-main-section {
    padding: 90px 0;
    position: relative;
    overflow: hidden;
    background: var(--bg-light);
}

.cu-main-blob {
    position: absolute;
    border-radius: 9999px;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.cu-main-blob--left {
    width: 500px;
    height: 500px;
    top: -150px;
    left: -200px;
    background: rgba(168, 85, 247, 0.12);
}

.cu-main-blob--right {
    width: 600px;
    height: 600px;
    bottom: -180px;
    right: -200px;
    background: rgba(59, 130, 246, 0.10);
}

.cu-main-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 40px;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* ── Contact Form ── */
.cu-form-wrapper {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 24px;
    padding: 44px 40px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.cu-form-wrapper .section-heading {
    margin-bottom: 8px;
}

.cu-form-intro {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 28px;
}

.cu-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cu-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.cu-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cu-form-group--full {
    grid-column: 1 / -1;
}

.cu-label {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text-dark);
}

.cu-required {
    color: #e11d48;
}

.cu-input-wrap {
    position: relative;
}

.cu-input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(148, 163, 184, 0.7);
    pointer-events: none;
    z-index: 2;
}

.cu-textarea-icon {
    top: 18px;
    transform: none;
}

.cu-input {
    width: 100%;
    padding: 12px 14px 12px 42px;
    border: 1.5px solid rgba(226, 232, 240, 0.9);
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background: #ffffff;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    outline: none;
}

.cu-input::placeholder {
    color: rgba(148, 163, 184, 0.6);
}

.cu-input:focus {
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.12);
}

.cu-input.cu-error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.10);
}

.cu-select {
    appearance: none;
    cursor: pointer;
    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='%2394a3b8' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.cu-textarea {
    resize: vertical;
    min-height: 120px;
    padding-top: 14px;
}

.cu-submit-btn {
    align-self: flex-start;
    gap: 10px;
    min-width: 200px;
}

.cu-submit-icon {
    transition: transform 0.3s ease;
}

.cu-submit-btn:hover .cu-submit-icon {
    transform: translateX(4px) translateY(-4px);
}

/* Success Message */
.cu-success-message {
    text-align: center;
    padding: 48px 24px;
}

.cu-success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981, #34d399);
    color: #fff;
    font-size: 1.8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.35);
}

.cu-success-message h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.cu-success-message p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

/* ── Sidebar ── */
.cu-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cu-sidebar-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.cu-sidebar-title svg {
    color: #7c3aed;
}

/* Map Card */
.cu-map-card {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.cu-map-container {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.5);
}

.cu-map-container iframe {
    display: block;
    border-radius: 14px;
}

/* Quick Contact Card */
.cu-quick-card {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.cu-quick-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cu-quick-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 14px;
    background: var(--bg-light);
    border: 1px solid rgba(226, 232, 240, 0.6);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.cu-quick-item:hover {
    transform: translateY(-2px);
    border-color: rgba(168, 85, 247, 0.35);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.cu-quick-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.cu-quick-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-light);
    display: block;
}

.cu-quick-value {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-dark);
    display: block;
}

/* Social Card */
.cu-social-card {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.cu-social-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.cu-social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.82rem;
    border: 1px solid rgba(226, 232, 240, 0.6);
    transition: all 0.25s ease;
}

.cu-social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.cu-social-fb {
    color: #1877F2;
    background: rgba(24, 119, 242, 0.06);
}

.cu-social-fb:hover {
    background: rgba(24, 119, 242, 0.12);
    border-color: rgba(24, 119, 242, 0.35);
}

.cu-social-ig {
    color: #E4405F;
    background: rgba(228, 64, 95, 0.06);
}

.cu-social-ig:hover {
    background: rgba(228, 64, 95, 0.12);
    border-color: rgba(228, 64, 95, 0.35);
}

.cu-social-li {
    color: #0A66C2;
    background: rgba(10, 102, 194, 0.06);
}

.cu-social-li:hover {
    background: rgba(10, 102, 194, 0.12);
    border-color: rgba(10, 102, 194, 0.35);
}

.cu-social-yt {
    color: #FF0000;
    background: rgba(255, 0, 0, 0.06);
}

.cu-social-yt:hover {
    background: rgba(255, 0, 0, 0.12);
    border-color: rgba(255, 0, 0, 0.35);
}

/* ═══════════════════════════════════════════════════════
   WHY CONTACT SECTION
   ═══════════════════════════════════════════════════════ */
.cu-why-section {
    padding: 90px 0;
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border-top: 1px solid #f1f5f9;
}

.cu-why-header {
    max-width: 700px;
    margin: 0 auto 50px;
}

.cu-why-header .section-heading {
    margin-bottom: 0;
}

.cu-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.cu-why-card {
    background: var(--bg-light);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 20px;
    padding: 32px 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.cu-why-card:hover {
    transform: translateY(-6px);
    border-color: rgba(168, 85, 247, 0.35);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
}

.cu-why-card-number {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #a855f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 14px;
    line-height: 1;
}

.cu-why-card h3 {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.cu-why-card p {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.7;
}

.cu-gradient-cta-section {
    padding: 90px 0;
    background: #ffffff;
    border-top: 1px solid #f1f5f9;
}

.cu-gradient-cta {
    background: linear-gradient(135deg, #4338ca 0%, #7c3aed 40%, #a855f7 70%, #ec4899 100%);
    border-radius: 28px;
    padding: 58px 46px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(124, 58, 237, 0.28);
}

.cu-gradient-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(400px circle at 20% 30%, rgba(255, 255, 255, 0.12), transparent 60%),
        radial-gradient(300px circle at 80% 70%, rgba(255, 255, 255, 0.08), transparent 50%);
}

.cu-gradient-cta .cu-kicker,
.cu-gradient-cta-heading,
.cu-gradient-cta-text,
.cu-gradient-cta-actions {
    position: relative;
    z-index: 1;
}

.cu-gradient-cta .cu-kicker {
    color: rgba(255, 255, 255, 0.92);
}

.cu-gradient-cta-heading {
    color: #ffffff;
    font-size: 2.3rem;
    line-height: 1.24;
    font-weight: 800;
    margin-bottom: 16px;
}

.cu-gradient-cta-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.04rem;
    line-height: 1.75;
    max-width: 840px;
    margin: 0 auto 26px;
}

.cu-gradient-cta-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.cu-btn-gradient-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 34px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.45);
    color: #ffffff;
    background: transparent;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.18);
    transition: all 0.3s ease;
}

.cu-btn-gradient-outline:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.22);
}

.cu-faq-section {
    padding: 90px 0;
    background: #ffffff;
}

.cu-faq-header {
    max-width: 760px;
    margin: 0 auto 50px;
}

.cu-faq-list {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cu-faq-item {
    background: var(--bg-light);
    border-radius: 14px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    overflow: hidden;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.cu-faq-item.is-open {
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.cu-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.04rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: left;
}

.cu-faq-chevron {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--text-light);
}

.cu-faq-item.is-open .cu-faq-chevron {
    transform: rotate(180deg);
    color: #7c3aed;
}

.cu-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.cu-faq-item.is-open .cu-faq-answer {
    max-height: 300px;
}

.cu-faq-answer p {
    margin: 0;
    padding: 0 24px 20px;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════
   FULL WIDTH MAP
   ═══════════════════════════════════════════════════════ */
.cu-fullmap-section {
    position: relative;
    overflow: hidden;
    background: var(--bg-light);
}

.cu-fullmap-header {
    padding: 60px 0 30px;
}

.cu-fullmap-header .section-heading {
    margin-bottom: 12px;
}

.cu-fullmap-address {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
}

.cu-fullmap-wrap {
    width: 100%;
    line-height: 0;
}

.cu-fullmap-wrap iframe {
    width: 100%;
    display: block;
}

/* ═══════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════ */
.cu-cta-section {
    background: var(--bg-light);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #f1f5f9;
}

.cu-cta-section::before {
    content: '';
    position: absolute;
    right: -15%;
    top: -30%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(124, 58, 237, 0.1);
    filter: blur(80px);
    pointer-events: none;
}

.cu-cta-section::after {
    content: '';
    position: absolute;
    left: -10%;
    bottom: -20%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(168, 85, 247, 0.08);
    filter: blur(80px);
    pointer-events: none;
}

.cu-cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.cu-cta-content {
    flex: 1;
    max-width: 600px;
}

.cu-cta-heading {
    color: var(--text-dark);
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.cu-cta-text {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 28px;
}

.cu-cta-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0 0 28px;
}

.cu-cta-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.65;
}

.cu-cta-list-icon {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: rgba(124, 58, 237, 0.12);
    color: #7c3aed;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.cu-cta-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    color: #475569;
    border: 2px solid #cbd5e1;
    background: #ffffff;
    transition: all 0.3s ease;
}

.btn-cta-outline:hover {
    color: #7c3aed;
    border-color: #7c3aed;
    box-shadow: 0 10px 20px -5px rgba(124, 58, 237, 0.15);
    transform: translateY(-2px);
}

/* CTA Visual */
.cu-cta-visual {
    position: relative;
    width: 280px;
    height: 280px;
    flex-shrink: 0;
}

.cu-cta-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px dashed rgba(124, 58, 237, 0.15);
}

.cu-cta-ring--outer {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    animation: cu-spin 30s linear infinite;
}

.cu-cta-ring--inner {
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
    border-color: rgba(168, 85, 247, 0.2);
    animation: cu-spin 20s linear infinite reverse;
}

@keyframes cu-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.cu-cta-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.5);
}

.cu-cta-emoji {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cu-cta-float {
    position: absolute;
    background: rgba(124, 58, 237, 0.1);
    backdrop-filter: blur(8px);
    padding: 8px 16px;
    border-radius: 12px;
    color: #7c3aed;
    font-weight: 700;
    font-size: 0.82rem;
    border: 1px solid rgba(124, 58, 237, 0.2);
    animation: cu-float 4s ease-in-out infinite;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.cu-cta-float-icon {
    width: 20px;
    height: 20px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(124, 58, 237, 0.16);
}

.cu-cta-float--1 {
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.cu-cta-float--2 {
    bottom: 20px;
    left: 10px;
    animation-delay: 1.3s;
}

.cu-cta-float--3 {
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    animation-delay: 2.6s;
}

@keyframes cu-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .cu-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cu-main-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .cu-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .cu-hero-title {
        font-size: 2.2rem;
    }

    .cu-cta-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .cu-cta-actions {
        justify-content: center;
    }

    .cu-cta-list {
        text-align: left;
    }

    .cu-cta-visual {
        width: 220px;
        height: 220px;
    }

    .cu-cta-heading {
        font-size: 2rem;
    }

    .cu-gradient-cta-heading {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .cu-hero {
        padding: 60px 0 50px;
    }

    .cu-info-section {
        padding: 0 0 60px;
    }

    .cu-main-section,
    .cu-why-section,
    .cu-gradient-cta-section,
    .cu-faq-section {
        padding: 70px 0;
    }

    .cu-form-wrapper {
        padding: 32px 24px;
    }

    .cu-form-row {
        grid-template-columns: 1fr;
    }

    .cu-social-links {
        grid-template-columns: 1fr;
    }

    .cu-cta-section {
        padding: 60px 0;
    }

    .cu-cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .cu-cta-actions .btn,
    .cu-cta-actions .btn-cta-outline {
        width: 100%;
        justify-content: center;
    }

    .cu-gradient-cta {
        padding: 44px 24px;
    }

    .cu-gradient-cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .cu-gradient-cta-actions .btn,
    .cu-gradient-cta-actions .cu-btn-gradient-outline {
        width: 100%;
        justify-content: center;
    }

    .cu-faq-question {
        padding: 18px 18px;
        font-size: 0.98rem;
    }

    .cu-faq-answer p {
        padding: 0 18px 18px;
    }
}

@media (max-width: 480px) {
    .cu-hero-title {
        font-size: 1.8rem;
    }

    .cu-info-grid {
        grid-template-columns: 1fr;
    }

    .cu-why-grid {
        grid-template-columns: 1fr;
    }

    .cu-cta-visual {
        display: none;
    }

    .cu-cta-heading {
        font-size: 1.6rem;
    }

    .cu-gradient-cta-heading {
        font-size: 1.55rem;
    }
}
