/*
Theme Name: Metahill Medical Supplies
Theme URI: https://metahillmedsupplies.com
Author: Metahill Medical Supplies
Author URI: https://metahillmedsupplies.com
Description: Professional B2B medical supplies theme for Metahill Medical Supplies
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: metahill
*/

/* ===== CSS VARIABLES ===== */
:root {
    --primary: #1B6B73;       /* Medical Teal */
    --accent: #2EC4C4;        /* Aqua */
    --background: #F5F7F6;    /* Off White */
    --text: #2C2C2C;          /* Charcoal */
    --light-accent: #D6EEEE;  /* Pale Teal */
    --white: #ffffff;
    --dark-teal: #0F4A50;
    --border: #DCE8E8;
    --shadow: 0 4px 24px rgba(27,107,115,0.10);
    --shadow-lg: 0 8px 40px rgba(27,107,115,0.15);
    --radius: 12px;
    --font-head: 'Sora', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --transition: 0.3s cubic-bezier(.4,0,.2,1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--background);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent); }
ul { list-style: none; }
h1, h2, h3, h4, h5 { font-family: var(--font-head); line-height: 1.2; color: var(--text); }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--dark-teal);
    margin-bottom: 16px;
}
.section-subtitle {
    font-size: 1.1rem;
    color: #5a7a7c;
    max-width: 640px;
    margin-bottom: 56px;
}
.center { text-align: center; }
.center .section-subtitle { margin-left: auto; margin-right: auto; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-decoration: none;
    letter-spacing: 0.02em;
}
.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(27,107,115,0.30);
}
.btn-primary:hover {
    background: var(--dark-teal);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(27,107,115,0.40);
}
.btn-accent {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(46,196,196,0.30);
}
.btn-accent:hover {
    background: #25a8a8;
    color: var(--white);
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}
.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37,211,102,0.30);
}
.btn-whatsapp:hover {
    background: #1ebe5d;
    color: var(--white);
    transform: translateY(-2px);
}
.btn-lg {
    padding: 15px 32px;
    font-size: 0.9rem;
}
.btn-group { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===== HEADER / NAV ===== */
#site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow var(--transition);
}
#site-header.scrolled { box-shadow: var(--shadow); }
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}
.site-logo img { height: 60px; width: auto; }
.site-logo span {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}
.nav-menu { display: flex; align-items: center; gap: 36px; }
.nav-menu a:not(.nav-cta) {
    font-family: var(--font-head);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text);
    position: relative;
    padding-bottom: 4px;
}
.nav-menu a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--accent);
    transition: var(--transition);
}
.nav-menu a:not(.nav-cta):hover::after, .nav-menu a:not(.nav-cta).active::after { width: 100%; }
.nav-menu a:not(.nav-cta):hover { color: var(--primary); }
.nav-cta { margin-left: 8px; padding: 10px 30px; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); transition: var(--transition); border-radius: 2px; }

/* ===== HERO ===== */
.hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, #0d3d42 0%, #1B6B73 50%, #2EC4C4 100%);
    position: relative;
    overflow: hidden;
    min-height: 92vh;
    display: flex;
    align-items: center;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('assets/images/warehouse.jpeg') center/cover no-repeat;
    opacity: 0.10;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-content { color: var(--white); }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(8px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--light-accent);
    margin-bottom: 28px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.12;
    margin-bottom: 24px;
}
.hero h1 span { color: var(--accent); }
.hero-desc {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.82);
    max-width: 520px;
    margin-bottom: 40px;
    line-height: 1.75;
}
.hero-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0,0,0,0.35);
}
.hero-image img { width: 100%; height: 480px; object-fit: cover; border-radius: 24px; }
.hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(13,61,66,0.5));
    border-radius: 24px;
}

/* ===== TRUST STRIP ===== */
.trust-strip {
    background: var(--white);
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 16px rgba(27,107,115,0.06);
}
.trust-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-teal);
}
.trust-item svg { color: var(--accent); flex-shrink: 0; }

/* ===== PRODUCTS ===== */
.products { background: var(--white); }
.product-card {
    background: var(--background);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}
.product-img {
    height: 260px;
    overflow: hidden;
    background: #edf5f5;
}
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-img img { transform: scale(1.06); }
.product-body { padding: 28px; }
.product-tag {
    display: inline-block;
    background: var(--light-accent);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 12px;
}
.product-body h3 { font-size: 1.3rem; margin-bottom: 10px; color: var(--dark-teal); }
.product-body p { font-size: 0.93rem; color: #5a7a7c; margin-bottom: 20px; line-height: 1.65; }
.product-specs {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.spec-badge {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
}

/* ===== WHY CHOOSE US ===== */
.why-us { background: linear-gradient(135deg, #0F4A50 0%, #1B6B73 100%); }
.why-us .section-title { color: var(--white); }
.why-us .section-subtitle { color: rgba(255,255,255,0.75); }
.feature-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: var(--transition);
}
.feature-card:hover {
    background: rgba(255,255,255,0.14);
    transform: translateY(-4px);
}
.feature-icon {
    width: 56px; height: 56px;
    background: var(--accent);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}
.feature-card h3 { color: var(--white); font-size: 1.15rem; margin-bottom: 10px; }
.feature-card p { color: rgba(255,255,255,0.72); font-size: 0.92rem; line-height: 1.65; }

/* ===== HOW IT WORKS ===== */
.how-it-works { background: var(--background); }
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}
.steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: calc(12.5% + 40px);
    right: calc(12.5% + 40px);
    height: 2px;
    background: var(--light-accent);
    z-index: 0;
}
.step {
    text-align: center;
    position: relative;
    z-index: 1;
}
.step-num {
    width: 80px; height: 80px;
    background: var(--white);
    border: 3px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin: 0 auto 20px;
    box-shadow: 0 4px 20px rgba(46,196,196,0.20);
}
.step h3 { font-size: 1rem; font-weight: 700; color: var(--dark-teal); margin-bottom: 8px; }
.step p { font-size: 0.88rem; color: #5a7a7c; }

/* ===== ABOUT SECTION ===== */
.about-section { background: var(--white); }
.about-img {
    border-radius: 20px;
    overflow: hidden;
}
.about-img img { width: 100%; height: auto; object-fit: cover; }
.about-content { padding-left: 20px; }
.about-content .section-title { margin-bottom: 20px; }
.about-content p { color: #4a6a6c; margin-bottom: 20px; line-height: 1.8; }
.about-list { margin: 28px 0; }
.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
    color: var(--text);
}
.about-list li:last-child { border-bottom: none; }
.check-icon { color: var(--accent); flex-shrink: 0; margin-top: 2px; font-size: 1.1rem; }

/* ===== STATS ===== */
.stats-section { background: var(--light-accent); padding: 70px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat-num {
    font-family: var(--font-head);
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}
.stat-label { font-size: 0.9rem; color: #4a6a6c; font-weight: 500; }

/* ===== CTA BANNER ===== */
.cta-banner {
    background: linear-gradient(135deg, var(--accent), var(--primary));
    padding: 80px 0;
    text-align: center;
}
.cta-banner h2 { font-size: 2.4rem; color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 36px; }
.cta-banner .btn-group { justify-content: center; }

/* ===== CONTACT ===== */
.contact-section { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; }
.contact-info h2 { font-size: 2rem; margin-bottom: 20px; color: var(--dark-teal); }
.contact-info p { color: #5a7a7c; margin-bottom: 36px; line-height: 1.75; }
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--background);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    margin-bottom: 16px;
    transition: var(--transition);
}
.contact-item:hover { border-color: var(--accent); box-shadow: var(--shadow); }
.contact-icon {
    width: 44px; height: 44px;
    background: var(--light-accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
    font-size: 1.1rem;
}
.contact-item h4 { font-size: 0.85rem; color: #8a9a9c; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.contact-item a, .contact-item span { font-weight: 600; color: var(--dark-teal); font-size: 0.97rem; }

/* ===== CONTACT FORM ===== */
.contact-form { background: var(--background); border: 1px solid var(--border); border-radius: 20px; padding: 44px; }
.contact-form h3 { font-size: 1.5rem; color: var(--dark-teal); margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--dark-teal); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.05em; }
input, select, textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.97rem;
    color: var(--text);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}
input:focus, select:focus, textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(46,196,196,0.15);
}
textarea { resize: vertical; min-height: 130px; }
.form-submit { margin-top: 8px; }

/* ===== FOOTER ===== */
#site-footer {
    background: #0d2f34;
    color: rgba(255,255,255,0.75);
    padding: 70px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand img { height: 90px; margin-bottom: 20px; opacity: 1; }
.footer-brand p { font-size: 0.9rem; line-height: 1.75; color: rgba(255,255,255,0.6); max-width: 300px; }
.footer-col h4 {
    font-family: var(--font-head);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { font-size: 0.9rem; color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--accent); padding-left: 4px; }
.footer-contact-item { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; margin-bottom: 12px; color: rgba(255,255,255,0.65); }
.footer-contact-item svg { color: var(--accent); flex-shrink: 0; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

/* ===== PAGE INNER HERO ===== */
.page-hero {
    background: linear-gradient(135deg, #0F4A50, #1B6B73);
    padding: 140px 0 80px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(46,196,196,0.2), transparent 60%);
}
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); color: var(--white); position: relative; z-index:1; }
.page-hero p { color: rgba(255,255,255,0.78); margin-top: 16px; font-size: 1.1rem; position: relative; z-index:1; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; margin-top: 20px; font-size: 0.88rem; position:relative; z-index:1; }
.breadcrumb a { color: var(--light-accent); }
.breadcrumb span { color: rgba(255,255,255,0.5); }

/* ===== SERVICES PAGE ===== */
.service-block {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 400px;
    margin-bottom: 40px;
    box-shadow: var(--shadow);
}
.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }
.service-img img { width: 100%; height: 100%; object-fit: contain; object-position: center; }
.service-body { padding: 52px 48px; display: flex; flex-direction: column; justify-content: center; }
.service-body h2 { font-size: 1.8rem; color: var(--dark-teal); margin-bottom: 16px; }
.service-body p { color: #5a7a7c; line-height: 1.8; margin-bottom: 20px; }
.service-features { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0 28px; }
.service-feature-tag {
    background: var(--light-accent);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
}

/* ===== ABOUT PAGE ===== */
.mission-values { background: var(--background); }
.value-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--accent); }
.value-icon {
    width: 64px; height: 64px;
    background: var(--light-accent);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.6rem;
}
.value-card h3 { font-size: 1.1rem; color: var(--dark-teal); margin-bottom: 10px; }
.value-card p { font-size: 0.9rem; color: #5a7a7c; }

/* ===== BULK ORDER PAGE ===== */
.bulk-hero { background: linear-gradient(135deg, #0F4A50, #1B6B73); padding: 80px 0; color: var(--white); }
.bulk-hero h1 { color: var(--white); font-size: 2.6rem; margin-bottom: 16px; }
.bulk-hero p { color: rgba(255,255,255,0.8); max-width: 600px; font-size: 1.05rem; }
.bulk-form-section { background: var(--background); }
.bulk-form-card { background: var(--white); border-radius: 20px; border: 1px solid var(--border); padding: 52px; box-shadow: var(--shadow); }
.bulk-form-card h2 { font-size: 1.8rem; color: var(--dark-teal); margin-bottom: 8px; }
.bulk-form-card > p { color: #5a7a7c; margin-bottom: 36px; }
.product-qty-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 28px; }
.qty-item { background: var(--background); border: 1.5px solid var(--border); border-radius: 12px; padding: 20px; }
.qty-item label { font-size: 0.82rem; color: #5a7a7c; margin-bottom: 6px; }
.qty-item .product-name { font-weight: 700; color: var(--dark-teal); font-size: 0.93rem; display: block; margin-bottom: 10px; }

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37,211,102,0.45);
    z-index: 999;
    transition: var(--transition);
    text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,0.55); }
.whatsapp-float svg { width: 28px; height: 28px; fill: white; }
.footer-contact-item a{
	color: #fff;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.6s ease forwards; }
.delay-1 { animation-delay: 0.1s; opacity: 0; }
.delay-2 { animation-delay: 0.2s; opacity: 0; }
.delay-3 { animation-delay: 0.3s; opacity: 0; }
.delay-4 { animation-delay: 0.4s; opacity: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .steps::before { display: none; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-image { display: none; }
    .hero { min-height: auto; padding: 130px 0 80px; }
}
@media (max-width: 768px) {
    .section { padding: 60px 0; }
    .hamburger { display: flex; }
    .nav-menu {
        display: none;
        position: fixed;
        top: 76px; left: 0; right: 0;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 20px 0 30px;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow);
    }
    .nav-menu.open { display: flex; }
    .nav-menu a { padding: 14px 28px; width: 100%; border-bottom: 1px solid var(--border); }
    .nav-menu a::after { display: none; }
    .nav-cta { margin: 16px 20px 0; }
    .grid-2 { grid-template-columns: 1fr; }
    .grid-3 { grid-template-columns: 1fr; }
    .feature-cards { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .service-block { grid-template-columns: 1fr; }
    .service-block.reverse { direction: ltr; }
    .product-qty-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 28px; }
    .bulk-form-card { padding: 28px; }
    .trust-items { gap: 24px; }
}
@media (max-width: 480px) {
    .steps { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
}
