/* Vendor Page Specific Styles */
.vendor-hero-section {
    background: #F3F0E7;
    padding: 20px 0;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.vendor-hero-heading {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.vendor-hero-heading .text-danger {
    color: #E74C5B !important;
}

.vendor-hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #222222;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.hero-btn {
    background: red;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    color: white;
    display: inline-block;
    width: auto;
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(231, 76, 91, 0.3);
    background: #E74C5B;
    color: white;
}

.btn-outline-white {
    border: 2px solid #222222;
    color: #222222;
    background: white;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    display: inline-block;
    width: auto;
}

.btn-outline-white:hover {
    background-color: #222222;
    color: white;
    transform: translateY(-2px);
}

.hero-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-card {
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-color: #dee2e6;
}

.feature-icon-circle {
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-circle {
    transform: scale(1.1);
}

.how-it-works-step {
    position: relative;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.how-it-works-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 30px;
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
}

/* New How It Works Design */
.how-it-works-step-new {
    position: relative;
    text-align: center;
    padding-top: 60px;
}

.step-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 48px;
    color: white;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    z-index: 2;
}

.step-1 {
    background: #E74C5B;
}

.step-2 {
    background: #A7D9F2;
}

.step-3 {
    background: #F2D9A7;
}

.step-4 {
    background: #D9CFCF;
}

.step-connector {
    position: absolute;
    top: 125px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 150px;
    background: repeating-linear-gradient(
        to bottom,
        #ccc 0,
        #ccc 8px,
        transparent 8px,
        transparent 16px
    );
    z-index: 1;
}

.step-horizontal-connector {
    position: absolute;
    top: 80px;
    right: -50%;
    width: 100%;
    height: 60px;
    z-index: 1;
}

.step-horizontal-connector::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: repeating-linear-gradient(
        to right,
        #ccc 0,
        #ccc 8px,
        transparent 8px,
        transparent 16px
    );
    border-radius: 50px;
    transform: translateY(28px);
}

/* U-shape connector (for steps 1 and 3) */
.step-horizontal-connector.u-shape::before {
    transform: translateY(28px) rotate(-2deg);
    height: 4px;
}

/* N-shape connector (for step 2) */
.step-horizontal-connector.n-shape::before {
    transform: translateY(28px) rotate(2deg);
    height: 4px;
}

.step-content {
    background: #FCE9EE;
    padding: 25px 20px;
    border-radius: 12px;
    margin-top: 100px;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.step-content h5 {
    color: #222222;
    margin-bottom: 10px;
    font-size: 18px;
}

.step-content p {
    color: #666666;
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
}

.benefits-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.benefit-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.benefit-icon {
    width: 20px;
    height: 20px;
    margin-right:20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    font-size: 2rem;
}

.cta-section {
    background-color: #F3F0E7;
    color: #222222;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #222222;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #666666;
}

.cta-btn {
    background: white;
    color: #dc3545;
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.3);
    background: #f8f9fa;
}

.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-item {
    border: 2px solid #FCE9EE;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #dc3545;
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.1);
}

.faq-question {
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 1.5rem;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-icon svg {
    transform: rotate(45deg);
}

.contact-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.contact-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .vendor-hero-heading {
        font-size: 2.5rem;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .how-it-works-step {
        margin-bottom: 30px;
    }
    
    .benefit-card {
        margin-bottom: 30px;
    }
    
    .how-it-works-step-new {
        margin-bottom: 40px;
    }
    
    .step-connector {
        display: none;
    }
    
    .step-circle {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .step-content {
        min-height: 100px;
        padding: 20px 15px;
    }
    
    .step-content h5 {
        font-size: 1.2rem;
    }
    
    .step-content p {
        font-size: 1.1rem;
    }
}

/* Get in Touch Section */
.get-in-touch-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.get-in-touch-content {
    padding-right: 40px;
}

.get-in-touch-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #222222;
    margin-bottom: 1rem;
}

.get-in-touch-subtitle {
    font-size: 1.4rem;
    color: #666666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.get-in-touch-illustration {
    text-align: center;
    margin-top: 2rem;
}

.get-in-touch-illustration img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
}

.contact-form-wrapper {
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.vendor-contact-form .form-group {
    margin-bottom: 25px;
}

.vendor-contact-form .form-group label {
    font-weight: 600;
    color: #333333;
    margin-bottom: 8px;
}

.vendor-contact-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 14px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.vendor-contact-form .form-control:focus {
    border-color: #E73F50;
    box-shadow: 0 0 0 0.2rem rgba(231, 63, 80, 0.25);
}

.captcha-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.captcha-image {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    padding: 8px 12px;
    border-radius: 5px;
    border: 1px solid #dee2e6;
}

.captcha-text {
    font-family: 'Courier New', monospace;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    background: linear-gradient(45deg, #e94560, #007bff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.captcha-container input {
    flex: 1;
}

.vendor-contact-form .btn-primary {
    background-color: #E73F50;
    border-color: #E73F50;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.vendor-contact-form .btn-primary:hover {
    background-color: #d32f2f;
    border-color: #d32f2f;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(231, 63, 80, 0.3);
}

/* Responsive Design for Get in Touch */
@media (max-width: 768px) {
    .get-in-touch-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .get-in-touch-title {
        font-size: 2.5rem;
    }
    
    .get-in-touch-subtitle {
        font-size: 1.2rem;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
}
