 *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        :root {
            --orange: #FF6B00;
            --orange-light: #FF8C33;
            --orange-glow: rgba(255, 107, 0, 0.10);
            --orange-border: rgba(255, 107, 0, 0.22);
            --dark-text: #1A1C24;
            --body-text: #4A5060;
            --muted: #8A919E;
            --white: #FFFFFF;
            --surface: #F7F8FA;
            --border: #E8EAED;
            --font-display: 'Inter', sans-serif;
            --font-body: 'Inter', sans-serif;
        }

        body {
            background: var(--white);
            color: var(--dark-text);
            font-family: var(--font-body);
            overflow-x: hidden;
        }

        /* ════════════════════════════════
       SECTION 1 — HERO
    ════════════════════════════════ */
        .crevofyworks-contact-hero {
            position: relative;
            padding: 96px 60px 80px;
            overflow: hidden;
            background: var(--white);
        }

        .crevofyworks-contact-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(255, 107, 0, 0.04) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 107, 0, 0.04) 1px, transparent 1px);
            background-size: 48px 48px;
            pointer-events: none;
        }

        .crevofyworks-contact-hero::after {
            content: '';
            position: absolute;
            top: -80px;
            right: -100px;
            width: 560px;
            height: 560px;
            background: radial-gradient(circle, rgba(255, 107, 0, 0.08) 0%, transparent 68%);
            pointer-events: none;
        }

        .crevofyworks-contact-hero-inner {
            max-width: 1100px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 64px;
        }

        /* badge */
        .crevofyworks-contact-hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--orange-glow);
            border: 1px solid var(--orange-border);
            color: var(--orange);
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            padding: 6px 16px;
            border-radius: 100px;
            margin-bottom: 22px;
        }

        .crevofyworks-contact-hero-badge-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--orange);
            animation: cfpulse 1.6s ease-in-out infinite;
        }

        @keyframes cfpulse {

            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }

            50% {
                opacity: 0.35;
                transform: scale(0.65);
            }
        }

        .crevofyworks-contact-hero-title {
            font-family: var(--font-display);
            font-size: clamp(2.4rem, 4.5vw, 3.8rem);
            font-weight: 800;
            line-height: 1.07;
            letter-spacing: -1.5px;
            margin-bottom: 20px;
        }

        .crevofyworks-contact-hero-title span {
            color: var(--orange);
        }

        .crevofyworks-contact-hero-sub {
            color: var(--body-text);
            font-size: 1rem;
            line-height: 1.7;
            max-width: 420px;
            margin-bottom: 40px;
        }

        /* stats */
        .crevofyworks-contact-hero-stats {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
            align-items: center;
        }

        .crevofyworks-contact-hero-stat {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .crevofyworks-contact-hero-stat-num {
            font-family: var(--font-display);
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--orange);
            line-height: 1;
        }

        .crevofyworks-contact-hero-stat-label {
            font-size: 0.76rem;
            color: var(--muted);
            font-weight: 500;
        }

        .crevofyworks-contact-hero-stat-divider {
            width: 1px;
            height: 40px;
            background: var(--border);
        }

        /* right floating cards */
        .crevofyworks-contact-hero-visual {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .crevofyworks-contact-hero-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 18px 22px;
            display: flex;
            align-items: center;
            gap: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .crevofyworks-contact-hero-card:hover {
            transform: translateX(7px);
            box-shadow: 0 8px 28px rgba(255, 107, 0, 0.1);
        }

        .crevofyworks-contact-hero-card-icon {
            width: 46px;
            height: 46px;
            flex-shrink: 0;
            background: var(--orange);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1rem;
        }

        .crevofyworks-contact-hero-card-label {
            font-size: 0.68rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--muted);
            margin-bottom: 3px;
        }

        .crevofyworks-contact-hero-card-value {
            font-weight: 700;
            font-size: 0.92rem;
            color: var(--dark-text);
        }

        .crevofyworks-contact-hero-card-value a {
            color: inherit;
            text-decoration: none;
            transition: color 0.2s;
        }

        .crevofyworks-contact-hero-card-value a:hover {
            color: var(--orange);
        }

        /* social strip */
        .crevofyworks-contact-hero-socials {
            background: var(--orange-glow);
            border: 1px solid var(--orange-border);
            border-radius: 14px;
            padding: 16px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
        }

        .crevofyworks-contact-hero-socials-label {
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            color: var(--body-text);
            white-space: nowrap;
        }

        .crevofyworks-contact-hero-socials-icons {
            display: flex;
            gap: 10px;
        }

        .crevofyworks-contact-hero-social-link {
            width: 36px;
            height: 36px;
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--body-text);
            font-size: 0.88rem;
            text-decoration: none;
            transition: all 0.2s;
        }

        .crevofyworks-contact-hero-social-link:hover {
            background: var(--orange);
            border-color: var(--orange);
            color: var(--white);
            transform: translateY(-2px);
        }

        /* ════════════════════════════════
       SECTION 2 — MAP + FORM
    ════════════════════════════════ */
        .crevofyworks-contact-section2 {
            background: var(--surface);
            padding: 80px 60px 100px;
        }

        .crevofyworks-contact-section2-inner {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.35fr;
            gap: 36px;
            align-items: stretch;
        }

        /* MAP */
        .crevofyworks-contact-map-wrap {
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid var(--border);
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
            min-height: 500px;
            position: relative;
        }

        .crevofyworks-contact-map-wrap iframe {
            width: 100%;
            height: 100%;
            border: none;
            display: block;
            min-height: 500px;
        }

        .crevofyworks-contact-map-badge {
            position: absolute;
            bottom: 20px;
            left: 20px;
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 10px 16px;
            display: flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
            z-index: 10;
        }

        .crevofyworks-contact-map-badge-icon {
            width: 32px;
            height: 32px;
            background: var(--orange);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 0.82rem;
        }

        .crevofyworks-contact-map-badge-text strong {
            display: block;
            font-size: 0.82rem;
            font-weight: 700;
            color: var(--dark-text);
        }

        .crevofyworks-contact-map-badge-text span {
            font-size: 0.72rem;
            color: var(--muted);
        }

        /* FORM */
        .crevofyworks-contact-form-wrap {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 44px 40px 48px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
        }

        .crevofyworks-contact-form-head {
            font-family: var(--font-display);
            font-size: 1.4rem;
            font-weight: 800;
            letter-spacing: -0.3px;
            margin-bottom: 6px;
        }

        .crevofyworks-contact-form-sub {
            color: var(--body-text);
            font-size: 0.85rem;
            margin-bottom: 28px;
        }

        .crevofyworks-contact-form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 18px;
            margin-bottom: 18px;
        }

        .crevofyworks-contact-form-group {
            display: flex;
            flex-direction: column;
            gap: 7px;
            margin-bottom: 18px;
        }

        .crevofyworks-contact-form-label {
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--dark-text);
        }

        .crevofyworks-contact-form-input,
        .crevofyworks-contact-form-textarea,
        .crevofyworks-contact-form-select {
            width: 100%;
            background: var(--surface);
            border: 1.5px solid var(--border);
            border-radius: 10px;
            padding: 12px 15px;
            font-family: var(--font-body);
            font-size: 0.88rem;
            color: var(--dark-text);
            outline: none;
            transition: border-color 0.2s, box-shadow 0.2s;
            appearance: none;
        }

        .crevofyworks-contact-form-input::placeholder,
        .crevofyworks-contact-form-textarea::placeholder {
            color: var(--muted);
        }

        .crevofyworks-contact-form-input:focus,
        .crevofyworks-contact-form-textarea:focus,
        .crevofyworks-contact-form-select:focus {
            border-color: var(--orange);
            box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
            background: var(--white);
        }

        .crevofyworks-contact-form-textarea {
            resize: vertical;
            min-height: 110px;
        }

        .crevofyworks-contact-form-select {
            cursor: pointer;
            color: var(--body-text);
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238A919E' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 14px center;
            padding-right: 38px;
            background-color: var(--surface);
        }

        /* chips */
        .crevofyworks-contact-form-chips {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 2px;
        }

        .crevofyworks-contact-form-chip {
            padding: 6px 14px;
            border: 1.5px solid var(--border);
            border-radius: 100px;
            font-size: 0.78rem;
            font-weight: 600;
            color: var(--body-text);
            cursor: pointer;
            transition: all 0.18s;
            user-select: none;
            background: var(--white);
        }

        .crevofyworks-contact-form-chip:hover {
            border-color: var(--orange);
            color: var(--orange);
        }

        .crevofyworks-contact-form-chip.selected {
            background: var(--orange);
            border-color: var(--orange);
            color: var(--white);
        }

        /* submit */
        .crevofyworks-contact-form-submit {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
            margin-top: 8px;
            background: var(--orange);
            color: var(--white);
            border: none;
            cursor: pointer;
            padding: 15px;
            border-radius: 10px;
            font-family: var(--font-body);
            font-size: 0.92rem;
            font-weight: 700;
            letter-spacing: 0.3px;
            transition: all 0.22s;
        }

        .crevofyworks-contact-form-submit:hover {
            background: var(--orange-light);
            transform: translateY(-2px);
            box-shadow: 0 12px 28px rgba(255, 107, 0, 0.28);
        }

        .crevofyworks-contact-form-submit i {
            transition: transform 0.2s;
            font-size: 0.9rem;
        }

        .crevofyworks-contact-form-submit:hover i {
            transform: translateX(4px);
        }

        /* success */
        .crevofyworks-contact-form-success {
            display: none;
            text-align: center;
            padding: 40px 0;
        }

        .crevofyworks-contact-form-success-icon {
            width: 64px;
            height: 64px;
            background: var(--orange-glow);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            color: var(--orange);
            font-size: 1.7rem;
        }

        .crevofyworks-contact-form-success h3 {
            font-family: var(--font-display);
            font-size: 1.3rem;
            font-weight: 800;
            margin-bottom: 8px;
        }

        .crevofyworks-contact-form-success p {
            color: var(--body-text);
            font-size: 0.88rem;
        }

        /* ── ANIMATIONS ── */
        @keyframes cfFadeUp {
            from {
                opacity: 0;
                transform: translateY(22px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .crevofyworks-contact-hero-badge {
            animation: cfFadeUp .45s ease both;
        }

        .crevofyworks-contact-hero-title {
            animation: cfFadeUp .5s .08s ease both;
        }

        .crevofyworks-contact-hero-sub {
            animation: cfFadeUp .5s .15s ease both;
        }

        .crevofyworks-contact-hero-stats {
            animation: cfFadeUp .5s .22s ease both;
        }

        .crevofyworks-contact-hero-card:nth-child(1) {
            animation: cfFadeUp .5s .10s ease both;
        }

        .crevofyworks-contact-hero-card:nth-child(2) {
            animation: cfFadeUp .5s .20s ease both;
        }

        .crevofyworks-contact-hero-card:nth-child(3) {
            animation: cfFadeUp .5s .30s ease both;
        }

        .crevofyworks-contact-hero-card:nth-child(4) {
            animation: cfFadeUp .5s .38s ease both;
        }

        .crevofyworks-contact-hero-socials {
            animation: cfFadeUp .5s .46s ease both;
        }

        /* ── RESPONSIVE ── */
        @media (max-width: 900px) {
            .crevofyworks-contact-hero {
                padding: 68px 24px 56px;
            }

            .crevofyworks-contact-hero-inner {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .crevofyworks-contact-hero-visual {
                display: none;
            }

            .crevofyworks-contact-section2 {
                padding: 48px 24px 72px;
            }

            .crevofyworks-contact-section2-inner {
                grid-template-columns: 1fr;
            }

            .crevofyworks-contact-map-wrap,
            .crevofyworks-contact-map-wrap iframe {
                min-height: 300px;
            }

            .crevofyworks-contact-form-row {
                grid-template-columns: 1fr;
            }

            .crevofyworks-contact-form-wrap {
                padding: 28px 22px 32px;
            }
        }