/* General Styles */
:root {
    --primary-color: #007BFF;
    --secondary-color: #28a745;
    --dark-bg: #054e09;
    --light-bg: #f8f9fa;
    --white: #fff;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 12px;
}

/* Shop & Ship Specific Styles */
.shop-ship-hero {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    color: var(--text-dark);
    padding: 80px 0 60px;
    border-bottom: 1px solid #e9ecef;
}

.shop-ship-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.shop-ship-hero h1 .text-primary {
    color: var(--primary-color);
    display: block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.shop-ship-hero .hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 2rem;
}

.shop-ship-hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* How It Works Section */
.how-it-works {
    position: relative;
    overflow: hidden;
}

.how-it-works .section-title h2 {
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.how-it-works .section-title h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

.step-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.step-card:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
}

.step-card h3 {
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.step-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.step-arrow {
    position: absolute;
    top: 50%;
    right: -15%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.5;
}

@media (max-width: 991.98px) {
    .step-card {
        margin-bottom: 2rem;
    }
    
    .step-arrow {
        display: none !important;
    }
    
    .step-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
}

/* Popular Categories */
.popular-categories {
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.popular-categories:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 70%);
    z-index: 0;
}

.popular-categories .container {
    position: relative;
    z-index: 1;
}

.popular-categories .section-title h2 {
    color: var(--white);
    position: relative;
    display: inline-block;
}

.popular-categories .section-title h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

.popular-categories .section-title p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-top: 1rem;
}

.popular-categories {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

/* Ensure text visibility in popular categories */
.popular-categories .section-title h2,
.popular-categories .section-title p {
    color: #1a202c !important;
}

/* Scrolling Retailers Section */
.retailers-section {
    background-color: #f8f9fa;
    overflow: hidden;
}

.retailers-scroll-container {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    position: relative;
}

.retailers-track {
    display: flex;
    width: max-content;
    will-change: transform;
}

.retailers-inner {
    display: flex;
    gap: 24px;
    padding: 10px 0;
    will-change: transform;
}

.retailer-item {
    flex: 0 0 auto;
    width: 160px;
    transition: transform 0.3s ease;
}

.retailer-item:hover {
    transform: translateY(-5px);
}

.retailer-item .card {
    border-radius: 12px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.retailer-item .card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 15px;
}

.retailer-item img {
    max-height: 50px;
    width: auto;
    object-fit: contain;
    margin-bottom: 10px;
}

.retailer-item .small {
    font-size: 0.875rem;
    color: #4a5568;
    font-weight: 500;
}

/* Retailer logo styles */
.retailer-logo {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.jambo-logo {
    color: #e31e25;
    background: #ffd700;
    border-radius: 4px;
    padding: 0 10px;
}

.naivas-logo {
    color: #ffffff;
    background: #e31e25;
    border-radius: 4px;
    padding: 0 10px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.category-card {
    background: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    padding: 25px 15px;
    border-top: 4px solid var(--primary-color);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.category-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
}

.category-card h3 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 10px;
}

.category-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Feature Boxes */
.feature-box {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    height: 100%;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.feature-box:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature-box i {
    font-size: 3rem;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.feature-box h3 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Pricing Card */
.pricing-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow);
    text-align: center;
    border-top: 5px solid var(--primary-color);
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.pricing-card .price {
    font-size: 3.5rem;
    color: var(--primary-color);
    font-weight: 800;
    margin: 1.5rem 0;
}

.pricing-card .price small {
    font-size: 1rem;
    color: var(--text-light);
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
}

.pricing-card ul li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
    color: var(--text-dark);
    position: relative;
    padding-left: 2rem;
}

.pricing-card ul li:before {
    content: '✓';
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* CTA Buttons */
.cta-btn, .get-started-btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
    text-decoration: none;
}

.cta-btn:hover, .get-started-btn:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Shop & Ship FAQ Section - Specific Styles */
.shop-ship-faq {
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.shop-ship-faq .faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.shop-ship-faq .accordion-item {
    margin-bottom: 1rem;
    border: 1px solid #e9ecef !important;
    border-radius: 0.5rem !important;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.shop-ship-faq .accordion-button {
    font-weight: 600;
    padding: 1.25rem 1.5rem !important;
    background-color: #fff !important;
    color: #212529 !important;
    border: none !important;
    text-align: left;
    width: 100%;
    display: flex !important;
    align-items: center;
    gap: 1rem;
}

.shop-ship-faq .accordion-button:not(.collapsed) {
    color: #0d6efd !important;
    background-color: #fff !important;
    box-shadow: none !important;
}

.shop-ship-faq .accordion-button:focus {
    box-shadow: none !important;
    border-color: transparent !important;
}

.shop-ship-faq .accordion-button::after {
    margin-left: auto !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
    background-size: 1.25rem !important;
    width: 1.25rem !important;
    height: 1.25rem !important;
    transition: transform 0.2s ease-in-out !important;
}

.shop-ship-faq .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230d6efd'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
    transform: rotate(180deg) !important;
}

.shop-ship-faq .accordion-body {
    padding: 0 1.5rem 1.5rem 1.5rem !important;
    background-color: #fff !important;
    border: none !important;
    color: #4a5568;
    line-height: 1.6;
}

/* Mobile styles */
@media (max-width: 767.98px) {
    .shop-ship-faq {
        padding: 2.5rem 0;
    }
    
    .shop-ship-faq .accordion-button {
        padding: 1.25rem 1.25rem 1.25rem 1.5rem !important;
        font-size: 1rem;
        line-height: 1.5;
        align-items: flex-start;
    }
    
    .shop-ship-faq .accordion-button::after {
        margin-top: 0.25rem !important;
    }
    
    .shop-ship-faq .accordion-body {
        padding: 0 1.5rem 1.5rem 1.5rem !important;
        font-size: 0.95rem;
    }
}

/* WhatsApp Button */
.whatsapp-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    animation: pulse 2s infinite;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    font-size: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    color: white;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Fix for mobile FAQ icons */
@media (max-width: 767.98px) {
    .faq-accordion .accordion-button {
        padding: 1.25rem 1rem 1.25rem 4rem;
        position: relative;
    }
    
    .faq-accordion .accordion-button::before {
        content: '';
        position: absolute;
        left: 1rem;
        top: 50%;
        transform: translateY(-50%);
        width: 1.5rem;
        height: 1.5rem;
        background-color: rgba(13, 110, 253, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .faq-accordion .accordion-button::after {
        position: relative;
        margin-left: 0.5rem;
    }
    
    .faq-accordion .accordion-body {
        padding: 1rem;
    }
}

/* FAQ Section */
.faq-section {
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
    padding: 5rem 0;
}

.faq-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 70%);
    z-index: 0;
}

.faq-section .accordion-button {
    font-size: 1.1rem;
    border-radius: 0.5rem !important;
    transition: all 0.3s ease;
    box-shadow: none !important;
    padding: 1.25rem 1.5rem 1.25rem 4rem;
    position: relative;
    background-color: white;
    border: 1px solid #e2e8f0;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
}

.faq-section .accordion-button i {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.faq-section .accordion-button:not(.collapsed) {
    background-color: #f8fafc;
    color: var(--primary-color);
    border-color: #e2e8f0;
    box-shadow: none;
}

.faq-section .accordion-button:not(.collapsed) i {
    color: var(--primary-color) !important;
}

.faq-section .accordion-button:focus {
    border-color: var(--primary-color);
}

.faq-section .accordion-body {
    padding: 1.5rem 1.5rem 1.5rem 4rem;
    background-color: #ffffff;
    border-radius: 0 0 0.5rem 0.5rem;
    border-left: 3px solid var(--primary-color);
    margin-left: 1px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a5568;
    display: block !important; /* Ensure accordion body is always visible */
    border-top: 1px solid #f1f5f9;
}

.faq-section .accordion-body p {
    margin-bottom: 1rem;
}

.faq-section .accordion-body p:last-child {
    margin-bottom: 0;
}

.faq-section .accordion-body ul,
.faq-section .accordion-body ol {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.faq-section .accordion-body li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 0.75rem;
}

.faq-section .accordion-body li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.faq-section .accordion-item {
    border: 1px solid #e2e8f0;
    margin-bottom: 1rem;
    border-radius: 0.5rem !important;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fff;
}

.faq-section .accordion-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.faq-section .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2337517e'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-size: 1.25rem;
    transition: transform 0.2s ease-in-out;
}

.faq-section .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(-180deg);
}

.faq-section .support-cta {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-section .support-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.faq-section .support-cta i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .faq-section .accordion-button {
        padding: 0.8rem 1rem 0.8rem 2.5rem;
        font-size: 1rem;
    }
    
    .faq-section .accordion-body {
        padding: 1rem;
    }
    
    .faq-section .support-cta {
        text-align: center;
    }
    
    .faq-section .support-cta i {
        margin: 0 0 1rem 0;
        display: block;
    }
}

/* FAQ Section Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-section .accordion-item {
    opacity: 1 !important; /* Override any opacity settings */
    animation: fadeInUp 0.4s ease-out forwards;
    animation-delay: calc(var(--animation-order, 0) * 0.1s);
    margin-bottom: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem !important;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

/* Ensure accordion content is always visible */
.accordion-collapse {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Support CTA Styling */
.support-cta {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    margin-top: 2rem;
}

.support-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.support-cta i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: inline-block;
    background: rgba(255, 107, 53, 0.1);
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    text-align: center;
}

.support-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.support-cta p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.support-cta .btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.support-cta .btn i {
    font-size: 1rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
    margin-bottom: 0;
    width: auto;
    height: auto;
    line-height: 1;
    background: none;
}

.support-cta .btn:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .shop-ship-hero {
        padding: 80px 0;
        text-align: center;
    }
    
    .shop-ship-hero h1 {
        font-size: 2.2rem;
    }
    
    .shop-ship-hero p {
        font-size: 1.1rem;
    }
    
    .feature-box {
        margin-bottom: 2rem;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
    }
    
    .faq-list a {
        padding: 15px 20px 15px 50px;
        font-size: 1rem;
    }
    
    .faq-list p {
        padding: 0 20px 15px 50px;
    }
}

/* Page Title */
.page-title {
    background: url('../img/cta-bg2.jpg') center/cover no-repeat;
    text-align: center;
    color: var(--white);
    padding: 100px 20px;
    position: relative;
}

.page-title::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.page-title .container {
    position: relative;
    z-index: 2;
}

.page-title h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: rgb(250, 164, 4);
}

.page-title .lead {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--white);
}

/* Service Cards */
.service-card {
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    background: var(--white);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.icon-box i {
    font-size: 24px;
    color: var(--white);
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.service-list li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.service-list a {
    color: #333;
    text-decoration: none;
    transition: var(--transition);
}

.service-list a:hover {
    color: var(--primary-color);
}

/* How It Works Section */
.step-card {
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: bold;
}

/* Feature Cards */
.feature-card {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Section Styles */
.section-padding {
    padding: 5rem 0;
}

.section-title {
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c !important;
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.1rem;
    color: #4a5568 !important;
    max-width: 700px;
    margin: 0 auto;
}

/* Background Colors */
.bg-light {
    background-color: var(--light-bg);
}

.bg-primary {
    background-color: var(--dark-bg);
}

/* CTA Section */
.cta-section {
    background: white;
    padding: 4rem 0;
    color: black;
    text-align: center;
}

.cta-section h2 {
    color: #333;
    margin-bottom: 1rem;
}

.cta-section .btn {
    padding: 12px 30px;
    font-size: 1.1rem;
    transition: var(--transition);
}

.cta-section .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-title {
        padding: 80px 20px;
    }
    
    .page-title h1 {
        font-size: 2rem;
    }
    
    .section-padding {
        padding: 3rem 0;
    }
    
    .service-card,
    .step-card,
    .feature-card {
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .page-title h1 {
        font-size: 1.8rem;
    }
    
    .icon-box {
        width: 50px;
        height: 50px;
    }
    
    .icon-box i {
        font-size: 20px;
    }
}

/* Enhanced Service Cards */
.service-cards .service-detail-card {
    
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.1);
}

.service-cards .service-detail-card.hover-effect:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-cards .icon-box {
    width: 70px;
    height: 70px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-cards .icon-box i {
    font-size: 2rem;
    color: rgb(14, 158, 224);
}

.service-cards .feature-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-cards .feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: #555;
}

.service-cards .feature-list li i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* Parallax Section */
.parallax-section {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.parallax-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
}

/* Enhanced Form Styling */
.form-card {
    background: #fff;
    border-radius: 15px;
    padding: 2.5rem;
}

.form-floating {
    position: relative;
    margin-bottom: 1rem;
}

.form-floating input,
.form-floating select {
    height: 3.5rem;
    padding: 1rem 0.75rem;
}

.form-floating label {
    padding: 1rem 0.75rem;
}

.bg-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

/* Animations */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.animated li {
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
}

.animated li:nth-child(1) { animation-delay: 0.1s; }
.animated li:nth-child(2) { animation-delay: 0.2s; }
.animated li:nth-child(3) { animation-delay: 0.3s; }
.animated li:nth-child(4) { animation-delay: 0.4s; }

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

/* Service CTA */
.service-cta {
    margin-top: 1.5rem;
    text-align: center;
}

.service-cta .btn {
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Service Link Cards */
.service-link-card {
    display: block;
    text-decoration: none;
    color: inherit;
}

.service-link-card:hover {
    text-decoration: none;
    color: inherit;
}

.service-link-card .card {
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.1);
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
}

.bg-primary .service-icon {
    color: white;
}


/* Feature Box Styles */
.feature-box {
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-box .icon-circle {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-box .icon-circle i {
    font-size: 32px;
    color: #0d6efd;
    transition: all 0.3s ease;
}

.feature-box:hover .icon-circle {
    background: #0d6efd;
}

.feature-box:hover .icon-circle i {
    color: #ffffff;
}

.feature-box h4 {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.feature-box p {
    color: #6c757d;
    margin-bottom: 0;
}
