/* Modernized & Eye-Catchy Styles */
:root {
    /* Refined Color Palette */
    --primary-color: #2D3436; /* Deep Onyx */
    --regular-servicebox-bg: #d4d4d4;
    --primary-light: #636E72;
    --secondary-color: #FAB1A0; /* Soft Coral / Peach */
    --accent-color: #E17055; /* Rich Terracotta */
    --bg-light: #F9F9F9;
    --white: #FFFFFF;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 15px 45px rgba(0, 0, 0, 0.1);
    --radius-lg: 30px;
    --radius-md: 15px;
    --radius-why-item: 80px;
    --radius-sm: 8px;
    --transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
                  opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
                  background 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
                  color 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
                  box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
                  padding 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
                  border 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.7;
    color: var(--primary-color);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    border-radius: var(--radius-md);
}

/* Floating Header with Glassmorphism */
header {
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: calc(100% - 80px); /* Increased margin from screen edges */
    max-width: 1200px;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0 40px; /* Reduced vertical padding inside header */
    height: 60px; /* Fixed height for better alignment */
    border-radius: 50px;
    z-index: 1000;
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center; /* Vertically center content */
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%; /* Ensure content takes full width */
}

.logo img {
    height: 95px;
    background: var(--bg-light);
    border-radius: 60px;
    transition: var(--transition);
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-links li a {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-links li a:hover::after {
    width: 100%;
}

.nav-links li:last-child a {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 30px;
}

.nav-links li:last-child a:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(225, 112, 85, 0.3);
}

/* Modern Hero Section */
.hero {
    padding-top: 100px; /* Space for floating header */
    background: var(--white);
}

.hero-container {
    background: linear-gradient(135deg, rgba(45, 52, 54, 0.95), rgba(45, 52, 54, 0.8)), 
                url('assets/hero-bg.png') no-repeat center center/cover;
    min-height: 85vh;
    border-radius: var(--radius-lg);
    margin: 0 20px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.hero-info-bar {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    width: 100%;
    z-index: 10;
}

.bar-content {
    display: flex;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.info-item {
    padding: 15px 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.info-item:last-child {
    border-right: none;
}

.info-item i { color: var(--secondary-color); }
.info-item strong { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; }
.info-item span { font-size: 13px; opacity: 0.8; }

.discover-btn a {
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 0 40px;
    display: flex;
    align-items: center;
    font-weight: 700;
    text-transform: uppercase;
}

.hero-main-content {
    flex: 1;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 80px 60px;
}

.hero-text h3 {
    color: var(--secondary-color);
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.hero-text h1 {
    color: var(--white);
    font-size: clamp(40px, 8vw, 60px);
    line-height: 1;
    margin-bottom: 30px;
}

.hero-controls {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.control-btn {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.control-btn:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Modernized Cards */
.hero-bottom-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 40px;
    margin-top: -60px;
}

.hero-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: var(--transition);
    flex: 1;
    max-width: 350px;
}

.hero-card:hover { transform: translateY(-10px); }

.card-icon-box {
    background: var(--primary-color);
    color: var(--secondary-color);
    width: 100%;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.card-icon-box i { font-size: 30px; margin-bottom: 10px; }
.card-icon-box h4 { color: var(--white); font-size: 14px; text-transform: uppercase; }

.card-text-box { padding: 25px; }
.card-text-box p { font-size: 13px; color: var(--primary-light); margin-bottom: 15px; }
.card-text-box a { color: var(--accent-color); font-weight: 700; text-transform: uppercase; font-size: 12px; }

/* Why Choose Us Redesign */
.why-choose-us {
    padding: 50px 0;
    background: var(--bg-light);
}

.section-title {
    text-align: center;
}

.section-title h2 { font-size: 50px; margin-bottom: 25px; }
.section-title p { color: var(--primary-light); font-size: 18px; max-width: 700px; margin: 0 auto; }

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 80px;
}

.why-item {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-why-item);
    box-shadow: var(--shadow-soft);
    margin-bottom: 30px;
    transition: var(--transition);
    text-align: center;
}

.why-item:hover { box-shadow: var(--shadow-medium); transform: scale(1.02); }
.why-item i { font-size: 35px; color: var(--accent-color); margin-bottom: 20px; }

/* Modern Service Cards */
.services { padding: 50px 0; }

.services-header {
    font-size: 30px;
    text-align: center;
    margin-bottom: 60px;
}

.service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "img text";
    gap: 0;
    margin-bottom: 40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    background: var(--regular-servicebox-bg);
    color: var(--primary-color);
    min-height: 300px; /* Reduced vertical height */
}

.service-img {
    grid-area: img;
    overflow: hidden; /* Ensure image fits the corner radius */
    border-radius: var(--radius-lg);
}

.service-img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.service-text { 
    grid-area: text;
    padding: 30px 80px; /* Reduced padding to fit smaller height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.service-text h3 { font-size: 35px; margin-bottom: 25px; }

.service-block.reverse { 
    grid-template-areas: "text img";
    background: var(--primary-color); 
    color: var(--white); 
}
.service-block.reverse h3 { color: var(--white); }

/* Contact CTA Section */
.contact-cta {
    padding: 40px 20px;
    background: linear-gradient(135deg, var(--primary-color), #404b4d);
    border-radius: var(--radius-lg);
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(225, 112, 85, 0.1) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.cta-circle {
    width: 120px;
    height: 120px;
    background: var(--white);
    border-radius: 50%;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.cta-circle:hover {
    transform: scale(1.1) rotate(5deg);
}

.cta-circle img {
    height: 60px;
    width: auto;
    object-fit: contain;
    border-radius: 0;
}

.contact-cta p {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
    opacity: 0.9;
    line-height: 1.4;
}

.contact-cta h3 {
    font-size: 48px;
    color: var(--secondary-color);
    font-family: 'Playfair Display', serif;
    margin: 0;
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.contact-cta h3:hover {
    color: var(--accent-color);
    transform: scale(1.05);
}

/* Legal Pages Styling */
.legal-page-hero {
    padding: 160px 0 60px;
    background: var(--bg-light);
    text-align: center;
}

.legal-content-section {
    padding: 80px 0;
}

.legal-text-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.legal-text-container h2, 
.legal-text-container h3 {
    margin-top: 30px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-text-container h2 {
    font-size: 28px;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 10px;
    display: inline-block;
}

.legal-text-container h3 {
    font-size: 22px;
}

.legal-text-container p {
    margin-bottom: 20px;
    color: var(--primary-light);
    text-align: justify;
}

.legal-text-container ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal-text-container ul li {
    list-style: disc;
    margin-bottom: 10px;
    color: var(--primary-light);
}

@media (max-width: 768px) {
    .legal-text-container {
        padding: 30px;
    }
}

/* Polished Footer */
footer {
    line-height: 1;
    background: var(--primary-color);
    color: var(--white);
    padding: 20px 0 0; /* More breathing room */
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr; /* More balanced 3-column layout */
    gap: 80px;
}

.footer-section.branding .footer-logo {
    height: 70px;
    margin-bottom: 30px;
    filter: brightness(0) invert(1);
}

.footer-section.branding .footer-tagline {
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.6;
    /* max-width: 350px; */
    margin-bottom: 10px;
}

.footer-section h4 {
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0.9;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.footer-links li a {
    font-size: 15px;
    opacity: 0.5;
    transition: var(--transition);
}

.footer-links li a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

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

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-item i {
    color: var(--secondary-color);
    font-size: 18px;
    margin-top: 4px;
}

.contact-item div span {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.4;
    margin-bottom: 5px;
}

.contact-item div p {
    font-size: 15px;
    opacity: 0.8;
    line-height: 1.4;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition);
    color: var(--white);
}

.social-links a:hover {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
    transform: translateY(-5px);
}

.footer-bottom {
    background: var(--primary-color);
    padding: 10px 0;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 13px;
    opacity: 0.4;
    margin: 0;
}

.footer-legal-links {
    display: flex;
    gap: 30px;
    margin-right: 100px;
}

.footer-legal-links a {
    font-size: 13px;
    opacity: 0.4;
    transition: var(--transition);
}

.footer-legal-links a:hover {
    opacity: 0.8;
    color: var(--secondary-color);
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
    .footer-section.branding {
        grid-column: 1 / -1;
        text-align: center;
    }
    .footer-section.branding .footer-tagline {
        margin: 0 auto 35px;
    }
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    .footer-bottom-content {
        flex-direction: column;
        gap: 25px;
    }
    .contact-item {
        justify-content: center;
    }
}

/* Floating Back to Top Button */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px; /* Moved to right */
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    cursor: pointer;
    display: none; /* Controlled by JS */
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-medium);
    z-index: 1000;
    transition: var(--transition);
}

#backToTop:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-5px);
}

/* Animations */
[data-aos] {
    transition-duration: 1000ms !important; /* Match AOS.init duration */
    will-change: transform, opacity;
}

/* Loading Screen Overlay */
#loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

#loader-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader {
    width: 50px;
    height: 50px;
    border: 3px solid var(--bg-light);
    border-top: 3px solid var(--accent-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#loader-overlay p {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--primary-color);
    letter-spacing: 1px;
}

/* Success Message Modal */
#success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

#success-modal.hidden {
    opacity: 0;
    pointer-events: none;
    transform: scale(1.1);
}

.modal-content {
    text-align: center;
    max-width: 600px;
    padding: 60px;
}

.success-icon-box {
    width: 100px;
    height: 100px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px;
    color: var(--accent-color);
    font-size: 40px;
    box-shadow: var(--shadow-soft);
}

#success-modal h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

#success-modal p {
    font-size: 18px;
    color: var(--primary-light);
    line-height: 1.8;
    margin-bottom: 40px;
}

.back-home-btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.back-home-btn:hover {
    background: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(225, 112, 85, 0.3);
}

/* Vendor Page Specific Styles */
.vendor-hero {
    padding: 140px 0 80px;
    background: var(--bg-light);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.process-steps {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    margin-top: 60px;
}

.step-item {
    flex: 1;
    text-align: center;
    max-width: 300px;
}

.step-circle {
    width: 150px;
    height: 150px;
    background: var(--white);
    border: 1px dashed var(--accent-color);
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.step-item:hover .step-circle {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-style: solid;
}

.step-number {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.step-circle i {
    font-size: 50px;
    color: var(--primary-color);
}

.step-item h4 {
    font-size: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.step-item p {
    font-size: 14px;
    color: var(--primary-light);
}

/* Registration Form */
.registration-form-section {
    padding: 80px 0;
}

.vendor-form {
    background: var(--white);
    padding: 60px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
    max-width: 1000px;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 40px;
}

.form-group {
    display: flex;
    flex-direction: column;
    /* gap: 8px; */
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group label span {
    color: var(--accent-color);
    margin-left: 3px;
}

.form-group input, 
.form-group select,
.form-group textarea {
    padding: 12px 20px;
    border: 1px solid #E1E1E1;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 14px;
    transition: var(--transition);
    width: 100%;
}

.form-group input:focus, 
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(225, 112, 85, 0.1);
}

.additional-comments {
    grid-column: 1 / -1;
    margin-bottom: 30px;
}

.additional-comments .section-label {
    border-bottom: none;
    margin-bottom: 10px;
}

.section-label {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--bg-light);
}

.section-label span {
    color: var(--accent-color);
}

.checkbox-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.checkbox-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox-column label,
.checkbox-row label {
    font-size: 13px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    color: var(--primary-light);
}

.checkbox-column input[type="checkbox"],
.checkbox-row input[type="checkbox"] {
    margin-top: 3px;
    accent-color: var(--accent-color);
}

.insurance-coverage {
    margin-bottom: 40px;
}

.form-acknowledgement {
    margin-bottom: 40px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--accent-color);
}

.acknowledgement-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: var(--primary-color);
    line-height: 1.5;
}

.acknowledgement-label input[type="checkbox"] {
    margin-top: 4px;
    accent-color: var(--accent-color);
    width: 18px;
    height: 18px;
}

.acknowledgement-label a {
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: underline;
}

.acknowledgement-label a:hover {
    color: var(--primary-color);
}

.checkbox-row {
    display: flex;
    gap: 40px;
}

.register-btn {
    display: block;
    margin: 0 auto;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 15px 50px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
}

.register-btn:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(225, 112, 85, 0.3);
}

.register-btn:disabled {
    background: var(--primary-light);
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Hamburger Menu Styling */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 10px;
    transition: var(--transition);
}

/* Mobile Responsive Adjustments */
@media (max-width: 992px) {
    .menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--glass-bg);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    }

    .nav-links.active {
        right: 0;
    }

    /* Hamburger Animation */
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    header {
        width: calc(100% - 30px);
        padding: 0 25px;
        top: 15px;
    }

    .hero-info-bar {
        display: none; /* Hide top bar on mobile for cleaner look */
    }

    .hero-container {
        margin: 0 10px;
        min-height: 70vh;
    }

    .hero-main-content {
        padding: 40px 30px;
    }

    .hero-text h1 {
        font-size: 45px;
    }

    .hero-bottom-cards {
        padding: 20px;
        margin-top: 0;
        flex-direction: column;
    }

    .hero-card {
        flex-direction: column;
    }

    .card-icon-box {
        width: 100%;
        padding: 20px;
        flex-direction: column;
        justify-content: center;
        gap: 10px;
    }

    .card-icon-box i {
        font-size: 24px;
        margin-bottom: 0;
    }

    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .why-center {
        order: -1; /* Move image to top on mobile */
    }

    .service-block, .service-block.reverse {
        grid-template-columns: 1fr;
        grid-template-areas: "img" "text";
    }

    .service-text {
        padding: 30px 20px;
    }

    .section-title h2 {
        font-size: 35px;
    }

    .container {
        padding: 0 20px;
    }

    footer {
        padding: 60px 0 30px;
        margin-top: 40px;
    }

    .footer-content {
        gap: 40px;
    }

    .contact-cta {
        padding: 60px 20px;
        margin-top: 60px;
    }

    .contact-cta h3 {
        font-size: 32px;
    }

    .contact-cta p {
        font-size: 18px;
    }

    /* Become a Vendor Mobile Fixes */
    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .vendor-form {
        padding: 30px 20px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .checkbox-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .checkbox-row {
        flex-direction: column;
        gap: 15px;
    }

    .form-acknowledgement {
        padding: 15px;
    }

    .registration-form-section {
        padding: 40px 0;
    }

    .section-label {
        font-size: 18px;
        margin-bottom: 20px;
    }
}

/* Fix for footer social links on mobile */
@media (max-width: 480px) {
    .social-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-section h4 {
        font-size: 13px;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text h3 {
        font-size: 16px;
        letter-spacing: 2px;
    }

    .control-btn {
        width: 45px;
        height: 45px;
    }

    /* Legal Pages Mobile Fixes */
    .legal-page-hero {
        padding: 120px 0 40px;
    }

    .legal-content-section {
        padding: 40px 0;
    }

    .legal-text-container {
        padding: 25px 20px;
    }

    .legal-text-container h2 {
        font-size: 24px;
    }

    .legal-text-container h3 {
        font-size: 20px;
    }
}

/* Visibility Utilities */
.hidden {
    display: none !important;
}

/* Loader Overlay */
#loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.loader {
    border: 5px solid #f3f3f3;
    border-top: 5px solid var(--primary);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Success Modal */
#success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    text-align: center;
    padding: 20px;
}