/* ===================================
   Gold Coast Pallets - Premium Stylesheet
   =================================== */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Poppins:wght@600;700;800;900&display=swap');

/* CSS Variables */
:root {
    /* Colors - Soft Natural Earth Tones */
    --primary-color: #7cb342;
    --primary-dark: #689f38;
    --primary-light: #9ccc65;

    --dark-bg: #5d4e37;
    --dark-bg-secondary: #6b5d4f;
    --dark-bg-tertiary: #786c5d;

    --white: #ffffff;
    --off-white: #fdfcfa;
    --beige-50: #fdfcfa;
    --beige-100: #f7f4ef;
    --cream: #f5efe6;
    --tan-100: #e8dfd3;
    --tan-200: #d4c5b3;
    --sage-light: #c8d5b9;
    --gray-300: #a89f91;
    --gray-600: #7d6e5d;
    --gray-700: #6b5d4f;
    --gray-800: #5d4e37;
    --gray-900: #4a3f2f;

    /* Typography */
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;

    /* Container */
    --container-max: 1200px;
    --container-fluid: 1400px;

    /* Transitions */
    --transition: 0.3s ease;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scroll-padding-top: 120px;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--beige-50);
}

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

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

ul {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.container-fluid {
    max-width: var(--container-fluid);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* Dark Header */
.header-dark {
    background: #3c3c3c;
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.brand-logo-img {
    height: 70px;
    width: auto;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

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

.nav-item {
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    transition: color var(--transition);
}

.nav-item:hover {
    color: var(--primary-color);
}

.header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-call {
    background: #ffb74d;
    color: var(--dark-bg);
    padding: 0.875rem 1.75rem;
    border-radius: 0.375rem;
    font-weight: 700;
    font-size: 0.9375rem;
    transition: all var(--transition);
}

.btn-call:hover {
    background: #ffa726;
    transform: translateY(-2px);
}

.btn-shop {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 0.875rem 1.75rem;
    border-radius: 0.375rem;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all var(--transition);
}

.btn-shop:hover {
    background: var(--white);
    color: var(--dark-bg);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 0.35rem;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 1.75rem;
    height: 3px;
    background-color: var(--white);
    transition: all var(--transition);
    border-radius: 2px;
}

/* Hero Section */
.hero-main {
    background: rgb(118, 118, 118);
    padding: 0;
    overflow: hidden;
    position: relative;
}

.hero-content-wrapper {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 4rem var(--spacing-md);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text-side {
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.hero-heading {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #ffb74d;
    color: var(--gray-900);
    padding: 1.125rem 2rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 1rem;
    transition: all var(--transition);
    box-shadow: 0 4px 14px rgba(255, 183, 77, 0.4);
}

.btn-primary-hero:hover {
    background: #ffa726;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 167, 38, 0.5);
}

.btn-secondary-hero {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 2px solid var(--white);
    padding: 1.125rem 2rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 1rem;
    transition: all var(--transition);
    backdrop-filter: blur(10px);
}

.btn-secondary-hero:hover {
    background: var(--white);
    color: var(--dark-bg);
}

.hero-image-side {
    position: relative;
}

.hero-image-frame {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-image-frame::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero-image-frame img {
    width: 100%;
    height: auto;
    display: block;
}


/* IB Pallets Supplier Section */
.ib-supplier-section {
    padding: 3rem 0;
    background: var(--beige-100);
    border-top: 1px solid var(--tan-200);
    border-bottom: 1px solid var(--tan-200);
}

.ib-supplier-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.ib-supplier-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--primary-color);
    color: var(--white);
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
    border-radius: 0.25rem;
}

.ib-supplier-content h2 {
    font-size: 1.75rem;
    line-height: 1.4;
    color: var(--gray-900);
    margin-bottom: 1rem;
    font-weight: 700;
}

.ib-supplier-content p {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--gray-700);
}

/* Product Gallery Section */
.product-gallery-section {
    padding: var(--spacing-3xl) 0;
    background: var(--white);
}

.gallery-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-2xl);
}

.gallery-header h2 {
    font-size: 2.5rem;
    color: var(--gray-900);
    margin-bottom: 1rem;
    font-weight: 700;
}

.gallery-header p {
    font-size: 1.125rem;
    color: var(--gray-700);
    line-height: 1.7;
}

.carousel-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.carousel-track {
    display: flex;
    gap: 1.5rem;
    animation: scroll-left 30s linear infinite;
    width: max-content;
}

.carousel-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.gallery-item {
    flex: 0 0 auto;
    width: 380px;
    border-radius: 1rem;
    overflow: hidden;
    background: var(--beige-100);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.gallery-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    max-height: 300px;
    border-radius: 0.5rem;
}

/* Section Light */
.section-light {
    padding: var(--spacing-3xl) 0;
    background-color: var(--beige-50);
}

.content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.split-image img {
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.section-title {
    color: var(--gray-900);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.section-lead {
    font-size: 1.25rem;
    color: var(--gray-800);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.split-content p {
    color: var(--gray-600);
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.btn-primary-section {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 700;
    margin-top: 1rem;
    transition: all var(--transition);
}

.btn-primary-section:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Products Section Alt */
.section-products-alt {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(180deg, var(--tan-100) 0%, var(--beige-50) 100%);
}

.section-header-alt {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-2xl);
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.section-header-alt h2 {
    color: var(--gray-900);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header-alt p {
    color: var(--gray-600);
    font-size: 1.125rem;
    line-height: 1.7;
}

.products-grid-alt {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: var(--spacing-2xl);
}

.product-card-alt {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid var(--tan-200);
    transition: all var(--transition);
    position: relative;
}

.product-card-alt:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(124, 179, 66, 0.2);
    transform: translateY(-4px);
}

.product-number-alt {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 3rem;
    height: 3rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
}

.product-card-alt h3 {
    color: var(--gray-900);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}

.product-card-alt p {
    color: var(--gray-600);
    line-height: 1.7;
}

.section-cta-center {
    text-align: center;
}

.btn-large-primary {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 1.125rem 2.5rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all var(--transition);
}

.btn-large-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Secondary Hero Section */
.hero-secondary {
    padding: 5rem 0;
    background: url('plastic-pallets-hero.png') center center / cover no-repeat;
    position: relative;
    overflow: hidden;
}

.hero-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(247, 244, 239, 0.96);
    z-index: 0;
}

.hero-secondary-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
}

.hero-secondary-content {
    position: relative;
    z-index: 1;
}

.hero-secondary-label {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--primary-color);
    color: var(--white);
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
    border-radius: 0.25rem;
}

.hero-secondary-content h2 {
    font-size: 2.75rem;
    line-height: 1.15;
    color: var(--gray-900);
    margin-bottom: 1.75rem;
    font-weight: 800;
}

.hero-secondary-content p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 1.25rem;
}

.hero-secondary-content p:last-of-type {
    margin-bottom: 2.5rem;
}

.hero-secondary-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--tan-200);
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.4;
    font-weight: 500;
}

.hero-secondary-image {
    position: relative;
    z-index: 1;
}

.hero-secondary-image img {
    width: 100%;
    height: auto;
    border-radius: 0.75rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.image-badge {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    background: var(--dark-bg);
    color: var(--white);
    padding: 1rem 1.75rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    border: 3px solid var(--white);
}

/* Advantages Section */
.section-advantages {
    padding: var(--spacing-3xl) 0;
    background: var(--beige-50);
}

.advantages-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-2xl);
}

.advantages-header h2 {
    color: var(--gray-900);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.advantages-header p {
    color: var(--gray-600);
    font-size: 1.125rem;
    line-height: 1.7;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.advantage-card {
    background: var(--tan-100);
    padding: 2rem;
    border-radius: 1rem;
    transition: all var(--transition);
}

.advantage-card:hover {
    background: var(--white);
    box-shadow: 0 10px 30px rgba(124, 179, 66, 0.15);
    transform: translateY(-4px);
}

.advantage-icon-wrapper {
    width: 4rem;
    height: 4rem;
    background: var(--primary-color);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.advantage-icon {
    width: 2rem;
    height: 2rem;
    color: var(--white);
}

.advantage-card h3 {
    color: var(--gray-900);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.advantage-card p {
    color: var(--gray-600);
    line-height: 1.7;
}

/* Bulk Section Alt */
.section-bulk-alt {
    padding: var(--spacing-3xl) 0;
    background: #5d4e37;
    color: var(--white);
}

.bulk-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-2xl);
}

.section-tag-white {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.bulk-header-center h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.bulk-header-center p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    line-height: 1.7;
}

.bulk-content-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: var(--spacing-2xl);
}

.bulk-column h3 {
    color: var(--white);
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.bulk-column > p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
}

.bulk-features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bulk-feature strong {
    display: block;
    color: var(--primary-color);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.bulk-feature p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.quantity-boxes {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
}

.quantity-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.25rem;
    border-radius: 0.75rem;
    border-left: 4px solid var(--primary-color);
}

.quantity-box h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.quantity-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.quantity-info span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
}

.bulk-timeline {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: 1.5rem;
}

.btn-large-white {
    display: inline-block;
    background: var(--white);
    color: var(--gray-900);
    padding: 1.125rem 2.5rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all var(--transition);
}

.btn-large-white:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

/* Coverage Section */
.section-coverage {
    padding: var(--spacing-3xl) 0;
    background: var(--tan-100);
}

.coverage-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-2xl);
}

.coverage-header h2 {
    color: var(--gray-900);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.coverage-header p {
    color: var(--gray-600);
    font-size: 1.125rem;
    line-height: 1.7;
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: var(--spacing-2xl);
}

.coverage-region {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.coverage-region h3 {
    color: var(--gray-900);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--primary-color);
}

.coverage-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.coverage-list li {
    color: var(--gray-700);
    font-size: 0.9375rem;
    padding-left: 1.25rem;
    position: relative;
}

.coverage-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.coverage-footer {
    text-align: center;
}

.coverage-note {
    color: var(--gray-600);
    font-size: 1.0625rem;
    margin-bottom: 1.5rem;
}

/* Contact Section Alt */
.section-contact-alt {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-bg-secondary) 100%);
}

.contact-wrapper-alt {
    max-width: 900px;
    margin: 0 auto;
}

.contact-info-side {
    text-align: center;
}

.contact-info-side h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-info-side > p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-methods-alt {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-card-alt {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all var(--transition);
}

.contact-card-alt:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-4px);
}

.contact-icon-alt {
    width: 4rem;
    height: 4rem;
    background: var(--primary-color);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon-alt svg {
    width: 2rem;
    height: 2rem;
    color: var(--white);
}

.contact-card-content {
    text-align: left;
}

.contact-card-content h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.contact-card-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.contact-hours {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    text-align: center;
}

/* Footer */
.footer-dark {
    background: #5d4e37;
    padding: var(--spacing-xl) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content-center {
    text-align: center;
}

.footer-brand {
    margin-bottom: 1rem;
}

.footer-logo {
    height: 120px;
    width: auto;
    margin: 0 auto;
}

.footer-dark small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .products-grid-alt,
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }

    .main-nav {
        display: none;
    }

    .header-actions {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    #menu-toggle:checked ~ .main-nav {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark-bg);
        padding: 1rem;
    }

    #menu-toggle:checked ~ .main-nav .nav-list {
        flex-direction: column;
        gap: 0;
    }

    #menu-toggle:checked ~ .main-nav .nav-item {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid var(--gray-800);
    }

    #menu-toggle:checked ~ .hamburger span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    #menu-toggle:checked ~ .hamburger span:nth-child(2) {
        opacity: 0;
    }

    #menu-toggle:checked ~ .hamburger span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .hero-content-wrapper {
        grid-template-columns: 1fr;
        padding: 3rem var(--spacing-md);
        gap: 2rem;
    }

    .hero-heading {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

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

    .btn-primary-hero,
    .btn-secondary-hero {
        width: 100%;
        justify-content: center;
    }

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

    .products-grid-alt,
    .advantages-grid,
    .coverage-grid {
        grid-template-columns: 1fr;
    }

    .bulk-content-columns {
        grid-template-columns: 1fr;
    }

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

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

    .hero-secondary {
        padding: 3rem 0;
    }

    .hero-secondary-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero-secondary-content h2 {
        font-size: 1.75rem;
    }

    .hero-secondary-content p {
        font-size: 1rem;
    }

    .hero-secondary-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .image-badge {
        bottom: 0.5rem;
        right: 0.5rem;
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }

    .ib-supplier-content h2 {
        font-size: 1.25rem;
    }

    .ib-supplier-content p {
        font-size: 1rem;
    }

    .gallery-header h2 {
        font-size: 1.75rem;
    }

    .gallery-item {
        width: 280px;
        min-height: 200px;
        padding: 0.75rem;
    }

    .gallery-item img {
        max-height: 200px;
    }

    .carousel-track {
        gap: 1rem;
    }
}
