* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* --haldi: #FF850F;
    --deep-orange: #CC6D00;
    --charcoal: #2A2A2A;
    --light-gray: #F8F9FA;
    --gold: #FFD700;
    --light-gold: #FFF8E1; */
    --shadow-light: rgba(255, 133, 15, 0.1);
    --shadow-medium: rgba(255, 133, 15, 0.2);
    --shadow-dark: rgba(0, 0, 0, 0.1);
    --white: #FFFFFF;
    --shadow-light: rgba(255, 133, 15, 0.1);
    --shadow-medium: rgba(255, 133, 15, 0.2);
    --shadow-gold: rgba(255, 215, 0, 0.3);
    --nav-height: 77px;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--white);
    color: var(--charcoal);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;

}

/* Decorative Elements */
.mandap-pattern {
    position: absolute;
    opacity: 0.05;
    font-size: 120px;
    color: var(--haldi);
    pointer-events: none;
}

/* Navigation */
nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 4px 20px var(--shadow-light);
    border-bottom: 1px solid rgba(255, 133, 15, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    margin-top: -20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.7rem;
    font-weight: 888;
    background: linear-gradient(135deg, var(--haldi), var(--deep-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.logo-wrapper {
    display: flex;
    flex-direction: column; /* stack logo and tagline vertically */
    align-items: center; /* align them to the left */
}

.logo-tagline {
    font-size: 0.7rem;
    color: var(--deep-orange);
    margin-top: -17px; /* small space between logo and tagline */
    letter-spacing: 2.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a.active {
    color: var(--haldi);
}

.nav-links a.active::after {
    width: 100%;
    background: var(--haldi);
}

.nav-links a:hover {
    color: var(--haldi);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--haldi);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* --- Bottom Navigation for Mobile/Tablet --- */
.bottom-nav {
    display: none;
}

@media (max-width: 900px) {
    .bottom-nav {
        display: flex;
        position: fixed;
        left: 0;
        bottom: 0;
        top: auto;
        width: 100%; /* Use 100% to avoid horizontal scroll */
        height: 62px;
        background: linear-gradient(90deg, var(--haldi) 0%, var(--deep-orange) 100%);
        box-shadow: 0 -2px 16px var(--shadow-light);
        z-index: 1200;
        justify-content: space-around;
        align-items: center;
        transition: transform 0.3s cubic-bezier(.4,2,.6,1);
        border-top-left-radius: 18px;
        border-top-right-radius: 18px;
        animation: bottomNavIn 0.4s cubic-bezier(.4,2,.6,1);
    }
    @keyframes bottomNavIn {
        from { transform: translateY(100%);}
        to { transform: translateY(0);}
    }
    .bottom-nav__item {
        flex: 1;
        text-align: center;
        color: #fff;
        text-decoration: none;
        font-size: 0.85rem;
        font-family: 'Poppins', sans-serif;
        font-weight: 500;
        transition: color 0.2s;
        padding-top: 6px;
    }
    .bottom-nav__item.active,
    .bottom-nav__item:focus,
    .bottom-nav__item:hover {
        color: var(--charcoal);
        background: rgba(255,255,255,0.13);
        border-radius: 12px;
    }
    .bottom-nav__icon {
        font-size: 1.5rem;
        color: #fff;
        display: block;
        margin-bottom: 2px;
        transition: transform 0.2s, color 0.2s;
    }
    .bottom-nav__item.active .bottom-nav__icon,
    .bottom-nav__item:focus .bottom-nav__icon,
    .bottom-nav__item:hover .bottom-nav__icon {
        color: var(--charcoal);
    }
    /* Hide top nav on mobile */
    nav {
        display: none;
    }
}

/* Ensure body bottom padding for nav */
@media (max-width: 900px) {
    body {
        padding-bottom: 70px;
    }
    nav:not(.bottom-nav) .nav-container {
        justify-content: center !important;
    }
    nav:not(.bottom-nav) .logo {
        margin: 0 auto;
        text-align: center;
        display: block;
        float: none;
    }
    nav:not(.bottom-nav) .nav-links {
        display: none !important;
    }
}

/* Breadcrumb */
.breadcrumb {
    padding: calc(var(--nav-height) + 20px) 0 20px;
    --bs-breadcrumb-margin-bottom: 0;

    background: 
        url('../img/logo-white.webp') center 27px no-repeat,
        linear-gradient(var(--haldi) var(--nav-height), var(--light-gray) var(--nav-height));
    background-size: auto, cover;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 14px;
}

.breadcrumb-nav a {
    color: var(--haldi);
    text-decoration: none;
}

.breadcrumb-nav a:hover {
    text-decoration: underline;
}

p {
    font-size:1.2rem; 
    color:#444; 
    margin-bottom:25px;
}

h1 {
    font-family:'Montserrat',sans-serif; 
    font-weight:700; color:var(--haldi); 
    margin-bottom:20px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(255,193,7,0.8) 0%, rgba(255,179,102,0.8) 100%),
                url('../img/hero/hero-bg.webp') no-repeat center center;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    align-items: flex-end; /* Push content to bottom */
    justify-content: flex-start; /* Align content to left */
    position: relative;
    overflow: hidden;
    margin-top: 10px;
    padding: 2rem; /* Adds space from bottom/left edges */
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1080px;
    text-align: left;
}

.hero-search-form {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    padding: 1rem;
    max-width: 750px;
    /* margin: auto; */
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    line-height: 1.1;
}

.hero p {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 777px;
    /* margin-left: auto; */
    margin-right: auto;
}

.hero .subtitle {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 35px;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 300;
}

.tagline {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.2rem, 2.5vw, 2.2rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 25px;
    font-weight: 400;
    letter-spacing: 1px;
}

/* Match dropdown height with CTA button */
.hero-search-form .form-select {
    padding: 0.7rem 1rem;
    border-radius: 50px; /* rounded like the button */
    border: 1px solid #ddd;
    font-size: 1.1rem;
    height: auto; /* auto-adjust height */
    box-shadow: none; /* remove Bootstrap's default */
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Focus style for dropdown */
.hero-search-form .form-select:focus {
    border-color: var(--haldi);
    box-shadow: 0 0 0 0.25rem rgba( var(--haldi-rgb), 0.25); /* haldi glow */
    outline: none;
}

/* Make button height match dropdowns */
.hero-search-form .cta-button {
    padding: 0.7rem 2rem;
    border-radius: 50px;
    width: 100%;
}


.cta-button {
    background: var(--white);
    color: var(--haldi);
    padding: 0.7rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: var(--deep-orange);
    color: #fff;
}

/* Vendor Discovery Section */
.vendor-section {
    /* padding: 120px 0; */
    background: var(--white);
    position: relative;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.2rem;
    font-weight: 700;
    text-align: center;
    color: var(--charcoal);
    margin-bottom: 25px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 70px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.vendor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

.vendor-card {
    background: var(--white);
    border-radius: 25px;
    padding: 45px 35px;
    text-align: center;
    box-shadow: 0 15px 50px var(--shadow-light);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.vendor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 133, 15, 0.1), transparent);
    transition: left 0.6s ease;
}

.vendor-card:hover::before {
    left: 100%;
}

.vendor-card:hover {
    transform: translateY(-12px);
    border-color: var(--haldi);
    box-shadow: 0 25px 70px var(--shadow-medium);
}

.vendor-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--haldi), #FFB366);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2.5rem;
    box-shadow: 0 8px 25px var(--shadow-medium);
}

.vendor-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 18px;
}

.vendor-card p {
    color: #666;
    line-height: 1.7;
    font-weight: 300;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, rgba(255, 133, 15, 0.85) 0%, rgba(255, 179, 102, 0.85) 100%),
                url('../img/hero/testimonial.webp') no-repeat center center;
    background-size: cover;
    padding: 120px 0;
    position: relative;
}

.testimonials::after {
    content: '❤️';
    position: absolute;
    bottom: 15%;
    right: 5%;
    font-size: 180px;
    opacity: 0.1;
    animation: heartbeat 7s infinite;
    transform-origin: center;
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }
    20% {
        transform: scale(1.15);
    }
    35% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    70% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}


.testimonials .section-title {
    color: var(--white);
}

.testimonials .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.testimonial-text {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
    line-height: 1.8;
    font-style: italic;
    font-weight: 300;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-avatar {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--white);
    font-size: 1.2rem;
}

.author-info h4 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.author-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

/* Portal Section */
.portal-section {
    padding: 120px 0;
    background: var(--light-gray);
}

.portal-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.portal-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 25px;
    line-height: 1.2;
}

.portal-content p {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 35px;
    line-height: 1.8;
    font-weight: 300;
}

.portal-buttons {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.portal-btn {
    padding: 18px 35px;
    border-radius: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--haldi);
    font-size: 1.1rem;
    font-family: 'Manrope', sans-serif;
}

.portal-btn.primary {
    background: var(--haldi);
    color: var(--white);
}

.portal-btn.secondary {
    background: transparent;
    color: var(--haldi);
}

.portal-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--shadow-medium);
}

.portal-visual {
    background: linear-gradient(135deg, var(--haldi), #FFB366);
    border-radius: 25px;
    padding: 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.portal-visual::before {
    content: '✨';
    position: absolute;
    top: 10%;
    right: 10%;
    font-size: 80px;
    opacity: 0.3;
}

.portal-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    z-index: 2;
    position: relative;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 400;
}

/* Footer */
footer {
    background: var(--charcoal);
    color: var(--white);
    padding: 80px 0 40px;
    margin-top: 0px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
    text-align: left; /* Add this line */
}

.footer-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--haldi);
}

.footer-section p, .footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    line-height: 1.5;
    font-weight: 300;
}

.footer-section a:hover {
    color: var(--haldi);
}

.footer-section a.active {
    color: var(--haldi);
}


.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 25px;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: var(--haldi);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.3rem;
}

.social-icon:hover {
    background: var(--white);
    color: var(--haldi);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--shadow-medium);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 35px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

/* Social Media Templates Preview */
.social-templates {
    padding: 100px 0;
    background: var(--light-gray);
}

.template-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.template-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-light);
    transition: all 0.3s ease;
}

.template-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px var(--shadow-medium);
}

.template-preview {
    background: linear-gradient(135deg, var(--haldi), #FFB366);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
    position: relative;
}

.template-preview::before {
    content: '📱';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    opacity: 0.7;
}

.template-info {
    padding: 25px;
}

.template-info h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 10px;
}

.template-info p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .tagline {
        font-size: 1.8rem;
    }
    
    .portal-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .nav-links {
        display: none;
    }
    
    .portal-buttons {
        flex-direction: column;
    }

    .vendor-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.vendor-icon {
    animation: float 3s ease-in-out infinite;
}

.vendor-card:nth-child(2n) .vendor-icon {
    animation-delay: 1s;
}

.vendor-card:nth-child(3n) .vendor-icon {
    animation-delay: 2s;
}



/* Vendor Header */
.vendor-header {
    padding: 40px 0 60px;
    background: var(--light-gray);
}

.vendor-info {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    align-items: center;
}

.vendor-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--haldi), #FFB366);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 4rem;
    box-shadow: 0 15px 40px var(--shadow-medium);
}

.vendor-details h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 15px;
}

.vendor-location {
    color: var(--haldi);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.vendor-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.stars {
    color: #FFD700;
    font-size: 1.5rem;
}

.rating-text {
    color: #666;
    font-size: 1rem;
}

.vendor-intro {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
}

.contact-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background: var(--haldi);
    color: var(--white);
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-medium);
}

.btn-secondary {
    background: transparent;
    color: var(--haldi);
    border: 2px solid var(--haldi);
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--haldi);
    color: var(--white);
    transform: translateY(-2px);
}

/* Main Content */
.main-content {
    padding: 80px 0;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 17px;
}

.content-section {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow-light);
    margin-bottom: 30px;
}

.content-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 25px;
}

.content-section p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.service-item {
    background: var(--light-gray);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.service-item:hover {
    border-color: var(--haldi);
    transform: translateY(-5px);
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.service-name {
    font-weight: 600;
    color: var(--charcoal);
}

.delete-btn {
    position: absolute;
    top: -8px;
    left: -8px;
    background: #dc3545;
    border: none;
    color: #fff;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 12px;
}
.delete-btn:hover {
    background: #bb2d3b;
}

/* Design Gallery */
.design-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin: 30px 0;
}

.design-item {
    background: linear-gradient(135deg, var(--haldi), #FFB366);
    height: 120px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.design-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px var(--shadow-medium);
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow-light);
}

.sidebar-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 20px;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #666;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.pricing-item:last-child {
    border-bottom: none;
}

.price {
    font-weight: 600;
    color: var(--haldi);
    font-size: 1.1rem;
}

/* Premium Member Button */
.premium-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: linear-gradient(135deg, var(--gold), #FFA500);
    color: var(--charcoal);
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    z-index: 999;
    text-decoration: none;
    font-weight: 600;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}



.footer-content {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .vendor-info {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .main-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }

    .vendor-details h1 {
        font-size: 2.2rem;
    }
}

/* Gold dust animation background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(2px 2px at 20px 30px, rgba(255, 215, 0, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 215, 0, 0.2), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 215, 0, 0.4), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255, 215, 0, 0.3), transparent);
    background-size: 150px 100px;
    animation: goldDust 20s linear infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes goldDust {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-150px, -100px); }
}

.premium-badge {
    background: linear-gradient(135deg, var(--gold), #FFA500);
    color: var(--charcoal);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px var(--shadow-gold);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    margin-bottom: 80px;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    color: var(--charcoal);
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.benefit-card {
    background: var(--white);
    border-radius: 25px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.2);
    transition: all 0.4s ease;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.benefit-card:hover::before {
    left: 100%;
}

.benefit-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--gold);
    box-shadow: 0 25px 70px rgba(255, 215, 0, 0.4);
}

.benefit-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--gold), #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2.5rem;
    box-shadow: 0 10px 30px var(--shadow-gold);
    animation: float 4s ease-in-out infinite;
}

.benefit-card:nth-child(2n) .benefit-icon {
    animation-delay: 1s;
}

.benefit-card:nth-child(3n) .benefit-icon {
    animation-delay: 2s;
}

.benefit-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 20px;
}

.benefit-card p {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 50px 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
    transition: all 0.4s ease;
}

.pricing-card.featured {
    border: 4px solid var(--gold);
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: '⭐ MOST POPULAR ⭐';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--charcoal);
    padding: 8px 25px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(255, 215, 0, 0.4);
}

.pricing-card.featured:hover {
    transform: translateY(-10px) scale(1.05);
}

.plan-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 15px;
}

.plan-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 10px;
}

.plan-period {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.features-list {
    list-style: none;
    margin-bottom: 40px;
    text-align: left;
}

.features-list li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 30px;
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
    font-size: 1.2rem;
}

.cta-button {
    background: linear-gradient(135deg, var(--gold), #FFA500);
    color: var(--charcoal);
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 8px 25px var(--shadow-gold);
    width: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px var(--shadow-gold);
}

/* ROI Section */
.roi-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    margin-top: 80px;
    text-align: center;
}

.roi-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.roi-stat {
    padding: 30px;
}

.roi-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--gold);
    display: block;
    margin-bottom: 10px;
}

.roi-label {
    font-size: 1.2rem;
    color: var(--charcoal);
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .hero .subtitle {
        font-size: 1.4rem;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }
}


/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.benefit-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 40px var(--shadow-light);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: var(--haldi);
    box-shadow: 0 20px 50px var(--shadow-medium);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--haldi), #FFB366);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
}

.benefit-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 15px;
}

.benefit-card p {
    color: #666;
    line-height: 1.7;
}

/* Form Section */
.form-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 20px 60px var(--shadow-light);
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: var(--charcoal);
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 8px;
    font-size: 1rem;
}

.form-control {
    padding: 15px !important;
    border: 2px solid #e0e0e0 !important;
    border-radius: 12px !important;
    font-size: 1rem !important;
    font-family: 'Poppins', sans-serif !important;
    transition: all 0.3s ease !important;
}

.form-control:focus {
    outline: none;
    border-color: var(--haldi) !important;
    box-shadow: 0 0 0 3px var(--shadow-light);
}

.btn-primary:hover {
    color: var(--light-gold) !important;
    background-color: var(--deep-orange) !important;
    border-color: var(--deep-orange) !important;
    
}

.form-control select,
.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px !important;
    border: 2px solid #e0e0e0 !important;
    border-radius: 17px !important;
    font-size: 1rem !important;
    font-family: 'Poppins', sans-serif !important;
    transition: all 0.3s ease !important;
}


.form-control input:focus,
.form-control select:focus,
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--haldi) !important;
    box-shadow: 0 0 0 3px var(--shadow-light);
}

.form-group textarea {
    resize: vertical;
    height: 120px;
}

.file-upload {
    position: relative;
    overflow: hidden;
    display: inline-block;
    cursor: pointer;
    background: var(--light-gray);
    border: 2px dashed var(--haldi);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.file-upload:hover {
    background: var(--shadow-light);
}

.file-upload input {
    position: absolute;
    left: -9999px;
}

.file-upload-text {
    color: var(--haldi);
    font-weight: 500;
}

.submit-btn {
    background: linear-gradient(135deg, var(--haldi), #FFB366);
    color: var(--white);
    padding: 18px 50px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    display: block;
    margin: 40px auto 0;
    box-shadow: 0 8px 25px var(--shadow-medium);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px var(--shadow-medium);
}

.submit-btn:active {
    transform: translateY(-1px);
}

/* Stats Section */
.stats {
    background: linear-gradient(135deg, var(--haldi), #FFB366);
    padding: 80px 0;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 30px;
}

.stat-item {
    color: var(--white);
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-container {
        padding: 30px 20px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* Vendor Card Grid */
.vendor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

/* Vendor Card */
.vendor-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.2s;
    border: 1px solid #f3f3f3;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.vendor-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.vendor-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 14px 14px 0 0;
}

.vendor-card-body {
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.vendor-card-title {
    margin: 0 0 0.5rem 0;
    font-size: 1.3rem;
    color: #2d2d2d;
    font-weight: 600;
}

.vendor-card-badges {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 0.5rem;
}

.badge-type {
    background: #f7c948;
    color: #fff;
    font-size: 0.95rem;
    padding: 0.25rem 0.7rem;
    border-radius: 5px;
    font-weight: 500;
}

.badge-city {
    background: #f3f3f3;
    color: #444;
    font-size: 0.95rem;
    padding: 0.25rem 0.7rem;
    border-radius: 5px;
    font-weight: 500;
}

.vendor-card-desc {
    color: #666;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.vendor-card-btn {
    display: inline-block;
    background: #f7c948;
    color: #fff;
    padding: 0.5rem 1.2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.2s;
    border: none;
}

.vendor-card-btn:hover,
.vendor-card-btn:focus {
    background: #e6b800;
    color: #fff;
    text-decoration: none;
}

.gallery-filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}
.gallery-filters button {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 20px;
    background: #f7c948;
    color: #222;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.gallery-filters button.active,
.gallery-filters button:hover {
    background: #f4b400;
    color: #fff;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}
.gallery-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: transform 0.2s;
}
.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.gallery-item-body {
    padding: 1rem;
}
.gallery-item-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.gallery-item-category {
    font-size: 0.95rem;
    color: #f7c948;
    font-weight: 500;
    margin-bottom: 0.5rem;
}
.gallery-item-desc {
    font-size: 0.95rem;
    color: #555;
}

.blog-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.blog-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: transform 0.2s;
    display: flex;
    flex-direction: column;
}
.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.blog-card-body {
    padding: 1.2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.blog-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.blog-card-meta {
    font-size: 0.95rem;
    color: #f7c948;
    margin-bottom: 0.7rem;
}
.blog-card-desc {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1rem;
    flex: 1;
}
.blog-card-link {
    color: #f7c948;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}
.blog-card-link:hover {
    color: #f4b400;
    text-decoration: underline;
}

.blog-single-header {
    margin-top: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}
.blog-single-header img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}
.blog-single-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.blog-single-meta {
    color: #f7c948;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}
.blog-single-content {
    max-width: 800px;
    margin: 0 auto 3rem auto;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.blog-single-content h2 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}
.blog-single-content ul {
    margin-bottom: 1.5rem;
}
.blog-single-content img {
    max-width: 100%;
    border-radius: 8px;
    margin: 1.5rem 0;
}
@media (max-width: 600px) {
    .blog-single-content, .blog-single-header img {
        padding: 1rem;
        max-width: 100%;
    }
}

.contact-section {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}
.contact-info {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    padding: 2rem;
    margin-bottom: 2rem;
}
.contact-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.contact-info p, .contact-info li {
    font-size: 1.05rem;
    color: #444;
}
.contact-form {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    padding: 2rem;
}
.contact-form label {
    font-weight: 500;
}
.contact-form .form-control {
    margin-bottom: 1rem;
}
.contact-map {
    border-radius: 12px;
    overflow: hidden;
    margin-top: 2rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
@media (max-width: 768px) {
    .contact-section .row {
        flex-direction: column;
    }
}
.faq-section {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}
.faq-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}
.accordion-button:not(.collapsed) {
    color: #fff;
    background-color: #f7c948;
}
.accordion-button:focus {
    box-shadow: 0 0 0 0.2rem #f7c94844;
}

.policy-section {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    padding: 2.5rem 2rem;
    max-width: 900px;
}
.policy-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}
.policy-section h2 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}
.policy-section ul {
    margin-bottom: 1.5rem;
}
.terms-section {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    padding: 2.5rem 2rem;
    max-width: 900px;
}
.terms-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}
.terms-section h2 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}
.terms-section ul {
    margin-bottom: 1.5rem;
}

.signup-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--haldi, #FFD54F), var(--deep-orange, #FF8A65));
    padding: 40px 0;
}
.signup-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 2.5rem 2rem;
    max-width: 400px;
    width: 100%;
}
.signup-card h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.7rem;
    margin-bottom: 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, var(--haldi, #FFD54F), var(--deep-orange, #FF8A65));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.form-label {
    font-weight: 500;
}
/* .form-control {
    margin-bottom: 1rem;
} */
.signup-btn {
    background: linear-gradient(90deg, var(--haldi, #FFD54F), var(--deep-orange, #FF8A65));
    color: #222;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    padding: 0.7rem 0;
    width: 100%;
    transition: background 0.2s;
}
.signup-btn:hover {
    background: linear-gradient(90deg, var(--deep-orange, #FF8A65), var(--haldi, #FFD54F));
    color: #fff;
}
.signup-link {
    display: block;
    text-align: center;
    margin-top: 1.2rem;
    color: var(--deep-orange, #FF8A65);
    text-decoration: none;
    font-weight: 500;
}
.signup-link:hover {
    text-decoration: underline;
}

/* Recently Joined Vendors styles */
.recent-vendors-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 2rem 1.5rem;
    max-width: 420px;
    margin: 0 auto;
}
.recent-vendors-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--deep-orange, #FF8A65);
}
.recent-vendors-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.recent-vendors-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.1rem;
    border-bottom: 1px solid #f3f3f3;
    padding-bottom: 0.8rem;
}
.recent-vendors-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}
.vendor-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--haldi, #FFD54F);
}
.vendor-name {
    font-weight: 600;
    font-size: 1.05rem;
}
.vendor-type {
    font-size: 0.95rem;
    color: #888;
}
@media (max-width: 991px) {
    .signup-section .recent-vendors-card {
        display: none;
    }
}

.dashboard-section {
    /* min-height: 100vh; */
    background: #f9f6f2;
    padding: 40px 0;
}
.dashboard-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
}
.dashboard-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--haldi, #FFD54F), var(--deep-orange, #FF8A65));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.dashboard-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}
.dashboard-stat {
    flex: 1 1 180px;
    background: linear-gradient(135deg, #fffbe6 60%, #ffe0b2 100%);
    border-radius: 12px;
    padding: 1.2rem 1rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(255, 200, 80, 0.07);
}
.dashboard-stat .bi {
    font-size: 2rem;
    color: var(--deep-orange, #FF8A65);
    margin-bottom: 0.5rem;
}
.dashboard-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--haldi, #FFD54F);
}
.dashboard-stat-label {
    font-size: 1rem;
    color: #888;
}
.dashboard-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.dashboard-action {
    flex: 1 1 220px;
    background: #fff;
    border: 1px solid #ffe0b2;
    border-radius: 10px;
    padding: 1.2rem 1rem;
    text-align: center;
    transition: box-shadow 0.2s, border 0.2s;
    cursor: pointer;
}
.dashboard-action:hover {
    box-shadow: 0 4px 16px rgba(255, 200, 80, 0.13);
    border-color: var(--haldi, #FFD54F);
}
.dashboard-action .bi {
    font-size: 1.7rem;
    color: var(--deep-orange, #FF8A65);
    margin-bottom: 0.5rem;
}
.dashboard-action-label {
    font-size: 1.08rem;
    font-weight: 600;
    color: var(--charcoal, #333);
}
/* Dashboard Vendor Tabs */
.vendor-tabs .nav-link {
    color: var(--charcoal, #333);
    background: #fffbe6;
    border-radius: 8px;
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 1.08rem;
    text-align: left;
    padding: 12px 18px;
    border: 1px solid #ffe0b2;
    transition: background 0.2s, color 0.2s, border 0.2s;
    display: flex;
    align-items: center;
    gap: 10px;
}
.vendor-tabs .nav-link.active,
.vendor-tabs .nav-link:focus,
.vendor-tabs .nav-link:hover {
    background: linear-gradient(90deg, var(--haldi, #FFD54F), var(--deep-orange, #FF8A65));
    color: #fff;
    border-color: var(--haldi, #FFD54F);
}
.vendor-tabs .nav-link i {
    font-size: 1.2rem;
    margin-right: 6px;
}
.tab-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--deep-orange, #FF8A65);
    margin-bottom: 1rem;
}
@media (max-width: 991px) {
    .dashboard-stats, .dashboard-actions {
        flex-direction: column;
        gap: 1.2rem;
    }
    .dashboard-card .row {
        flex-direction: column;
    }
    .vendor-tabs {
        flex-direction: row !important;
        margin-bottom: 20px;
    }
    .vendor-tabs .nav-link {
        margin-bottom: 0;
        margin-right: 10px;
        min-width: 120px;
        justify-content: center;
        text-align: center;
    }
}

/* Modern Checkbox Styles for Budget Calculator */
.budget-section .category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    margin-bottom: 1rem;
}
.budget-section .category-checkbox {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    padding-left: 32px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--charcoal, #333);
    user-select: none;
    transition: color 0.2s;
}
.budget-section .category-checkbox input[type="checkbox"] {
    opacity: 0;
    position: absolute;
    left: 0;
    top: 50%;
    width: 22px;
    height: 22px;
    margin-top: -11px;
    cursor: pointer;
    z-index: 2;
}
.budget-section .category-checkbox .custom-check {
    position: absolute;
    left: 0;
    top: 50%;
    width: 22px;
    height: 22px;
    margin-top: -11px;
    background: #fff;
    border: 2px solid var(--haldi, #FFD54F);
    border-radius: 7px;
    transition: border-color 0.2s, background 0.2s;
    box-shadow: 0 2px 8px rgba(255, 200, 80, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
}
.budget-section .category-checkbox input[type="checkbox"]:checked ~ .custom-check {
    background: linear-gradient(135deg, var(--haldi, #FFD54F), var(--deep-orange, #FF8A65));
    border-color: var(--deep-orange, #FF8A65);
}
.budget-section .category-checkbox .custom-check::after {
    content: '';
    display: block;
    width: 10px;
    height: 6px;
    border-left: 3px solid #fff;
    border-bottom: 3px solid #fff;
    opacity: 0;
    transform: scale(0.8) rotate(-45deg);
    transition: opacity 0.15s;
    margin-left: 3px;
    margin-top: 1px;
}
.budget-section .category-checkbox input[type="checkbox"]:checked ~ .custom-check::after {
    opacity: 1;
}
.budget-section .category-checkbox input[type="checkbox"]:focus ~ .custom-check {
    box-shadow: 0 0 0 2px var(--haldi, #FFD54F);
}
.budget-section .category-checkbox:hover {
    color: var(--deep-orange, #FF8A65);
}

.category-badge {
    border-radius: 2rem !important;
    margin: 4px 6px 4px 0;
    font-weight: 500;
    padding: 0.45em 1.2em;
    border-width: 2px;
    transition: background 0.2s, color 0.2s, border 0.2s;
}
.btn-check:checked + .category-badge,
.category-badge.active,
.category-badge:active {
    background: linear-gradient(90deg, var(--haldi, #FFD54F), var(--deep-orange, #FF8A65));
    color: #fff !important;
    border-color: var(--deep-orange, #FF8A65) !important;
}
.btn-outline-warning.category-badge {
    color: var(--deep-orange, #FF8A65);
    border-color: var(--haldi, #FFD54F);
    background: #fffbe6;
}
.btn-outline-warning.category-badge:hover {
    background: var(--haldi, #FFD54F);
    color: #fff;
    border-color: var(--deep-orange, #FF8A65);
}

.budget-section {
    background: #fffbe6;
    /* min-height: 100vh; */
    padding: 40px 0;
}
.budget-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 2.5rem 2rem;
    max-width: 700px;
    margin: 0 auto;
}
.budget-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--haldi, #FFD54F), var(--deep-orange, #FF8A65));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}
.category-list label {
    font-weight: 500;
    margin-right: 16px;
}
.budget-table th, .budget-table td {
    vertical-align: middle;
}
.budget-total {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--deep-orange, #FF8A65);
    text-align: right;
    margin-top: 1.5rem;
}
.btn-calc {
    background: linear-gradient(90deg, var(--haldi, #FFD54F), var(--deep-orange, #FF8A65));
    color: #222;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    padding: 0.7rem 2.5rem;
    transition: background 0.2s;
    width: 100%;
}
.btn-calc:hover {
    background: linear-gradient(90deg, var(--deep-orange, #FF8A65), var(--haldi, #FFD54F));
    color: #fff;
}
@media (max-width: 600px) {
    .budget-card {
        padding: 1.2rem 0.5rem;
    }
    .budget-title {
        font-size: 1.3rem;
    }
}
/* Match input height and style with select in hero-search-form */
.hero-search-form .form-control[type="number"],
.budget-section .form-control[type="number"] {
    padding: 0.7rem 1rem;
    border-radius: 50px; /* rounded like the button */
    border: 1px solid #ddd;
    font-size: 1.1rem;
    height: auto; /* auto-adjust height */
    box-shadow: none; /* remove Bootstrap's default */
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.hero-search-form .form-control[type="number"]:focus,
.budget-section .form-control[type="number"]:focus {
    border-color: var(--haldi);
    box-shadow: 0 0 0 0.25rem rgba(255, 133, 15, 0.25); /* haldi glow */
    outline: none;
}

.btn-block {
    display: block;
    width: 100%;
}
.hidden-form {
    display: none;
    margin-top: 15px;
    padding: 15px;
    border: 1px solid #ddd;
    background: #f8f9fa;
    border-radius: 8px;
}

.hidden-form h4 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #333;
}

.form-group {
    margin-bottom: 10px;
}

.form-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
}

.form-group input {
    width: 100%;
    padding: 8px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.subscribe-section {
    background: linear-gradient(135deg, var(--haldi) 0%, var(--deep-orange) 100%);
    padding: 3rem 1rem;
    text-align: center;
    color: var(--white);
    box-shadow: 0 4px 15px var(--shadow-medium);
}

.subscribe-container {
    max-width: 777px;
    margin: auto;
}

.subscribe-section h2 {
    font-size: 2.7rem;
    margin-bottom: 0.5rem;
    font-weight: 999;
}

.subscribe-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.85);
}

.subscribe-form {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.subscribe-form input {
    flex: 1;
    padding: 0.8rem 1rem;
    border-radius: 5px;
    border: none;
    font-size: 1rem;
    outline: none;
    box-shadow: 0 2px 8px var(--shadow-dark);
}

.subscribe-form button {
    padding: 0.8rem 1.5rem;
    border: none;
    background: var(--gold);
    color: var(--charcoal);
    font-weight: bold;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 4px 10px var(--shadow-gold);
    transition: background 0.3s ease;
}

.subscribe-form button:hover {
    background: var(--light-gold);
}

.img-bw {
    filter: grayscale(100%);
}
.img-bw:hover {
    filter: grayscale(0%); /* Optional: color on hover */
    transition: filter 0.3s ease;
}
.premium-ribbon {
    position: absolute;
    top: 15px;
    right: -35px;
    transform: rotate(45deg);
    background: linear-gradient(135deg, var(--gold), #FFA500);
    color: #fff;
    font-size: 13px;
    font-weight: bold;
    padding: 6px 40px;
    text-align: center;
    text-transform: uppercase;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
    z-index: 10;
}
.modern-accordion .accordion-button {
    background: #fff;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: none !important;
    padding: 1rem 1.25rem;
}

.modern-accordion .accordion-button:not(.collapsed) {
    background: #f8f9fa;
    color: var(--haldi);
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.modern-accordion .accordion-item {
    border: none;
}

.modern-accordion .accordion-body {
    padding: 1rem 1.25rem;
    background: #fafafa;
    border-radius: 0 0 12px 12px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.toggle-icon {
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed) .toggle-icon {
    transform: rotate(180deg);
}
/* Remove default Bootstrap accordion caret */
.accordion-button::after {
    display: none !important;
}
.text-primary {
    color: var(--haldi) !important;
}
/* Bootstrap spinner custom sizes */
.spinner-grow-sm {
  width: 1.7rem;
  height: 1.7rem;
}

.spinner-grow-md {
  width: 3.7rem;
  height: 3.7rem;
}

.spinner-grow-lg {
  width: 5.7rem;
  height: 5.7rem;
}

.spinner-grow-xl {
  width: 7.7rem;
  height: 7.7rem;
}
.rating {
    width: 100%;
    display: flex;
    justify-content: center; /* centers the stars in the full width */
    font-size: 2rem;
    direction: rtl; 
    unicode-bidi: bidi-override;
}
.rating input {
    display: none;
}
.rating label {
    font-size: 2rem;
    color: #ddd;
    cursor: pointer;
    transition: transform 0.2s;
    margin: 0 0.2rem; /* space between stars */
}
.rating input:checked ~ label,
.rating label:hover,
.rating label:hover ~ label {
    color: #ffc107;
    transform: scale(1.2);
}
/* Card Hover Effect */
.sidebar-card {
    transition: all 0.3s ease;
}
.sidebar-card:hover {
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
    transform: translateY(-2px);
}
.btn-sm {
    padding: 0.25rem 0.5rem !important;
    font-size: 1.35rem !important;
}