
:root {
    /* Color Palette */
    --primary: #1b3a1a;
    --primary-light: #2d5a2c;
    --primary-dark: #122612;
    --accent: #c49a45;
    --accent-hover: #b08432;
    --sage: #4e7a57;
    --sage-light: #e8eee9;
    --bg-light: #fbfbfa;
    --bg-white: #ffffff;
    --text-dark: #142015;
    --text-muted: #627264;
    --border-light: rgba(78, 122, 87, 0.12);
    --border-glass: rgba(255, 255, 255, 0.2);
    --shadow-sm: 0 2px 8px rgba(27, 58, 26, 0.05);
    --shadow-md: 0 10px 30px rgba(27, 58, 26, 0.08);
    --shadow-lg: 0 20px 50px rgba(27, 58, 26, 0.15);
    
    /* Layout Variables */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
}

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

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.25;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 7.5rem 0;
}

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

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3.5rem; }

/* Grid Utilities */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    align-items: center;
}

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

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

/* Section Headers */
.section-header {
    max-width: 750px;
    margin: 0 auto 5rem auto;
    text-align: center;
}

.section-tag {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.25rem 1rem;
    background: var(--sage-light);
    border-radius: 50px;
}

.section-header h2 {
    font-size: 2.75rem;
    margin-bottom: 1.25rem;
    position: relative;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--text-muted);
}

/* Custom Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2.25rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--bg-light);
    box-shadow: 0 8px 24px rgba(27, 58, 26, 0.25);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(27, 58, 26, 0.35);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--bg-light);
    transform: translateY(-3px);
}

.btn-accent {
    background-color: var(--accent);
    color: var(--primary-dark);
    box-shadow: 0 8px 24px rgba(196, 154, 69, 0.25);
}

.btn-accent:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(196, 154, 69, 0.35);
}

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

/* Floating Badges */
.badge-eco {
    background: rgba(78, 122, 87, 0.1);
    color: var(--primary);
    border: 1px solid rgba(78, 122, 87, 0.2);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Header & Navigation */
header.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(251, 251, 250, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition-smooth);
}

header.site-header.scrolled {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    padding: 0.5rem 0;
}

.nav-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--primary);
}

.brand-logo span {
    color: var(--accent);
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1rem;
    color: var(--text-dark);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-light);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-action {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Mobile Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--primary);
    border-radius: 4px;
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
    min-height: 95vh;
    padding-top: 120px;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 80% 20%, rgba(196, 154, 69, 0.08) 0%, rgba(251, 251, 250, 1) 70%), 
                linear-gradient(135deg, rgba(27, 58, 26, 0.03) 0%, rgba(251, 251, 250, 1) 100%);
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(78, 122, 87, 0.05) 0%, transparent 70%);
    top: -10%;
    right: -10%;
    z-index: 0;
    pointer-events: none;
}

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

.hero-tagline {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: 4.25rem;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.hero h1 span {
    color: var(--sage);
    font-weight: 800;
    position: relative;
}

.hero-descr {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-actions {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 3.5rem;
}

.hero-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    border-top: 1px solid var(--border-light);
    padding-top: 2rem;
    max-width: 500px;
}

.hero-stat-item h4 {
    font-size: 2.25rem;
    color: var(--primary);
}

.hero-stat-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.hero-visual {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-blob-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    max-width: 450px;
    width: 100%;
}

.hero-leaf-graphic {
    font-size: 8rem;
    text-align: center;
    margin-bottom: 1.5rem;
    animation: leafFloat 5s ease-in-out infinite;
}

@keyframes leafFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

.hero-badge-floating {
    position: absolute;
    background: var(--primary);
    color: var(--bg-light);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    bottom: -20px;
    right: -20px;
    font-weight: 700;
    font-family: var(--font-heading);
    border: 2px solid var(--accent);
}

/* Feature & Credibility Cards */
.feature-box {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 3rem 2.25rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--sage);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(78, 122, 87, 0.25);
}

.feature-box:hover::before {
    transform: scaleX(1);
}

.feature-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-sm);
    background-color: var(--sage-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 2rem;
}

.feature-box h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.feature-box p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Trust Badges and Certifications */
.cert-scroller {
    background: var(--primary);
    padding: 2.5rem 0;
    color: var(--bg-light);
    border-top: 3px solid var(--accent);
    border-bottom: 3px solid var(--accent);
}

.cert-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0.85;
    transition: var(--transition-smooth);
}

.cert-item:hover {
    opacity: 1;
}

.cert-icon {
    font-size: 2.5rem;
}

.cert-info h5 {
    color: var(--accent);
    font-size: 1.1rem;
    margin: 0;
}

.cert-info p {
    font-size: 0.8rem;
    margin: 0;
    opacity: 0.7;
}

/* Product Catalog */
.product-filter-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 4rem;
}

.filter-btn {
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--primary);
    color: var(--bg-white);
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

/* Product Catalog Card with Flip animation option */
.prod-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.prod-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(78, 122, 87, 0.25);
}

.prod-img-box {
    position: relative;
    height: 280px;
    background: linear-gradient(135deg, #f0f4f1 0%, #e2e9e3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.prod-placeholder-icon {
    font-size: 6rem;
    opacity: 0.8;
}

.prod-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--accent);
    color: var(--primary-dark);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.35rem 0.85rem;
    border-radius: 4px;
}

.prod-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.prod-body h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.prod-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.prod-meta {
    border-top: 1px solid var(--border-light);
    padding-top: 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.prod-meta-item span {
    display: block;
}

.prod-meta-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
}

.prod-meta-val {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
}

/* Process Timeline (About Page) */
.process-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 3.5rem;
    background: var(--sage-light);
    padding: 0.5rem;
    border-radius: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.proc-tab-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: none;
    background: transparent;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.proc-tab-btn.active {
    background: var(--primary);
    color: var(--bg-white);
    box-shadow: var(--shadow-sm);
}

.process-content-box {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 4rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    display: none;
}

.process-content-box.active {
    display: block;
    animation: fadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.proc-flow-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.proc-visual-container {
    height: 350px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, #e4ede6 0%, #cbd6ce 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 7rem;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.proc-step-num {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    border: 2px solid var(--bg-white);
}

.proc-details h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.proc-details p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.proc-highlights {
    list-style: none;
}

.proc-highlights li {
    padding: 0.5rem 0 0.5rem 2rem;
    position: relative;
    font-weight: 600;
    color: var(--text-dark);
}

.proc-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 800;
    font-size: 1.2rem;
}

/* RFQ Inquiry & Contact Form Styles */
.contact-container {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    overflow: hidden;
}

.contact-sidebar {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--bg-light);
    padding: 4rem 3rem;
    position: relative;
}

.contact-sidebar::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    bottom: -50px;
    right: -50px;
}

.contact-sidebar h3 {
    color: var(--bg-white);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.sidebar-descr {
    opacity: 0.8;
    margin-bottom: 3rem;
}

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

.contact-info-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.contact-info-icon {
    font-size: 1.5rem;
    color: var(--accent);
    background: rgba(255,255,255,0.05);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.1);
}

.contact-info-text h5 {
    color: var(--bg-white);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-info-text p {
    font-size: 0.95rem;
    opacity: 0.85;
}

.contact-form-wrap {
    padding: 4rem 3.5rem;
}

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

.form-group {
    margin-bottom: 1.5rem;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    padding: 0.85rem 1.25rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light);
    background-color: var(--bg-light);
    color: var(--text-dark);
    transition: var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    border-color: var(--sage);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(78, 122, 87, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Shipping and Container Load Calculator */
.calc-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    padding: 3rem;
}

.calc-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
}

.calc-result-box {
    background: var(--sage-light);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.calc-result-header {
    text-align: center;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.calc-result-header h4 {
    font-size: 1.25rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.calc-cbm-display {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--primary-dark);
    margin: 0.5rem 0;
}

.calc-cbm-display span {
    font-size: 1.5rem;
    font-weight: 500;
}

.calc-status-bar {
    background: rgba(255,255,255,0.7);
    border-radius: 50px;
    height: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
    border: 1px solid var(--border-light);
}

.calc-status-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent) 0%, var(--primary) 100%);
    border-radius: 50px;
    transition: width 0.5s ease-out;
}

.calc-load-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.calc-stat-row {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    border-bottom: 1px dotted var(--border-light);
    padding-bottom: 0.5rem;
}

.calc-stat-row span:last-child {
    color: var(--primary);
}

/* Blog Hub Layout */
.blog-intro-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--bg-light);
    padding: 4rem;
    border-radius: var(--radius-lg);
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.blog-intro-card h3 {
    color: var(--bg-white);
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.blog-intro-card p {
    max-width: 700px;
    opacity: 0.85;
}

.blog-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(78, 122, 87, 0.25);
}

.blog-img-box {
    height: 220px;
    background: linear-gradient(135deg, var(--sage-light) 0%, #cbd6ce 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    position: relative;
}

.blog-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: var(--primary);
    color: var(--bg-light);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
}

.blog-body {
    padding: 2.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-date {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.blog-body h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-body h3 a:hover {
    color: var(--primary-light);
}

.blog-excerpt {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.blog-read-more {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-read-more:hover {
    color: var(--primary);
    transform: translateX(5px);
}

/* Detailed Single Blog Post View */
.blog-post-wrapper {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    padding: 4.5rem 5rem;
    margin-bottom: 4rem;
}

.blog-post-header {
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 2rem;
    margin-bottom: 2.5rem;
}

.blog-post-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 1rem;
}

.blog-post-header h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.blog-post-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.blog-post-content p {
    margin-bottom: 1.75rem;
}

.blog-post-content h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1.25rem;
    color: var(--primary);
}

.blog-post-content h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--sage);
}

.blog-post-content ul, .blog-post-content ol {
    margin-bottom: 1.75rem;
    padding-left: 2rem;
}

.blog-post-content li {
    margin-bottom: 0.5rem;
}

.blog-post-content blockquote {
    background: var(--sage-light);
    border-left: 4px solid var(--primary);
    padding: 1.5rem 2rem;
    font-style: italic;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 2.5rem 0;
}

.blog-post-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2.5rem 0;
}

.blog-post-content th, .blog-post-content td {
    padding: 1rem;
    border: 1px solid var(--border-light);
    text-align: left;
}

.blog-post-content th {
    background-color: var(--sage-light);
    font-family: var(--font-heading);
    font-weight: 700;
}

/* Reviews & Testimonials Carousel */
.testimonials-row {
    background: var(--sage-light);
}

.testimonial-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 3rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    position: relative;
}

.testimonial-quote {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.author-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--bg-light);
    font-weight: 800;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-name h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.author-name p {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

.author-rating {
    margin-left: auto;
    color: var(--accent);
    font-size: 1rem;
}

/* B2B Table Specifications (Products & Export Page) */
.specs-table-wrap {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    overflow-x: auto;
    margin-bottom: 4rem;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.specs-table th, .specs-table td {
    padding: 1.25rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.specs-table th {
    background-color: var(--primary);
    color: var(--bg-light);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.specs-table tr:last-child td {
    border-bottom: none;
}

.specs-table tr:nth-child(even) {
    background-color: var(--bg-light);
}

/* Call to Action Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 5rem 4rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.cta-banner::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196,154,69,0.08) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
}

.cta-banner-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

.cta-banner-content h2 {
    color: var(--bg-white);
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
}

.cta-banner-content p {
    font-size: 1.2rem;
    opacity: 0.85;
    margin-bottom: 2.5rem;
}

/* Footer Styles */
.site-footer {
    background-color: var(--primary-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 6rem 0 2rem 0;
    border-top: 5px solid var(--accent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    color: var(--bg-white);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--bg-white);
    margin-bottom: 1.5rem;
}

.footer-logo span {
    color: var(--accent);
}

.footer-about-text {
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

.footer-contact-icon {
    color: var(--accent);
    font-size: 1.2rem;
}

.footer-seo-box {
    background-color: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-seo-box h5 {
    color: var(--bg-white);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.footer-seo-box p {
    font-size: 0.8rem;
    line-height: 1.7;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a:hover {
    color: var(--accent);
}

/* WhatsApp Floating Button */
.whatsapp-floating-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
    z-index: 999;
    color: var(--bg-white);
    font-size: 2rem;
    transition: var(--transition-smooth);
    animation: whatsappPulse 2.5s infinite;
}

.whatsapp-floating-btn:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35); }
    50% { box-shadow: 0 8px 36px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.15); }
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    html {
        font-size: 15px;
    }
    
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .calc-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .section-padding {
        padding: 5rem 0;
    }
    
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .hero {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 5rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero-descr {
        max-width: 100%;
    }
    
    .hero-visual {
        margin-top: 3rem;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--bg-white);
        flex-direction: column;
        align-items: center;
        padding-top: 3rem;
        gap: 2.5rem;
        transition: var(--transition-smooth);
        border-top: 1px solid var(--border-light);
        z-index: 1050;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-action {
        display: none;
    }
    
    .proc-flow-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .process-content-box {
        padding: 2rem;
    }
    
    .proc-visual-container {
        height: 250px;
        font-size: 5rem;
    }
    
    .contact-form-wrap {
        padding: 3rem 2rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .blog-post-wrapper {
        padding: 3rem 2rem;
    }
    
    .blog-post-header h1 {
        font-size: 2.25rem;
    }
}

/* RFQ Submission Modal Styles */
.rfq-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}
.rfq-modal.active {
    display: flex;
}
.rfq-modal-content {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    max-width: 500px;
    width: 90%;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--accent);
    position: relative;
    text-align: center;
    animation: fadeIn 0.4s ease;
}
