:root {
    --cf-primary: #2b5bfd;
    --cf-primary-light: #c084fc;
    --cf-primary-dark: #7c3aed;
    --cf-accent: #f74fac;
    --cf-accent-light: #fb7185;
    --cf-success: #10b981;
    --cf-warning: #f59e0b;
    --cf-bg-dark: #121217;
    --cf-bg-darker: #0a0a0e;
    --cf-bg-card: #1a1a22;
    --cf-bg-card-hover: #222230;
    --cf-text-primary: #ffffff;
    --cf-text-secondary: #a1a1aa;
    --cf-text-muted: #71717a;
    --cf-border: rgba(255, 255, 255, 0.1);
    --cf-border-focus: rgba(168, 85, 247, 0.5);
    --cf-gradient: linear-gradient(135deg, #2b5bfd 0%, #f74fac 50%, #fb923c 100%);
    --cf-gradient-subtle: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(244, 63, 94, 0.1) 100%);
    --cf-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    --cf-shadow-glow: 0 0 40px rgba(168, 85, 247, 0.3);
    --cf-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --cf-transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contact-hero-section {
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
    background: var(--cf-bg-dark);
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--cf-gradient-subtle);
    border: 1px solid var(--cf-border);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--cf-primary-light);
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.contact-hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--cf-text-primary);
    margin-bottom: 24px;
}

.text-gradient {
    background: var(--cf-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-hero-content p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--cf-text-secondary);
    max-width: 550px;
    margin: 0 auto;
}

.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    pointer-events: none;
}

.hero-gradient-orb.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--cf-primary);
    top: -100px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.hero-gradient-orb.orb-2 {
    width: 300px;
    height: 300px;
    background: var(--cf-accent);
    bottom: -50px;
    left: -50px;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {

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

    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

.multi-step-form-section {
    padding: 60px 0 120px;
    background: var(--cf-bg-dark);
}

.form-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--cf-bg-card);
    border-radius: 24px;
    padding: 48px;
    border: 1px solid var(--cf-border);
    box-shadow: var(--cf-shadow);
    position: relative;
    overflow: hidden;
}

.form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--cf-gradient);
}

.progress-container {
    margin-bottom: 48px;
}

.progress-bar-wrapper {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 32px;
}

.progress-bar-fill {
    height: 100%;
    background: var(--cf-gradient);
    border-radius: 4px;
    width: 25%;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex: 1;
    position: relative;
}

.step-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--cf-bg-darker);
    border: 2px solid var(--cf-border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--cf-transition);
    position: relative;
    z-index: 2;
}

.step-number {
    font-size: 16px;
    font-weight: 600;
    color: var(--cf-text-muted);
    transition: var(--cf-transition);
}

.step-check {
    display: none;
    color: white;
}

.step-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--cf-text-muted);
    transition: var(--cf-transition);
    text-align: center;
}

.progress-step.active .step-circle {
    background: var(--cf-gradient);
    border-color: transparent;
    box-shadow: var(--cf-shadow-glow);
}

.progress-step.active .step-number {
    color: white;
}

.progress-step.active .step-label {
    color: var(--cf-text-primary);
}

.progress-step.completed .step-circle {
    background: var(--cf-success);
    border-color: transparent;
}

.progress-step.completed .step-number {
    display: none;
}

.progress-step.completed .step-check {
    display: block;
}

.progress-step.completed .step-label {
    color: var(--cf-success);
}

.form-step {
    display: none;
    animation: fadeSlideIn 0.5s ease forwards;
}

.form-step.active {
    display: block;
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.step-header {
    text-align: center;
    margin-bottom: 40px;
}

.step-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--cf-text-primary);
    margin-bottom: 12px;
}

.step-header p {
    font-size: 16px;
    color: var(--cf-text-secondary);
}

.project-type-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.project-type-card {
    position: relative;
    cursor: pointer;
}

.project-type-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.project-type-card .card-content {
    background: var(--cf-bg-darker);
    border: 2px solid var(--cf-border);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    transition: var(--cf-transition);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.project-type-card .card-glow {
    position: absolute;
    inset: 0;
    background: var(--cf-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
    border-radius: 16px;
}

.project-type-card:hover .card-content {
    border-color: var(--cf-primary);
    transform: translateY(-4px);
}

.project-type-card:hover .card-glow {
    opacity: 0.1;
}

.project-type-card input:checked+.card-content {
    border-color: var(--cf-primary);
    background: rgba(168, 85, 247, 0.1);
    box-shadow: var(--cf-shadow-glow);
}

.project-type-card input:checked+.card-content+.card-glow {
    opacity: 0.15;
}

.card-icon {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    background: var(--cf-gradient-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--cf-primary-light);
    transition: var(--cf-transition);
}

.project-type-card:hover .card-icon,
.project-type-card input:checked+.card-content .card-icon {
    background: var(--cf-gradient);
    color: white;
}

.project-type-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--cf-text-primary);
    margin-bottom: 8px;
}

.project-type-card p {
    font-size: 14px;
    color: var(--cf-text-muted);
    line-height: 1.5;
    margin: 0;
}

.card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 10px;
    background: var(--cf-primary);
    color: white;
    font-size: 11px;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-badge.premium {
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
}

.scope-grid {
    display: grid;
    gap: 48px;
    margin-bottom: 40px;
}

.scope-section h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--cf-text-primary);
    margin-bottom: 8px;
}

.scope-hint {
    font-size: 14px;
    color: var(--cf-text-muted);
    margin-bottom: 24px;
}

.budget-options {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.budget-option {
    position: relative;
    cursor: pointer;
}

.budget-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.budget-content {
    background: var(--cf-bg-darker);
    border: 2px solid var(--cf-border);
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
    transition: var(--cf-transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.budget-option:hover .budget-content {
    border-color: var(--cf-primary);
}

.budget-option input:checked+.budget-content {
    border-color: var(--cf-primary);
    background: rgba(168, 85, 247, 0.1);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.2);
}

.budget-range {
    font-size: 16px;
    font-weight: 700;
    color: var(--cf-text-primary);
}

.budget-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--cf-accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.budget-desc {
    font-size: 12px;
    color: var(--cf-text-muted);
    line-height: 1.4;
}

.timeline-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.timeline-option {
    position: relative;
    cursor: pointer;
}

.timeline-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.timeline-content {
    background: var(--cf-bg-darker);
    border: 2px solid var(--cf-border);
    border-radius: 12px;
    padding: 24px 16px;
    text-align: center;
    transition: var(--cf-transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.timeline-content svg {
    color: var(--cf-text-muted);
    transition: var(--cf-transition);
}

.timeline-content span {
    font-size: 14px;
    font-weight: 500;
    color: var(--cf-text-secondary);
    transition: var(--cf-transition);
}

.timeline-option:hover .timeline-content {
    border-color: var(--cf-primary);
}

.timeline-option:hover .timeline-content svg {
    color: var(--cf-primary-light);
}

.timeline-option input:checked+.timeline-content {
    border-color: var(--cf-primary);
    background: rgba(168, 85, 247, 0.1);
}

.timeline-option input:checked+.timeline-content svg {
    color: var(--cf-primary);
}

.timeline-option input:checked+.timeline-content span {
    color: var(--cf-text-primary);
}

.details-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

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

.floating-input,
.floating-textarea,
.floating-select {
    position: relative;
}

.floating-input input,
.floating-textarea textarea,
.floating-select select {
    width: 100%;
    padding: 20px 16px 8px;
    background: var(--cf-bg-darker);
    border: 2px solid var(--cf-border);
    border-radius: 12px;
    font-size: 16px;
    color: var(--cf-text-primary);
    transition: var(--cf-transition);
    font-family: inherit;
}

.floating-textarea textarea {
    resize: vertical;
    min-height: 150px;
}

.floating-select select {
    appearance: none;
    cursor: pointer;
    background-color: #2a2a35;
    color: var(--cf-text-primary);
}

.floating-select select option {
    background-color: #2a2a35;
    color: var(--cf-text-primary);
}

.floating-select select option:hover {
    background-color: var(--cf-primary);
    color: white;
}

.floating-select select option:checked {
    background: linear-gradient(var(--cf-primary), var(--cf-primary));
    color: white;
}

.floating-input label,
.floating-textarea label,
.floating-select label {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: var(--cf-text-muted);
    pointer-events: none;
    transition: var(--cf-transition);
}

.floating-textarea label {
    top: 24px;
}

.floating-input input:focus,
.floating-input input:not(:placeholder-shown),
.floating-textarea textarea:focus,
.floating-textarea textarea:not(:placeholder-shown),
.floating-select select:focus,
.floating-select select:not([value=""]) {
    border-color: var(--cf-primary);
    outline: none;
}

.floating-input input:focus+label,
.floating-input input:not(:placeholder-shown)+label,
.floating-textarea textarea:focus+label,
.floating-textarea textarea:not(:placeholder-shown)+label,
.floating-select select:focus+label,
.floating-select select.has-value+label {
    top: 12px;
    font-size: 12px;
    color: var(--cf-primary-light);
}

.input-highlight {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--cf-gradient);
    transition: var(--cf-transition);
    transform: translateX(-50%);
    border-radius: 0 0 12px 12px;
}

.floating-input input:focus~.input-highlight {
    width: 100%;
}

.select-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--cf-text-muted);
    pointer-events: none;
    transition: var(--cf-transition);
}

.floating-select select:focus~.select-arrow {
    color: var(--cf-primary);
    transform: translateY(-50%) rotate(180deg);
}

.char-counter {
    position: absolute;
    bottom: 12px;
    right: 16px;
    font-size: 12px;
    color: var(--cf-text-muted);
}

.field-error {
    display: none;
    margin-top: 8px;
    padding: 8px 12px;
    background: rgba(244, 63, 94, 0.1);
    border: 1px solid rgba(244, 63, 94, 0.5);
    border-radius: 8px;
    font-size: 13px;
    color: #fb7185;
    animation: slideInError 0.3s ease;
}

@keyframes slideInError {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.floating-input.has-field-error input,
.floating-textarea.has-field-error textarea,
.floating-select.has-field-error select {
    border-color: rgba(244, 63, 94, 0.7);
    background: rgba(244, 63, 94, 0.05);
}

.floating-input.has-field-error .field-error,
.floating-textarea.has-field-error .field-error,
.floating-select.has-field-error .field-error {
    display: block;
}

.vision-section {
    margin-bottom: 40px;
}

.inspiration-section {
    margin-top: 32px;
    padding: 24px;
    background: var(--cf-bg-darker);
    border-radius: 16px;
    border: 1px solid var(--cf-border);
}

.inspiration-section h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--cf-text-primary);
    margin-bottom: 4px;
}

.inspiration-section>p {
    font-size: 14px;
    color: var(--cf-text-muted);
    margin-bottom: 20px;
}

.inspiration-inputs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.floating-input.small input {
    padding: 16px 12px 6px;
    font-size: 14px;
}

.floating-input.small label {
    font-size: 14px;
    left: 12px;
}

.agreement-section {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.custom-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 5px;
    cursor: pointer;
}

.custom-checkbox input {
    display: none;
}

.checkmarkk {
    width: 16px;
    height: 16px;
    min-width: 16px;
    border: 1.5px solid var(--cf-border);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--cf-transition);
    position: relative;
    flex-shrink: 0;
    margin-top: 1px;
}

.checkmarkk::after {
    content: '';
    width: 3px;
    height: 7px;
    border: solid white;
    border-width: 0 1.2px 1.2px 0;
    transform: rotate(45deg) scale(0);
    transition: var(--cf-transition-bounce);
}

.custom-checkbox input:checked+.checkmarkk {
    background: var(--cf-primary);
    border-color: var(--cf-primary);
}

.custom-checkbox input:checked+.checkmarkk::after {
    transform: rotate(45deg) scale(1);
}

.checkbox-label {
    font-size: 14px;
    color: var(--cf-text-secondary);
    line-height: 1.5;
}

.checkbox-label a {
    color: var(--cf-primary-light);
    text-decoration: underline;
}

.checkbox-label a:hover {
    color: var(--cf-primary);
}

.step-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--cf-border);
}

.btn-back,
.btn-next,
.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--cf-transition);
    border: none;
    font-family: inherit;
}

.btn-back {
    background: transparent;
    color: var(--cf-text-secondary);
    border: 2px solid var(--cf-border);
}

.btn-back:hover {
    background: var(--cf-bg-darker);
    border-color: var(--cf-text-muted);
    color: var(--cf-text-primary);
}

.btn-next,
.btn-submit {
    background: var(--cf-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
}

.btn-next:hover,
.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(168, 85, 247, 0.5);
}

.btn-next:disabled,
.btn-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.btn-submit .btn-loading {
    display: none;
}

.btn-submit.loading .btn-text,
.btn-submit.loading svg:last-child {
    display: none;
}

.btn-submit.loading .btn-loading {
    display: block;
}

.spinner {
    animation: rotate 2s linear infinite;
    width: 24px;
    height: 24px;
}

.spinner .path {
    stroke: white;
    stroke-linecap: round;
    animation: dash 1.5s ease-in-out infinite;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35;
    }

    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
    }
}

.success-step {
    text-align: center;
    padding: 40px 0;
}

.success-content {
    max-width: 500px;
    margin: 0 auto;
}

.success-animation {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 32px;
}

.checkmark-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cf-success);
    animation: scaleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.checkmark {
    width: 60px;
    height: 60px;
}

.checkmark-circle-bg {
    stroke: rgba(255, 255, 255, 0.2);
    stroke-width: 2;
}

.checkmark-check {
    stroke: white;
    stroke-width: 4;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: drawCheck 0.5s ease forwards 0.3s;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

@keyframes drawCheck {
    to {
        stroke-dashoffset: 0;
    }
}

.success-particles span {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    animation: particle 1s ease-out forwards;
}

.success-particles span:nth-child(1) {
    background: #f43f5e;
    top: 50%;
    left: 50%;
    animation-delay: 0.1s;
}

.success-particles span:nth-child(2) {
    background: #a855f7;
    top: 50%;
    left: 50%;
    animation-delay: 0.15s;
}

.success-particles span:nth-child(3) {
    background: #10b981;
    top: 50%;
    left: 50%;
    animation-delay: 0.2s;
}

.success-particles span:nth-child(4) {
    background: #f59e0b;
    top: 50%;
    left: 50%;
    animation-delay: 0.25s;
}

.success-particles span:nth-child(5) {
    background: #3b82f6;
    top: 50%;
    left: 50%;
    animation-delay: 0.3s;
}

.success-particles span:nth-child(6) {
    background: #ec4899;
    top: 50%;
    left: 50%;
    animation-delay: 0.35s;
}

.success-particles span:nth-child(7) {
    background: #14b8a6;
    top: 50%;
    left: 50%;
    animation-delay: 0.4s;
}

.success-particles span:nth-child(8) {
    background: #8b5cf6;
    top: 50%;
    left: 50%;
    animation-delay: 0.45s;
}

@keyframes particle {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }

    100% {
        transform: translate(var(--tx, 0), var(--ty, 0)) scale(1);
        opacity: 0;
    }
}

.success-particles span:nth-child(1) {
    --tx: -60px;
    --ty: -60px;
}

.success-particles span:nth-child(2) {
    --tx: 60px;
    --ty: -60px;
}

.success-particles span:nth-child(3) {
    --tx: -80px;
    --ty: 0;
}

.success-particles span:nth-child(4) {
    --tx: 80px;
    --ty: 0;
}

.success-particles span:nth-child(5) {
    --tx: -60px;
    --ty: 60px;
}

.success-particles span:nth-child(6) {
    --tx: 60px;
    --ty: 60px;
}

.success-particles span:nth-child(7) {
    --tx: 0;
    --ty: -80px;
}

.success-particles span:nth-child(8) {
    --tx: 0;
    --ty: 80px;
}

.success-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--cf-text-primary);
    margin-bottom: 16px;
}

.success-content>p {
    font-size: 16px;
    color: var(--cf-text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

.success-info {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--cf-text-secondary);
}

.info-item svg {
    color: var(--cf-primary-light);
}

.success-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.btn-secondary,
.btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--cf-transition);
}

.btn-secondary {
    background: var(--cf-bg-darker);
    color: var(--cf-text-secondary);
    border: 2px solid var(--cf-border);
}

.btn-secondary:hover {
    background: var(--cf-bg-card);
    border-color: var(--cf-text-muted);
    color: var(--cf-text-primary);
}

.btn-primary {
    background: var(--cf-gradient);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--cf-shadow-glow);
}

.contact-info-section {
    padding: 80px 0;
    background: var(--cf-bg-darker);
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.contact-card {
    background: var(--cf-bg-card);
    border: 1px solid var(--cf-border);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: var(--cf-transition);
}

.contact-card:hover {
    transform: translateY(-4px);
    border-color: var(--cf-primary);
    box-shadow: var(--cf-shadow-glow);
}

.card-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--cf-gradient-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--cf-primary-light);
    transition: var(--cf-transition);
}

.contact-card:hover .card-icon-wrap {
    background: var(--cf-gradient);
    color: white;
}

.contact-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--cf-text-primary);
    margin-bottom: 12px;
}

.contact-card p {
    font-size: 14px;
    color: var(--cf-text-secondary);
    line-height: 1.6;
    margin: 0;
}

.contact-card p a {
    color: var(--cf-text-secondary);
    transition: var(--cf-transition);
}

.contact-card p a:hover {
    color: var(--cf-primary-light);
}

@media (max-width: 1200px) {
    .project-type-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .budget-options {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .contact-hero-content h1 {
        font-size: 44px;
    }

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

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

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

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

    .inspiration-inputs {
        grid-template-columns: 1fr;
    }

    .progress-steps {
        gap: 8px;
    }

    .step-label {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .contact-hero-section {
        padding: 120px 0 60px;
    }

    .contact-hero-content h1 {
        font-size: 36px;
    }

    .contact-hero-content p {
        font-size: 16px;
    }

    .multi-step-form-section {
        padding: 40px 0 80px;
    }

    .form-wrapper {
        padding: 24px 16px;
        border-radius: 16px;
    }

    .project-type-grid {
        grid-template-columns: 1fr;
    }

    .step-header h2 {
        font-size: 24px;
    }

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

    .budget-options {
        grid-template-columns: 1fr;
    }

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

    .progress-steps {
        display: none;
    }

    .progress-bar-wrapper {
        margin-bottom: 24px;
    }

    .step-navigation {
        flex-direction: column-reverse;
        gap: 16px;
    }

    .btn-back,
    .btn-next,
    .btn-submit {
        width: 100%;
        justify-content: center;
    }

    .contact-cards-grid {
        grid-template-columns: 1fr;
    }

    .success-info {
        flex-direction: column;
        gap: 16px;
    }

    .success-actions {
        flex-direction: column;
    }

    .btn-secondary,
    .btn-primary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-hero-content h1 {
        font-size: 28px;
    }

    .form-wrapper {
        margin: 0 -8px;
        border-radius: 0;
    }

    .project-type-card .card-content {
        padding: 20px 16px;
    }

    .card-icon {
        width: 56px;
        height: 56px;
    }

    .card-icon svg {
        width: 32px;
        height: 32px;
    }

    .timeline-options {
        grid-template-columns: 1fr;
    }
}

.floating-input.has-error input,
.floating-textarea.has-error textarea,
.floating-select.has-error select {
    border-color: var(--cf-accent) !important;
    background: rgba(244, 63, 94, 0.05);
}

.floating-input.has-error label,
.floating-textarea.has-error label,
.floating-select.has-error label {
    color: var(--cf-accent-light);
}

.custom-checkbox.has-error .checkmark {
    border-color: var(--cf-accent);
}

.floating-input input:focus,
.floating-textarea textarea:focus,
.floating-select select:focus {
    outline: none;
}

.floating-input.has-error input:focus,
.floating-textarea.has-error textarea:focus {
    box-shadow: 0 0 0 3px rgba(244, 63, 94, 0.2);
}