/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #212121;
    background-color: #FFFFFF;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    color: #2E7D32;
    border-bottom: 3px solid #2E7D32;
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.cta-btn, .hero-cta, .submit-btn, .modal-btn {
    display: inline-block;
    background-color: #FF6F00;
    color: #FFFFFF;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
    min-height: 48px;
}

.cta-btn:hover, .hero-cta:hover, .submit-btn:hover, .modal-btn:hover {
    background-color: #E65100;
    transform: translateY(-1px);
}

/* Header/Navigation */
.sticky-header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #2E7D32;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.logo:hover {
    transform: translateY(-1px);
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.logo a {
    color: #FFFFFF;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.logo a:hover {
    transform: translateY(-1px);
}

.logo-34 {
    background: linear-gradient(135deg, #FF8A65 0%, #FF6F00 50%, #E65100 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: -0.05em;
    text-shadow:
        0 1px 2px rgba(255,111,0,0.3),
        0 0 10px rgba(255,111,0,0.1);
    position: relative;
}

.logo-34::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #FF8A65 0%, #FF6F00 50%, #E65100 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(0.5px);
    opacity: 0.3;
    z-index: -1;
}

/* Logo quality enhancements */
.logo {
    position: relative;
    z-index: 10;
}

.logo a {
    font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    font-variant-ligatures: common-ligatures;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.logo-34 {
    display: inline-block;
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
    animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    0% {
        filter: drop-shadow(0 0 2px rgba(255,111,0,0.3));
    }
    100% {
        filter: drop-shadow(0 0 8px rgba(255,111,0,0.6));
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #FF6F00;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #FFFFFF;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    height: 100dvh;
    min-height: 600px;
    padding-top: 7.5rem;
    padding-bottom: 8rem;
    display: flex;
    align-items: center;
    color: #FFFFFF;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/warehouse-hero.png');
    background-size: cover;
    background-position: center;
    transform: scale(1.06);
    animation: heroDrift 12s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite alternate;
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(90deg, rgba(3, 11, 14, 0.82) 0%, rgba(3, 11, 14, 0.52) 36%, rgba(3, 11, 14, 0.52) 64%, rgba(3, 11, 14, 0.8) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.38) 0%, rgba(0, 0, 0, 0.52) 100%);
}

.hero-overlay::before {
    content: '';
    position: absolute;
    inset: -10%;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0) 24%, rgba(255, 255, 255, 0.09) 44%, rgba(255, 255, 255, 0) 62%),
        radial-gradient(circle at 30% 38%, rgba(76, 175, 80, 0.12) 0%, rgba(76, 175, 80, 0) 40%);
    mix-blend-mode: screen;
    opacity: 0.45;
    transform: translate3d(-8%, 0, 0) rotate(-6deg);
    animation: heroLightSweep 8s ease-in-out infinite alternate;
    pointer-events: none;
}

.hero-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 38%, rgba(255, 255, 255, 0) 68%);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    animation: heroBackdropBlur 5s ease-in-out infinite alternate;
    pointer-events: none;
}

.hero-content::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 620px;
    height: 620px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(46, 125, 50, 0.16) 0%, rgba(255, 111, 0, 0.08) 30%, rgba(255, 255, 255, 0.03) 46%, rgba(255, 255, 255, 0) 72%);
    filter: blur(24px);
    opacity: 0.5;
    animation: heroGlowPulse 6s ease-in-out infinite alternate;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 960px;
    margin: 0 auto;
    padding-top: 5rem;
}

.hero-eyebrow {
    margin-bottom: 0.85rem;
    color: #D7E7DD;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-content h1 {
    font-size: 3.35rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.45);
}

.hero-subtitle {
    font-size: 1.28rem;
    max-width: 760px;
    margin: 0 auto 1rem;
    opacity: 0.96;
}

.hero-supplier-message {
    max-width: 700px;
    margin: 0 auto 2rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.hero-supplier-headline {
    margin-bottom: 0.35rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: #FFFFFF;
}

.hero-supplier-description {
    margin-bottom: 0;
    font-size: 0.94rem;
    opacity: 0.78;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 1.1rem;
}

.hero-trust-badges {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.42rem 0.8rem;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #EAF5EC;
    font-size: 0.83rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 0.85rem;
}

.hero-helper-text {
    margin-bottom: 0;
    font-size: 0.96rem;
    opacity: 0.84;
}

.hero-actions .hero-cta:first-child {
    padding: 16px 36px;
    font-size: 18px;
    min-height: 58px;
    min-width: 240px;
}

.hero-cta-secondary {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.hero-cta-secondary:hover {
    background-color: rgba(255, 255, 255, 0.12);
}

.stat-card {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(12px);
    padding: 1.25rem 1.4rem;
    border-radius: 12px;
    text-align: center;
    min-width: 170px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #FF6F00;
}

.stat-unit {
    font-size: 0.75em;
    color: #FFFFFF;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section:nth-child(even) {
    background-color: #F5F5F5;
}

.section-intro {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 1.75rem;
}

.section-intro h3 {
    color: #2E7D32;
    margin-bottom: 0.5rem;
}

.section-intro p {
    color: #607D8B;
    margin-bottom: 0;
}

.supplier-banner {
    margin-top: -10px;
    position: relative;
    z-index: 3;
}

.supplier-banner-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.5rem 1.75rem;
    background: linear-gradient(135deg, #173C25 0%, #2E7D32 62%, #3C9141 100%);
    border-radius: 20px;
    box-shadow: 0 18px 40px rgba(33, 33, 33, 0.16);
}

.supplier-banner-copy h2 {
    color: #FFFFFF;
    border: 0;
    padding: 0;
    margin-bottom: 0.4rem;
}

.supplier-banner-copy p {
    color: #E8F5E9;
    margin-bottom: 0;
}

.supplier-banner-eyebrow {
    margin-bottom: 0.45rem;
    color: #C8E6C9;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.cert-badges {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.cert-badge {
    background-color: #2E7D32;
    color: #FFFFFF;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
}

.map-placeholder {
    background-color: #607D8B;
    color: #FFFFFF;
    padding: 3rem;
    text-align: center;
    border-radius: 8px;
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
}

.service-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: center;
    padding: 1.5rem 1.25rem;
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: auto;
    grid-column: span 2;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 2.4rem;
    color: #607D8B;
    margin-bottom: 0.75rem;
}

.service-item h3 {
    color: #2E7D32;
    margin-bottom: 0.75rem;
    font-size: 1.9rem;
}

.service-item p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.services-grid > .service-item:nth-child(4),
.services-grid > .service-item:nth-child(5) {
    grid-column: span 3;
}

/* Needs Section */
.urgent-banner {
    background-color: #FF6F00;
    color: #FFFFFF;
    text-align: center;
    padding: 1rem;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    border-radius: 4px;
}

.urgent-banner i {
    margin-right: 0.5rem;
}

.needs-subtitle {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #607D8B;
}

/* Tables */
.needs-table, .materials-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

.needs-table th, .materials-table th {
    background-color: #2E7D32;
    color: #FFFFFF;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.needs-table td, .materials-table td {
    padding: 1rem;
    border-bottom: 1px solid #F5F5F5;
}

.needs-table tr:last-child td, .materials-table tr:last-child td {
    border-bottom: none;
}

.needs-table-container, .materials-table-container {
    overflow-x: auto;
    margin-bottom: 3rem;
}

.how-it-works,
.testimonials {
    margin: 0 auto 3rem;
}

.how-it-works-grid,
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.process-step,
.testimonial-card {
    background-color: #FFFFFF;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(33, 33, 33, 0.08);
    border: 1px solid #E8EEF0;
    transform: translateY(0) scale(1);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.process-step:hover,
.testimonial-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 18px 40px rgba(33, 33, 33, 0.14);
    border-color: rgba(46, 125, 50, 0.28);
}

.process-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-bottom: 0.9rem;
    border-radius: 50%;
    background-color: #FF6F00;
    color: #FFFFFF;
    font-weight: 700;
}

.process-step h4 {
    color: #2E7D32;
    margin-bottom: 0.5rem;
}

.process-step p,
.testimonial-card p {
    margin-bottom: 0;
    color: #455A64;
}

.testimonial-card {
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    right: 18px;
    font-size: 3rem;
    line-height: 1;
    color: rgba(46, 125, 50, 0.14);
    font-family: 'Georgia', serif;
}

.testimonial-card footer {
    margin-top: 1rem;
    color: #2E7D32;
    font-weight: 700;
}

/* Quote Form */
.quote-form {
    background-color: #FFFFFF;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto;
    scroll-margin-top: 120px;
}

#contact-form {
    scroll-margin-top: 120px;
}

.quote-form h3 {
    text-align: center;
    color: #2E7D32;
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #212121;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid #E0E0E0;
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2E7D32;
}

.form-helper {
    margin-top: 0.45rem;
    color: #607D8B;
    font-size: 0.88rem;
}

.honeypot {
    position: absolute;
    left: -9999px;
    top: -9999px;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

/* Alternative honeypot styling for better bot detection */
.honeypot input {
    position: absolute;
    left: -9999px;
    top: -9999px;
    visibility: hidden;
    opacity: 0;
}

/* Additional spam protection styling */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #2E7D32;
    box-shadow: 0 0 0 2px rgba(46, 125, 50, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* Materials Section */
.materials-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.status-accepted {
    background-color: #4CAF50;
    color: #FFFFFF;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-conditional {
    background-color: #FF9800;
    color: #FFFFFF;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Accordion */
.materials-accordion {
    margin-top: 2rem;
}

.accordion-item {
    margin-bottom: 1rem;
    border: 1px solid #E0E0E0;
    border-radius: 4px;
}

.accordion-header {
    width: 100%;
    padding: 1rem;
    background-color: #F5F5F5;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #2E7D32;
}

.accordion-header:hover {
    background-color: #E8F5E8;
}

.accordion-content {
    display: none;
    padding: 1rem;
    background-color: #FFFFFF;
}

.accordion-content ul {
    margin-left: 1.5rem;
}

.accordion-content li {
    margin-bottom: 0.5rem;
}

/* Contact Section */
.contact-subtitle {
    max-width: 720px;
    margin: -0.75rem 0 2rem;
    color: #546E7A;
    font-size: 1.05rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.contact-card {
    background: linear-gradient(180deg, #2E7D32 0%, #256B2A 100%);
    color: #FFFFFF;
    padding: 2rem;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(33, 33, 33, 0.16);
}

.contact-card h3 {
    margin-bottom: 1.25rem;
    color: #FFFFFF;
    font-size: 2rem;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.25rem;
}

.contact-item i {
    margin-right: 1rem;
    margin-top: 0.1rem;
    width: 22px;
    font-size: 1.2rem;
    color: #E8F5E9;
}

.contact-copy {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.contact-copy a,
.contact-copy span {
    color: #FFFFFF;
    text-decoration: none;
}

.contact-copy a:hover {
    color: #FFE0B2;
}

.contact-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.75;
}

.contact-highlight {
    display: inline-flex;
    width: fit-content;
    margin-top: 0.3rem;
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.14);
    color: #FFF3E0;
    font-weight: 700;
}

.contact-actions {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.contact-actions .hero-cta {
    min-width: 200px;
    min-height: 54px;
    font-size: 1.02rem;
    font-weight: 700;
}

.contact-actions .hero-cta:first-child {
    box-shadow: 0 12px 28px rgba(255, 111, 0, 0.28);
}

.contact-social-section {
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
}

.contact-social-section h4 {
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    flex-shrink: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-shrink: 0;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background-color: #FF6F00;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 111, 0, 0.3);
    border-color: #FF6F00;
}

.map-container {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(33, 33, 33, 0.12);
    background-color: #FFFFFF;
}

.map-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #E5E7EB;
}

.map-header h3 {
    margin-bottom: 0.2rem;
    color: #2E7D32;
}

.map-header p {
    margin-bottom: 0;
    color: #607D8B;
    line-height: 1.5;
}

.map-link {
    color: #FF6F00;
    text-decoration: none;
    font-weight: 700;
    white-space: nowrap;
}

.map-link:hover {
    color: #E65100;
}

/* Footer */
.footer {
    background-color: #212121;
    color: #FFFFFF;
    padding: 3.5rem 0 1rem;
}

.footer-content {
    text-align: center;
}

.footer-slogan {
    margin-bottom: 0.75rem;
}

.footer-slogan p {
    font-size: 1.6rem;
    font-style: normal;
}

.footer-trust-description {
    max-width: 760px;
    margin: 0 auto 0.75rem;
    color: #CFD8DC;
}

.footer-certs-section {
    margin-top: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    padding-top: 0;
}

.footer-certs-label {
    margin-bottom: 1.5rem;
    color: #E8F5E9;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-certs {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cert-link {
    color: #FFFFFF;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    min-width: 150px;
    padding: 1rem 0.9rem;
}

.cert-link:hover {
    color: #FF6F00;
}

.cert-link img {
    width: 100px;
    height: 50px;
    object-fit: contain;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    align-items: start;
    padding: 2rem 0;
    border-top: 1px solid rgba(96, 125, 139, 0.4);
    text-align: left;
}

.footer-brand h3 {
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    margin-bottom: 0;
    color: #CFD8DC;
}

.footer-main .footer-social {
    margin: 0;
    max-width: none;
    justify-content: flex-start;
}

.footer-main .footer-social-links {
    justify-content: flex-start;
}

.footer-nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.8rem;
}

.footer-nav a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
}

.footer-nav a:hover {
    color: #FF6F00;
}

.footer-contact h4 {
    color: #FFFFFF;
    margin-bottom: 0.65rem;
    font-size: 1.1rem;
}

.footer-contact p {
    margin-bottom: 0.8rem;
    color: #CFD8DC;
}

.footer-contact a {
    display: block;
    color: #FFFFFF;
    text-decoration: none;
    margin-bottom: 0.5rem;
}

.footer-contact a:hover {
    color: #FF6F00;
}

.footer-bottom {
    border-top: 1px solid #607D8B;
    padding-top: 1rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottom a {
    color: #607D8B;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #FF6F00;
}

.footer-legal-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: #FFFFFF;
    margin: 15% auto;
    padding: 0;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #607D8B;
}

.close-modal:hover {
    color: #212121;
}

.modal-body {
    padding: 3rem 2rem;
    text-align: center;
}

.modal-body i {
    font-size: 4rem;
    color: #4CAF50;
    margin-bottom: 1rem;
}

.modal-body h3 {
    color: #2E7D32;
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        position: relative;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #2E7D32;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        padding: 0.75rem 0;
    }

    .logo {
        font-size: 1.3rem;
    }

    .hero-content h1 {
        font-size: 2.35rem;
    }

    .hero {
        padding-top: 6.5rem;
        padding-bottom: 6rem;
    }

    .hero-content {
        padding-top: 3.75rem;
    }

    .hero-subtitle {
        font-size: 1.08rem;
        margin-bottom: 0.9rem;
    }

    .hero-eyebrow {
        font-size: 0.78rem;
        letter-spacing: 0.11em;
    }

    .hero-supplier-message {
        padding: 0.9rem 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat-card {
        min-width: 0;
        width: min(100%, 260px);
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-trust-badges {
        gap: 0.6rem;
        margin-bottom: 1.5rem;
    }

    .hero-badge {
        font-size: 0.76rem;
    }

    .hero-helper-text {
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }

    .about-content,
    .materials-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .supplier-banner-card,
    .how-it-works-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .supplier-banner-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-certs {
        gap: 1rem;
    }

    .cert-link img {
        width: 80px;
        height: 40px;
    }

    .social-links {
        gap: 0.75rem;
    }

    .social-link {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .contact-social-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .contact-actions {
        flex-direction: column;
    }

    .contact-actions .hero-cta {
        width: 100%;
    }

    .map-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-social-section h4 {
        font-size: 1rem;
    }

    .footer-social-links {
        gap: 0.75rem;
    }

    .footer-social-links a {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .footer-social {
        margin: 1.5rem auto;
        flex-direction: column;
        gap: 1rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-contact {
        order: 4;
    }

    .footer-social h4 {
        font-size: 1rem;
        text-align: left;
    }

    .footer-social-links {
        justify-content: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Desktop footer social layout */
.footer-social {
    margin: 2rem auto;
    max-width: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.footer-social h4 {
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    flex-shrink: 0;
}

.footer-social-links {
    display: flex;
    justify-content: flex-start;
    gap: 1.5rem;
    flex-shrink: 0;
}

.footer-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-social-links a:hover {
    background-color: #FF6F00;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 111, 0, 0.3);
    border-color: #FF6F00;
}
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 1.95rem;
    }

    .hero {
        padding-top: 6rem;
        padding-bottom: 5rem;
    }

    .hero-content {
        padding-top: 3.25rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-eyebrow {
        font-size: 0.72rem;
    }

    .contact-subtitle {
        font-size: 0.98rem;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .supplier-banner-card {
        padding: 1.25rem;
        border-radius: 16px;
    }

    .contact-card h3 {
        font-size: 1.65rem;
    }

    .contact-actions .hero-cta {
        min-width: 0;
        font-size: 0.98rem;
    }

    .footer-slogan p {
        font-size: 1.25rem;
    }

    .hero-supplier-headline {
        font-size: 0.96rem;
    }

    .hero-supplier-description,
    .hero-helper-text {
        font-size: 0.9rem;
    }

    .stat-card {
        padding: 1rem;
    }

    .needs-table-container,
    .materials-table-container {
        font-size: 0.9rem;
    }

    .quote-form {
        padding: 2rem 1rem;
    }

    .modal-content {
        margin: 20% auto;
        width: 95%;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* Tablet breakpoint - 2 columns */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .service-item,
    .services-grid > .service-item:nth-child(4),
    .services-grid > .service-item:nth-child(5) {
        grid-column: auto;
    }
}

/* Mobile breakpoint - 1 column */
@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .service-item,
    .services-grid > .service-item:nth-child(4),
    .services-grid > .service-item:nth-child(5) {
        grid-column: auto;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroDrift {
    from {
        transform: scale(1.04) translate3d(-1.25%, -0.75%, 0);
    }

    to {
        transform: scale(1.1) translate3d(1.5%, 1%, 0);
    }
}

@keyframes heroLightSweep {
    from {
        transform: translate3d(-10%, -1%, 0) rotate(-6deg);
        opacity: 0.18;
    }

    50% {
        opacity: 0.42;
    }

    to {
        transform: translate3d(8%, 1%, 0) rotate(-3deg);
        opacity: 0.3;
    }
}

@keyframes heroBackdropBlur {
    from {
        backdrop-filter: blur(1px);
        -webkit-backdrop-filter: blur(1px);
        opacity: 0.28;
    }

    to {
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        opacity: 0.62;
    }
}

@keyframes heroGlowPulse {
    from {
        transform: translate(-50%, -50%) scale(0.94);
        opacity: 0.3;
        filter: blur(16px);
    }

    to {
        transform: translate(-50%, -50%) scale(1.08);
        opacity: 0.56;
        filter: blur(30px);
    }
}

.section {
    animation: fadeInUp 0.6s ease-out;
}

/* Print Styles */
@media print {
    .sticky-header,
    .modal,
    .hero-cta,
    .submit-btn {
        display: none !important;
    }

    .hero {
        height: auto;
        background: none !important;
        color: #212121 !important;
    }

    .hero-overlay {
        display: none;
    }

    body {
        font-size: 12px;
    }
}
