/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
.header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000;
    border-bottom: 1px solid rgba(229, 229, 229, 0.5);
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.nav-logo-img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #4CAF50;
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown .nav-link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-dropdown .nav-link i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 0.5rem 0;
    list-style: none;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu li {
    margin: 0;
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.nav-dropdown-menu a:hover {
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
    padding-left: 2rem;
}

.nav-dropdown-menu a.active {
    color: #4CAF50;
    font-weight: 600;
}

.shop-now-nav-btn {
    background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    position: relative;
    overflow: hidden;
}

.shop-now-nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.shop-now-nav-btn:hover::before {
    left: 100%;
}

.shop-now-nav-btn:hover {
    background: linear-gradient(135deg, #45a049 0%, #7cb342 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.shop-now-nav-btn i {
    font-size: 1rem;
}

.become-vendor-btn {
    background: #1a1a2e;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.become-vendor-btn:hover {
    background: #16213e;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

/* Mobile menu items - hidden on desktop */
.mobile-menu-item {
    display: none;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: 
        linear-gradient(135deg, rgba(26, 26, 46, 0.7) 0%, rgba(22, 33, 62, 0.75) 100%),
        url('assets/images/b29cfa11-d45c-48cd-a909-4b9de3f2ff31.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    padding-top: 0;
    position: relative;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 0;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    min-height: 80vh;
}

.hero-content {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

/* Hero Image Container */
.hero-image-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    position: relative;
    z-index: 2;
}

.hero-image-placeholder {
    width: 420px;
    height: 480px;
    background-image: url('assets/images/ew man.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.hero-subtitle {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    color: #4CAF50;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 3rem;
    max-width: 90%;
}

.hero-downloads {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.download-text {
    font-weight: 600;
    font-size: 1.1rem;
}

.download-buttons {
    display: flex;
    gap: 1rem;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-decoration: none;
}

.download-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    color: white;
}

.download-btn i {
    font-size: 1.2rem;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    position: absolute;
    bottom: -150px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: stretch;
    z-index: 10;
    max-width: 1100px;
    width: 90%;
    min-height: 160px;
    height: auto;
}

.form-left-panel {
    background: rgba(26, 26, 46, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 20px 0 0 20px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    min-width: 250px;
    position: relative;
}

.form-left-panel h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.form-left-panel .form-icon {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    font-size: 1.2rem;
    color: #8BC34A;
    background: linear-gradient(135deg, #e8f5e8 0%, #f1f8e9 100%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(139, 195, 74, 0.2);
    border: 2px solid rgba(139, 195, 74, 0.1);
}

/* Contact Form Card */
.contact-form-card {
    background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
    border-radius: 0 20px 20px 0;
    padding: 1.5rem 2rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    flex: 1;
    border: 1px solid rgba(76, 175, 80, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-form-wrapper:hover .contact-form-card {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    grid-template-rows: auto auto;
    gap: 0.75rem;
    width: 100%;
}

.form-group {
    display: contents;
}

.form-group label {
    font-weight: 600;
    color: #1a1a2e;
    font-size: 0.8rem;
    display: block;
    white-space: nowrap;
    grid-row: 1;
}

.form-group input,
.form-group select {
    grid-row: 2;
}

.form-group input,
.form-group select {
    width: 100%;
    height: 45px;
    padding: 0.8rem;
    border: 2px solid #e8f5e8;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: white;
    box-sizing: border-box;
    min-width: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
    vertical-align: bottom;
}

.form-group input::-webkit-contacts-auto-fill-button {
    visibility: hidden;
    display: none !important;
    pointer-events: none;
    position: absolute;
}

.form-group input::-webkit-credentials-auto-fill-button {
    visibility: hidden;
    display: none !important;
    pointer-events: none;
    position: absolute;
}

.submit-btn {
    background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
    color: white;
    border: none;
    padding: 0.8rem 1.8rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: auto;
    min-width: 150px;
    white-space: nowrap;
    box-sizing: border-box;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    position: relative;
    overflow: hidden;
    height: 45px;
    flex-shrink: 0;
    grid-row: 2;
    align-self: end;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #4CAF50;
    background: white;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.15);
    transform: translateY(-1px);
}

.form-group input:hover,
.form-group select:hover {
    border-color: #8BC34A;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}

.form-group input::placeholder {
    color: #9E9E9E;
    font-style: italic;
    transition: color 0.3s ease;
}

.form-group input:focus::placeholder {
    color: #bbb;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #45a049 0%, #7cb342 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
}

.submit-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.submit-btn:hover::before {
    left: 100%;
}

/* Services Section */
.services {
    padding: 10rem 0 4rem 0;
    background: #f8f9fa;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.service-btn {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 160px;
}

.service-btn:hover {
    background: #45a049;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(76, 175, 80, 0.3);
}

/* Section Styles */
.section-subtitle {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #666;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #333;
    margin-bottom: 2rem;
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 2rem;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    padding-right: 2rem;
}

.subsection-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin: 3rem 0 1rem 0;
}

.subsection-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
}

.about-image {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    height: 300px;
    background: #9E9E9E;
    border-radius: 15px;
}

.audience-image .image-placeholder {
    background: url('assets/images/4e180057-7de1-4d0c-9c9e-da70e3baf53c.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about-image .image-placeholder {
    background: url('assets/images/ew-logo-light.png-816x816.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f8f9fa;
}

.image-placeholder.teal {
    background: url('assets/images/app-mockup-1.png-1080x1920.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    height: 500px;
    width: 100%;
    max-width: 300px;
}

/* Solutions Section */
.solutions {
    padding: 6rem 0;
    background: 
        linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(22, 33, 62, 0.85) 100%),
        url('assets/images/c0c6bfac-70af-4c2e-abd9-35f4f9a59beb.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: white;
    text-align: center;
}

.solutions .section-title,
.solutions .section-subtitle {
    color: #4CAF50;
}

.solutions .section-title {
    color: white;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.solution-card {
    background: white;
    color: #333;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.card-icon {
    width: 80px;
    height: 80px;
    background: #4CAF50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
}

.card-icon i {
    font-size: 2rem;
    color: white;
}

.solution-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.solution-card p {
    line-height: 1.6;
    color: #666;
}

/* Target Audience Section */
.target-audience {
    padding: 6rem 0;
    background: white;
}

.audience-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.audience-text {
    padding-right: 2rem;
}

.audience-image {
    display: flex;
    justify-content: center;
}

/* App Promotion Section */
.app-promotion {
    padding: 6rem 0;
    background: #1a1a2e;
    color: white;
}

.promo-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    align-items: center;
}

.promo-text {
    padding-left: 2rem;
}

.app-promotion .section-title,
.app-promotion .section-subtitle {
    color: white;
}

.app-promotion .section-subtitle {
    color: #4CAF50;
}

.app-promotion .section-description {
    color: #b8b8b8;
}

.feature-buttons {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-row {
    display: flex;
    gap: 1rem;
}

.feature-btn {
    flex: 1;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.feature-btn i {
    font-size: 1rem;
}

/* How It Works Section */
.how-it-works {
    padding: 6rem 0;
    background: #f8f9fa;
}

.works-header {
    text-align: left;
    margin-bottom: 4rem;
    max-width: 600px;
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.work-card {
    background: #8BC34A;
    border-radius: 15px;
    padding: 3rem 2rem;
    text-align: center;
    color: white;
    min-height: 250px;
    display: flex;
    align-items: flex-end;
}

.work-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    transition: all 0.3s ease;
}

.work-icon i {
    font-size: 1.8rem;
    color: white;
}

.work-card:hover .work-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
}

.work-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.work-content p {
    opacity: 0.9;
    line-height: 1.6;
}

/* Become a Vendor Section */
.become-vendor {
    padding: 6rem 0;
    background: white;
    text-align: left;
}

/* Shop Now Call to Action Section */
.shop-now-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
    color: white;
    text-align: center;
}

.shop-now-content {
    max-width: 800px;
    margin: 0 auto;
}

.shop-now-section .section-title {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.shop-now-section .section-description {
    color: white;
    opacity: 0.95;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.shop-now-cta {
    background: white;
    color: #4CAF50;
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.shop-now-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(76, 175, 80, 0.1), transparent);
    transition: left 0.6s;
}

.shop-now-cta:hover::before {
    left: 100%;
}

.shop-now-cta:hover {
    background: #f8f9fa;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.shop-now-cta i {
    font-size: 1.3rem;
}

/* Become a Vendor Section - continued */

.become-vendor .section-title {
    color: #1a1a2e;
    margin-bottom: 2rem;
}

.become-vendor .section-description {
    max-width: 800px;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 4rem;
}

/* Vendor Categories */
.vendor-categories {
    margin-top: 4rem;
}

.vendor-category-card {
    background: #8BC34A;
    border-radius: 15px;
    padding: 3rem 2rem;
    color: white;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.vendor-category-card:hover {
    transform: translateY(-5px);
}

.vendor-category-card.large {
    width: 100%;
    margin-bottom: 2rem;
}

.vendor-category-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.category-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.category-content p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.learn-more-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.learn-more-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Call to Action Section */
.cta-section {
    padding: 6rem 0;
    background: 
        linear-gradient(135deg, rgba(26, 26, 46, 0.7) 0%, rgba(22, 33, 62, 0.75) 100%),
        url('assets/images/b29cfa11-d45c-48cd-a909-4b9de3f2ff31.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    text-align: center;
    color: white;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #1a1a2e;
    color: white;
    padding: 4rem 0 2rem 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.footer-header {
    text-align: center;
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo-img {
    width: 500px;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: brightness(1.1);
    margin-bottom: 0;
}

.footer-logo-img:hover {
    transform: scale(1.02);
    filter: brightness(1.2);
}

.footer-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
}

.contact-us-btn {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-us-btn:hover {
    background: #45a049;
    transform: translateY(-2px);
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 2rem 0;
}

.footer-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.footer-signup h4,
.footer-contact h4,
.footer-social h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-signup p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.2);
}

.newsletter-form button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: #45a049;
    transform: translateY(-2px);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: opacity 0.3s ease;
}

.social-link:hover {
    opacity: 0.8;
}

.social-link i {
    font-size: 1.2rem;
}

.footer-copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.8;
    font-size: 0.9rem;
}

.footer-copyright p {
    margin: 0.25rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        left: 0;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        z-index: 999;
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    /* Show mobile menu items on mobile */
    .mobile-menu-item {
        display: block !important;
        list-style: none;
    }
    
    /* Hide desktop buttons on mobile */
    .shop-now-nav-btn,
    .become-vendor-btn {
        display: none;
    }
    
    /* Mobile menu buttons */
    .nav-menu .mobile-shop-btn,
    .nav-menu .mobile-vendor-btn {
        display: block;
        margin: 0.75rem auto;
        width: 90%;
        max-width: none;
    }
    
    .mobile-shop-btn {
        background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
        color: white;
        border: none;
        padding: 0.75rem 1.5rem;
        border-radius: 25px;
        font-weight: 600;
        font-size: 0.85rem;
        letter-spacing: 0.5px;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        box-shadow: 0 2px 10px rgba(76, 175, 80, 0.2);
    }
    
    .mobile-vendor-btn {
        background: #1a1a2e;
        color: white;
        border: none;
        padding: 0.75rem 1.5rem;
        border-radius: 25px;
        font-weight: 600;
        font-size: 0.85rem;
        letter-spacing: 0.5px;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 2px 10px rgba(26, 26, 46, 0.2);
    }
    
    .mobile-shop-btn:active,
    .mobile-vendor-btn:active {
        transform: scale(0.98);
    }
    
    .nav-logo-img {
        height: 40px;
    }
    
    .hero {
        background-attachment: scroll;
        min-height: auto;
        padding: 2rem 0 3rem 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        min-height: auto;
        padding: 0 20px;
        position: relative;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-description {
        max-width: 100%;
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }
    
    .hero-image-container {
        display: none;
    }
    
    .hero-image-placeholder {
        display: none;
    }
    
    .contact-form-wrapper {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        flex-direction: column;
        width: 100%;
        max-width: 450px;
        min-height: auto;
        margin: 2rem auto 0;
    }
    
    .form-left-panel {
        border-radius: 12px 12px 0 0;
        min-width: auto;
        text-align: center;
        padding: 0.8rem 1rem 0.6rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .form-left-panel h3 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
        text-align: center;
        width: 100%;
    }
    
    .form-left-panel .form-icon {
        position: static;
        margin: 0.4rem auto 0;
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .contact-form-card {
        border-radius: 0 0 12px 12px;
        padding: 0.9rem;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(8, auto);
        gap: 0.6rem;
    }
    
    .form-group {
        display: block;
    }
    
    .form-group label {
        display: block;
        margin-bottom: 0.35rem;
        font-size: 0.8rem;
    }
    
    .form-group input,
    .form-group select {
        width: 100%;
        height: 50px;
        padding: 0.85rem 0.55rem;
        font-size: 14px;
        box-sizing: border-box;
        line-height: 1.6;
    }
    
    .form-group select {
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: right 0.55rem center;
        background-size: 0.75rem;
        padding-right: 2rem;
    }
    
    .submit-btn {
        width: 100%;
        grid-column: 1;
        grid-row: auto;
        padding: 0.65rem 1.2rem;
        height: 50px;
        font-size: 0.75rem;
        margin-top: 0.4rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.75rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-downloads {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .download-text {
        font-size: 0.9rem;
    }
    
    .download-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 260px;
        gap: 0.7rem;
    }
    
    .download-btn {
        justify-content: center;
        width: 100%;
        padding: 0.65rem 1rem;
        font-size: 0.75rem;
    }
    
    .services {
        padding: 6rem 0 4rem 0;
    }
    
    .about-content,
    .audience-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-text,
    .audience-text {
        padding-right: 0;
    }
    
    .promo-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .promo-image {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .promo-image .image-placeholder {
        margin: 0 auto;
    }
    
    .promo-text {
        padding-left: 0;
    }
    
    .feature-row {
        flex-direction: column;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-card {
        max-width: 100%;
        padding: 1.5rem;
    }
    
    .form-header h3 {
        font-size: 1.8rem;
        max-width: calc(100% - 60px);
    }
    
    .form-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .services-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .service-btn {
        min-width: 200px;
    }
    
    .works-grid {
        grid-template-columns: 1fr;
    }
    
    .work-card {
        align-items: center;
    }
    
    .work-content {
        text-align: center;
        width: 100%;
    }
    
    .work-content h3,
    .work-content p {
        text-align: center;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .solutions {
        background-attachment: scroll;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-downloads {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .download-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .download-btn {
        justify-content: center;
        width: 100%;
    }
    
    /* Vendor categories responsive */
    .vendor-category-row {
        grid-template-columns: 1fr;
    }
    
    /* Shop Now Section responsive */
    .shop-now-section .section-title {
        font-size: 2rem;
    }
    
    .shop-now-cta {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
    
    /* CTA section responsive */
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-section {
        background-attachment: scroll;
    }
    
    /* Footer responsive */
    .footer-bottom {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
        max-width: 100%;
    }
    
    .newsletter-form button {
        align-self: center;
        min-width: 150px;
    }
    
    .footer-logo-img {
        width: 350px;
        height: auto;
        margin-bottom: 0;
    }
}

@media (max-width: 480px) {
    .container,
    .hero-container,
    .nav-container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 2rem 0 3rem 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0.8rem;
        min-height: auto;
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 0.6rem;
    }
    
    .hero-subtitle {
        font-size: 0.65rem;
        margin-bottom: 0.6rem;
    }
    
    .hero-description {
        font-size: 0.8rem;
        margin-bottom: 1.2rem;
        line-height: 1.4;
    }
    
    .hero-image-container {
        display: none;
    }
    
    .hero-image-placeholder {
        display: none;
    }
    
    .contact-form-wrapper {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        width: 100%;
        max-width: 420px;
        margin: 1.5rem auto 0;
    }
    
    .form-left-panel {
        border-radius: 10px 10px 0 0;
        padding: 0.7rem 0.9rem 0.5rem;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .form-left-panel h3 {
        font-size: 0.95rem;
        line-height: 1.1;
        text-align: center;
        width: 100%;
    }
    
    .form-left-panel .form-icon {
        width: 30px;
        height: 30px;
        font-size: 0.85rem;
        margin: 0.35rem auto 0;
    }
    
    .contact-form-card {
        border-radius: 0 0 10px 10px;
        padding: 0.8rem;
    }
    
    .contact-form {
        gap: 0.55rem;
    }
    
    .form-group label {
        font-size: 0.75rem;
        margin-bottom: 0.3rem;
    }
    
    .form-group input,
    .form-group select {
        height: 48px;
        padding: 0.8rem 0.5rem;
        font-size: 14px;
        box-sizing: border-box;
        line-height: 1.6;
    }
    
    .form-group select {
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: right 0.5rem center;
        background-size: 0.75rem;
        padding-right: 2rem;
    }
    
    .submit-btn {
        height: 48px;
        padding: 0.6rem 1rem;
        font-size: 0.7rem;
        margin-top: 0.35rem;
    }
    
    .services {
        padding: 4rem 0 3rem 0;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .download-text {
        font-size: 0.85rem;
    }
    
    .download-buttons {
        max-width: 240px;
        gap: 0.6rem;
    }
    
    .download-btn {
        font-size: 0.7rem;
        padding: 0.6rem 0.9rem;
    }
    
    .download-btn i {
        font-size: 1rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

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

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Focus States for Accessibility */
button:focus,
input:focus,
select:focus,
.nav-link:focus {
    outline: 2px solid #4CAF50;
    outline-offset: 2px;
}

/* JavaScript Enhanced Styles */

/* Header scroll effect */
.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 25px rgba(26, 26, 46, 0.1);
    border-bottom: 1px solid rgba(76, 175, 80, 0.2);
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: 0;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        z-index: 999;
        padding: 2rem 1rem;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        display: flex;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-menu li {
        margin: 0.75rem 0;
        padding: 0;
        width: 100%;
    }
    
    .nav-menu .nav-link {
        display: block;
        padding: 0.5rem 0;
        font-size: 1.05rem;
        text-align: center;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    body.menu-open {
        overflow: hidden;
    }
}

/* Active navigation link */
.nav-link.active {
    color: #4CAF50;
    font-weight: 600;
}

/* Form validation styles */
.form-group input.error,
.form-group select.error {
    border-color: #e74c3c;
    background-color: #fdf2f2;
}

.error-message {
    color: #e74c3c;
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

.form-message {
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-weight: 500;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Button active states */
.service-btn.active {
    background: #45a049;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(76, 175, 80, 0.4);
}

/* Contact form highlight effect */
.contact-form-card.highlight {
    animation: highlight 2s ease;
}

@keyframes highlight {
    0%, 100% { 
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); 
    }
    50% { 
        box-shadow: 0 20px 40px rgba(76, 175, 80, 0.4); 
    }
}

/* Toast notification */
.toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #333;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    z-index: 1001;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.toast.show {
    transform: translateX(0);
}

.toast.success {
    background: #4CAF50;
}

.toast.error {
    background: #f44336;
}

.toast.info {
    background: #2196F3;
}

/* Loading button state */
.submit-btn.loading {
    background: #bbb;
    cursor: not-allowed;
    position: relative;
}

.submit-btn.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    margin: auto;
    border: 2px solid transparent;
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

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

/* Scroll animation improvements */
.fade-in {
    animation-delay: 0.1s;
}

.solution-card:nth-child(2) .fade-in {
    animation-delay: 0.2s;
}

.solution-card:nth-child(3) .fade-in {
    animation-delay: 0.3s;
}

.work-card:nth-child(2) .fade-in {
    animation-delay: 0.2s;
}

.work-card:nth-child(3) .fade-in {
    animation-delay: 0.3s;
}

/* Improved button hover effects */
.service-btn,
.feature-btn,
.download-btn,
.submit-btn,
.become-vendor-btn {
    position: relative;
    overflow: hidden;
}

.service-btn::before,
.feature-btn::before,
.download-btn::before,
.submit-btn::before,
.become-vendor-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.service-btn:hover::before,
.feature-btn:hover::before,
.download-btn:hover::before,
.submit-btn:hover::before,
.become-vendor-btn:hover::before {
    left: 100%;
}

/* Accessibility improvements */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #000;
    color: #fff;
    padding: 8px;
    text-decoration: none;
    z-index: 1002;
}

.skip-link:focus {
    top: 6px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero {
        background: #000;
        color: #fff;
    }
    
    .service-btn,
    .feature-btn {
        border: 2px solid currentColor;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Print Styles */
@media print {
    .header,
    .hero,
    .footer {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .section-title {
        page-break-after: avoid;
    }
    
    .contact-form-card,
    .service-btn,
    .feature-btn {
        display: none;
    }
}
/* ========================================
   CALCULATOR PAGE STYLES
   ======================================== */

/* Calculator Container */
.calc-container {
    max-width: 700px;
    margin: 5rem auto 3rem;
    padding: 2.5rem;
    background: #F5F7FA;
    box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    border: 2px solid #4CAF50;
}

.calc-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #4CAF50;
}

.calc-header h2 {
    color: #1a1a2e;
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.calc-header h2 i {
    color: #4CAF50;
}

.calc-section {
    margin-top: 2rem;
}

.calc-section h3 {
    color: #1a1a2e;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.calc-section h3 i {
    color: #4CAF50;
}

.calc-section label {
    display: block;
    margin-top: 1.25rem;
    font-weight: 600;
    color: #1a1a2e;
    font-size: 0.95rem;
}

.calc-section .input-group {
    display: flex;
    align-items: center;
    background: #fff;
    border: 2px solid #DBE4EA;
    border-radius: 12px;
    padding: 0 1rem;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

.calc-section .input-group:hover,
.calc-section .input-group:focus-within {
    border-color: #4CAF50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.calc-section .input-group i {
    color: #4CAF50;
    margin-right: 0.75rem;
    font-size: 1.125rem;
}

.calc-section .input-group input,
.calc-section .input-group select {
    flex: 1;
    padding: 0.875rem 0.5rem;
    border: none;
    background: transparent;
    color: #333;
    font-size: 1rem;
    outline: none;
    font-family: 'Inter', sans-serif;
}

.calc-button {
    width: 100%;
    margin-top: 2rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.calc-button:hover {
    background: linear-gradient(135deg, #3d8b40 0%, #7cb342 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.5);
}

.appliance-list {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.appliance-item {
    background: white;
    border: 2px solid #DBE4EA;
    border-radius: 12px;
    padding: 1rem;
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr auto;
    align-items: center;
    gap: 0.75rem;
}

.appliance-item input {
    padding: 0.75rem;
    border: 1px solid #DBE4EA;
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    min-width: 0;
}

.remove-appliance {
    background: #e03131;
    color: white;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.remove-appliance:hover {
    background: #c92a2a;
    transform: scale(1.1);
}

.add-appliance-btn {
    margin-top: 0.75rem;
    padding: 0.75rem 1rem;
    background: white;
    border: 2px dashed #4CAF50;
    border-radius: 12px;
    color: #4CAF50;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    font-family: 'Inter', sans-serif;
}

.add-appliance-btn:hover {
    background: rgba(76, 175, 80, 0.1);
    border-style: solid;
}

.result-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.result-modal.active {
    display: flex;
}

.result-content {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    max-width: 550px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.result-header {
    background: #1a1a2e;
    color: white;
    padding: 1.5rem;
    border-radius: 16px 16px 0 0;
    margin: -2rem -2rem 1.5rem -2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.result-header h3 {
    margin: 0;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.close-modal {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.2);
}

.result-body {
    font-size: 1rem;
}

.result-body i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.result-value {
    font-size: 2rem;
    font-weight: 700;
    color: #4CAF50;
    margin: 1rem 0;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #DBE4EA;
}

.result-item:last-child {
    border-bottom: none;
}

.result-label {
    font-weight: 600;
    color: #1a1a2e;
}

@media (max-width: 768px) {
    .calc-container {
        margin: 3rem 1rem 2rem;
        padding: 1.5rem;
    }
    .calc-header h2 {
        font-size: 1.5rem;
    }
    .calc-section h3 {
        font-size: 1.125rem;
    }
    .appliance-item {
        flex-direction: column;
        align-items: stretch;
    }
}

/* ===================================
   VENDOR PAGES STYLES
   =================================== */

/* Vendor Hero Section */
.vendor-hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1e 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.vendor-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    opacity: 0.3;
}

.vendor-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.7) 0%, rgba(22, 33, 62, 0.75) 100%);
}

.vendor-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
}

.vendor-hero-subtitle {
    color: #4CAF50;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.vendor-hero-title {
    color: white;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.vendor-hero-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.vendor-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.vendor-hero-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

/* Vendor Benefits Section */
.vendor-benefits {
    padding: 6rem 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: #4CAF50;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.benefit-icon i {
    font-size: 2rem;
    color: white;
}

.benefit-card h3 {
    font-size: 1.5rem;
    color: #1a1a2e;
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefit-card p {
    color: #666;
    line-height: 1.8;
    font-size: 1rem;
}

/* Vendor Process Section */
.vendor-process {
    padding: 6rem 0;
    background: #f8f9fa;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 20px rgba(76, 175, 80, 0.3);
}

.process-step h3 {
    font-size: 1.5rem;
    color: #1a1a2e;
    margin-bottom: 1rem;
    font-weight: 600;
}

.process-step p {
    color: #666;
    line-height: 1.8;
}

/* Requirements Section */
.vendor-requirements {
    padding: 6rem 0;
    background: white;
}

.requirements-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.requirements-list {
    margin-top: 2rem;
}

.requirement-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.requirement-item i {
    color: #4CAF50;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.requirement-item span {
    color: #333;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Pricing Section */
.vendor-pricing {
    padding: 6rem 0;
    background: #f8f9fa;
}

.pricing-card {
    max-width: 600px;
    margin: 3rem auto 0;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid #4CAF50;
}

.pricing-header {
    background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
    padding: 3rem 2rem;
    text-align: center;
    color: white;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.pricing-rate {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-header p {
    font-size: 1.1rem;
    opacity: 0.95;
}

.pricing-features {
    padding: 2.5rem;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.pricing-feature:last-child {
    border-bottom: none;
}

.pricing-feature i {
    color: #4CAF50;
    font-size: 1.25rem;
}

.pricing-feature span {
    color: #333;
    font-size: 1.05rem;
}

/* Application Form Section */
.vendor-application {
    padding: 6rem 0;
    background: white;
}

.vendor-form {
    max-width: 900px;
    margin: 3rem auto 0;
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    color: #1a1a2e;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4CAF50;
}

.form-group textarea {
    resize: vertical;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin: 2rem 0;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-checkbox label {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    cursor: pointer;
}

.vendor-submit-btn {
    width: 100%;
    background: #4CAF50;
    color: white;
    border: none;
    padding: 1.25rem;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.vendor-submit-btn:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(76, 175, 80, 0.3);
}

/* FAQ Section */
.vendor-faq {
    padding: 6rem 0;
    background: #f8f9fa;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #4CAF50;
}

.faq-item h3 {
    color: #1a1a2e;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.faq-item p {
    color: #666;
    line-height: 1.8;
}

/* Responsive Design for Vendor Pages */
@media (max-width: 768px) {
    .vendor-hero {
        height: 500px;
    }
    
    .vendor-hero-title {
        font-size: 2.5rem;
    }
    
    .vendor-hero-description {
        font-size: 1.1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .requirements-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .requirements-image {
        order: -1;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .vendor-form {
        padding: 2rem 1.5rem;
    }
}

/* Contact Modal Styles */
.contact-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease-in-out;
}

.contact-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 46, 0.85);
    backdrop-filter: blur(10px);
}

.contact-modal-content {
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 2px solid rgba(76, 175, 80, 0.3);
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    padding: 40px 35px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    z-index: 10001;
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.3s ease-out;
    overflow: hidden;
}

.contact-modal-content.modal-show {
    transform: translateY(0);
    opacity: 1;
}

.contact-modal-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(76, 175, 80, 0.1), transparent);
    animation: shine 3s infinite;
    pointer-events: none;
}

.contact-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10002;
}

.contact-modal-close i {
    color: white;
    font-size: 18px;
}

.contact-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.contact-modal-header {
    text-align: center;
    margin-bottom: 35px;
}

.contact-modal-icon {
    width: 70px;
    height: 70px;
    background: rgba(76, 175, 80, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: pulse 2s infinite;
}

.contact-modal-icon i {
    font-size: 32px;
    color: #4CAF50;
}

.contact-modal-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.contact-modal-header p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.contact-modal-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(76, 175, 80, 0.3);
    transform: translateX(5px);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: rgba(76, 175, 80, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon i {
    font-size: 22px;
    color: #4CAF50;
}

.contact-info-text {
    flex: 1;
}

.contact-info-text h4 {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info-text a {
    font-size: 18px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-text a:hover {
    color: #4CAF50;
}

.contact-modal-footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-modal-footer p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .contact-modal-content {
        padding: 30px 25px;
    }
    
    .contact-modal-header h2 {
        font-size: 24px;
    }
    
    .contact-modal-icon {
        width: 60px;
        height: 60px;
    }
    
    .contact-modal-icon i {
        font-size: 28px;
    }
    
    .contact-info-item {
        padding: 15px;
    }
    
    .contact-info-icon {
        width: 45px;
        height: 45px;
    }
    
    .contact-info-icon i {
        font-size: 20px;
    }
    
    .contact-info-text a {
        font-size: 16px;
    }
}
