/* ===================================
   GETAQUOTE PAGE STYLES
   =================================== */

:root {
    --primary-color: #e77871;
    --secondary-color: #4f3d9b;
    --tertiary-color: #e7b26c;
    --text-primary: #2d2d2d;
    --text-secondary: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.quote-page {
    min-height: 100vh;
    background: var(--bg-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===================================
   HERO SECTION
   =================================== */
.quote-hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #5a4db8 50%, var(--primary-color) 100%);
    color: white;
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.quote-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(231, 120, 113, 0.2) 0%, transparent 50%);
    animation: pulseGlow 8s ease-in-out infinite;
}

/* Back to Home Button */
.back-to-home {
    position: absolute;
    top: 2rem;
    left: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.back-to-home:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateX(-5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.back-to-home svg {
    transition: transform 0.3s ease;
}

.back-to-home:hover svg {
    transform: translateX(-3px);
}

/* Animated Orbs */
.animated-orbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    animation: float 15s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    left: 5%;
    background: radial-gradient(circle, #e77871 0%, transparent 70%);
    animation-delay: 0s;
}

.orb-2 {
    width: 350px;
    height: 350px;
    top: 50%;
    right: 10%;
    background: radial-gradient(circle, #e7b26c 0%, transparent 70%);
    animation-delay: 3s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    bottom: 15%;
    left: 15%;
    background: radial-gradient(circle, #06b6d4 0%, transparent 70%);
    animation-delay: 6s;
}

.orb-4 {
    width: 250px;
    height: 250px;
    top: 30%;
    right: 25%;
    background: radial-gradient(circle, #8b5cf6 0%, transparent 70%);
    animation-delay: 9s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -30px) scale(1.1);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.9);
    }
    75% {
        transform: translate(20px, 30px) scale(1.05);
    }
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    opacity: 0.95;
}

/* ===================================
   PROCESS TIMELINE SECTION - FLOWING PATH DESIGN
   =================================== */
.process-section {
    padding: 1rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(79, 61, 155, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(231, 120, 113, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.process-timeline {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 4rem 0;
}

/* Flowing SVG Path */
.process-timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 5%;
    right: 5%;
    height: 200px;
    transform: translateY(-50%);
    background: 
        radial-gradient(ellipse at 0% 50%, rgba(79, 61, 155, 0.15) 0%, transparent 30%),
        radial-gradient(ellipse at 33% 50%, rgba(231, 120, 113, 0.15) 0%, transparent 30%),
        radial-gradient(ellipse at 66% 50%, rgba(16, 185, 129, 0.15) 0%, transparent 30%),
        radial-gradient(ellipse at 100% 50%, rgba(231, 178, 108, 0.15) 0%, transparent 30%);
    border-radius: 100px;
    filter: blur(40px);
    opacity: 0.8;
    z-index: 0;
}

.process-timeline::after {
    display: none;
}

@keyframes flowingGradient {
    0%, 100% {
        opacity: 0.6;
        filter: brightness(1);
    }
    50% {
        opacity: 1;
        filter: brightness(1.2);
    }
}

/* Process Steps Container */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.process-step {
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.process-step:nth-child(1) { animation-delay: 0.2s; }
.process-step:nth-child(2) { animation-delay: 0.4s; }
.process-step:nth-child(3) { animation-delay: 0.6s; }
.process-step:nth-child(4) { animation-delay: 0.8s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Modern Card Design */
.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem 0.75rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.process-step:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: currentColor;
}

.process-step:hover::before {
    opacity: 1;
}

/* Step Number Badge */
.step-number {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    position: relative;
    margin-bottom: 0.75rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.step-number::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 11px;
    padding: 2px;
    background: inherit;
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.4;
    animation: borderGlow 2s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.process-step:hover .step-number {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

/* Individual Step Colors */
.step-purple {
    background: linear-gradient(135deg, #4f3d9b 0%, #6366f1 100%);
}

.step-purple::before {
    background: linear-gradient(135deg, #4f3d9b 0%, #6366f1 100%);
}

.process-step:nth-child(1) {
    --step-color: #4f3d9b;
}

.process-step:nth-child(1)::before {
    background: linear-gradient(90deg, #4f3d9b, #6366f1);
}

.step-coral {
    background: linear-gradient(135deg, #e77871 0%, #f97316 100%);
}

.step-coral::before {
    background: linear-gradient(135deg, #e77871 0%, #f97316 100%);
}

.process-step:nth-child(2) {
    --step-color: #e77871;
}

.process-step:nth-child(2)::before {
    background: linear-gradient(90deg, #e77871, #f97316);
}

.step-green {
    background: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
}

.step-green::before {
    background: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
}

.process-step:nth-child(3) {
    --step-color: #10b981;
}

.process-step:nth-child(3)::before {
    background: linear-gradient(90deg, #10b981, #06b6d4);
}

.step-golden {
    background: linear-gradient(135deg, #e7b26c 0%, #fbbf24 100%);
}

.step-golden::before {
    background: linear-gradient(135deg, #e7b26c 0%, #fbbf24 100%);
}

.process-step:nth-child(4) {
    --step-color: #e7b26c;
}

.process-step:nth-child(4)::before {
    background: linear-gradient(90deg, #e7b26c, #fbbf24);
}

.step-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.step-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.3;
    background: linear-gradient(135deg, var(--step-color, var(--text-primary)) 0%, var(--text-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-description {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===================================
   FORM SECTION
   =================================== */
.form-section {
    padding: 1rem 0 5rem;
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
}

.form-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-title {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.form-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1.25rem;
    border: 2px solid #e0e0e0;
    border-radius: 0.75rem;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    color: var(--text-primary);
    transition: var(--transition);
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(79, 61, 155, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1rem 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 0.5rem;
    transition: var(--transition);
}

.checkbox-label:hover {
    background: var(--bg-light);
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--secondary-color);
}

.checkbox-label span {
    font-size: 0.95rem;
    color: var(--text-primary);
}

.form-actions {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 3rem;
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(79, 61, 155, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(79, 61, 155, 0.4);
}

.btn-submit {
    position: relative;
    min-width: 280px;
}

.btn-submit.loading .btn-text {
    opacity: 0;
}

.btn-submit.loading .btn-loader {
    opacity: 1;
}

.btn-loader {
    position: absolute;
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    opacity: 0;
    animation: spin 0.8s linear infinite;
    transition: opacity 0.3s ease;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===================================
   SUCCESS NOTIFICATION
   =================================== */
.notification {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.notification.show {
    opacity: 1;
    visibility: visible;
}

.notification-content {
    background: white;
    padding: 3rem;
    border-radius: 1.5rem;
    text-align: center;
    max-width: 500px;
    margin: 2rem;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.notification.show .notification-content {
    transform: scale(1);
    animation: bounceIn 0.6s ease;
}

@keyframes bounceIn {
    0% { transform: scale(0.3); }
    50% { transform: scale(1.05); }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); }
}

.notification-icon {
    margin-bottom: 1.5rem;
    animation: checkmark 0.8s ease 0.3s forwards;
}

.notification-icon circle {
    stroke-dasharray: 176;
    stroke-dashoffset: 176;
    animation: drawCircle 0.6s ease forwards;
}

.notification-icon path {
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
    animation: drawCheck 0.4s ease 0.4s forwards;
}

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

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

.notification-title {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.notification-message {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.notification-redirect {
    font-size: 0.95rem;
    color: var(--primary-color);
    font-weight: 600;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ===================================
   DUPLICATE NOTIFICATION MODAL
   =================================== */
.duplicate-modal {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.duplicate-content {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 24px;
    text-align: center;
    max-width: 550px;
    margin: 2rem;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
    transform: scale(0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid rgba(231, 120, 113, 0.2);
    position: relative;
    overflow: hidden;
}

.duplicate-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #e77871 0%, #f97316 100%);
}

.duplicate-modal.show .duplicate-content {
    transform: scale(1);
    animation: shakeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes shakeIn {
    0% { transform: scale(0.5) rotate(-5deg); opacity: 0; }
    25% { transform: scale(1.05) rotate(2deg); opacity: 1; }
    50% { transform: scale(0.95) rotate(-1deg); }
    75% { transform: scale(1.02) rotate(1deg); }
    100% { transform: scale(1) rotate(0); }
}

.duplicate-icon-wrapper {
    display: inline-block;
    margin-bottom: 1.5rem;
    animation: bounceWarning 1s ease-in-out infinite;
}

@keyframes bounceWarning {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.05);
    }
}

.duplicate-icon {
    filter: drop-shadow(0 4px 12px rgba(231, 120, 113, 0.3));
}

.duplicate-icon circle {
    stroke-dasharray: 207;
    stroke-dashoffset: 207;
    animation: drawCircle 0.8s ease forwards;
}

.duplicate-icon path {
    stroke-dasharray: 60;
    stroke-dashoffset: 60;
    animation: drawCheck 0.5s ease 0.5s forwards;
}

.duplicate-title {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #e77871 0%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    animation: slideDown 0.5s ease 0.3s both;
}

.duplicate-message {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    animation: slideDown 0.5s ease 0.5s both;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.duplicate-close-btn {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #e77871 0%, #f97316 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(231, 120, 113, 0.4);
    animation: slideUp 0.5s ease 0.7s both;
    position: relative;
    overflow: hidden;
}

.duplicate-close-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.duplicate-close-btn:hover::before {
    left: 100%;
}

.duplicate-close-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 32px rgba(231, 120, 113, 0.5);
}

.duplicate-close-btn:active {
    transform: translateY(-1px) scale(1.02);
}

.duplicate-close-btn svg {
    transition: transform 0.3s ease;
}

.duplicate-close-btn:hover svg {
    transform: translateX(5px);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Tablet */
@media (max-width: 992px) {
    .process-section {
        padding: 4rem 0;
    }

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 2rem 0;
    }

    .process-timeline::after {
        display: none;
    }

    .process-step {
        padding: 0.875rem 0.625rem;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1.375rem;
        border-radius: 9px;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .step-title {
        font-size: 1.25rem;
    }

    .step-description {
        font-size: 0.95rem;
    }

    .form-wrapper {
        padding: 2rem;
    }

    .form-title {
        font-size: 2rem;
    }

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

    .checkbox-group {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .container {
        padding: 0 1.5rem;
    }

    .quote-hero {
        padding: 6rem 0 3rem;
    }

    .back-to-home {
        top: 1rem;
        left: 1rem;
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
    }

    .back-to-home svg {
        width: 16px;
        height: 16px;
    }

    .orb {
        filter: blur(40px);
    }

    .orb-1 {
        width: 250px;
        height: 250px;
    }

    .orb-2 {
        width: 200px;
        height: 200px;
    }

    .orb-3 {
        width: 180px;
        height: 180px;
    }

    .orb-4 {
        width: 150px;
        height: 150px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .process-section {
        padding: 3rem 0;
    }

    .process-timeline {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1rem 0;
    }

    .process-timeline::before {
        top: 5%;
        bottom: 5%;
        left: 50%;
        right: auto;
        width: 300px;
        height: auto;
        transform: translateX(-50%);
        background: 
            radial-gradient(ellipse at 50% 0%, rgba(79, 61, 155, 0.15) 0%, transparent 30%),
            radial-gradient(ellipse at 50% 33%, rgba(231, 120, 113, 0.15) 0%, transparent 30%),
            radial-gradient(ellipse at 50% 66%, rgba(16, 185, 129, 0.15) 0%, transparent 30%),
            radial-gradient(ellipse at 50% 100%, rgba(231, 178, 108, 0.15) 0%, transparent 30%);
        border-radius: 150px;
    }

    .process-timeline::after {
        display: block;
        top: 8%;
        bottom: 8%;
        left: 50%;
        right: auto;
        width: 4px;
        height: auto;
        transform: translateX(-50%);
        background: linear-gradient(180deg, 
            #4f3d9b 0%,
            #4f3d9b 20%,
            #e77871 20%,
            #e77871 45%,
            #10b981 45%,
            #10b981 70%,
            #e7b26c 70%,
            #e7b26c 100%
        );
    }

    .process-step {
        padding: 0.75rem 0.5rem;
        max-width: 300px;
        margin: 0 auto;
    }

    .step-number {
        width: 32px;
        height: 32px;
        font-size: 1.25rem;
        border-radius: 8px;
    }

    .step-title {
        font-size: 1.125rem;
    }

    .step-description {
        font-size: 0.9rem;
    }

    .form-section {
        padding: 3rem 0;
    }

    .form-wrapper {
        padding: 1.5rem;
    }

    .form-title {
        font-size: 1.75rem;
    }

    .form-subtitle {
        font-size: 1rem;
    }

    .btn-submit {
        min-width: 100%;
    }

    .notification-content {
        padding: 2rem;
        margin: 1rem;
    }

    .notification-title {
        font-size: 1.5rem;
    }

    .notification-message {
        font-size: 1rem;
    }

    .duplicate-content {
        padding: 2rem 1.5rem;
        margin: 1rem;
        max-width: 90%;
    }

    .duplicate-title {
        font-size: 1.625rem;
    }

    .duplicate-message {
        font-size: 1rem;
    }

    .duplicate-close-btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .duplicate-icon-wrapper {
        margin-bottom: 1rem;
    }

    .duplicate-icon {
        width: 60px;
        height: 60px;
    }
}
