/* ===== CSS Variables ===== */
:root {
    --red: #ef4850; --red-dark: #d43d45; --red-light: #fef0f0; --red-gradient: linear-gradient(135deg, #ef4850 0%, #d43d45 100%);
    --blue: #2c99d4; --blue-dark: #2280b5; --blue-light: #eff6ff; --blue-gradient: linear-gradient(135deg, #2c99d4 0%, #2280b5 100%);
    --black: #1a1a1a; --dark-gradient: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    --gray-50: #f8fafb; --gray-100: #f5f5f5; --gray-200: #e5e5e5; --gray-300: #d4d4d4;
    --gray-400: #a3a3a3; --gray-500: #737373; --gray-600: #404040; --white: #fff;
    --green: #16a34a; --green-light: #f0fdf4; --green-gradient: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    --purple: #8b5cf6; --orange: #f97316; --teal: #0d9488; --yellow: #f59e0b;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05); --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 32px rgba(0,0,0,0.1); --shadow-xl: 0 20px 50px rgba(0,0,0,0.12);
}

/* ===== HERO ===== */
.wholesale-hero {
    background: linear-gradient(135deg, var(--red-light) 0%, var(--blue-light) 50%, #f5f3ff 100%);
    padding: 4rem 0 3rem; text-align: center; position: relative; overflow: hidden;
}
.wholesale-hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-shape { position: absolute; border-radius: 50%; opacity: 0.05; }
.hero-shape-1 { width: 500px; height: 500px; background: var(--red); top: -150px; right: -10%; animation: floatShape 8s ease-in-out infinite; }
.hero-shape-2 { width: 350px; height: 350px; background: var(--blue); bottom: -80px; left: -5%; animation: floatShape 6s ease-in-out infinite reverse; }
@keyframes floatShape { 0%,100%{transform:translate(0,0)}50%{transform:translate(20px,-20px)} }
.hero-dots { position: absolute; inset: 0; opacity: 0.03; background-image: radial-gradient(circle, #000 1px, transparent 1px); background-size: 25px 25px; }
.wholesale-hero-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1.25rem; background: var(--white); border-radius: 9999px; font-size: 0.8125rem; font-weight: 600; color: var(--red); margin-bottom: 1.25rem; box-shadow: var(--shadow-sm); }
.wholesale-hero-title { font-size: 2.25rem; font-weight: 800; color: var(--black); margin-bottom: 1rem; letter-spacing: -0.02em; }
@media(min-width:768px){.wholesale-hero-title{font-size:3rem}}
.text-gradient { background: linear-gradient(135deg, var(--red) 0%, var(--blue) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.wholesale-hero-subtitle { font-size: 1rem; color: var(--gray-500); margin-bottom: 2rem; max-width: 550px; margin-left: auto; margin-right: auto; line-height: 1.7; }
@media(min-width:768px){.wholesale-hero-subtitle{font-size:1.125rem}}
.hero-actions { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.pulse-btn { animation: btnPulse 2s infinite; }
@keyframes btnPulse { 0%,100%{box-shadow:0 0 0 0 rgba(239,72,80,.4)}50%{box-shadow:0 0 0 14px rgba(239,72,80,0)} }

/* Hero Stats Mini */
.hero-stats-mini { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }
.hero-mini-stat { text-align: center; padding: 0.75rem 1.25rem; background: var(--white); border-radius: 12px; box-shadow: var(--shadow-sm); min-width: 90px; }
.mini-stat-value { display: block; font-size: 1.25rem; font-weight: 800; color: var(--red); }
.mini-stat-label { font-size: 0.6875rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.04em; }

/* ===== SECTION SHARED ===== */
.section-tag { display: inline-block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--red); margin-bottom: 0.75rem; padding: 0.25rem 0.75rem; background: var(--red-light); border-radius: 9999px; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-title { font-size: 1.75rem; font-weight: 800; color: var(--black); margin-bottom: 0.75rem; }
@media(min-width:768px){.section-title{font-size:2.5rem}}
.text-highlight { color: var(--red); }
.section-subtitle { font-size: 1rem; color: var(--gray-500); max-width: 500px; margin: 0 auto; }

/* ===== BENEFITS ===== */
.why-wholesale-section { padding: 5rem 0; background: var(--white); }
@media(min-width:768px){.why-wholesale-section{padding:6rem 0}}
.benefits-grid { display: grid; gap: 1.25rem; }
@media(min-width:480px){.benefits-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.benefits-grid{grid-template-columns:repeat(3,1fr)}}
.benefit-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: 20px; padding: 1.75rem; transition: all 0.3s ease; }
.benefit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: transparent; }
.benefit-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.benefit-icon-red { background: var(--red-light); color: var(--red); }
.benefit-icon-blue { background: var(--blue-light); color: var(--blue); }
.benefit-icon-green { background: var(--green-light); color: var(--green); }
.benefit-icon-purple { background: #f5f3ff; color: var(--purple); }
.benefit-icon-orange { background: #fff7ed; color: var(--orange); }
.benefit-icon-teal { background: #f0fdfa; color: var(--teal); }
.benefit-card h3 { font-size: 1.0625rem; font-weight: 700; color: var(--black); margin-bottom: 0.5rem; }
.benefit-card p { font-size: 0.875rem; color: var(--gray-500); line-height: 1.6; }

/* ===== PRICING TIERS ===== */
.pricing-tiers-section { padding: 5rem 0; background: var(--gray-50); }
@media(min-width:768px){.pricing-tiers-section{padding:6rem 0}}
.tiers-grid { display: grid; gap: 1.25rem; align-items: start; }
@media(min-width:768px){.tiers-grid{grid-template-columns:repeat(3,1fr)}}
.tier-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: 24px; padding: 2rem 1.5rem; text-align: center; transition: all 0.3s; position: relative; }
.tier-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.tier-popular { border: 2px solid var(--red); box-shadow: var(--shadow-lg); transform: scale(1.03); }
.tier-popular:hover { transform: scale(1.03) translateY(-6px); }
.tier-popular-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); padding: 0.375rem 1.25rem; background: var(--red-gradient); color: var(--white); border-radius: 9999px; font-size: 0.75rem; font-weight: 700; white-space: nowrap; }
.tier-header { margin-bottom: 1.25rem; }
.tier-icon { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 0.75rem; }
.tier-silver { background: #f5f5f5; color: #a3a3a3; }
.tier-gold { background: #fefce8; color: #f59e0b; }
.tier-platinum { background: #f5f3ff; color: var(--purple); }
.tier-card h3 { font-size: 1.125rem; font-weight: 700; color: var(--black); }
.tier-range { display: block; font-size: 0.9375rem; font-weight: 600; color: var(--gray-500); margin-bottom: 0.5rem; }
.tier-discount { display: block; font-size: 1.75rem; font-weight: 800; color: var(--red); margin-bottom: 1.25rem; }
.tier-features { list-style: none; display: flex; flex-direction: column; gap: 0.625rem; text-align: left; }
.tier-features li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8125rem; color: var(--gray-600); }
.tier-features svg { color: var(--green); flex-shrink: 0; }

/* ===== PROCESS ===== */
.wholesale-process-section { padding: 5rem 0; background: var(--white); }
@media(min-width:768px){.wholesale-process-section{padding:6rem 0}}
.process-grid { display: grid; gap: 1.25rem; }
@media(min-width:768px){.process-grid{grid-template-columns:repeat(3,1fr)}}
.process-card { text-align: center; padding: 2rem 1.5rem; position: relative; }
.process-number { font-size: 3rem; font-weight: 800; color: var(--red); opacity: 0.1; position: absolute; top: 0; left: 50%; transform: translateX(-50%); }
.process-icon { width: 64px; height: 64px; border-radius: 16px; background: var(--red-light); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; color: var(--red); position: relative; z-index: 1; }
.process-card h3 { font-size: 1.0625rem; font-weight: 700; color: var(--black); margin-bottom: 0.5rem; }
.process-card p { font-size: 0.875rem; color: var(--gray-500); line-height: 1.6; }

/* ===== ENQUIRY FORM ===== */
.enquiry-form-section { padding: 4rem 0 5rem; background: var(--gray-50); }
.enquiry-form-wrapper { max-width: 700px; margin: 0 auto; background: var(--white); border: 1px solid var(--gray-200); border-radius: 24px; padding: 2.5rem; box-shadow: var(--shadow-md); }
@media(max-width:480px){.enquiry-form-wrapper{padding:1.5rem}}
.form-header { margin-bottom: 2rem; }
.form-header h2 { font-size: 1.5rem; font-weight: 700; color: var(--black); margin-bottom: 0.375rem; }
.form-header p { font-size: 0.875rem; color: var(--gray-500); }

.wholesale-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media(max-width:480px){.form-row{grid-template-columns:1fr}}
.form-group { display: flex; flex-direction: column; gap: 0.375rem; }
.form-label { font-size: 0.8125rem; font-weight: 600; color: var(--gray-600); }
.form-input { padding: 0.625rem 0.875rem; border: 1.5px solid var(--gray-200); border-radius: 10px; font-size: 0.875rem; font-family: inherit; outline: none; transition: all 0.2s; }
.form-input:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(239,72,80,0.06); }
.form-textarea { resize: vertical; min-height: 80px; }

.checkbox-group { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.checkbox-option { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8125rem; color: var(--gray-600); cursor: pointer; }
.checkbox-option input[type="checkbox"] { display: none; }
.checkmark { width: 18px; height: 18px; border: 1.5px solid var(--gray-300); border-radius: 4px; display: inline-flex; align-items: center; justify-content: center; transition: all 0.2s; flex-shrink: 0; }
.checkbox-option input:checked ~ .checkmark { background: var(--red); border-color: var(--red); }
.checkbox-option input:checked ~ .checkmark::after { content: '✓'; color: var(--white); font-size: 0.625rem; font-weight: 700; }

.spinner { animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.form-success { text-align: center; padding: 2rem 1rem; }
.success-icon { width: 80px; height: 80px; border-radius: 50%; background: var(--green-light); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; color: var(--green); }
.form-success h2 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
.form-success p { color: var(--gray-500); font-size: 0.875rem; margin-bottom: 1.25rem; }
.form-success strong { color: var(--red); }

/* ===== CONTACT CARDS ===== */
.wholesale-contact-section { padding: 0 0 4rem; background: var(--gray-50); }
.contact-cards-grid { display: grid; gap: 1rem; }
@media(min-width:640px){.contact-cards-grid{grid-template-columns:repeat(3,1fr)}}
.contact-card-mini { background: var(--white); border: 1px solid var(--gray-200); border-radius: 16px; padding: 1.25rem; text-align: center; text-decoration: none; transition: all 0.3s; }
.contact-card-mini:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--red); }
.contact-mini-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--red-light); display: flex; align-items: center; justify-content: center; margin: 0 auto 0.75rem; color: var(--red); }
.contact-mini-label { display: block; font-size: 0.75rem; color: var(--gray-400); margin-bottom: 0.25rem; }
.contact-mini-value { font-size: 1rem; font-weight: 700; color: var(--black); }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.5rem 1.25rem; border-radius: 9999px; font-size: 0.875rem; font-weight: 600; cursor: pointer; border: 2px solid transparent; transition: all 0.3s; text-decoration: none; font-family: inherit; white-space: nowrap; }
.btn-lg { padding: 0.875rem 1.5rem; font-size: 1rem; }
.btn-full { width: 100%; }
.btn-primary { background: var(--dark-gradient); color: var(--white); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.2); }
.btn-outline { background: var(--white); color: var(--black); border-color: var(--gray-200); }
.btn-outline:hover { border-color: var(--red); color: var(--red); transform: translateY(-2px); }

/* ===== TOAST ===== */
.wholesale-toast { position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%) translateY(100%); background: var(--dark-gradient); color: var(--white); padding: 0.75rem 1.5rem; border-radius: 9999px; font-size: 0.875rem; display: flex; align-items: center; gap: 0.625rem; z-index: 9999; opacity: 0; transition: all 0.3s; box-shadow: var(--shadow-xl); white-space: nowrap; }
.wholesale-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.wholesale-toast-success { border: 1px solid var(--green); }
.wholesale-toast-error { border: 1px solid #dc2626; }

@media(max-width:768px){.wholesale-hero-title{font-size:1.75rem}.tier-popular{transform:scale(1)}.tier-popular:hover{transform:scale(1) translateY(-6px)}}