/* ========================================
   GLOBAL RESET & BASE STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
}

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
    background: white;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 2rem;
}

.logo-box {
    display: inline-block;
    transition: all 0.3s ease;
}

.logo-box:hover {
    opacity: 0.8;
}

.logo-box-white {
    /* No border styling needed */
}

.logo-text {
    font-size: 1.625rem;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.logo-box-white .logo-text {
    color: white;
}

.logo-img,
.logo-img-white {
    height: 64px;
    width: auto;
    display: block;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-email {
    color: #666;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-email:hover {
    color: #00B050;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-weight: 600;
    color: #1a1a1a;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.9375rem;
}

.nav-link:hover,
.nav-link.active {
    color: #00B050;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -1.75rem;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00B050, #1B4D3E);
}




/* ========================================
   HERO SECTION - PREMIUM
   ======================================== */
.hero {
    background: url('images/hero-bg.png') center/cover no-repeat;
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.45) 100%);
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.badge-green {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.625rem 1.25rem;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-title-black {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.01em;
    margin-bottom: 0.5rem;
}

.hero-title-green {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: #00B050;
    text-shadow: 0 2px 20px rgba(0, 176, 80, 0.5);
    letter-spacing: -0.01em;
}

.hero-description {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    max-width: 750px;
}

.btn-primary {
    background: linear-gradient(135deg, #00B050 0%, #1B4D3E 100%);
    color: white;
    padding: 1.125rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.0625rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 24px rgba(0, 176, 80, 0.35);
    letter-spacing: 0.02em;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1B4D3E 0%, #00B050 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 176, 80, 0.45);
}

.hero-image {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* ========================================
   TRUST BAR - CERTIFICATIONS
   ======================================== */
.trust-bar {
    background: #F8F9FA;
    padding: 3rem 0;
    border-bottom: 1px solid #e5e5e5;
}

.trust-bar-title {
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: #666;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.trust-logo {
    width: 120px;
    height: 80px;
    background: white;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    filter: grayscale(100%);
    opacity: 0.7;
}

.trust-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.trust-logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1B4D3E;
}

/* ========================================
   SECTION STYLES
   ======================================== */
.section-white {
    background: white;
    padding: 6rem 0;
}

.section-gray {
    background: #F8F9FA;
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    width: 100%;
    letter-spacing: -0.02em;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #00B050, #1B4D3E);
    border-radius: 10px;
}

/* ========================================
   VIDEO PLACEHOLDER
   ======================================== */
.video-placeholder {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 1.25rem;
    aspect-ratio: 16/9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 3rem;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.video-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0, 176, 80, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.video-placeholder:hover::before {
    opacity: 1;
}

.video-placeholder:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 50px rgba(0, 176, 80, 0.25);
}

.video-play-button {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #00B050 0%, #1B4D3E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 24px rgba(0, 176, 80, 0.4);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.video-placeholder:hover .video-play-button {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(0, 176, 80, 0.5);
}

.video-text {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

/* ========================================
   KEY STATS SECTION - DARK GREEN
   ======================================== */
.stats-section {
    background: linear-gradient(135deg, #1B4D3E 0%, #0F3A2E 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.3;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.05em;
    font-weight: 500;
    line-height: 1.5;
}

/* ========================================
   CERTIFICATIONS SECTION
   ======================================== */
.cert-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.cert-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.cert-description {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.cert-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.cert-list-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-size: 1.0625rem;
}

.check-icon {
    width: 28px;
    height: 28px;
    stroke: #00B050;
    stroke-width: 3;
    flex-shrink: 0;
}

.cert-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.cert-badge {
    display: flex;
    justify-content: center;
}

.cert-badge-circle {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    border: 5px solid #1B4D3E;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: white;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.cert-badge-circle:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 176, 80, 0.2);
}

.cert-badge-fda {
    border-color: #00B050;
    background: linear-gradient(135deg, #00B050, #1B4D3E);
}

.cert-badge-fda .cert-badge-text,
.cert-badge-fda .cert-badge-subtext {
    color: white;
}

.cert-badge-text {
    font-size: 2.25rem;
    font-weight: 900;
    color: #1B4D3E;
}

.cert-badge-subtext {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #1B4D3E;
    letter-spacing: 0.08em;
}

/* ========================================
   PRODUCTS PAGE
   ======================================== */
.products-hero {
    background-image: linear-gradient(to right, rgba(27, 77, 62, 1) 0%, rgba(27, 77, 62, 0.8) 40%, rgba(27, 77, 62, 0) 100%), url('images/hero-products-factory.png');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 320px;
    height: 320px;
    display: flex;
    align-items: center;
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.products-hero-content {
    max-width: 550px;
    text-align: left;
    padding-left: 0;
}

.products-hero-content .badge-green {
    background: rgba(0, 176, 80, 0.2);
    color: #00FF88;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.products-hero-title {
    margin: 0 0 16px 0;
    line-height: 1.2;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-size: 42px;
    font-weight: 700;
}

.products-hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.products-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 4rem;
    padding: 4rem 0;
}

/* Sidebar */
.products-sidebar {
    position: sticky;
    top: 7rem;
    height: fit-content;
}

.sidebar-title {
    font-size: 1.375rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

.category-list {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.category-radio {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    border: 2px solid transparent;
}

.category-radio:hover {
    background: #F8F9FA;
    border-color: #00B050;
    transform: translateX(5px);
}

.category-radio input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.product-card {
    background: white;
    border: 3px dashed #00B050;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 176, 80, 0.2);
    border-color: #1B4D3E;
}

.product-image {
    position: relative;
    aspect-ratio: 1;
    background: #F8F9FA;
    overflow: hidden;
}

.product-image-dark {
    background: #2a2a2a;
}

.product-watermark {
    display: none; /* Hidden as per user request */
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.sticker-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    font-size: 1.375rem;
    font-weight: 700;
}

.product-info {
    padding: 1.75rem;
}

.product-category {
    display: block;
    font-size: 0.75rem;
    color: #00B050;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.product-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.25rem;
    line-height: 1.4;
}

.product-link {
    color: #00B050;
    font-weight: 700;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
}

.product-card:hover .product-link {
    color: #1B4D3E;
}

/* ========================================
   PRODUCT DETAIL PAGE
   ======================================== */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: #999;
    font-size: 0.9375rem;
    margin-bottom: 3rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.back-link:hover {
    color: #00B050;
    transform: translateX(-5px);
}

.back-link svg {
    width: 22px;
    height: 22px;
    stroke-width: 2.5;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.product-detail-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.product-detail-image {
    position: relative;
    background: #F8F9FA;
    border-radius: 1rem;
    padding: 1.5rem;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.product-detail-watermark {
    display: none; /* Hidden as per user request */
}

.product-detail-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.product-thumbnails {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
}

.thumbnail {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border: 3px solid transparent;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #F8F9FA;
}

.thumbnail:hover {
    border-color: #00B050;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 176, 80, 0.2);
}

.thumbnail.active {
    border-color: #00B050;
    box-shadow: 0 0 0 2px #00B050;
}

.product-detail-info {
    padding-top: 1rem;
}

.stock-badge {
    display: inline-block;
    background: rgba(0, 176, 80, 0.1);
    color: #00B050;
    padding: 0.625rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 2rem;
    border: 2px solid rgba(0, 176, 80, 0.2);
}

.product-detail-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 2.5rem;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.spec-table {
    border: 2px solid #e5e5e5;
    border-radius: 0.75rem;
    overflow: hidden;
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.spec-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    border-bottom: 2px solid #e5e5e5;
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-label {
    background: #F8F9FA;
    padding: 1.25rem 1.75rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: #666;
    letter-spacing: 0.08em;
}

.spec-value {
    padding: 1.25rem 1.75rem;
    font-size: 0.9375rem;
    color: #1a1a1a;
    font-weight: 500;
}

.btn-request-pricing {
    display: block;
    text-align: center;
    text-decoration: none;
    width: 100%;
    background: linear-gradient(135deg, #00B050 0%, #1B4D3E 100%);
    color: white;
    padding: 1.375rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-bottom: 3rem;
    box-shadow: 0 8px 24px rgba(0, 176, 80, 0.3);
}

.btn-request-pricing:hover {
    background: linear-gradient(135deg, #1B4D3E 0%, #00B050 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 176, 80, 0.45);
}

.product-additional-info {
    border-top: 2px solid #e5e5e5;
    padding-top: 2.5rem;
}

.product-additional-info h3 {
    font-size: 1.375rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1.25rem;
    margin-top: 2.5rem;
}

.product-additional-info h3:first-child {
    margin-top: 0;
}

.product-additional-info ul {
    list-style: none;
    padding: 0;
}

.product-additional-info li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
}

.product-additional-info li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00B050;
    font-weight: 900;
    font-size: 1.125rem;
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-hero {
    background-image: linear-gradient(to right, rgba(27, 77, 62, 1) 0%, rgba(27, 77, 62, 0.8) 40%, rgba(27, 77, 62, 0) 100%), url('images/hero-contact-office.png');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 320px;
    height: 320px;
    display: flex;
    align-items: center;
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.contact-hero-content {
    max-width: 550px;
    text-align: left;
    padding-left: 0;
}

.contact-hero-content .badge-green {
    background: rgba(0, 176, 80, 0.2);
    color: #00FF88;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.contact-hero-title {
    margin: 0 0 16px 0;
    line-height: 1.2;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-size: 42px;
    font-weight: 700;
}

.contact-hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 5rem;
    padding: 5rem 0;
}

.contact-form-wrapper {
    background: white;
}

.contact-form-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 2.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
}

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

.form-group label {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #1a1a1a;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem 1.25rem;
    border: 2px solid #e5e5e5;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00B050;
    box-shadow: 0 0 0 3px rgba(0, 176, 80, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    margin-top: 1.5rem;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.contact-info-card {
    display: flex;
    gap: 1.75rem;
    padding: 2rem;
    background: white;
    border: 2px solid #e5e5e5;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    border-color: #00B050;
    box-shadow: 0 8px 24px rgba(0, 176, 80, 0.15);
    transform: translateY(-3px);
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 176, 80, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 28px;
    height: 28px;
    stroke: #00B050;
    stroke-width: 2.5;
    fill: none;
}

.contact-info-content h3 {
    font-size: 1.125rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 0.625rem;
}

.contact-info-content p,
.contact-info-content a {
    font-size: 0.9375rem;
    color: #666;
    line-height: 1.7;
}

.contact-info-content a {
    transition: color 0.3s ease;
    font-weight: 500;
}

.contact-info-content a:hover {
    color: #00B050;
}

/* ========================================
   MEGA FOOTER - PROFESSIONAL
   ======================================== */
.footer {
    background: linear-gradient(135deg, #1B4D3E 0%, #0F3A2E 100%);
    color: white;
    padding: 5rem 0 2rem;
}

.footer-mega {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h3 {
    font-size: 1.125rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
    letter-spacing: 0.02em;
}

.footer-mission {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-top: 1.5rem;
}

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.footer-links-list a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-links-list a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-brand-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.875rem;
}

.brand-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.brand-dot-green {
    background: #7FFF00;
}

.brand-dot-blue {
    background: #4A90E2;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.footer-contact-item svg {
    width: 20px;
    height: 20px;
    stroke: #7FFF00;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icon:hover {
    background: #00B050;
    border-color: #00B050;
    transform: translateY(-3px);
}

.social-icon svg {
    width: 20px;
    height: 20px;
    stroke: white;
    fill: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
}

.footer-copyright {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.05em;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
    .hero-grid,
    .cert-grid,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 0;
    }

    .products-sidebar {
        position: static;
        margin-bottom: 2rem;
    }

    .sidebar-title {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .category-list {
        gap: 0.5rem;
    }

    .category-radio {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .footer-mega {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title-black,
    .hero-title-green {
        font-size: 2.75rem;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 2rem;
    }

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

    .products-layout {
        gap: 1.5rem;
        padding: 1.5rem 0;
    }

    .products-sidebar {
        margin-bottom: 1.5rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .product-card {
        border-width: 2px;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-mega {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .nav-email {
        display: none;
    }

    .trust-logos {
        gap: 2rem;
    }
}

/* Hero Subtitle for SEO H2 */
.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.7;
    margin: 1.5rem 0 2rem 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 1.1rem;
    }
}

/* ========================================
   BRAND LOGOS (Footer)
   ======================================== */
.brand-logos {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: flex-start;
}

.brand-logos a {
    display: block;
    transition: all 0.3s ease;
}

.brand-logos a:hover {
    opacity: 0.8;
    transform: translateX(5px);
}

.brand-logo {
    height: 100px;
    width: auto;
    display: block;
    /* 将黑色 logo 转换为白色 */
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

/* Responsive: Tablet */
@media (max-width: 1024px) {
    .brand-logo {
        height: 80px;  /* 平板端缩小到 80px */
    }
    
    .brand-logos {
        gap: 8px;  /* 稍微增加间距 */
    }
}

/* Responsive: Mobile */
@media (max-width: 768px) {
    .brand-logo {
        height: 50px;  /* 手机端缩小到 50px */
    }
    
    .brand-logos {
        gap: 10px;  /* 增加间距便于点击 */
    }
}

/* Responsive: Small Mobile */
@media (max-width: 480px) {
    .brand-logo {
        height: 40px;  /* 小屏幕缩小到 40px */
    }
}

/* ========================================
   BRAND MICRO-CARDS (Footer) - Legacy
   ======================================== */
.brand-cards {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.brand-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
    font-weight: 500;
}

.brand-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.brand-dot-ecowise {
    background: #f08619;
    box-shadow: 0 0 8px rgba(240, 134, 25, 0.3);
}

.brand-dot-gentlehold {
    background: #8c8279;
    box-shadow: 0 0 8px rgba(140, 130, 121, 0.3);
}

.brand-name {
    transition: color 0.3s ease;
}

/* EcoWise Hover State */
.brand-card-ecowise:hover {
    border-color: #f08619;
    background: rgba(240, 134, 25, 0.08);
    transform: translateX(5px);
}

.brand-card-ecowise:hover .brand-name {
    color: #f08619;
}

.brand-card-ecowise:hover .brand-dot-ecowise {
    box-shadow: 0 0 12px rgba(240, 134, 25, 0.6);
    transform: scale(1.2);
}

/* GentleHold Hover State */
.brand-card-gentlehold:hover {
    border-color: #8c8279;
    background: rgba(140, 130, 121, 0.08);
    transform: translateX(5px);
}

.brand-card-gentlehold:hover .brand-name {
    color: #8c8279;
}

.brand-card-gentlehold:hover .brand-dot-gentlehold {
    box-shadow: 0 0 12px rgba(140, 130, 121, 0.6);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .brand-card {
        font-size: 0.875rem;
        padding: 10px;
    }
}

/* ========================================
   LANGUAGE SWITCHER (In Main Navigation)
   ======================================== */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
    padding-left: 2rem;
}

.lang-link {
    color: #333;
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    transition: color 0.3s ease;
}

.lang-link:hover {
    color: #00B050;
}

.lang-link.active {
    color: #00B050;
}

.lang-divider {
    color: #ccc;
    font-weight: 300;
}

@media (max-width: 768px) {
    .language-switcher {
        padding-left: 1rem;
    }
    
    .lang-link {
        font-size: 0.875rem;
    }
}


/* ========================================
   VIDEO SHOWCASE SECTION
   ======================================== */
.video-showcase-section {
    background: linear-gradient(135deg, #1B4D3E 0%, #145239 100%);
    padding: 5rem 0;
    color: white;
}

.section-title-white {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.video-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
    cursor: pointer;
    background: #000;
    display: block;
    text-decoration: none;
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-wrapper:hover .video-thumbnail {
    transform: scale(1.05);
}

.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.video-wrapper:hover .play-button-overlay {
    transform: translate(-50%, -50%) scale(1.1);
}

.play-icon {
    width: 80px;
    height: 56px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-info {
    padding: 1.5rem;
}

.video-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.video-description {
    font-size: 0.9375rem;
    color: #666;
    line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-title-white {
        font-size: 1.75rem;
    }
    
    .play-icon {
        width: 60px;
        height: 42px;
    }
    
    .video-title {
        font-size: 1.125rem;
    }
}
/* ========================================
   MOBILE-FIRST RESPONSIVE DESIGN
   100% Adaptive for All Device Sizes
   ======================================== */

/* ========================================
   1. GLOBAL RESPONSIVE FOUNDATION
   ======================================== */

/* Ensure all images are responsive */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Fluid container */
.container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Touch-friendly minimum sizes */
button, 
a.button,
.btn {
    min-height: 44px;
    min-width: 44px;
}

/* ========================================
   2. HAMBURGER MENU (Mobile Navigation)
   ======================================== */

.mobile-menu-toggle {
    display: none; /* Hidden on desktop */
    flex-direction: column;
    justify-content: space-around;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1000;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ========================================
   3. DESKTOP (> 1024px) - Default Styles
   ======================================== */

/* Already defined in main styles.css */
/* This is the baseline - no media query needed */

/* ========================================
   4. TABLET (768px - 1024px)
   ======================================== */

@media (max-width: 1024px) {
    /* Container */
    .container {
        width: 92%;
    }
    
    /* Hero Section */
    .hero-section {
        padding: 3rem 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-image-container {
        order: -1; /* Image on top */
    }
    
    /* Product Grid */
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem;
    }
    
    /* Video Section */
    .video-grid {
        gap: 20px;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    /* Stats Section */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    /* Trust Bar */
    .certifications {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .cert-logo {
        width: 80px;
        height: 60px;
    }
    
    /* Section Padding */
    section {
        padding: 3rem 0;
    }
}

/* ========================================
   5. MOBILE (< 768px) - Critical Changes
   ======================================== */

@media (max-width: 768px) {
    /* ===== NAVIGATION ===== */
    .mobile-menu-toggle {
        display: flex; /* Show hamburger menu */
        margin-left: auto;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 999;
        padding: 80px 20px 20px;
        overflow-y: auto;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav a {
        display: block;
        padding: 15px 20px;
        font-size: 1.125rem;
        border-bottom: 1px solid #f0f0f0;
        min-height: 54px;
        line-height: 24px;
    }
    
    /* Language Switcher in Mobile Menu */
    .language-switcher {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 20px;
        margin-left: 0;
    }
    
    .lang-link {
        padding: 10px 0;
        min-height: 44px;
    }
    
    /* ===== HERO SECTION ===== */
    .hero-section {
        padding: 2rem 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.9375rem;
    }
    
    .hero-cta {
        min-height: 54px;
        font-size: 1.125rem;
        padding: 16px 32px;
    }
    
    /* ===== PRODUCT GRID ===== */
    .products-grid {
        grid-template-columns: 1fr !important; /* Single column */
        gap: 1.5rem;
    }
    
    .product-card {
        max-width: 100%;
    }
    
    .product-card img {
        height: 250px;
    }
    
    /* ===== VIDEO SECTION ===== */
    .video-grid {
        grid-template-columns: 1fr; /* Stack vertically */
        gap: 1.5rem;
    }
    
    .video-card {
        margin-bottom: 1.5rem;
    }
    
    .section-title-white {
        font-size: 1.75rem;
    }
    
    /* ===== STATS SECTION ===== */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.875rem;
    }
    
    /* ===== TRUST BAR ===== */
    .trust-bar {
        padding: 1.5rem 0;
    }
    
    .certifications {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .cert-logo {
        width: 70px;
        height: 50px;
    }
    
    /* ===== FOOTER ===== */
    .footer-content {
        grid-template-columns: 1fr; /* Single column */
        gap: 2rem;
        text-align: center;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-links {
        align-items: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .brand-card {
        margin: 0 auto;
    }
    
    /* ===== PRODUCT DETAIL PAGE ===== */
    .product-detail-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-thumbnails {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .spec-table {
        font-size: 0.875rem;
    }
    
    /* ===== CONTACT PAGE ===== */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        min-height: 48px;
        font-size: 16px; /* Prevent zoom on iOS */
    }
    
    /* ===== SIDEBAR (Products Page) ===== */
    .products-container {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        position: static;
        width: 100%;
        margin-bottom: 2rem;
    }
    
    /* ===== SECTION PADDING ===== */
    section {
        padding: 2rem 0;
    }
    
    .video-showcase-section {
        padding: 3rem 0;
    }
    
    /* ===== TYPOGRAPHY ===== */
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    /* ===== SPACING ===== */
    .container {
        width: 95%;
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    /* Touch-friendly spacing */
    .product-card,
    .video-card,
    .stat-card {
        margin-bottom: 1.5rem;
    }
}

/* ========================================
   6. EXTRA SMALL MOBILE (< 480px)
   ======================================== */

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .cert-logo {
        width: 60px;
        height: 45px;
    }
    
    .play-icon {
        width: 50px;
        height: 35px;
    }
}

/* ========================================
   7. LANDSCAPE MOBILE (Height < 500px)
   ======================================== */

@media (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        padding: 1.5rem 0;
    }
    
    .main-nav {
        padding: 60px 20px 20px;
    }
}

/* ========================================
   8. PRINT STYLES
   ======================================== */

@media print {
    .mobile-menu-toggle,
    .language-switcher,
    .hero-cta,
    .footer {
        display: none;
    }
    
    .container {
        width: 100%;
        max-width: none;
    }
}

/* ========================================
   RESPONSIVE NAVIGATION FIX
   ======================================== */

/* Desktop: Hide hamburger menu */
@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none !important;
    }
}

/* Mobile: Show hamburger and transform nav */
@media (max-width: 768px) {
    .nav-content {
        position: relative;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        order: 3; /* Place at the end */
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 999;
        padding: 80px 0 20px;
        overflow-y: auto;
        flex-direction: column;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        display: block;
        padding: 15px 20px;
        font-size: 1.125rem;
        border-bottom: 1px solid #f0f0f0;
        min-height: 54px;
        line-height: 24px;
    }
    
    /* Language switcher in mobile menu */
    .language-switcher {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 20px;
        margin-left: 0;
        border-top: 2px solid #00B050;
    }
    
    .lang-link {
        padding: 10px 0;
        min-height: 44px;
    }
}


/* ========================================
   RESPONSIVE NAVIGATION FIX
   ======================================== */

/* Desktop: Hide hamburger menu */
@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none !important;
    }
}

/* Mobile: Show hamburger and transform nav */
@media (max-width: 768px) {
    .nav-content {
        position: relative;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        order: 3; /* Place at the end */
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 999;
        padding: 80px 0 20px;
        overflow-y: auto;
        flex-direction: column;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        display: block;
        padding: 15px 20px;
        font-size: 1.125rem;
        border-bottom: 1px solid #f0f0f0;
        min-height: 54px;
        line-height: 24px;
    }
    
    /* Language switcher in mobile menu */
    .language-switcher {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 20px;
        margin-left: 0;
        border-top: 2px solid #00B050;
    }
    
    .lang-link {
        padding: 10px 0;
        min-height: 44px;
    }
}

/* ========================================
   TRUST BAR CERTIFICATION IMAGES UPDATE
   ======================================== */

.trust-logo {
    width: 120px !important;
    height: 80px !important;
    background: white !important;
    border-radius: 0.75rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 1rem !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06) !important;
    transition: all 0.3s ease !important;
    filter: none !important;
    opacity: 1 !important;
}

.trust-logo:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12) !important;
    filter: none !important;
    opacity: 1 !important;
}

.cert-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Responsive certification logos */
@media (max-width: 1024px) {
    .trust-logo {
        width: 100px !important;
        height: 70px !important;
        padding: 0.875rem !important;
    }
}

@media (max-width: 768px) {
    .trust-logo {
        width: 90px !important;
        height: 60px !important;
        padding: 0.75rem !important;
    }
}

@media (max-width: 480px) {
    .trust-logo {
        width: 80px !important;
        height: 55px !important;
        padding: 0.625rem !important;
    }
}

/* ========================================
   RESPONSIVE: HERO TYPOGRAPHY (MOBILE)
   ======================================== */
@media (max-width: 768px) {
    .products-hero-title,
    .contact-hero-title {
        font-size: 32px;
    }
    
    .products-hero-content,
    .contact-hero-content {
        max-width: 90%;
    }
}

/* ========================================
   FAQ SECTION (Contact Page)
   ======================================== */
.faq-section {
    background: #f9f9f9;
    padding: 5rem 0;
}

.faq-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.faq-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: white;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f8f8f8;
}

.faq-question[aria-expanded="true"] {
    background: #f0f7f4;
    color: #1B4D3E;
}

.faq-question-text {
    flex: 1;
    padding-right: 1rem;
}

.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    stroke: #1B4D3E;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
    max-height: 500px;
    padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    margin: 0;
}

.faq-answer strong {
    color: #1B4D3E;
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .faq-section {
        padding: 3rem 0;
    }
    
    .faq-title {
        font-size: 2rem;
    }
    
    .faq-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }
    
    .faq-answer.active {
        padding: 0 1.5rem 1.25rem 1.5rem;
    }
    
    .faq-icon {
        width: 20px;
        height: 20px;
    }
}
