/* ==========================================================================
   BERRYFIELDS PROFESSIONAL FRONT PAGE STYLES
   Enhanced Premium Design for All Brands
   ========================================================================== */

/* Hero Section - Professional Enhancement */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a0a2e 50%, #2d0a35 100%);
}

.hero-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
    opacity: 0.85;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(10, 10, 26, 0.3) 0%,
            rgba(10, 10, 26, 0.7) 50%,
            rgba(10, 10, 26, 0.95) 100%);
}

.hero-frost-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(196, 30, 58, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(74, 144, 226, 0.1) 0%, transparent 30%);
    pointer-events: none;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    color: var(--color-white);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-icon {
    font-size: 1.2rem;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.text-gradient-animated {
    background: linear-gradient(135deg, #ff6b9d 0%, #c41e3a 25%, #ffa726 50%, #66bb6a 75%, #4a90e2 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    margin-bottom: var(--spacing-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Brands Strip */
.hero-brands-strip {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-xl);
}

.brand-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all var(--transition-normal);
}

.brand-pill.berryfields {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.3) 0%, rgba(196, 30, 58, 0.1) 100%);
    border: 1px solid rgba(196, 30, 58, 0.5);
    color: #ff6b9d;
}

.brand-pill.countrycorn {
    background: linear-gradient(135deg, rgba(255, 167, 38, 0.3) 0%, rgba(255, 167, 38, 0.1) 100%);
    border: 1px solid rgba(255, 167, 38, 0.5);
    color: #ffd54f;
}

.brand-pill.elgin {
    background: linear-gradient(135deg, rgba(102, 187, 106, 0.3) 0%, rgba(102, 187, 106, 0.1) 100%);
    border: 1px solid rgba(102, 187, 106, 0.5);
    color: #81c784;
}

.brand-pill.harvestime {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.3) 0%, rgba(74, 144, 226, 0.1) 100%);
    border: 1px solid rgba(74, 144, 226, 0.5);
    color: #64b5f6;
}

.brand-pill:hover {
    transform: scale(1.05);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-xl);
}

.btn-glow {
    box-shadow: 0 0 30px rgba(196, 30, 58, 0.4);
}

.btn-glow:hover {
    box-shadow: 0 0 50px rgba(196, 30, 58, 0.6);
}

.hero-trust-badges {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.9rem;
}

.trust-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-icon svg {
    stroke: var(--color-white);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.scroll-arrow {
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

/* Section Styling */
.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.1) 0%, rgba(74, 144, 226, 0.1) 100%);
    color: var(--berry-primary);
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-sm);
    border: 1px solid rgba(196, 30, 58, 0.2);
}

.section-badge.light {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.2);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--spacing-sm);
}

.section-title.light {
    color: var(--color-white);
}

.section-subtitle.light {
    color: rgba(255, 255, 255, 0.7);
}

/* Brands Grid - 4 Columns */
.brands-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.brand-card {
    position: relative;
    background: var(--color-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    overflow: hidden;
}

.brand-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    transition: height var(--transition-normal);
}

.brand-berryfields .brand-card-glow {
    background: linear-gradient(90deg, #c41e3a 0%, #e91e63 100%);
}

.brand-countrycorn .brand-card-glow {
    background: linear-gradient(90deg, #ffa726 0%, #ffd54f 100%);
}

.brand-elgin .brand-card-glow {
    background: linear-gradient(90deg, #66bb6a 0%, #81c784 100%);
}

.brand-harvestime .brand-card-glow {
    background: linear-gradient(90deg, #4a90e2 0%, #64b5f6 100%);
}

.brand-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.brand-card:hover .brand-card-glow {
    height: 6px;
}

.brand-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--spacing-md);
}

.brand-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
}

.brand-berryfields .brand-icon {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.1) 0%, rgba(196, 30, 58, 0.05) 100%);
}

.brand-berryfields .brand-icon svg {
    stroke: #c41e3a;
}

.brand-countrycorn .brand-icon {
    background: linear-gradient(135deg, rgba(255, 167, 38, 0.15) 0%, rgba(255, 167, 38, 0.05) 100%);
}

.brand-countrycorn .brand-icon svg {
    stroke: #f57c00;
}

.brand-elgin .brand-icon {
    background: linear-gradient(135deg, rgba(102, 187, 106, 0.15) 0%, rgba(102, 187, 106, 0.05) 100%);
}

.brand-elgin .brand-icon svg {
    stroke: #43a047;
}

.brand-harvestime .brand-icon {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.15) 0%, rgba(74, 144, 226, 0.05) 100%);
}

.brand-harvestime .brand-icon svg {
    stroke: #1976d2;
}

.brand-tag {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
}

.brand-berryfields .brand-tag {
    background: rgba(196, 30, 58, 0.1);
    color: #c41e3a;
}

.brand-countrycorn .brand-tag {
    background: rgba(255, 167, 38, 0.15);
    color: #e65100;
}

.brand-elgin .brand-tag {
    background: rgba(102, 187, 106, 0.15);
    color: #2e7d32;
}

.brand-harvestime .brand-tag {
    background: rgba(74, 144, 226, 0.15);
    color: #1565c0;
}

.brand-card .brand-name {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xs);
}

.brand-berryfields .brand-name {
    color: #c41e3a;
}

.brand-countrycorn .brand-name {
    color: #e65100;
}

.brand-elgin .brand-name {
    color: #2e7d32;
}

.brand-harvestime .brand-name {
    color: #1565c0;
}

.brand-tagline {
    color: var(--color-gray);
    font-size: 0.95rem;
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

.brand-features {
    list-style: none;
    margin: 0 0 var(--spacing-md) 0;
    padding: 0;
}

.brand-features li {
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: var(--color-dark-gray);
    font-weight: 500;
}

.btn-brand-berryfields {
    background: linear-gradient(135deg, #c41e3a 0%, #e91e63 100%);
    color: var(--color-white);
}

.btn-brand-countrycorn {
    background: linear-gradient(135deg, #fb8c00 0%, #ffc107 100%);
    color: var(--color-dark-gray);
}

.btn-brand-elgin {
    background: linear-gradient(135deg, #43a047 0%, #66bb6a 100%);
    color: var(--color-white);
}

.btn-brand-harvestime {
    background: linear-gradient(135deg, #1976d2 0%, #42a5f5 100%);
    color: var(--color-white);
}

/* Showcase Banner */
.showcase-banner {
    position: relative;
    padding: var(--spacing-xxl) 0;
    overflow: hidden;
}

.showcase-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(10, 10, 26, 0.8) 0%,
            rgba(10, 10, 26, 0.9) 100%);
}

.showcase-content {
    position: relative;
    z-index: 10;
    color: var(--color-white);
}

.showcase-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
}

.showcase-text {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto var(--spacing-xl);
    line-height: 1.8;
}

.showcase-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6b9d 0%, #ffa726 50%, #66bb6a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Premium Products Grid */
.products-grid-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.product-card-premium {
    position: relative;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.product-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 10;
}

.product-badge.brand-berryfields {
    background: linear-gradient(135deg, #c41e3a 0%, #e91e63 100%);
    color: var(--color-white);
}

.product-badge.brand-countrycorn {
    background: linear-gradient(135deg, #fb8c00 0%, #ffc107 100%);
    color: var(--color-dark-gray);
}

.product-badge.brand-elgin {
    background: linear-gradient(135deg, #43a047 0%, #66bb6a 100%);
    color: var(--color-white);
}

.product-image-container {
    position: relative;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    transition: transform var(--transition-slow);
}

.product-card-premium:hover .product-image {
    transform: scale(1.08);
}

.product-quick-view {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.product-card-premium:hover .product-quick-view {
    opacity: 1;
}

.quick-view-btn {
    background: var(--color-white);
    color: var(--color-dark-gray);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
}

.quick-view-btn:hover {
    background: var(--berry-primary);
    color: var(--color-white);
}

/* Product Image Backgrounds */
.berry-strawberry {
    background: linear-gradient(180deg, rgba(255, 107, 157, 0.3) 0%, rgba(196, 30, 58, 0.4) 100%),
        linear-gradient(135deg, #ffcdd2 0%, #ef9a9a 100%);
    background-size: cover;
}

.berry-blueberry {
    background: linear-gradient(180deg, rgba(102, 126, 234, 0.3) 0%, rgba(74, 95, 232, 0.4) 100%),
        linear-gradient(135deg, #c5cae9 0%, #9fa8da 100%);
    background-size: cover;
}

.corn-cob {
    background: linear-gradient(180deg, rgba(255, 213, 79, 0.3) 0%, rgba(255, 167, 38, 0.4) 100%),
        linear-gradient(135deg, #fff9c4 0%, #fff176 100%);
    background-size: cover;
}

.organic-mixed {
    background: linear-gradient(180deg, rgba(129, 199, 132, 0.3) 0%, rgba(67, 160, 71, 0.4) 100%),
        linear-gradient(135deg, #c8e6c9 0%, #a5d6a7 100%);
    background-size: cover;
}

.berry-mango {
    background: linear-gradient(180deg, rgba(255, 183, 77, 0.3) 0%, rgba(251, 140, 0, 0.4) 100%),
        linear-gradient(135deg, #ffe0b2 0%, #ffcc80 100%);
    background-size: cover;
}

.berry-mixed {
    background: linear-gradient(180deg, rgba(186, 104, 200, 0.3) 0%, rgba(142, 36, 170, 0.4) 100%),
        linear-gradient(135deg, #e1bee7 0%, #ce93d8 100%);
    background-size: cover;
}

.product-content {
    padding: var(--spacing-md);
}

.product-title {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--color-dark-gray);
}

.product-size {
    font-size: 0.8rem;
    color: var(--berry-primary);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.product-description {
    font-size: 0.875rem;
    color: var(--color-gray);
    margin-bottom: var(--spacing-sm);
    line-height: 1.6;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-sm);
    border-top: 1px solid var(--color-light-gray);
}

.product-price {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--color-dark-gray);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

/* Features Grid 6 columns */
.features-grid-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.feature-item-premium {
    text-align: center;
    padding: var(--spacing-lg) var(--spacing-sm);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-normal);
}

.feature-item-premium:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.feature-icon-wrap {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-sm);
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.2) 0%, rgba(74, 144, 226, 0.2) 100%);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-icon-wrap svg {
    stroke: var(--color-white);
}

.feature-item-premium h3 {
    font-size: 1rem;
    color: var(--color-white);
    margin-bottom: var(--spacing-xs);
}

.feature-item-premium p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.5;
}

/* Customer CTA Section */
.cta-split {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
}

.cta-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.cta-card.retail {
    background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
    border: 2px solid rgba(196, 30, 58, 0.2);
}

.cta-card.business {
    background: linear-gradient(135deg, #f8f9ff 0%, #eef2ff 100%);
    border: 2px solid rgba(74, 144, 226, 0.2);
}

.cta-card-content {
    padding: var(--spacing-xl);
}

.cta-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
}

.cta-card.retail .cta-icon {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.1) 0%, rgba(196, 30, 58, 0.05) 100%);
}

.cta-card.retail .cta-icon svg {
    stroke: #c41e3a;
}

.cta-card.business .cta-icon {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1) 0%, rgba(74, 144, 226, 0.05) 100%);
}

.cta-card.business .cta-icon svg {
    stroke: #1976d2;
}

.cta-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.cta-card p {
    color: var(--color-gray);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.cta-features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--spacing-lg) 0;
}

.cta-features li {
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--color-dark-gray);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Contact Section Enhanced */
.contact-grid-enhanced {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-xl);
    align-items: start;
}

.contact-info-card,
.contact-form-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-lg);
}

.contact-info-card h3,
.contact-form-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-lg);
}

.contact-method {
    display: flex;
    gap: 1rem;
    padding: var(--spacing-md);
    background: var(--color-off-white);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-sm);
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #c41e3a 0%, #e91e63 100%);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.contact-icon svg {
    stroke: var(--color-white);
}

.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.75rem;
    color: var(--color-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.contact-details a {
    font-weight: 600;
    color: var(--color-dark-gray);
}

.contact-details a:hover {
    color: var(--berry-primary);
}

.contact-brands-links {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--color-light-gray);
}

.contact-brands-links h4 {
    font-size: 1rem;
    margin-bottom: var(--spacing-sm);
}

.brand-link {
    display: block;
    padding: var(--spacing-sm);
    border-radius: var(--radius-sm);
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
}

.brand-link.berryfields {
    background: rgba(196, 30, 58, 0.05);
    color: #c41e3a;
    border-left: 3px solid #c41e3a;
}

.brand-link.harvestime {
    background: rgba(74, 144, 226, 0.05);
    color: #1976d2;
    border-left: 3px solid #1976d2;
}

.brand-link:hover {
    transform: translateX(5px);
}

/* Premium Contact Form */
.contact-form-premium {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

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

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-dark-gray);
    margin-bottom: 0.5rem;
}

.form-input {
    padding: 1rem;
    font-family: var(--font-primary);
    font-size: 1rem;
    border: 2px solid var(--color-light-gray);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    background: var(--color-white);
}

.form-input:focus {
    outline: none;
    border-color: var(--berry-primary);
    box-shadow: 0 0 0 4px rgba(196, 30, 58, 0.1);
}

.form-input::placeholder {
    color: #adb5bd;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .brands-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid-6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .products-grid-premium {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid-enhanced {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 85vh;
    }

    .hero-banner-bg {
        background-position: center;
        opacity: 0.6;
    }

    .hero-overlay {
        background: linear-gradient(180deg,
                rgba(10, 10, 26, 0.6) 0%,
                rgba(10, 10, 26, 0.9) 100%);
    }

    .hero-brands-strip {
        gap: 0.5rem;
    }

    .brand-pill {
        font-size: 0.7rem;
        padding: 0.4rem 0.7rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-trust-badges {
        flex-direction: column;
        gap: 1rem;
    }

    .brands-grid-4 {
        grid-template-columns: 1fr;
    }

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

    .products-grid-premium {
        grid-template-columns: 1fr;
    }

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

    .cta-split {
        grid-template-columns: 1fr;
    }

    .showcase-stats {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

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

/* ==========================================================================
   SIMPLE PRODUCT CARDS (Name + Image + Buy Button Only)
   ========================================================================== */
.products-grid-simple {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

@media (max-width: 992px) {
    .products-grid-simple {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .products-grid-simple {
        grid-template-columns: 1fr;
    }
}

.product-card-simple {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.product-card-simple:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.product-image-simple {
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-simple img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.product-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.product-placeholder svg {
    stroke: #adb5bd;
}

.product-info-simple {
    padding: var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.product-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-dark-gray);
    margin: 0;
    flex: 1;
}

.btn-buy {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--berry-primary) 0%, #e91e63 100%);
    color: var(--color-white);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    transition: all var(--transition-fast);
}

.product-card-simple:hover .btn-buy {
    background: linear-gradient(135deg, #a51830 0%, #c2185b 100%);
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.4);
}

/* ==========================================================================
   FIXED TEXT COLORS - Why Choose Us Section
   ========================================================================== */
.feature-item-premium h3 {
    font-size: 1rem;
    color: #ffffff !important;
    margin-bottom: var(--spacing-xs);
    font-weight: 700;
}

.feature-item-premium p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85) !important;
    margin: 0;
    line-height: 1.6;
}

/* Ensure the section has proper contrast */
.features-section {
    background: linear-gradient(180deg, #0a0a1a 0%, #1a1a2e 100%);
}

.features-section .section-title.light {
    color: #ffffff !important;
}

.features-section .section-subtitle.light {
    color: rgba(255, 255, 255, 0.85) !important;
}

.features-section .section-badge.light {
    background: rgba(196, 30, 58, 0.3);
    color: #ff6b9d !important;
    border-color: rgba(196, 30, 58, 0.5);
}