
@media (min-width: 1400px) {
    .container{
        max-width: 1400px;
    }
}
h1, h2, h3, h4, h5, h6{
     color: var(--secondary-foreground);
}
h1 span {
    font-weight: 600;
}
.lead {
    font-size: 16px;
    line-height: 25px;
}
.text-muted{
     color: var(--secondary-foreground) !important;
}
.btn-outline-primary:hover {
    border-color:  var(--primary);
    background:  var(--secondary-foreground);
}
.medmarket-page {
    background: linear-gradient(180deg, var(--background), var(--secondary));
}

.medmarket-hero {
    /* background: linear-gradient(135deg, var(--primary), #d32f2f); */
    color: var(--foreground);
    padding-block: 8rem;
    position: relative;
    overflow: hidden;
}
.medmarket-hero.gray_bg{
    background-image: linear-gradient(to right, transparent, rgb(240 20 20 / 8%), transparent);
}
.medmarket-hero.gray_bg::before{
display: none;
}

.medmarket-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero-medical.jpg') center/cover;
    opacity: 0.2;
    z-index: 1;
}

.medmarket-hero .container {
    position: relative;
    z-index: 2;
}

.medmarket-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
}

.medmarket-subtitle {
    font-size: 18px;
    opacity: 0.9;
    line-height: 30px;
}

.medmarket-btn {
    background: var(--primary);
    border: none;
    color: var(--primary-foreground);
    padding: 15px 30px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(240, 20, 20, 0.3);
}

.medmarket-btn:hover {
    background: var(--medical-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(240, 20, 20, 0.4);
    color: var(--primary-foreground);
}

.medmarket-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.medmarket-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(240, 20, 20, 0.2);
}

.medmarket-icon {
    width: 60px;
    height: 60px;
    background: var(--medical-red-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary);
    font-size: 18px;
}

.medmarket-step {
    position: relative;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
}

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

.medmarket-step-number {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--primary-foreground);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.medmarket-cta {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}


.medmarket-cta .container {
    position: relative;
    z-index: 2;
}

.medmarket-stars {
    color: var(--primary);
    font-size: 18px;
    margin-bottom: 1rem;
}

.medmarket-highlight {
    background: var(--medical-red-light);
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
    margin: 2rem 0;
}

.medmarket-floating {
    position: absolute;
    border-radius: 50%;
    background: var(--medical-red-light);
    animation: float 6s ease-in-out infinite;
}

.medmarket-floating:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.medmarket-floating:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 40%;
    right: 15%;
    animation-delay: 2s;
}

.medmarket-floating:nth-child(3) {
    width: 40px;
    height: 40px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.medmarket-section {
    padding: 5rem 0;
}

.medmarket-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.medmarket-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted-foreground);
}

.medmarket-feature::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}
.text-red {
    color: var(--primary);
}

/* Custom CSS Grid for Steps */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.step-item {
    display: flex;
    flex-direction: column;
}

.section-heading{
    font-size: 3rem;
    color: var(--secondary-foreground);
}

/* Comprehensive Responsive Styles */

/* Large Desktop (1200px and up) */
@media (max-width: 1200px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .medmarket-title {
        font-size: 3rem;
    }
    
    .medmarket-section {
        padding: 4rem 0;
    }
}

/* Tablet (768px to 1199px) */
@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .medmarket-title {
        font-size: 2.5rem;
        line-height: 1.3;
    }
    
    .medmarket-subtitle {
        font-size: 1.2rem;
    }
    
    .medmarket-hero {
        min-height: 80vh;
        padding: 2rem 0;
    }
    
    .medmarket-section {
        padding: 3rem 0;
    }
    
    .medmarket-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .medmarket-step {
        padding: 1.5rem 1rem;
    }
    
    .medmarket-cta {
        padding: 2rem 1.5rem;
    }
    
    .medmarket-btn {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .section-heading {
        font-size: 2.5rem;
    }
    
    .lead {
        font-size: 1.1rem;
    }
    
    .medmarket-features {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .medmarket-feature {
        font-size: 0.9rem;
    }
}

/* Mobile (576px and below) */
@media (max-width: 576px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .medmarket-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .medmarket-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .medmarket-hero {
        min-height: 70vh;
        padding: 1.5rem 0;
    }
    
    .medmarket-section {
        padding: 2rem 0;
    }
    
    .medmarket-card {
        padding: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .medmarket-step {
        padding: 1.25rem 0.75rem;
    }
    
    .medmarket-cta {
        padding: 1.5rem 1rem;
    }
    
    .medmarket-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 300px;
    }
    
    .section-heading {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .lead {
        font-size: 1rem;
    }
    
    .medmarket-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .medmarket-step-number {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
        top: -12px;
        right: -12px;
    }
    
    .medmarket-stars {
        font-size: 1.2rem;
    }
    
    .medmarket-highlight {
        padding: 0.75rem 1rem;
        margin: 1.5rem 0;
    }
    
    .medmarket-features {
        gap: 0.6rem;
    }
    
    .medmarket-feature {
        font-size: 0.85rem;
        text-align: center;
    }
    
    /* Container padding for mobile */
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Hide floating elements on mobile for better performance */
    .medmarket-floating {
        display: none;
    }
}

/* Extra Small Mobile (480px and below) */
@media (max-width: 480px) {
    .medmarket-title {
        font-size: 1.8rem;
    }
    
    .medmarket-subtitle {
        font-size: 0.95rem;
    }
    
    .section-heading {
        font-size: 1.8rem;
    }
    
    .medmarket-card {
        padding: 1rem;
    }
    
    .medmarket-step {
        padding: 1rem 0.5rem;
    }
    
    .medmarket-cta {
        padding: 1.25rem 0.75rem;
    }
    
    .medmarket-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

/* ========================================
   OFFER SERVICES PAGE STYLES
   ======================================== */

/* Badge Styles */
.medmarket-badge {
    margin-bottom: 1.5rem;
}

.medmarket-badge .badge {
    background: var(--medical-red-light);
    color: var(--primary);
    border: none;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Small Icon Styles for Benefits */
.medmarket-icon-small {
    width: 50px;
    height: 50px;
    background: var(--medical-red-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Button Styles */
.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: var(--primary-foreground);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(240, 20, 20, 0.3);
}

/* Success Check Icons */
.text-success {
    color: #28a745 !important;
}

/* Gap utility for flexbox */
.gap-3 {
    gap: 1rem;
}

/* Responsive adjustments for Offer Services page */
@media (max-width: 768px) {
    .medmarket-icon-small {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .btn-outline-primary {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .medmarket-badge .badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .medmarket-icon-small {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .btn-outline-primary {
        padding: 0.35rem 0.7rem;
        font-size: 0.85rem;
        width: 100%;
        max-width: 200px;
    }
}

/* ========================================
   START SELLING PAGE STYLES
   ======================================== */

/* Hero Image Container */
.hero-image-container {
    position: relative;
    display: inline-block;
    width: 100%;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.5s ease;
}

.hero-image:hover {
    transform: scale(1.05);
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 0.5rem;
    padding: 1rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    animation: bounce 2s infinite;
}

.floating-card-1 {
    top: -1rem;
    right: -1rem;
    animation-delay: 1s;
}

.floating-card-2 {
    bottom: -1rem;
    left: -1rem;
    animation-delay: 1.5s;
}

.floating-card-content {
    text-align: center;
}

.floating-card-number {
    font-size: 18px;
    font-weight: bold;
    color: var(--primary);
    line-height: 1;
}

.floating-card-label {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin-top: 0.25rem;
}

/* Benefits List */
.benefits-list {
    display: flex;
    flex-direction: column;
}

.benefit-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 0px;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: var(--muted);
    transform: translateX(0.5rem);
}

/* Market Reach Card */
.market-reach-card {
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(240, 20, 20, 0.1);
}

.market-reach-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(240, 20, 20, 0.05), rgba(240, 20, 20, 0.02));
    z-index: 1;
}

.market-reach-card > * {
    position: relative;
    z-index: 2;
}

.market-highlight {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgb(255 255 255 / 50%);
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.market-highlight:last-child {
    margin-bottom: 0;
}

.market-highlight:hover {
    transform: scale(1.02);
    background: rgba(255, 255, 255, 0.15);
}

.market-highlight-icon {
    width: 2rem;
    height: 2rem;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.market-highlight-content {
    flex: 1;
}

/* Process Grid */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.process-item {
    display: flex;
    flex-direction: column;
}

/* Process Steps */
.process-step {
    position: relative;
    padding: 1.5rem;
    transition: all 0.3s ease;
    height: 100%;
}

.process-step:hover {
    transform: scale(1.05);
}

.process-icon {
    width: 4rem;
    height: 4rem;
    background: var(--primary);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(240, 20, 20, 0.3);
    transition: all 0.3s ease;
}

.process-step:hover .process-icon {
    transform: rotate(6deg) scale(1.1);
    box-shadow: 0 12px 35px rgba(240, 20, 20, 0.4);
}

.process-icon i {
    color: white;
    font-size: 18px;
}

.process-number {
    color: white;
    font-size: 18px;
    font-weight: bold;
}

/* Process Flow */
.process-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.flow-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--muted-foreground);
}

.flow-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.flow-dot-1 {
    background:  rgb(from var(--primary) r g b / 0.5);
}

.flow-dot-2 {
    background: rgb(from var(--primary) r g b / 0.8);
    animation-delay: 0.5s;
}

.flow-dot-3 {
    background: rgb(from var(--primary) r g b / 1);
    animation-delay: 1s;
}

.flow-line {
    width: 2rem;
    height: 0.125rem;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

/* Trust Section */
.trust-card {
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(240, 20, 20, 0.1);
}

.trust-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(240, 20, 20, 0.05), rgba(240, 20, 20, 0.02));
    z-index: 1;
}

.trust-card > * {
    position: relative;
    z-index: 2;
}

.trust-icon-container {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
}

.trust-icon {
    font-size: 6rem;
    color: var(--primary);
    transition: all 0.5s ease;
}

.trust-card:hover .trust-icon {
    transform: scale(1.1);
}

.trust-icon-container::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8rem;
    height: 8rem;
    background: rgba(240, 20, 20, 0.2);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 2s infinite;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.trust-badge {
    font-size: 2rem;
    color: var(--foreground);
    animation: bounce 2s infinite;
}

.trust-badge:nth-child(2) {
    animation-delay: 0.2s;
}

.trust-badge:nth-child(3) {
    animation-delay: 0.4s;
}

.trust-points {
    display: flex;
    flex-direction: column;
}

.trust-point {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.trust-point:hover {
    background: var(--muted);
    transform: translateX(0.5rem);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    z-index: 1;
}

.cta-section > * {
    position: relative;
    z-index: 2;
}

.cta-badge .badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.cta-title {
    color: white;
    font-size: 3rem;
}

.cta-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
}

.cta-btn {
    background: white;
    color: var(--primary);
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.cta-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
    color: var(--primary);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.cta-feature:nth-child(2) .cta-dot {
    animation-delay: 0.5s;
}

.cta-feature:nth-child(3) .cta-dot {
    animation-delay: 1s;
}

/* Animations */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

/* Responsive adjustments for Start Selling page */
@media (max-width: 1200px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 2.5rem;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .floating-card {
        display: none;
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .process-flow {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .flow-line {
        width: 0.125rem;
        height: 2rem;
    }
}

@media (max-width: 576px) {
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
    
    .trust-icon {
        font-size: 4rem;
    }
    
    .market-reach-card,
    .trust-card {
        padding: 1.5rem;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* ========================================
   ADVERTISE PAGE STYLES
   ======================================== */

/* Advertise Hero Section */
.advertise-hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: var(--background);
}

.hero-background-elements {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(3rem);
    opacity: 0.2;
}

.hero-bg-element-1 {
    width: 18rem;
    height: 18rem;
    top: 5rem;
    left: 5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.hero-bg-element-2 {
    width: 24rem;
    height: 24rem;
    bottom: 5rem;
    right: 5rem;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    opacity: 0.1;
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.05;
}

.hero-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(250, 250, 250, 0.6), rgba(250, 250, 250, 0.8), rgba(250, 250, 250, 1));
}

.advertise-hero .container {
    position: relative;
    z-index: 10;
}

.advertise-badge .badge {
    background: var(--medical-red-light);
    color: var(--primary);
    border: none;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.advertise-badge .badge i {
    animation: pulse 2s infinite;
}

.advertise-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--secondary-foreground);
}


.advertise-subtitle {
    font-size: 18px;
    color: var(--muted-foreground);
}

.advertise-btn {
    background: var(--primary);
    border: none;
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(240, 20, 20, 0.3);
    min-width: 280px;
}

.advertise-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(240, 20, 20, 0.4);
    color: white;
}

/* Dashboard Image */
.dashboard-image-container {
    position: relative;
}

.dashboard-image-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    opacity: 0.1;
    border-radius: 1rem;
    filter: blur(2rem);
    z-index: -1;
}

.dashboard-image {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 1px solid var(--border);
}

/* Advertise Benefit Cards */
.advertise-benefit-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.advertise-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(240, 20, 20, 0.2);
    border-color: rgba(240, 20, 20, 0.2);
}

.benefit-icon {
    width: 3rem;
    height: 3rem;
    background: var(--medical-red-light);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.advertise-benefit-card:hover .benefit-icon {
    transform: scale(1.1);
    background: var(--primary);
    color: white;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}



.benefit-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(240, 20, 20, 0.2);
    border-color: rgba(240, 20, 20, 0.2);
}

.benefit-card-icon {
    width: 4rem;
    height: 4rem;
    background: rgb(from var(--primary) r g b / 0.1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--primary);
    font-size: 18px;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-card-icon {
    transform: scale(1.1);
}

.benefit-card:hover h4 {
    color: var(--primary);
}

/* Process Step Cards */
.process-step-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.process-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(240, 20, 20, 0.2);
    border-color: rgba(240, 20, 20, 0.2);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 1rem;
    font-weight: bold;
    font-size: 1.25rem;
    box-shadow: 0 4px 15px rgba(240, 20, 20, 0.3);
    transition: all 0.3s ease;
}
.step-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.process-step-card:hover .step-number {
    transform: scale(1.1);
}

.step-icon {
    width: 3rem;
    height: 3rem;
    background: var(--medical-red-light);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.process-step-card:hover .step-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.process-step-card:hover h5 {
    color: var(--primary);
}

/* Process Image */
.process-image-container {
    position: relative;
}

.process-image-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    opacity: 0.2;
    border-radius: 1rem;
    filter: blur(2rem);
    z-index: -1;
}

.process-image {
    width: 100%;
    max-width: 28rem;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 1px solid var(--border);
    margin: 0 auto;
    display: block;
}

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-background-elements {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.cta-bg-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    filter: blur(3rem);
}

.cta-bg-element-1 {
    width: 24rem;
    height: 24rem;
    top: 5rem;
    left: 5rem;
}

.cta-bg-element-2 {
    width: 18rem;
    height: 18rem;
    bottom: 5rem;
    right: 5rem;
}

.cta-image-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.cta-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
}

.cta-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(240, 20, 20, 0.8), rgba(240, 20, 20, 0.6));
}

.final-cta-section .container {
    position: relative;
    z-index: 10;
}

.cta-title {
    color: white;
    font-size: 3.5rem;
    line-height: 1.2;
}

.cta-subtitle {
    color: rgba(255, 255, 255, 0.9);
   font-size: 18px;
}

.cta-highlight-box {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-highlight-text {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    margin: 0;
}

.highlight-text {
    background: linear-gradient(to right, white, rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-btn {
    background: white;
    color: var(--primary);
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    min-width: 320px;
}

.cta-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
    color: var(--primary);
}

/* Responsive adjustments for Advertise page */
@media (max-width: 1200px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .advertise-hero{
        padding-block: 4rem;
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .advertise-title {
        font-size: 3rem;
    }
    
    .advertise-subtitle {
        font-size: 1.25rem;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .cta-subtitle {
        font-size: 1.25rem;
    }
    
    .cta-highlight-text {
        font-size: 18px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .advertise-btn,
    .cta-btn {
        min-width: auto;
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .advertise-title {
        font-size: 2.5rem;
    }
    
    .advertise-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-highlight-text {
        font-size: 1.25rem;
    }
    
    .hero-bg-element-1,
    .hero-bg-element-2,
    .cta-bg-element-1,
    .cta-bg-element-2 {
        display: none;
    }
}

/* ========================================
   RENTAL SERVICES PAGE STYLES
   ======================================== */

/* Rental Hero Section */
.rental-hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: var(--background);
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.rental-hero img.hero-bg-image {
    opacity: 1;
}

.hero-gradient-overlay-1 {
    position: absolute;
    inset: 0;
    background: #000;
    opacity: 0.3;
}


.rental-hero .container {
    position: relative;
    z-index: 10;
}

.rental-title {
    color: white;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
}

.rental-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
}

.rental-btn {
    background: var(--primary);
    border: none;
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(240, 20, 20, 0.3);
    min-width: 280px;
}

.rental-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(240, 20, 20, 0.4);
    color: white;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Rental Benefit Cards */
.rental-benefit-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.rental-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(240, 20, 20, 0.2);
    border-color: rgba(240, 20, 20, 0.2);
}

.benefit-icon-large {
    width: 5rem;
    height: 5rem;
    background: var(--primary);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(240, 20, 20, 0.3);
}

.rental-benefit-card:hover .benefit-icon-large {
    transform: scale(1.1);
}

.rental-benefit-card:hover h4 {
    color: var(--primary);
}

/* Feature List */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--primary);
    padding-bottom: 1px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(240, 20, 20, 0.3);
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
}

.feature-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--foreground);
}

/* Feature Image */
.feature-image-container {
    position: relative;
}

.feature-image {
    width: 100%;
    height: 24rem;
    object-fit: cover;
    border-radius: 1.5rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.feature-image-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent, transparent);
    border-radius: 1.5rem;
}

/* How It Works Section */
.how-it-works-section {
    background: linear-gradient(135deg, #000000, #20346f, #000000);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.how-it-works-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
}

.how-it-works-section .container {
    position: relative;
    z-index: 10;
}

.how-it-works-title {
    color: white;
    font-size: 3.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.how-it-works-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: 18px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Background Elements */
.how-it-works-bg-elements {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.bg-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(3rem);
}

.bg-element-1 {
    width: 8rem;
    height: 8rem;
    top: 5rem;
    left: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
}

.bg-element-2 {
    width: 10rem;
    height: 10rem;
    bottom: 5rem;
    right: 2.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    opacity: 0.1;
}

.bg-element-3 {
    width: 24rem;
    height: 24rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
}

/* How It Works Container */
.how-it-works-container {
    position: relative;
    margin-bottom: 4rem;
}

.connection-line {
    position: absolute;
    top: 4rem;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    z-index: 2;
}

/* How It Works Steps Grid */
.how-it-works-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    position: relative;
    z-index: 3;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.step-card-wrapper {
    position: relative;
    margin-bottom: 2rem;
}

.how-it-works-card {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.5s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: relative;
}

.how-it-works-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.step-icon-large {
    width: 6rem;
    height: 6rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 3rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(240, 20, 20, 0.3);
}

.how-it-works-card:hover .step-icon-large {
    transform: scale(1.1);
}

.step-number-badge {
    position: absolute;
    top: -1rem;
    right: -1rem;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border: 4px solid rgba(255, 255, 255, 0.3);
}

.step-arrow {
    position: absolute;
    top: 3rem;
    right: -1.5rem;
    width: 3rem;
    height: 2px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.4), transparent);
}

.step-arrow::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
}

.step-title {
    color: white;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.step-item:hover .step-title {
    color: var(--secondary);
}

.step-description {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.step-item:hover .step-description {
    color: white;
}

.how-it-works-btn {
    background: white;
    color: var(--primary);
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    min-width: 320px;
}

.how-it-works-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}

/* Final CTA Rental Section */
.rental-final-cta-section {
    background: white;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.rental-cta-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.rental-cta-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.05;
}

.rental-cta-gradient-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.9);
}

.rental-final-cta-section .container {
    position: relative;
    z-index: 10;
}

.rental-cta-title {
    color: var(--foreground);
    font-size: 3.5rem;
    line-height: 1.2;
}

.rental-cta-subtitle {
    color: var(--muted-foreground);
    font-size: 18px;
}

.rental-cta-text {
    color: var(--muted-foreground);
    font-size: 1.1rem;
}

.rental-cta-btn {
    background: var(--primary);
    border: none;
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(240, 20, 20, 0.3);
    min-width: 320px;
}

.rental-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(240, 20, 20, 0.4);
    color: white;
}

/* Rental Trust Indicators */
.rental-trust-indicators {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 32rem;
    margin: 0 auto;
}

.rental-trust-item {
    text-align: center;
}

.rental-trust-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.rental-trust-label {
    font-size: 0.9rem;
    color: var(--muted-foreground);
}

/* Responsive adjustments for Rental Services page */
@media (max-width: 1200px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .how-it-works-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .connection-line {
        display: none;
    }
    
    .step-arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    .rental-title {
        font-size: 3rem;
    }
    
    .rental-subtitle {
        font-size: 1.25rem;
    }
    
    .how-it-works-title {
        font-size: 2.5rem;
    }
    
    .how-it-works-subtitle {
        font-size: 1.25rem;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .cta-subtitle {
        font-size: 1.25rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .how-it-works-steps {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .connection-line {
        display: none;
    }
    
    .step-arrow {
        display: none;
    }
    
    .rental-trust-indicators {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .rental-btn,
    .how-it-works-btn,
    .rental-cta-btn {
        min-width: auto;
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .rental-title {
        font-size: 2.5rem;
    }
    
    .rental-subtitle {
        font-size: 1.1rem;
    }
    
    .how-it-works-title {
        font-size: 2rem;
    }
    
    .how-it-works-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-text {
        font-size: 1rem;
    }
    
    .rental-hero {
        padding-block: 4rem;
        min-height: auto;
    }
}

/* ========================================
   SUPPLIER OFFER SERVICES PAGE STYLES
   ======================================== */

/* Supplier Hero Section */
.supplier-hero {
    min-height: 100vh;
    padding-block: 4rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f0141433, var(--secondary));
}

.supplier-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
}

.supplier-hero .container {
    position: relative;
    z-index: 10;
}

.supplier-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
}

.supplier-subtitle {
    font-size: 18px;
}

.supplier-btn {
    background: var(--primary);
    border: none;
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(240, 20, 20, 0.3);
    min-width: 280px;
}

.supplier-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(240, 20, 20, 0.4);
    color: white;
}

/* Supplier Hero Image */
.supplier-hero-image-container {
    position: relative;
}

.supplier-hero-image {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 0px 20px rgb(0 0 0 / 6%);
}

.supplier-hero-image-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(30, 64, 175, 0.2), transparent);
    border-radius: 1rem;
}

/* Supplier Benefits Section */
.supplier-benefits-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, var(--background), rgba(0,0,0,0.02));
}

.supplier-badge .badge {
    background: transparent;
    color: var(--primary);
    border: 1px solid rgba(240, 20, 20, 0.2);
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.supplier-benefits-title {
    font-size: 3.5rem;
    line-height: 1.2;
}

.supplier-benefits-subtitle {
    font-size: 18px;
    color: var(--muted-foreground);
}

/* Supplier Benefit Cards */
.supplier-benefit-card {
    background: white;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 1.5rem;
    padding: 2rem;
    height: 100%;
    transition: all 0.7s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.supplier-benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.benefit-card-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 8rem;
    height: 8rem;
    background: linear-gradient(135deg, rgba(240, 20, 20, 0.05), rgba(240, 20, 20, 0.02));
    border-radius: 50%;
    transform: translate(4rem, -4rem);
}

.benefit-content {
    position: relative;
    z-index: 10;
}

.benefit-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.benefit-title-section h4 {
    color: var(--foreground);
    font-size: 18px;
}

.benefit-title-section p {
    color: var(--primary);
    font-size: 1rem;
}

.benefit-stats {
    text-align: right;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    /* color: var(--primary); */
}

.stat-label {
    font-size: 0.9rem;
    /* color: var(--muted-foreground); */
    font-weight: 500;
}

.benefit-description {
    color: var(--muted-foreground);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.benefit-progress {
    height: 4px;
    background: var(--muted);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    width: 100%;
    transform: translateX(-100%);
    transition: transform 1s ease-out;
}

.supplier-benefit-card:hover .progress-bar {
    transform: translateX(0);
}

/* Supplier CTA Card */
.supplier-cta-card {
    background: white;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 1.5rem;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-top: 2rem;
}

.supplier-cta-card h3 {
    font-size: 2rem;
    color: var(--foreground);
}

.supplier-cta-card p {
    font-size: 1.1rem;
    color: var(--muted-foreground);
}

/* Supplier Final CTA Section */
.supplier-final-cta-section {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.supplier-cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
}

.supplier-final-cta-section .container {
    position: relative;
    z-index: 10;
}

.supplier-cta-title {
    color: white;
    font-size: 3.5rem;
    line-height: 1.2;
}

.supplier-cta-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
}

.supplier-cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.supplier-cta-btn-primary {
    background: white;
    color: var(--primary);
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    min-width: 320px;
}

.supplier-cta-btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
    color: var(--primary);
}

.supplier-cta-btn-secondary {
    background: var(--primary);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    min-width: 320px;
}

.supplier-cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

/* Responsive adjustments for Supplier Offer Services page */
@media (max-width: 1200px) {
    .supplier-benefits-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .supplier-title {
        font-size: 3rem;
    }
    
    .supplier-subtitle {
        font-size: 1.25rem;
    }
    
    .supplier-benefits-title {
        font-size: 2.5rem;
    }
    
    .supplier-benefits-subtitle {
        font-size: 1.25rem;
    }
    
    .supplier-cta-title {
        font-size: 2.5rem;
    }
    
    .supplier-cta-subtitle {
        font-size: 1.25rem;
    }
    
    .benefit-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .benefit-stats {
        text-align: left;
    }
    
    .supplier-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .supplier-btn,
    .supplier-cta-btn-primary,
    .supplier-cta-btn-secondary {
        min-width: auto;
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .supplier-title {
        font-size: 2.5rem;
    }
    
    .supplier-subtitle {
        font-size: 1.1rem;
    }
    
    .supplier-benefits-title {
        font-size: 2rem;
    }
    
    .supplier-benefits-subtitle {
        font-size: 1.1rem;
    }
    
    .supplier-cta-title {
        font-size: 2rem;
    }
    
    .supplier-cta-subtitle {
        font-size: 1.1rem;
    }
    
    .supplier-hero {
        padding-block: 4rem;
        min-height: auto;
    }
}