/* --- Design System & CSS Variables --- */
:root {
    --primary: hsl(154, 61%, 14%);       /* Deep Forest Sage Green */
    --primary-rgb: 14, 58, 36;
    --primary-light: hsl(154, 45%, 22%);
    --accent: #d97706;                    /* Golden Peda Amber */
    --accent-hover: #b45309;
    --bg-cream: hsl(45, 25%, 97%);        /* Soft Rich Milk Cream */
    --bg-white: #ffffff;
    --text-dark: hsl(210, 24%, 12%);      /* Dark Charcoal */
    --text-muted: hsl(210, 14%, 40%);
    --border-color: rgba(14, 58, 36, 0.1);
    
    /* Layout constants */
    --header-height: 80px;
    --container-width: 1200px;
    --card-shadow: 0 15px 35px -10px rgba(14, 58, 36, 0.08);
    --card-shadow-hover: 0 20px 45px -5px rgba(14, 58, 36, 0.15);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* --- Navigation Header --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(250, 249, 245, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    background-color: rgba(14, 58, 36, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.main-header.scrolled .logo,
.main-header.scrolled .logo-accent {
    color: var(--bg-white);
}

.main-header.scrolled .nav-link {
    color: rgba(255, 255, 255, 0.8);
}

.main-header.scrolled .nav-link:hover,
.main-header.scrolled .nav-link.active {
    color: var(--accent);
}

.main-header.scrolled .call-btn {
    color: var(--bg-white);
    border-color: rgba(255, 255, 255, 0.2);
}

.main-header.scrolled .call-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.main-header.scrolled .mobile-toggle {
    color: var(--bg-white);
}

.header-container {
    height: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.logo-badge {
    font-size: 0.65rem;
    background-color: var(--accent);
    color: var(--bg-white);
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-left: 0.25rem;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

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

.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-link:hover,
.nav-link.active {
    color: var(--accent);
}

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

.call-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary);
    padding: 0.6rem 1.2rem;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    height: 42px;
}

.call-btn:hover {
    background-color: rgba(14, 58, 36, 0.05);
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(217, 119, 6, 0.2);
    height: 42px;
}

.primary-cta-btn {
    background-color: var(--accent);
    color: var(--bg-white);
}

.primary-cta-btn:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(217, 119, 6, 0.3);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
}

/* --- Mobile Drawer Menu --- */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100%;
    background-color: var(--bg-cream);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    z-index: 1100;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-drawer.open {
    right: 0;
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.drawer-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
}

.drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: auto;
}

.drawer-link {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(14, 58, 36, 0.05);
}

.drawer-footer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.drawer-action-btn {
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.phone-action {
    border: 1px solid var(--primary);
    color: var(--primary);
}

.quote-action {
    background-color: var(--accent);
    color: var(--bg-white);
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    padding-top: calc(var(--header-height) + 4rem);
    padding-bottom: 8rem;
    min-height: 85vh;
    display: flex;
    align-items: center;
    color: var(--bg-white);
    background-color: var(--primary);
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

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

.hero-content {
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(5px);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-badge i {
    font-size: 0.8rem;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--bg-white);
    line-height: 1.15;
    margin-bottom: 1.2rem;
}

.highlight-text {
    display: block;
    font-size: 2rem;
    font-weight: 400;
    color: var(--accent);
    margin-top: 0.5rem;
}

.hero-subtitle-hn {
    font-size: 1.6rem;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--accent);
    padding-left: 1rem;
}

.hero-description {
    font-size: 1.05rem;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
}

.hero-btn {
    padding: 1rem 2rem;
    font-weight: 700;
    border-radius: 50px;
    text-align: center;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.primary-hero-btn {
    background-color: var(--accent);
    color: var(--bg-white);
}

.primary-hero-btn:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(217, 119, 6, 0.4);
}

.secondary-hero-btn {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--bg-white);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(5px);
}

.secondary-hero-btn:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.4);
}

/* --- Trust Banner --- */
.trust-banner {
    position: relative;
    margin-top: -4rem;
    z-index: 10;
    padding-bottom: 4rem;
}

.trust-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.trust-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border: 1px solid rgba(14, 58, 36, 0.03);
    transition: var(--transition-smooth);
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
    border-color: rgba(14, 58, 36, 0.1);
}

.trust-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background-color: rgba(14, 58, 36, 0.06);
    color: var(--primary);
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-card:hover .trust-icon-box {
    background-color: var(--primary);
    color: var(--bg-white);
    transform: rotate(5deg);
    transition: var(--transition-smooth);
}

.trust-info h3 {
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
}

.trust-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* --- Section Styling Rules --- */
section {
    padding: 6rem 0;
}

.section-badge {
    display: inline-block;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 650px;
    margin-bottom: 2.5rem;
}

.section-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 4rem;
}

/* --- About Section --- */
.about-section {
    background-color: var(--bg-white);
}

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

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.about-highlight-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.highlight-bullet {
    width: 28px;
    height: 28px;
    background-color: rgba(14, 58, 36, 0.08);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.about-highlight-item strong {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: var(--primary);
    display: block;
    margin-bottom: 0.25rem;
}

.about-highlight-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2.5rem;
}

.badge-item {
    background-color: var(--bg-cream);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(14, 58, 36, 0.05);
}

.badge-item i {
    color: var(--accent);
}

.about-visual {
    position: relative;
}

.visual-stack {
    position: relative;
    padding-bottom: 2rem;
}

.main-visual-img {
    height: 480px;
    border-radius: 24px;
    background-size: cover;
    background-position: center;
    box-shadow: var(--card-shadow);
}

.overlap-card {
    position: absolute;
    bottom: -1rem;
    left: -2rem;
    background-color: var(--primary);
    color: var(--bg-white);
    padding: 2rem;
    border-radius: 20px;
    max-width: 320px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.overlap-card h4 {
    color: var(--accent);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.overlap-card p {
    font-size: 0.9rem;
    color: #cbd5e1;
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.overlap-sub {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--bg-cream);
}

/* --- Product Showcase --- */
.product-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.product-image-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    background-color: var(--bg-white);
    padding: 1rem;
}

.product-img {
    border-radius: 16px;
    width: 100%;
    transition: transform 0.8s ease;
}

.product-image-container:hover .product-img {
    transform: scale(1.05);
}

.product-tag {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background-color: var(--accent);
    color: var(--bg-white);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.product-details h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.product-intro-text {
    font-size: 1.2rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 2rem;
}

.product-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.product-features-list li {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.product-features-list li i {
    font-size: 1.35rem;
    color: var(--primary);
    margin-top: 0.2rem;
}

.product-features-list strong {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: var(--primary);
    display: block;
    margin-bottom: 0.25rem;
}

.product-features-list p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.product-action-box {
    background-color: rgba(14, 58, 36, 0.04);
    border: 1px dashed var(--border-color);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.price-notice {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price-notice i {
    color: var(--accent);
}

.product-cta {
    background-color: var(--primary);
    color: var(--bg-white);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 10px rgba(14, 58, 36, 0.15);
}

.product-cta:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(14, 58, 36, 0.25);
}

/* --- Who We Supply --- */
.targets-section {
    background-color: var(--bg-white);
}

.targets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.target-card {
    background-color: var(--bg-cream);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(14, 58, 36, 0.03);
    transition: var(--transition-smooth);
}

.target-card:hover {
    background-color: var(--bg-white);
    border-color: rgba(14, 58, 36, 0.1);
    transform: translateY(-8px);
    box-shadow: var(--card-shadow-hover);
}

.target-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--bg-white);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.target-card:hover .target-icon {
    background-color: var(--accent);
    transform: scale(1.1);
}

.target-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

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

/* --- B2B Supply Section --- */
.b2b-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
    align-items: center;
}

.b2b-visual {
    background-color: var(--primary);
    color: var(--bg-white);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.b2b-visual::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(217, 119, 6, 0.15) 0%, rgba(0,0,0,0) 70%);
    z-index: 1;
}

.visual-badge {
    position: relative;
    z-index: 2;
    display: inline-block;
    background-color: var(--accent);
    color: var(--bg-white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    margin-bottom: 2rem;
}

.b2b-stats {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.stat-lbl {
    font-size: 0.85rem;
    color: #cbd5e1;
    margin-top: 0.25rem;
}

.b2b-visual h3 {
    position: relative;
    z-index: 2;
    color: var(--bg-white);
    font-size: 1.6rem;
    line-height: 1.4;
    font-weight: 500;
}

.b2b-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.b2b-feature-card {
    background-color: var(--bg-white);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(14, 58, 36, 0.02);
    transition: var(--transition-smooth);
}

.b2b-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover);
    border-color: rgba(14, 58, 36, 0.08);
}

.b2b-feature-card i {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
    display: block;
}

.b2b-feature-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}

.b2b-feature-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.4;
}

/* --- Delivery Roadmap --- */
.delivery-section {
    background-color: var(--bg-white);
}

.timeline-container {
    position: relative;
    max-width: 900px;
    margin: 4rem auto 0;
    padding-left: 3rem;
}

.timeline-line {
    position: absolute;
    left: 14px;
    top: 0;
    width: 4px;
    height: 100%;
    background-color: rgba(14, 58, 36, 0.08);
    border-radius: 10px;
}

.timeline-step {
    position: relative;
    margin-bottom: 3.5rem;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.step-marker {
    position: absolute;
    left: -3rem;
    top: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--bg-white);
    border: 3px solid rgba(14, 58, 36, 0.15);
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: var(--transition-smooth);
}

.timeline-step.active .step-marker {
    border-color: var(--accent);
    background-color: var(--accent);
    color: var(--bg-white);
    box-shadow: 0 0 0 5px rgba(217, 119, 6, 0.2);
}

.step-content {
    background-color: var(--bg-cream);
    padding: 1.75rem 2rem;
    border-radius: 16px;
    border: 1px solid rgba(14, 58, 36, 0.03);
    transition: var(--transition-smooth);
}

.timeline-step.active .step-content {
    background-color: var(--bg-white);
    border-color: var(--border-color);
    box-shadow: var(--card-shadow);
}

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.timeline-step.active .step-content h3 {
    color: var(--accent);
}

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

/* --- Callout Banner --- */
.partner-callout {
    background-color: var(--primary);
    color: var(--bg-white);
    text-align: center;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.callout-container {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.partner-callout h2 {
    font-size: 2.25rem;
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.partner-callout p {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 1.5rem;
}

.partner-callout h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 2.5rem;
}

.callout-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.callout-btn {
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.tel-btn {
    background-color: var(--bg-white);
    color: var(--primary);
}

.tel-btn:hover {
    background-color: var(--bg-cream);
    transform: translateY(-2px);
}

.wa-btn {
    background-color: #25d366;
    color: var(--bg-white);
}

.wa-btn:hover {
    background-color: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

/* --- Interactive Inquiry Form Section --- */
.quote-section {
    background-color: var(--bg-cream);
}

.quote-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: flex-start;
}

.contact-details-box {
    margin: 2.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-detail-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.contact-detail-item i {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background-color: rgba(14, 58, 36, 0.06);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-detail-item h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.contact-detail-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.trust-notice {
    display: flex;
    gap: 1rem;
    background-color: rgba(217, 119, 6, 0.08);
    border: 1px solid rgba(217, 119, 6, 0.2);
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    color: hsl(38, 90%, 25%);
    font-size: 0.9rem;
    line-height: 1.5;
}

.trust-notice i {
    font-size: 1.1rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.quote-form-wrapper {
    background-color: var(--bg-white);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(14, 58, 36, 0.03);
}

.b2b-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    width: 100%;
}

.form-row.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
}

.form-group label .req {
    color: #e11d48;
}

.form-group input,
.form-group select {
    padding: 0.85rem 1.2rem;
    border-radius: 10px;
    border: 1px solid rgba(14, 58, 36, 0.15);
    background-color: var(--bg-cream);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: var(--transition-smooth);
    width: 100%;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(217, 119, 6, 0.1);
}

.submit-btn {
    background-color: #25d366;
    color: var(--bg-white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
    margin-top: 1rem;
}

.submit-btn:hover {
    background-color: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.form-footer-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
}

/* --- Vision Summary Section --- */
.vision-section {
    background-color: var(--primary);
    color: var(--bg-white);
    text-align: center;
    padding: 6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.vision-container {
    max-width: 750px;
}

.vision-lbl {
    color: var(--accent);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-block;
    margin-bottom: 1rem;
}

.vision-section h2 {
    font-size: 2.5rem;
    color: var(--bg-white);
    margin-bottom: 1.5rem;
}

.vision-section p {
    font-size: 1.15rem;
    color: #cbd5e1;
    line-height: 1.7;
}

/* --- Main Footer --- */
.site-footer {
    background-color: #061f13;
    color: #94a3b8;
    padding: 6rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--bg-white);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.footer-about {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.fssai-badge {
    background-color: rgba(255, 255, 255, 0.05);
    color: #e2e8f0;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.8rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.fssai-badge i {
    color: var(--accent);
}

.footer-col h4 {
    color: var(--bg-white);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

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

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

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

.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-contact-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.footer-contact-list li i {
    font-size: 1.1rem;
    color: var(--accent);
    margin-top: 0.25rem;
}

.footer-contact-list a:hover {
    color: var(--bg-white);
}

.footer-bottom {
    background-color: #03140c;
    padding: 1.5rem 0;
    font-size: 0.85rem;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
    color: #64748b;
}

/* --- Scroll Animation Reveals --- */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive Adaptability --- */
@media (max-width: 1200px) {
    .call-btn span {
        display: none;
    }
    .call-btn {
        width: 42px;
        height: 42px;
        padding: 0;
        justify-content: center;
    }
    .nav-menu {
        gap: 1.25rem;
    }
}

@media (max-width: 1024px) {
    .about-grid, .product-grid, .quote-container, .b2b-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-visual {
        order: -1;
    }
    
    .timeline-container {
        padding-left: 2rem;
    }
    
    /* Show mobile menu toggle, hide full nav menu and header buttons */
    .nav-menu, .header-ctas {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .highlight-text {
        font-size: 1.6rem;
    }
    
    .overlap-card {
        position: relative;
        left: 0;
        bottom: 0;
        margin-top: 1.5rem;
        max-width: 100%;
    }
    
    .form-row.split {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle-hn {
        font-size: 1.3rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
        flex-wrap: wrap;
    }
}
