/* ===================================================
   MCG MARKETPLACE - EXACT ORIGINAL LIGHT DESIGN SYSTEM
   =================================================== */

:root {
    --bg-light: #ffffff;
    --bg-offwhite: #faf9f6;
    --bg-card: #ffffff;
    
    --red-primary: #cc0000;
    --red-hover: #b30000;
    --orange-accent: #f5a315;
    --orange-light: #fff8eb;
    
    --text-dark: #1a1a1a;
    --text-muted: #666666;
    --text-light: #888888;
    
    --border-color: #ebebeb;
    --border-dark: #1a1a1a;
    
    --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.08);
    
    --radius-pill: 56px;
    --radius-button: 28px;
    --radius-card: 20px;
    --radius-sm: 12px;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
}

body {
    min-height: 100vh;
    line-height: 1.5;
    overflow-x: hidden;
    position: relative;
    background: #ffffff;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* Utility Helpers */
.text-center { text-align: center; }
.text-red { color: var(--red-primary) !important; }
.mt-20 { margin-top: 20px; }
.mt-80 { margin-top: 80px; }
.full-width { width: 100%; }

/* Background Ambient Glow Effects (Top & Bottom) */
.bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    pointer-events: none;
    z-index: 0;
}

.glow-top-left {
    width: 675px;
    height: 675px;
    background: linear-gradient(247deg, rgba(245, 163, 21, 0.32) 0%, rgba(233, 72, 31, 0.32) 92%);
    top: -72px;
    left: -63px;
}

.glow-top-right {
    width: 675px;
    height: 675px;
    background-color: rgba(254, 216, 140, 0.6);
    top: -86px;
    right: 0;
}

.glow-middle {
    width: 500px;
    height: 500px;
    background-color: rgba(255, 235, 204, 0.4);
    top: 45%;
    left: 50%;
    transform: translateX(-50%);
}

/* Container */
.section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 90px 24px;
    position: relative;
    z-index: 1;
}

/* Pill Section Tags */
.section-tag-wrapper {
    margin-bottom: 12px;
}

.pill-tag {
    display: inline-block;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-pill);
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

/* Button System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 28px;
    border-radius: var(--radius-button);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.25s ease;
    white-space: nowrap;
    text-align: center;
}

.btn-red {
    background-color: var(--red-primary);
    color: #ffffff;
}

.btn-red:hover {
    background-color: var(--red-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(204, 0, 0, 0.3);
}

.btn-outline {
    background-color: #ffffff;
    border: 1px solid var(--border-dark);
    color: var(--text-dark);
}

.btn-outline:hover {
    background-color: #f7f7f7;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.btn-lg {
    height: 54px;
    padding: 0 34px;
    font-size: 15px;
    font-weight: 700;
}

/* Catchy Button Effects */
.glow-on-hover:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.ripple-btn {
    position: relative;
    overflow: hidden;
}

.ripple-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.6s ease;
}

.ripple-btn:active::after {
    transform: translate(-50%, -50%) scale(1);
    transition: 0s;
}

/* Top Navigation Header */
.header-wrapper {
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: center;
    padding: 0 24px;
}

.navbar {
    width: 100%;
    max-width: 1280px;
    height: 70px;
    background-color: #ffffff;
    border-radius: var(--radius-card);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.07);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.brand-logo {
    height: 50px;
    width: auto;
    display: block;
    margin-left:15px;

}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.2s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--red-primary);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-toggle {
    display: none;
    font-size: 22px;
    color: var(--text-dark);
}

/* Hero Section */
.hero-section {
    padding-top: 150px;
    padding-bottom: 60px;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 880px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-heading {
    font-size: 58px;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.hero-subtext {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 660px;
    margin: 0 auto 36px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 50px;
}

/* Hero Visual Mockup & Floating Badges */
.hero-visual-wrapper {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    min-height: 600px;
}

.mockup-container {
    width: 438px;
    height: auto;
    position: relative;
}

.phone-mockup {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

/* Floating Badges */
.float-badge {
    position: absolute;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    z-index: 10;
    transition: transform 0.3s ease;
}

.badge-top-left {
    top: 60px;
    left: 20px;
    width: 280px;
}

.badge-mid-right {
    top: 180px;
    right: 20px;
    width: 320px;
}

.badge-bot-left {
    bottom: 120px;
    left: 40px;
    width: 330px;
}

.badge-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
}

.red-icon {
    background-color: var(--red-primary);
    color: #ffffff;
}

.badge-content h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.badge-content p {
    font-size: 12px;
    color: var(--text-muted);
}

.float-animation {
    animation: float-slow 4s ease-in-out infinite;
}

.delay-float-1 { animation-delay: 1.3s; }
.delay-float-2 { animation-delay: 2.6s; }

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

/* How It Works Section */
.customer-steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 40px;
    position: relative;
}

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

.step-circle {
    position: relative;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #e9481f;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    box-shadow: 0 6px 18px rgba(233, 72, 31, 0.12);
}

.step-num {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f5a315, #e9481f);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.circle-icon {
    font-size: 26px;
    color: #e9481f;
}

.step-item h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.step-item p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
    max-width: 180px;
}

/* Vendor Steps */
.vendor-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.vendor-step-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-card);
    padding: 32px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vendor-step-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(204, 0, 0, 0.3);
}

.vendor-step-icon {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 2px solid var(--red-primary);
    color: var(--red-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
    background: #fff8f8;
}

.vendor-step-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.vendor-step-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Services Section */
.category-header-banner {
    background-color: var(--orange-light);
    color: var(--red-primary);
    border-radius: 8px;
    padding: 10px 24px;
    display: inline-block;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 30px;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 30px;
}

.service-box {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 24px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.25s ease;
    cursor: pointer;
}

.service-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
    border-color: var(--orange-accent);
}

.service-box.active-highlight {
    border: 2px solid var(--red-primary);
    background-color: #fffcf8;
    box-shadow: 0 6px 20px rgba(204, 0, 0, 0.08);
}

.service-box-icon {
    font-size: 28px;
    color: var(--red-primary);
    margin-bottom: 12px;
}

.service-box h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
}

.slider-dots-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    width: 24px;
    border-radius: 12px;
    background-color: var(--orange-accent);
}

/* Why MCG Section */
.why-circle-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.circle-feature-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.circle-feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.circle-feature-item h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.circle-feature-item p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Split Value Showcase Cards */
.split-value-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.split-card {
    background: #ffffff;
    border: 1px solid rgba(204, 0, 0, 0.2);
    border-radius: var(--radius-card);
    padding: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: var(--shadow-sm);
}

.split-card-content {
    flex: 1;
}

.split-card-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 18px;
}

.check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.check-list li {
    font-size: 13px;
    color: var(--text-dark);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bullet {
    color: var(--red-primary);
    font-weight: bold;
}

.split-card-image {
    width: 180px;
    height: 220px;
    border-radius: 14px;
    overflow: hidden;
    flex-shrink: 0;
}

.split-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Pricing Section */
.pricing-toggle-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
}

.pricing-toggle-btn {
    padding: 10px 28px;
    border-radius: var(--radius-button);
    font-size: 14px;
    font-weight: 600;
    background: #f0f0f0;
    color: var(--text-dark);
    transition: all 0.25s ease;
}

.pricing-toggle-btn.active {
    background-color: var(--red-primary);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(204, 0, 0, 0.3);
}

.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: center;
}

.pricing-plan-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-card);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

.pricing-plan-card:hover {
    transform: translateY(-6px);
}

.popular-card {
    border-color: var(--red-primary);
    box-shadow: var(--shadow-md);
}

.popular-ribbon {
    position: absolute;
    top: -12px;
    align-self: center;
    background: var(--red-primary);
    color: #ffffff;
    padding: 4px 16px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.plan-header h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 4px;
}

.plan-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.price-value {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 24px;
}

.price-value .amount {
    font-size: 38px;
    font-weight: 900;
    color: var(--text-dark);
}

.price-value .period {
    font-size: 13px;
    color: var(--text-muted);
}

.plan-action {
    margin-bottom: 28px;
}

.plan-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.plan-features-list li {
    font-size: 13px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-features-list i {
    color: var(--red-primary);
    font-size: 14px;
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-box {
    background: var(--bg-offwhite);
    border-radius: var(--radius-card);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.testimonial-user-image {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 16px;
}

.testimonial-user-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quote-mark {
    font-size: 24px;
    color: #ddd;
    margin-bottom: 12px;
}

.testimonial-text {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    font-style: italic;
}

.user-name-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
}

.user-role {
    font-weight: 400;
    color: var(--text-muted);
}

/* CTA Banner Section */
.cta-banner-box {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}
.cta-banner-box {
    background: url("images/cta-banner-bg.png") center center / cover no-repeat;
    padding: 80px 20px;
    position: relative;
}


.cta-heading {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 12px;
}

.cta-subheading {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.cta-buttons-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

/* Footer Section */
.footer-section {
    background-color: var(--bg-offwhite);
    border-top: 1px solid var(--border-color);
    padding: 70px 0 30px;
    margin-top: 60px;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    /* grid-template-columns: 2fr 1fr 1fr 1.5fr; */
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo img {
    height: 65px;
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 300px;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: all 0.2s ease;
}

.footer-socials a:hover {
    background-color: var(--red-primary);
    color: #ffffff;
    border-color: var(--red-primary);
}

.footer-links-col h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 18px;
}

.footer-links-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-col a {
    font-size: 13px;
    color: var(--text-muted);
    transition: color 0.2s ease;
}

.footer-links-col a:hover {
    color: var(--red-primary);
}

.contact-info-list li {
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom-bar {
    max-width: 1280px;
    margin: 0 auto;
    padding: 24px 24px 0;
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-light);
}

.footer-legal-links {
    display: flex;
    gap: 20px;
}

.footer-legal-links a:hover {
    color: var(--text-dark);
}

/* Animations */
.animate-fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-fade-in.appeared, .animate-up.appeared {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }


.contact-section{
    padding:100px 0;
}

.contact-wrapper{
    margin-top:60px;
    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:40px;
    align-items:start;
}

.contact-info-card,
.contact-form-card{
    background:#fff;
    border-radius:24px;
    padding:40px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.contact-info-card h3{
    font-size:32px;
    margin-bottom:15px;
}

.contact-info-card>p{
    color:#666;
    line-height:1.8;
    margin-bottom:35px;
}

.contact-info-list{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.contact-info-item{
    display:flex;
    align-items:center;
    gap:18px;
}

.contact-icon{
    width:58px;
    height:58px;
    border-radius:50%;
    background:#e53935;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    flex-shrink:0;
}

.contact-info-item h4{
    margin-bottom:5px;
}

.contact-info-item p{
    color:#666;
}

.form-group{
    margin-bottom:20px;
}

.form-group input,
.form-group textarea{
    width:100%;
    padding:15px 18px;
    border:1px solid #ddd;
    border-radius:12px;
    font-size:15px;
    outline:none;
    transition:.3s;
    font-family:inherit;
}

.form-group input:focus,
.form-group textarea:focus{
    border-color:#e53935;
    box-shadow:0 0 0 3px rgba(229,57,53,.15);
}

.contact-form-card .btn{
    width:100%;
}

.success-message{
    background:#d4edda;
    color:#155724;
    padding:12px 16px;
    border-radius:10px;
    margin-bottom:20px;
}

.error-message{
    background:#f8d7da;
    color:#721c24;
    padding:12px 16px;
    border-radius:10px;
    margin-bottom:20px;
}

.user-type-options {
    display: flex;
    gap: 15px;
    width: 100%;
    margin-top: 5px;
}

.user-type-option {
    flex: 1;
    cursor: pointer;
    position: relative;
}

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

.user-type-option span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 64px;
    padding: 12px 20px;

    /* Radius */
    border-radius: 16px;

    border: 2px solid #ddd;
    background: #fff;
    color: #333;

    font-size: 18px;
    font-weight: 600;

    transition: all 0.25s ease;
    box-sizing: border-box;
}

/* Hover */
.user-type-option:hover span {
    border-color: #e50909;
    color: #e50909;
}

/* Selected */
.user-type-option input:checked + span {
    background: #ed1c24;
    border-color: #ed1c24;
    color: #fff;

    box-shadow: 0 5px 15px rgba(237, 28, 36, 0.20);
}


.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-brand a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;

    /* color: #ed1c24; */
    text-decoration: none;

    /* border: 1px solid; */
    border-radius: 50%;

    transition: 0.3s ease;
}

.nav-brand a:hover {
    /* background: #ed1c24;
    color: #fff; */
}

/* Mobile */
@media (max-width: 576px) {
    .user-type-options {
        flex-direction: column;
        gap: 10px;
    }
}


@media (max-width:991px){

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

.contact-info-card,
.contact-form-card{
    padding:30px;
}

}

/* Responsive Layout */
@media (max-width: 1024px) {
    .customer-steps-grid { grid-template-columns: repeat(3, 1fr); }
    .vendor-steps-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .why-circle-features { grid-template-columns: repeat(2, 1fr); }
    .split-value-wrapper { grid-template-columns: 1fr; }
    .pricing-cards-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .hero-heading { font-size: 38px; }
    .nav-menu, .nav-cta { display: none; }
    .mobile-toggle { display: block; }
    
    .customer-steps-grid { grid-template-columns: 1fr; }
    .vendor-steps-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-circle-features { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr; }
    .footer-bottom-bar { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 768px) {
  .glow-top-left,
  .glow-top-right {
    display: none;
  }
   /* .bg-glow {
        display: none;
    } */
    /* body {
        overflow-x: hidden;
    } */
}



/* =====================================================
   SERVICES TABS + CATEGORY CONTENT
   ===================================================== */

/* Main services wrapper */
.services-grid {
    display: block;
    width: 100%;
    margin-bottom: 30px;
}

/* Each category is one content section */
.service-category {
    display: none;
    width: 100%;
}

/* Only selected category */
.service-category.active {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    width: 100%;
}

/* Service card */
.service-category .service-box {
    width: 100%;
    min-height: 150px;
}

/* Images inside service icons */
.service-box-icon img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    display: block;
}


/* =====================================================
   TABLET
   769px - 1024px
   ===================================================== */

@media (min-width: 769px) and (max-width: 1024px) {

    .services-grid {
        display: block;
        width: 100%;
    }

    .service-category.active {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }

    .service-category .service-box {
        min-height: 145px;
        padding: 22px 14px;
    }

    .service-box-icon {
        margin-bottom: 12px;
    }

    .service-box-icon img {
        width: 58px;
        height: 58px;
    }

    .service-box h4 {
        font-size: 14px;
        line-height: 1.4;
    }
}


/* =====================================================
   DESKTOP
   ===================================================== */

@media (min-width: 1025px) {

    .service-category.active {
        grid-template-columns: repeat(5, 1fr);
        gap: 16px;
    }

}


/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 768px) {

    .service-category.active {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .service-category .service-box {
        min-height: 135px;
        padding: 20px 10px;
    }

    .service-box-icon img {
        width: 52px;
        height: 52px;
    }

    .service-box h4 {
        font-size: 13px;
    }

}

/* =========================================
   SERVICES CATEGORY TABS
========================================= */

.service-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}

.service-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 130px;
    height: 46px;
    padding: 0 22px;

    background: #ffffff;
    color: #555;

    border: 1px solid #e5e5e5;
    border-radius: 50px;

    font-size: 14px;
    font-weight: 600;

    cursor: pointer;
    white-space: nowrap;

    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.04);

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

/* Hover */
.service-tab:hover {
    color: #cc0000;
    border-color: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(204, 0, 0, 0.10);
}

/* Active */
.service-tab.active {
    background: linear-gradient(135deg, #cc0000, #e9481f);
    color: #ffffff;
    border-color: transparent;

    box-shadow: 0 7px 20px rgba(204, 0, 0, 0.25);

    transform: translateY(-1px);
}

/* Active hover */
.service-tab.active:hover {
    color: #ffffff;
    background: linear-gradient(135deg, #b30000, #d83d18);
}


/* =========================================
   TABLET
========================================= */

@media (min-width: 769px) and (max-width: 1024px) {

    .service-tabs {
        gap: 10px;
        margin-bottom: 28px;
        padding: 0 10px;
    }

    .service-tab {
        min-width: 120px;
        height: 44px;
        padding: 0 18px;
        font-size: 13px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .service-tabs {
        gap: 8px;
        margin-bottom: 24px;
        padding: 0 10px;
    }

    .service-tab {
        min-width: auto;
        height: 42px;
        padding: 0 16px;
        font-size: 13px;
    }

}
