/* MPL Solutions - Shared Styles */
/* Version 2.0 - Multi-Page Site */

:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f8faf8;
    --bg-tertiary: #f0f5f0;
    --bg-dark: #0a0a0a;
    --bg-dark-secondary: #141414;
    --accent-green: #2eb82e;
    --accent-green-dark: #239023;
    --accent-green-light: #4cd94c;
    --text-dark: #0a0a0a;
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-muted: #717171;
    --text-light: #ffffff;
    --gradient-green: linear-gradient(135deg, #2eb82e 0%, #4cd94c 50%, #2eb82e 100%);
    --glow-green: 0 0 40px rgba(46, 184, 46, 0.3);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 140px; }
body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a, button { min-height: 44px; min-width: 44px; }
img { max-width: 100%; height: auto; }

.bg-pattern {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(rgba(46, 184, 46, 0.03) 1px, transparent 1px);
    background-size: 40px 40px; pointer-events: none; z-index: 0;
}

/* Top Contact Bar */
.top-bar {
    background: var(--bg-dark); padding: 0.6rem 4rem; position: relative; z-index: 1001;
}
.top-bar-content {
    max-width: 1400px; margin: 0 auto; display: flex; justify-content: flex-end; gap: 2rem;
}
.top-contact {
    color: var(--text-muted); text-decoration: none; font-size: 0.9rem;
    display: flex; align-items: center; gap: 0.5rem; transition: color 0.3s ease;
}
.top-contact:hover { color: var(--accent-green); }

/* Navigation */
nav {
    position: fixed; top: 38px; left: 0; right: 0; z-index: 1000;
    padding: 1rem 4rem; display: flex; justify-content: space-between; align-items: center;
    background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.logo-img { height: 55px; width: auto; }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a {
    color: var(--text-secondary); text-decoration: none; font-weight: 500;
    font-size: 0.95rem; transition: all 0.3s ease; position: relative;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: -6px; left: 0; width: 0; height: 2px;
    background: var(--accent-green); transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--text-dark); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--accent-green); }
.nav-links a.active::after { width: 100%; }

/* Dropdown Menu */
.dropdown { position: relative; }
.dropdown-toggle { cursor: pointer; display: flex; align-items: center; gap: 0.3rem; }
.dropdown-toggle::after { content: '▾'; font-size: 0.7rem; transition: transform 0.3s; }
.dropdown:hover .dropdown-toggle::after { transform: rotate(180deg); }
.dropdown-menu {
    position: absolute; top: 100%; left: 0; background: white;
    border-radius: 12px; box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    min-width: 250px; padding: 0.75rem 0; opacity: 0; visibility: hidden;
    transform: translateY(10px); transition: all 0.3s ease; z-index: 1001;
}
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
    display: block; padding: 0.75rem 1.5rem; color: var(--text-secondary);
    font-size: 0.9rem; transition: all 0.2s ease;
}
.dropdown-menu a:hover { background: rgba(46, 184, 46, 0.08); color: var(--accent-green); }
.dropdown-menu a::after { display: none; }

.nav-cta {
    padding: 0.8rem 1.8rem; background: var(--accent-green); border: none; border-radius: 8px;
    color: white; font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 0.9rem;
    cursor: pointer; transition: all 0.3s ease; text-decoration: none;
}
.nav-cta:hover { background: var(--accent-green-dark); transform: translateY(-2px); box-shadow: var(--glow-green); }

/* Buttons */
.btn-primary {
    padding: 1rem 2.5rem; background: var(--accent-green); border: none; border-radius: 8px;
    color: white; font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 1rem;
    cursor: pointer; transition: all 0.3s ease; text-decoration: none;
    display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-primary:hover { background: var(--accent-green-dark); transform: translateY(-3px); box-shadow: var(--glow-green); }
.btn-secondary {
    padding: 1rem 2.5rem; background: transparent; border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 8px; color: var(--text-light); font-family: 'Outfit', sans-serif;
    font-weight: 600; font-size: 1rem; cursor: pointer; transition: all 0.3s ease; text-decoration: none;
}
.btn-secondary:hover { background: white; color: var(--text-dark); }
.btn-outline {
    padding: 1rem 2.5rem; background: transparent; border: 2px solid var(--accent-green);
    border-radius: 8px; color: var(--accent-green); font-family: 'Outfit', sans-serif;
    font-weight: 600; font-size: 1rem; cursor: pointer; transition: all 0.3s ease; text-decoration: none;
}
.btn-outline:hover { background: var(--accent-green); color: white; }

/* Hero Section */
.hero {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    padding: 10rem 4rem 4rem; position: relative; z-index: 1;
    background: var(--bg-dark); overflow: hidden;
}
.hero-video-container {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; overflow: hidden;
}
.hero-video { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; }
.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.25) 0%, rgba(10, 10, 10, 0.4) 100%);
}
.hero-content { max-width: 1200px; width: 100%; text-align: center; position: relative; z-index: 2; }
.hero-text h1 {
    font-family: 'Outfit', sans-serif; font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800; line-height: 1.1; margin-bottom: 1.5rem;
    letter-spacing: -0.03em; color: var(--text-light);
}
.hero-text h1 span { color: var(--accent-green); }
.hero-subtitle {
    font-family: 'Outfit', sans-serif; font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 500; color: rgba(255, 255, 255, 0.9); margin-bottom: 1rem;
}
.hero-tagline {
    display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1.2rem;
    background: rgba(46, 184, 46, 0.2); border: 1px solid rgba(46, 184, 46, 0.3); border-radius: 50px;
    font-size: 0.9rem; font-weight: 500; color: var(--accent-green-light); margin-bottom: 1.5rem;
}
.hero-text p { font-size: 1.25rem; color: rgba(255, 255, 255, 0.8); margin-bottom: 2.5rem; max-width: 700px; margin-left: auto; margin-right: auto; }
.hero-buttons { display: flex; gap: 1.5rem; justify-content: center; margin-bottom: 4rem; }
.hero-stats { display: flex; gap: 4rem; justify-content: center; flex-wrap: wrap; }
.stat { text-align: center; }
.stat-number { font-family: 'Outfit', sans-serif; font-size: 3rem; font-weight: 800; color: var(--accent-green); }
.stat-label { font-size: 0.85rem; color: rgba(255, 255, 255, 0.6); text-transform: uppercase; letter-spacing: 0.1em; }

/* Page Hero (for inner pages) */
.page-hero {
    padding: 12rem 4rem 6rem; background: var(--bg-dark); text-align: center; position: relative; z-index: 1;
}
.page-hero h1 {
    font-family: 'Outfit', sans-serif; font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800; color: var(--text-light); margin-bottom: 1rem;
}
.page-hero h1 span { color: var(--accent-green); }
.page-hero p { font-size: 1.2rem; color: var(--text-muted); max-width: 700px; margin: 0 auto; }
.breadcrumb {
    display: flex; justify-content: center; gap: 0.5rem; margin-bottom: 2rem;
    font-size: 0.9rem; color: var(--text-muted);
}
.breadcrumb a { color: var(--accent-green); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* Section Styles */
.section-header { text-align: center; margin-bottom: 5rem; }
.section-tag {
    display: inline-block; padding: 0.5rem 1.5rem; background: rgba(46, 184, 46, 0.15);
    border: 1px solid rgba(46, 184, 46, 0.3); border-radius: 50px; color: var(--accent-green-light);
    font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1.5rem;
}
.section-header h2 {
    font-family: 'Outfit', sans-serif; font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800; letter-spacing: -0.02em; margin-bottom: 1rem; color: var(--text-light);
}
.section-header p { color: var(--text-muted); font-size: 1.15rem; max-width: 600px; margin: 0 auto; }
.section-header.light h2 { color: var(--text-dark); }
.section-header.light .section-tag { background: rgba(46, 184, 46, 0.1); color: var(--accent-green-dark); }

/* Services Section */
.services { padding: 8rem 4rem; position: relative; z-index: 1; background: var(--bg-dark); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 1400px; margin: 0 auto; }
.service-card {
    background: var(--bg-dark-secondary); border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px; padding: 2.5rem; transition: all 0.4s ease; position: relative; overflow: hidden;
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--gradient-green); transform: scaleX(0); transition: transform 0.4s ease;
}
.service-card:hover { transform: translateY(-8px); border-color: rgba(46, 184, 46, 0.3); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    width: 60px; height: 60px; background: rgba(46, 184, 46, 0.15); border-radius: 16px;
    display: flex; align-items: center; justify-content: center; font-size: 1.8rem;
    margin-bottom: 1.5rem; transition: all 0.3s ease;
}
.service-card:hover .service-icon { background: rgba(46, 184, 46, 0.25); transform: scale(1.1); }
.service-card h3 { font-family: 'Outfit', sans-serif; font-size: 1.4rem; font-weight: 700; margin-bottom: 1rem; color: var(--text-light); }
.service-card p { color: var(--text-muted); font-size: 1rem; margin-bottom: 1.5rem; }
.service-link {
    display: inline-flex; align-items: center; gap: 0.5rem; color: var(--accent-green);
    text-decoration: none; font-weight: 600; font-size: 0.95rem; transition: gap 0.3s ease;
}
.service-link:hover { gap: 1rem; }

/* Why Choose Us */
.why-us { padding: 8rem 4rem; position: relative; z-index: 1; background: var(--bg-primary); }
.why-us-container { max-width: 1400px; margin: 0 auto; }
.why-us-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.why-card {
    background: var(--bg-secondary); border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px; padding: 2.5rem; transition: all 0.4s ease; position: relative;
}
.why-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08); border-color: rgba(46, 184, 46, 0.2); }
.why-number {
    font-family: 'Outfit', sans-serif; font-size: 3rem; font-weight: 800;
    color: rgba(46, 184, 46, 0.15); line-height: 1; margin-bottom: 1rem;
}
.why-card h3 { font-family: 'Outfit', sans-serif; font-size: 1.3rem; font-weight: 700; margin-bottom: 1rem; color: var(--text-dark); }
.why-card p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.7; }

/* Content Section */
.content-section { padding: 6rem 4rem; position: relative; z-index: 1; }
.content-section.dark { background: var(--bg-dark); }
.content-section.light { background: var(--bg-primary); }
.content-section.alt { background: var(--bg-secondary); }
.content-container { max-width: 1200px; margin: 0 auto; }
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.content-text h2 {
    font-family: 'Outfit', sans-serif; font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800; margin-bottom: 1.5rem;
}
.content-section.dark .content-text h2 { color: var(--text-light); }
.content-section.light .content-text h2,
.content-section.alt .content-text h2 { color: var(--text-dark); }
.content-text h2 span { color: var(--accent-green); }
.content-text p { font-size: 1.1rem; margin-bottom: 1.5rem; line-height: 1.8; }
.content-section.dark .content-text p { color: var(--text-muted); }
.content-section.light .content-text p,
.content-section.alt .content-text p { color: var(--text-secondary); }

/* Feature List */
.feature-list { list-style: none; margin: 2rem 0; }
.feature-list li {
    display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1rem;
    font-size: 1rem;
}
.feature-list li::before {
    content: '✓'; width: 24px; height: 24px; background: rgba(46, 184, 46, 0.15);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: var(--accent-green); flex-shrink: 0; font-size: 0.85rem; font-weight: bold;
}
.content-section.dark .feature-list li { color: var(--text-muted); }
.content-section.light .feature-list li,
.content-section.alt .feature-list li { color: var(--text-secondary); }

/* About Section */
.about { padding: 8rem 4rem; position: relative; z-index: 1; background: var(--bg-primary); }
.about-content { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.about-image {
    width: 100%; aspect-ratio: 4/3; background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
    border-radius: 24px; overflow: visible; position: relative; border: 1px solid rgba(46, 184, 46, 0.2);
}
.about-image img { border-radius: 24px; width: 100%; height: 100%; object-fit: cover; }
.about-stats-floating {
    position: absolute; bottom: -30px; right: -30px; background: white;
    border: 1px solid rgba(0, 0, 0, 0.1); border-radius: 20px; padding: 2rem;
    display: flex; gap: 2rem; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1); z-index: 10;
}
.about-stats-floating .stat-number { color: var(--accent-green); font-size: 2rem; }
.about-stats-floating .stat-label { color: var(--text-secondary); }
.about-text .section-tag { background: rgba(46, 184, 46, 0.1); border-color: rgba(46, 184, 46, 0.2); color: var(--accent-green-dark); }
.about-text h2 { font-family: 'Outfit', sans-serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-bottom: 1.5rem; color: var(--text-dark); }
.about-text h2 span { color: var(--accent-green); }
.about-text p { color: var(--text-secondary); font-size: 1.1rem; margin-bottom: 1.5rem; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2rem; }
.about-feature { display: flex; align-items: flex-start; gap: 1rem; }
.feature-check {
    width: 24px; height: 24px; background: rgba(46, 184, 46, 0.15); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; color: var(--accent-green);
    flex-shrink: 0; font-size: 0.85rem; font-weight: bold;
}
.feature-text { font-size: 0.95rem; color: var(--text-secondary); }

/* Partners */
.partners {
    padding: 5rem 4rem; position: relative; z-index: 1; background: var(--bg-secondary);
    border-top: 1px solid rgba(0, 0, 0, 0.05); border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.partners-content { max-width: 1400px; margin: 0 auto; text-align: center; }
.partners-label { color: var(--text-muted); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 3rem; }
.partners-logos { display: flex; justify-content: center; align-items: center; gap: 5rem; flex-wrap: wrap; }
.partner-logo { font-family: 'Outfit', sans-serif; font-size: 1.6rem; font-weight: 700; color: var(--text-muted); transition: all 0.3s ease; opacity: 0.5; }
.partner-logo:hover { color: var(--accent-green); opacity: 1; }

/* Wholesale Section */
.wholesale { padding: 8rem 4rem; position: relative; z-index: 1; background: var(--bg-dark); }
.wholesale-container { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; }
.wholesale-info { color: var(--text-light); }
.wholesale-info .section-tag { background: rgba(46, 184, 46, 0.15); border-color: rgba(46, 184, 46, 0.3); color: var(--accent-green-light); }
.wholesale-info h2 { font-family: 'Outfit', sans-serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-bottom: 1rem; margin-top: 1rem; }
.wholesale-info h2 span { color: var(--accent-green); }
.wholesale-info > p { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 2rem; line-height: 1.7; }
.wholesale-categories { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 2rem; }
.category-item {
    background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px; padding: 1rem; text-align: center; transition: all 0.3s ease;
}
.category-item:hover { background: rgba(46, 184, 46, 0.15); border-color: var(--accent-green); }
.category-icon { display: block; font-size: 1.5rem; margin-bottom: 0.5rem; }
.category-item span:last-child { font-size: 0.85rem; color: var(--text-muted); }
.category-item:hover span:last-child { color: var(--text-light); }
.wholesale-benefits { margin-bottom: 2rem; }
.wholesale-benefits h4 { font-family: 'Outfit', sans-serif; font-size: 1.1rem; font-weight: 600; margin-bottom: 1rem; color: var(--text-light); }
.wholesale-benefits ul { list-style: none; }
.wholesale-benefits li { color: var(--text-muted); margin-bottom: 0.5rem; font-size: 0.95rem; }
.ebay-link {
    display: inline-flex; align-items: center; gap: 0.75rem; padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px; color: var(--text-light); text-decoration: none; font-weight: 600;
    transition: all 0.3s ease;
}
.ebay-link:hover { background: rgba(46, 184, 46, 0.15); border-color: var(--accent-green); color: var(--accent-green); }

/* FAQ Section */
.faq { padding: 8rem 4rem; position: relative; z-index: 1; background: var(--bg-secondary); }
.faq-container { max-width: 1200px; margin: 0 auto; }
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.faq-item {
    background: white; border-radius: 16px; padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.05); transition: all 0.3s ease;
}
.faq-item:hover { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); border-color: rgba(46, 184, 46, 0.2); }
.faq-item h3 {
    font-family: 'Outfit', sans-serif; font-size: 1.15rem; font-weight: 700;
    color: var(--text-dark); margin-bottom: 0.75rem;
}
.faq-item p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.7; }
.faq-item a { color: var(--accent-green); text-decoration: none; font-weight: 500; }
.faq-item a:hover { text-decoration: underline; }

/* Contact Section */
.contact { padding: 8rem 4rem; position: relative; z-index: 1; background: var(--bg-secondary); }
.contact-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; align-items: start; }
.contact-info-card {
    background: var(--bg-dark); border-radius: 24px; padding: 3rem; color: var(--text-light);
}
.contact-info-card h2 { font-family: 'Outfit', sans-serif; font-size: 2.2rem; font-weight: 800; margin-bottom: 1rem; }
.contact-info-card > p { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 2.5rem; line-height: 1.7; }
.contact-details { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2.5rem; }
.contact-item { display: flex; align-items: center; gap: 1rem; }
.contact-icon {
    width: 50px; height: 50px; background: rgba(46, 184, 46, 0.15); border-radius: 12px;
    display: flex; align-items: center; justify-content: center; color: var(--accent-green); flex-shrink: 0;
}
.contact-item h4 { font-family: 'Outfit', sans-serif; font-size: 0.9rem; font-weight: 600; color: var(--text-muted); margin-bottom: 0.2rem; }
.contact-item a, .contact-item span { color: var(--text-light); text-decoration: none; font-size: 1.05rem; transition: color 0.3s ease; }
.contact-item a:hover { color: var(--accent-green); }

/* Forms */
.form-card { background: white; border-radius: 24px; padding: 3rem; box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08); }
.form-card h3 { font-family: 'Outfit', sans-serif; font-size: 1.8rem; font-weight: 700; margin-bottom: 2rem; color: var(--text-dark); }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label { font-size: 0.9rem; font-weight: 600; color: var(--text-secondary); }
.form-group input, .form-group select, .form-group textarea {
    padding: 0.9rem 1rem; border: 2px solid #e5e7eb; border-radius: 10px; font-size: 1rem;
    font-family: 'Inter', sans-serif; transition: all 0.3s ease; background: #fafafa;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--accent-green); background: white; box-shadow: 0 0 0 4px rgba(46, 184, 46, 0.1);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; background-size: 1rem; }
.submit-btn { width: 100%; justify-content: center; padding: 1.1rem 2rem; margin-top: 0.5rem; font-size: 1.05rem; }

/* CTA Section */
.cta { padding: 8rem 4rem; position: relative; z-index: 1; background: var(--bg-primary); }
.cta-card {
    max-width: 1200px; margin: 0 auto; background: var(--bg-dark); border-radius: 32px;
    padding: 5rem; text-align: center; position: relative; overflow: hidden;
}
.cta-card::before {
    content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 50%; height: 3px; background: var(--gradient-green);
}
.cta-card h2 { font-family: 'Outfit', sans-serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-bottom: 1rem; color: var(--text-light); }
.cta-card p { color: var(--text-muted); font-size: 1.2rem; max-width: 600px; margin: 0 auto 2.5rem; }
.cta-buttons { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.cta-phone {
    display: flex; align-items: center; justify-content: center; gap: 0.5rem;
    color: var(--accent-green); font-family: 'Outfit', sans-serif; font-size: 1.5rem; font-weight: 700; margin-top: 2rem;
}

/* Footer */
footer { padding: 4rem; background: var(--bg-dark); position: relative; z-index: 1; }
.footer-content { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; }
.footer-brand .footer-logo { height: 50px; margin-bottom: 1rem; }
.footer-brand p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1.5rem; }
.social-links { display: flex; gap: 1rem; }
.social-link {
    width: 40px; height: 40px; background: rgba(255, 255, 255, 0.05); border-radius: 10px;
    display: flex; align-items: center; justify-content: center; color: var(--text-muted);
    text-decoration: none; transition: all 0.3s ease;
}
.social-link:hover { background: var(--accent-green); color: white; }
.footer-column h4 { font-family: 'Outfit', sans-serif; font-weight: 700; margin-bottom: 1.5rem; font-size: 1.1rem; color: var(--text-light); }
.footer-column ul { list-style: none; }
.footer-column li { margin-bottom: 0.75rem; }
.footer-column a { color: var(--text-muted); text-decoration: none; font-size: 0.95rem; transition: color 0.3s ease; }
.footer-column span { color: #a0a0a0; font-size: 0.95rem; }
.footer-column a:hover { color: var(--accent-green); }
.footer-bottom {
    max-width: 1400px; margin: 3rem auto 0; padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08); display: flex;
    justify-content: space-between; align-items: center;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.9rem; }
.footer-certifications { display: flex; gap: 1.5rem; }
.certification { padding: 0.5rem 1rem; background: rgba(255, 255, 255, 0.05); border-radius: 8px; font-size: 0.8rem; color: var(--text-muted); }

/* Responsive */
@media (max-width: 1024px) {
    nav { padding: 1rem 2rem; }
    .nav-links { gap: 1.5rem; }
    .hero { padding: 8rem 2rem 4rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .about-content { grid-template-columns: 1fr; gap: 4rem; }
    .content-grid { grid-template-columns: 1fr; gap: 3rem; }
    .wholesale-container { grid-template-columns: 1fr; }
    .contact-container { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: repeat(2, 1fr); }
    .why-us-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .top-bar { padding: 0.5rem 1rem; }
    .top-bar-content { justify-content: center; gap: 1rem; flex-wrap: wrap; }
    nav { flex-direction: column; gap: 1rem; padding: 1rem; top: 32px; }
    .logo-img { height: 40px; }
    .nav-links { gap: 1rem; flex-wrap: wrap; justify-content: center; width: 100%; }
    .nav-cta { width: 100%; text-align: center; justify-content: center; }
    .dropdown-menu { position: static; box-shadow: none; width: 100%; }
    .hero { padding: 10rem 1.5rem 3rem; min-height: auto; }
    .hero-text h1 { font-size: 2.2rem; }
    .hero-buttons { flex-direction: column; align-items: center; width: 100%; }
    .btn-primary, .btn-secondary, .btn-outline { width: 100%; text-align: center; justify-content: center; }
    .page-hero { padding: 10rem 1.5rem 4rem; }
    .services, .why-us, .about, .wholesale, .faq, .contact, .content-section { padding: 4rem 1.5rem; }
    .services-grid, .why-us-grid, .faq-grid { grid-template-columns: 1fr; }
    .about-stats-floating { position: relative; bottom: 0; right: 0; margin-top: 2rem; justify-content: center; }
    .about-features { grid-template-columns: 1fr; }
    .wholesale-categories { grid-template-columns: repeat(2, 1fr); }
    .form-row { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .social-links { justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .footer-certifications { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 480px) {
    .hero-text h1 { font-size: 1.8rem; }
    .hero-stats { flex-direction: column; gap: 1rem; }
    .wholesale-categories { grid-template-columns: repeat(2, 1fr); }
}

/* Animations */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.hero-content, .service-card, .about-visual, .about-text { animation: fadeInUp 0.8s ease forwards; }
.service-card:nth-child(2) { animation-delay: 0.1s; }
.service-card:nth-child(3) { animation-delay: 0.2s; }
.service-card:nth-child(4) { animation-delay: 0.3s; }
.service-card:nth-child(5) { animation-delay: 0.4s; }
.service-card:nth-child(6) { animation-delay: 0.5s; }
