:root {
    --orange: #dc8215;
    --orange-dark: #b86a10;
    --orange-soft: rgba(220, 130, 21, 0.08);
    --orange-mid: rgba(220, 130, 21, 0.18);
    --orange-glow: rgba(220, 130, 21, 0.25);
    --black: #0d0d0d;
    --dark: #1a1a1a;
    --mid: #4a4a4a;
    --soft: #888;
    --placeholder: #b0b0b0;
    --line: #e4e4e4;
    --line-focus: #dc8215;
    --bg: #ffffff;
    --off: #f9f9f9;
    --card: #ffffff;
    --font-h: 'Segoe UI', system-ui, -apple-system, sans-serif;
    --font-b: 'Segoe UI', system-ui, -apple-system, sans-serif;
    --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: #ffffff;
}

/* ══════════════════════════════════════════
   SECTION WRAPPER
══════════════════════════════════════════ */
.ct {
    width: 100%;
    max-width: 100%;
    margin: auto;
    background: var(--bg);
    border-radius: 32px;
    overflow: hidden;
    box-shadow:
        0 32px 96px rgba(0, 0, 0, 0.10),
        0 2px 4px rgba(0, 0, 0, 0.04);
    display: grid;
    grid-template-columns: 420px 1fr;
    min-height: 680px;
    animation: wrapIn 0.55s var(--out) both;
}

@keyframes wrapIn {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ══════════════════════════════════════════
   LEFT PANEL — Info + Contact Details
══════════════════════════════════════════ */
.ct-left {
    background: #373737;
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

/* Background geometric accent */
.ct-left::before {
    content: '';
    position: absolute;
    bottom: -120px;
    right: -120px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    border: 60px solid rgba(220, 130, 21, 0.08);
    pointer-events: none;
}

.ct-left::after {
    content: '';
    position: absolute;
    top: -60px;
    left: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 30px solid rgba(220, 130, 21, 0.06);
    pointer-events: none;
}

.ct-left-top {}

/* Eyebrow */
.ct-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-h);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 20px;
    animation: fadeSlide 0.5s var(--out) 0.1s both;
}

.ct-eyebrow::before {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: var(--orange);
    border-radius: 2px;
}

.ct-left h2 {
    font-family: var(--font-h);
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.18;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    animation: fadeSlide 0.5s var(--out) 0.18s both;
}

.ct-left h2 span {
    color: var(--orange);
}

.ct-left-desc {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.50);
    line-height: 1.70;
    margin-bottom: 48px;
    animation: fadeSlide 0.5s var(--out) 0.24s both;
}

/* Contact info items */
.ct-info {
    display: flex;
    flex-direction: column;
    gap: 22px;
    animation: fadeSlide 0.5s var(--out) 0.30s both;
}

.ct-info-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ct-info-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(220, 130, 21, 0.12);
    border: 1px solid rgba(220, 130, 21, 0.20);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.25s var(--spring);
}

.ct-info-item:hover .ct-info-icon {
    background: rgba(220, 130, 21, 0.22);
    transform: scale(1.08);
}

.ct-info-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--orange);
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ct-info-text {}

.ct-info-label {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 2px;
}

.ct-info-val {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
}

/* Social links */
.ct-social {
    display: flex;
    gap: 12px;
    animation: fadeSlide 0.5s var(--out) 0.36s both;
}

.ct-social-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition:
        background 0.2s,
        border-color 0.2s,
        transform 0.25s var(--spring);
    text-decoration: none;
}

.ct-social-btn:hover {
    background: var(--orange);
    border-color: var(--orange);
    transform: translateY(-3px);
}

.ct-social-btn svg {
    width: 16px;
    height: 16px;
    fill: rgba(255, 255, 255, 0.65);
    transition: fill 0.2s;
}

.ct-social-btn:hover svg {
    fill: #fff;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateX(-16px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ══════════════════════════════════════════
   RIGHT PANEL — Form
══════════════════════════════════════════ */
.ct-right {
    padding: 56px 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

/* Subtle dot grid */
.ct-right::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    opacity: 0.6;
}

.ct-form-head {
    margin-bottom: 36px;
    position: relative;
    animation: fadeSlide2 0.5s var(--out) 0.15s both;
}

.ct-form-head h3 {
    font-family: var(--font-h);
    font-size: 22px;
    font-weight: 700;
    color: var(--black);
    letter-spacing: -0.025em;
    margin-bottom: 6px;
}

.ct-form-head p {
    font-size: 14px;
    color: var(--soft);
}

/* Service interest pills */
.ct-services {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
    position: relative;
    animation: fadeSlide2 0.5s var(--out) 0.22s both;
}

.ct-svc-label {
    width: 100%;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--soft);
    margin-bottom: 4px;
}

.ct-svc-pill {
    padding: 7px 16px;
    border: 1.5px solid var(--line);
    border-radius: 100px;
    background: var(--off);
    font-family: var(--font-h);
    font-size: 12px;
    font-weight: 600;
    color: var(--mid);
    cursor: pointer;
    transition:
        border-color 0.2s,
        background 0.2s,
        color 0.2s,
        transform 0.2s var(--spring);
    user-select: none;
}

.ct-svc-pill:hover {
    border-color: var(--orange);
    color: var(--orange);
    transform: translateY(-1px);
}

.ct-svc-pill.sel {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
    box-shadow: 0 3px 12px var(--orange-mid);
    transform: translateY(-2px);
}

/* Form */
.ct-form {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

/* Row of 2 */
.ct-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
    animation: fadeSlide2 0.5s var(--out) 0.28s both;
}

.ct-field {
    display: flex;
    flex-direction: column;
    gap: 0;
    animation: fadeSlide2 0.5s var(--out) 0.32s both;
}

/* Floating label field */
.ct-field-wrap {
    position: relative;
}

.ct-field-wrap label {
    position: absolute;
    top: 14px;
    left: 16px;
    font-family: var(--font-b);
    font-size: 13.5px;
    font-weight: 500;
    color: var(--placeholder);
    pointer-events: none;
    transition:
        top 0.22s var(--out),
        font-size 0.22s var(--out),
        color 0.22s var(--out),
        left 0.22s var(--out);
    z-index: 1;
}

/* Float label up when focused or has value */
.ct-field-wrap input:focus~label,
.ct-field-wrap input:not(:placeholder-shown)~label,
.ct-field-wrap textarea:focus~label,
.ct-field-wrap textarea:not(:placeholder-shown)~label,
.ct-field-wrap select:focus~label,
.ct-field-wrap select.has-val~label {
    top: 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--orange);
    left: 16px;
}

.ct-input,
.ct-select,
.ct-textarea {
    width: 100%;
    background: var(--off);
    border: 1.5px solid var(--line);
    border-radius: 12px;
    font-family: var(--font-b);
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    outline: none;
    transition:
        border-color 0.22s ease,
        background 0.22s ease,
        box-shadow 0.22s ease;
    appearance: none;
}

.ct-input {
    padding: 22px 16px 8px;
    height: 56px;
}

.ct-select {
    padding: 22px 16px 8px;
    height: 56px;
    cursor: pointer;
    background-image: url("data:./image/bglogo.svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.ct-textarea {
    padding: 22px 16px 10px;
    height: 130px;
    resize: none;
    line-height: 1.6;
}

.ct-input::placeholder,
.ct-textarea::placeholder {
    color: transparent;
}

.ct-input:focus,
.ct-select:focus,
.ct-textarea:focus {
    border-color: var(--orange);
    background: #fff;
    box-shadow: 0 0 0 4px var(--orange-soft);
}

/* Single full-width fields */
.ct-field--full {
    margin-bottom: 20px;
    animation: fadeSlide2 0.5s var(--out) 0.36s both;
}

.ct-field--full2 {
    margin-bottom: 28px;
    animation: fadeSlide2 0.5s var(--out) 0.40s both;
}

/* Budget row */
.ct-budget-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 28px;
    animation: fadeSlide2 0.5s var(--out) 0.44s both;
}

/* Submit button */
.ct-submit-wrap {
    animation: fadeSlide2 0.5s var(--out) 0.48s both;
}

.ct-submit {
    width: 100%;
    padding: 16px 32px;
    background: var(--orange);
    color: #fff;
    font-family: var(--font-h);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.01em;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition:
        background 0.2s ease,
        transform 0.25s var(--spring),
        box-shadow 0.2s ease;
    box-shadow: 0 4px 20px rgba(220, 130, 21, 0.35);
    position: relative;
    overflow: hidden;
}

/* Shine sweep on hover */
.ct-submit::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 40%;
    height: 200%;
    background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.18) 50%, transparent 60%);
    transform: skewX(-15deg);
    transition: left 0.5s ease;
}

.ct-submit:hover::before {
    left: 130%;
}

.ct-submit:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(220, 130, 21, 0.50);
}

.ct-submit:active {
    transform: translateY(0);
}

.ct-submit svg {
    width: 18px;
    height: 18px;
    stroke: #fff;
    stroke-width: 2.2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.3s var(--spring);
}

.ct-submit:hover svg {
    transform: translateX(4px);
}

/* Privacy note */
.ct-privacy {
    text-align: center;
    font-size: 12px;
    color: var(--placeholder);
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.ct-privacy svg {
    width: 13px;
    height: 13px;
    stroke: var(--placeholder);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

/* SUCCESS STATE */
.ct-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    gap: 16px;
    animation: popIn 0.5s var(--spring) both;
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0.88);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.ct-success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--orange-soft);
    border: 2px solid var(--orange-mid);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ct-success-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--orange);
    stroke-width: 2.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ct-success h4 {
    font-family: var(--font-h);
    font-size: 22px;
    font-weight: 700;
    color: var(--black);
    letter-spacing: -0.02em;
}

.ct-success p {
    font-size: 14.5px;
    color: var(--soft);
    line-height: 1.65;
    max-width: 320px;
}

.ct-success-back {
    margin-top: 8px;
    padding: 10px 28px;
    background: var(--orange-soft);
    border: 1.5px solid var(--orange-mid);
    border-radius: 100px;
    font-family: var(--font-h);
    font-size: 13px;
    font-weight: 600;
    color: var(--orange);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s var(--spring);
}

.ct-success-back:hover {
    background: var(--orange-mid);
    transform: translateY(-2px);
}

@keyframes fadeSlide2 {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 900px) {
    .ct {
        grid-template-columns: 1fr;
        border-radius: 24px;
    }

    .ct-left {
        padding: 44px 36px 40px;
        min-height: auto;
    }

    .ct-left-desc {
        margin-bottom: 32px;
    }

    .ct-right {
        padding: 44px 36px;
    }
}

@media (max-width: 560px) {
    .ct {
        border-radius: 20px;
    }

    .ct-left {
        padding: 36px 24px 32px;
    }

    .ct-right {
        padding: 36px 24px;
    }

    .ct-row {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 0;
    }

    .ct-row .ct-field {
        margin-bottom: 20px;
    }

    .ct-budget-row {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 0;
    }

    .ct-budget-row .ct-field {
        margin-bottom: 20px;
    }
}
/* FORCE Softhash font everywhere */
.ct,
.ct * {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif !important;
}
.ct-left h2,
.ct-form-head h3 {
  font-weight: 700;
}
/* ═══════════════════════════════
   TYPOGRAPHY CONSISTENCY — Segoe UI for headings
═══════════════════════════════ */
.ct-left h2,
.ct-form-head h3,
.ct-success h4 {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif !important;
  letter-spacing: -0.02em;
}
