/*
Theme Name: The BM Company
Theme URI: https://thebmcompany.online
Description: Professional WordPress theme for The BM Company - India's leading mattress protector manufacturer. Features mobile-first responsive design, enterprise-grade security, and lead generation system.
Author: The BM Company
Author URI: https://thebmcompany.online
Version: 1.0.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bm-company
Tags: business, e-commerce, manufacturing, responsive, mobile-first
*/

/* ========================================
   THE BM COMPANY - MOBILE-FIRST RESPONSIVE DESIGN
   Enhanced by Senior Web Developer
   Brand Colors: Black (#1A1A1A) & Red (#E31E24)
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors */
    --brand-black: #1A1A1A;
    --brand-red: #E31E24;
    --brand-red-dark: #B81820;
    --brand-red-light: #FF3D43;

    /* Neutral Palette */
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --light-gray: #E8EAED;
    --medium-gray: #5F6368;
    --dark-gray: #202124;

    /* Accent Colors */
    --success: #34A853;
    --whatsapp: #25D366;
    --warning: #FBBC04;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-dark) 100%);
    --gradient-dark: linear-gradient(135deg, var(--brand-black) 0%, #2D2D2D 100%);
    --gradient-light: linear-gradient(135deg, #FFFFFF 0%, #F5F5F5 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(227, 30, 36, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%);
    --gradient-hero: linear-gradient(135deg, rgba(227, 30, 36, 0.03) 0%, rgba(26, 26, 26, 0.02) 100%);

    /* Typography - Mobile First */
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing - Mobile First (smaller base values) */
    --spacing-xs: 8px;
    --spacing-sm: 12px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-xxl: 48px;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 20px;
    --radius-full: 9999px;

    /* Shadows - Optimized for mobile */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 8px 24px rgba(0, 0, 0, 0.15);
    --shadow-red: 0 4px 16px rgba(227, 30, 36, 0.25);

    /* Transitions */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-body);
    color: var(--dark-gray);
    line-height: 1.7;
    background: var(--white);
    overflow-x: hidden;
    font-size: 16px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    width: 100%;
}

/* ========================================
   TYPOGRAPHY - MOBILE FIRST
   ======================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--brand-black);
    letter-spacing: -0.02em;
}

.section-title {
    font-size: clamp(24px, 6vw, 42px);
    text-align: center;
    margin-bottom: var(--spacing-lg);
    position: relative;
    padding-bottom: var(--spacing-md);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

/* ========================================
   HEADER - MOBILE OPTIMIZED
   ======================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all var(--transition-base);
}

.header.scrolled {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) 0;
    gap: var(--spacing-sm);
    min-height: 64px;
}

.brand {
    flex: 1;
    min-width: 0;
}

.brand-logo-img {
    height: 40px;
    width: auto;
    display: block;
    margin-bottom: 4px;
}

.brand-name {
    font-size: clamp(16px, 4.5vw, 26px);
    font-weight: 700;
    margin: 0;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.brand-name sup {
    font-size: 0.5em;
    opacity: 0.8;
}

.brand-tagline {
    font-size: clamp(9px, 2.2vw, 12px);
    color: var(--medium-gray);
    margin: 2px 0 0 0;
    font-weight: 500;
    line-height: 1.2;
}

.header-actions {
    display: flex;
    gap: var(--spacing-xs);
    flex-shrink: 0;
}

.header-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 10px 14px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    transition: all var(--transition-base);
    white-space: nowrap;
    min-height: 44px;
    min-width: 44px;
}

.header-phone {
    background: var(--light-gray);
    color: var(--brand-black);
}

.header-phone:hover,
.header-phone:active {
    background: var(--brand-black);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.header-whatsapp {
    background: var(--whatsapp);
    color: var(--white);
}

.header-whatsapp:hover,
.header-whatsapp:active {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.header-btn i {
    font-size: 16px;
}

.btn-text {
    display: none;
}

/* ========================================
   HERO SECTION - MOBILE FIRST
   ======================================== */

.hero {
    min-height: calc(100vh - 64px);
    min-height: calc(100dvh - 64px);
    display: flex;
    align-items: center;
    padding: calc(64px + var(--spacing-lg)) var(--spacing-md) var(--spacing-lg);
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -30%;
    width: 80vw;
    height: 80vw;
    max-width: 500px;
    max-height: 500px;
    background: radial-gradient(circle, rgba(227, 30, 36, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-20px, -20px) scale(1.05);
    }
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    width: 100%;
    margin-bottom: var(--spacing-lg);
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: clamp(24px, 7vw, 48px);
    line-height: 1.15;
    margin-bottom: var(--spacing-md);
    color: var(--brand-black);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.hero-title::selection {
    background: var(--brand-red);
    color: var(--white);
}

.hero-subtitle {
    font-size: clamp(15px, 3.5vw, 20px);
    color: var(--medium-gray);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.hero-features {
    list-style: none;
    margin-bottom: var(--spacing-lg);
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-gray);
    padding: var(--spacing-xs);
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
}

.hero-features li:active {
    background: var(--off-white);
    transform: translateX(4px);
}

.hero-features i {
    color: var(--brand-red);
    font-size: 18px;
    flex-shrink: 0;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.hero-image {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.08) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-slow);
}

.hero-image:active img {
    transform: scale(1.02);
}

/* ========================================
   BUTTONS - MOBILE OPTIMIZED
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    min-height: 48px;
    width: 100%;
    text-align: center;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.btn:active::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-red);
}

.btn-primary:active {
    transform: scale(0.98);
    box-shadow: 0 8px 20px rgba(227, 30, 36, 0.35);
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:active {
    background: #128C7E;
    transform: scale(0.98);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-white {
    background: var(--white);
    color: var(--brand-red);
    box-shadow: var(--shadow-md);
}

.btn-white:active {
    background: var(--off-white);
    transform: scale(0.98);
}

.btn-large {
    padding: 16px 32px;
    font-size: 14px;
    min-height: 52px;
}

.btn-block {
    width: 100%;
}

.btn i {
    font-size: 18px;
}

/* ========================================
   TRUST INDICATORS - MOBILE GRID
   ======================================== */

.trust {
    padding: var(--spacing-lg) var(--spacing-md);
    background: var(--off-white);
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}

.trust-item {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    text-align: center;
    transition: all var(--transition-base);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.trust-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.trust-item:active::before {
    transform: scaleX(1);
}

.trust-item:active {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.trust-item i {
    font-size: 40px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-sm);
    display: block;
}

.trust-item h3 {
    font-size: 18px;
    margin-bottom: var(--spacing-xs);
    color: var(--brand-black);
}

.trust-item p {
    font-size: 13px;
    color: var(--medium-gray);
    line-height: 1.5;
}

/* ========================================
   PRODUCTS - MOBILE CARDS
   ======================================== */

.products {
    padding: var(--spacing-xl) var(--spacing-md);
    background: var(--white);
    position: relative;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}

.product-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(227, 30, 36, 0.1);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(227, 30, 36, 0.04) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.product-card:active::before {
    opacity: 1;
}

.product-card:active {
    transform: translateY(-6px) scale(1.01);
    box-shadow: var(--shadow-lg);
    border-color: var(--brand-red);
}

.product-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--spacing-md);
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-red);
    transition: all var(--transition-base);
}

.product-card:active .product-icon {
    transform: scale(1.1);
}

.product-icon i {
    font-size: 32px;
    color: var(--white);
}

.product-card h3 {
    font-size: 18px;
    margin-bottom: var(--spacing-sm);
    color: var(--brand-black);
}

.product-card p {
    font-size: 14px;
    color: var(--medium-gray);
    line-height: 1.6;
}

/* ========================================
   WHY CHOOSE US - MOBILE LAYOUT
   ======================================== */

.why-choose {
    padding: var(--spacing-xl) var(--spacing-md);
    background: var(--off-white);
}

.why-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.benefits-list li {
    display: flex;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: var(--white);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--brand-red);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.benefits-list li:active {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

.benefits-list i {
    color: var(--brand-red);
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.benefits-list strong {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
    color: var(--brand-black);
    font-family: var(--font-heading);
}

.benefits-list p {
    font-size: 14px;
    color: var(--medium-gray);
    line-height: 1.6;
}

.why-image {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.why-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.08) 0%, transparent 50%);
}

.why-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-slow);
}

.why-image:active img {
    transform: scale(1.02);
}

/* ========================================
   B2B BENEFITS - MOBILE GRID
   ======================================== */

.b2b-benefits {
    padding: var(--spacing-xl) var(--spacing-md);
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.benefit-card {
    text-align: center;
    padding: var(--spacing-md);
    background: var(--off-white);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.benefit-card:active {
    background: var(--white);
    border-color: var(--brand-red);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.benefit-card i {
    font-size: 36px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-sm);
    display: block;
    transition: transform var(--transition-base);
}

.benefit-card:active i {
    transform: scale(1.15);
}

.benefit-card h3 {
    font-size: 16px;
    margin-bottom: var(--spacing-xs);
    color: var(--brand-black);
}

.benefit-card p {
    font-size: 13px;
    color: var(--medium-gray);
    line-height: 1.5;
}

/* ========================================
   LEAD FORM - MOBILE OPTIMIZED
   ======================================== */

.lead-section {
    padding: var(--spacing-xl) var(--spacing-md);
    background: var(--gradient-light);
}

.form-wrapper {
    background: var(--white);
    padding: var(--spacing-lg) var(--spacing-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    position: relative;
    border-top: 4px solid var(--brand-red);
}

.form-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.form-header h2 {
    font-size: 22px;
    margin-bottom: var(--spacing-sm);
    color: var(--brand-black);
}

.form-header p {
    font-size: 14px;
    color: var(--medium-gray);
    margin-bottom: var(--spacing-md);
}

.form-trust {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    font-size: 12px;
    color: var(--success);
    font-weight: 600;
}

.form-trust span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark-gray);
    margin-left: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 15px;
    transition: all var(--transition-base);
    background: var(--off-white);
    color: var(--brand-black);
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--brand-red);
    box-shadow: 0 0 0 3px rgba(227, 30, 36, 0.1);
    outline: none;
    background: var(--white);
}

.form-privacy {
    text-align: center;
    font-size: 12px;
    color: var(--medium-gray);
    margin-top: var(--spacing-sm);
}

/* ========================================
   FOOTER - MOBILE OPTIMIZED
   ======================================== */

.cta-strip {
    padding: var(--spacing-xl) var(--spacing-md);
    background: var(--brand-black);
    text-align: center;
    color: var(--white);
}

.cta-strip h2 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: var(--spacing-xs);
}

.cta-strip p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-lg);
    font-size: 14px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.footer {
    padding: var(--spacing-xl) var(--spacing-md) var(--spacing-xxl);
    background: #111;
    color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-col h3 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: var(--spacing-md);
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-contact,
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-contact li,
.footer-links li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    font-size: 14px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--transition-base);
}

.footer-links li a:hover {
    color: var(--brand-red);
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all var(--transition-base);
}

.social-links a:hover {
    background: var(--brand-red);
    transform: translateY(-2px);
}

.footer-bottom {
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 12px;
}

/* ========================================
   STICKY ELEMENTS
   ======================================== */

.whatsapp-sticky {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    font-size: 32px;
    text-decoration: none;
    transition: all var(--transition-base);
    animation: bounceIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) 1s both;
}

.whatsapp-sticky:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

@keyframes bounceIn {
    from {
        opacity: 0;
        transform: scale(0.3);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ========================================
   DESKTOP ENHANCEMENTS (Min-width: 1024px)
   ======================================== */

@media (min-width: 1024px) {
    :root {
        --spacing-md: 24px;
        --spacing-lg: 48px;
        --spacing-xl: 64px;
        --spacing-xxl: 96px;
    }

    .btn-text {
        display: inline;
    }

    .header-btn {
        padding: 12px 24px;
    }

    .hero {
        padding-top: 80px;
        min-height: 100vh;
    }

    .hero .container {
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: var(--spacing-xl);
        align-items: center;
    }

    .hero-content {
        text-align: left;
        margin-bottom: 0;
    }

    .hero-title {
        font-size: 56px;
        text-align: left;
    }

    .hero-subtitle {
        font-size: 20px;
        text-align: left;
    }

    .hero-cta {
        flex-direction: row;
        justify-content: flex-start;
    }

    .hero-cta .btn {
        width: auto;
    }

    .trust-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-content {
        grid-template-columns: 1fr 1fr;
    }

    .why-image {
        order: 2;
    }

    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .form-wrapper {
        max-width: 800px;
        margin: 0 auto;
        padding: var(--spacing-xl);
    }

    .form-row {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 2fr 1.5fr 1fr;
        gap: var(--spacing-xxl);
    }

    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .cta-buttons .btn {
        width: auto;
        min-width: 200px;
    }
}

/* ========================================
   TABLET ADAPTATIONS (Min-width: 768px)
   ======================================== */

@media (min-width: 768px) and (max-width: 1023px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
        font-size: 42px;
    }

    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

/* ========================================
   PILLOW PROTECTORS SECTION
   ======================================== */

.pillow-protectors {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
}

.pillow-images-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
    justify-content: center;
}

.pillow-image-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    flex: 0 1 calc(25% - 15px);
    min-width: 220px;
}

.pillow-image-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

/* Specifications Grid */
.pillow-specs-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.spec-column {
    background: white;
    border-radius: 12px;
    padding: 25px 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.spec-column:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}

.spec-column i {
    color: #1e73be;
    font-size: 42px;
    margin-bottom: 15px;
    display: block;
}

.spec-column h3 {
    color: #2c3e50;
    margin: 0 0 12px 0;
    font-size: 1.1rem;
    font-weight: 700;
}

.spec-column p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 0.9rem;
}

/* CTA Button */
.pillow-cta-wrapper {
    text-align: center;
    margin-top: 40px;
}

.pillow-quote-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.pillow-quote-btn i {
    font-size: 1.4em;
}

.pillow-quote-btn .btn-mobile-text {
    display: none;
}

/* Responsive Styles for Pillow Section */
@media (max-width: 1200px) {
    .pillow-specs-row {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .pillow-specs-row {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }

    .spec-column {
        padding: 20px 15px !important;
    }

    .spec-column i {
        font-size: 32px !important;
    }

    .spec-column h3 {
        font-size: 1rem !important;
    }

    .spec-column p {
        font-size: 0.8rem !important;
    }

    .pillow-quote-btn {
        padding: 14px 24px !important;
        font-size: 0.95rem !important;
    }

    .pillow-quote-btn .btn-full-text {
        display: none !important;
    }

    .pillow-quote-btn .btn-mobile-text {
        display: inline !important;
    }
}

@media (max-width: 480px) {
    .pillow-specs-row {
        grid-template-columns: 1fr !important;
    }

    .pillow-image-card {
        flex: 0 1 100%;
    }
}