:root {
    --emerald: #094F39;
    --cream: #FDFBF7;
    --onyx: #222222;
    --white: #ffffff;
    --gray-light: #e0e0e0;
}
* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: var(--cream); color: var(--onyx); line-height: 1.6; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* Navbar */
.navbar { background-color: var(--cream); border-bottom: 1px solid var(--gray-light); position: sticky; top: 0; z-index: 1000; }
.nav-container { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; padding: 10px 20px; flex-wrap: wrap; }
.nav-logo img { height: 60px; }
.nav-menu { display: flex; gap: 20px; }
.nav-menu a { text-decoration: none; color: var(--onyx); font-weight: 600; font-size: 0.9rem; }
.nav-menu a:hover { color: var(--emerald); }
.nav-location { font-size: 0.8rem; color: var(--emerald); font-weight: 600; }

/* Hero */
.hero-section { background-image: url('images/Heroic section.jpg'); background-size: cover; background-position: center; height: 80vh; display: flex; align-items: center; justify-content: center; text-align: center; }
.hero-overlay { background: rgba(0,0,0,0.4); width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.hero-content { color: var(--white); }
.static-text { font-size: 3rem; font-weight: 300; letter-spacing: 2px; margin-bottom: 10px; }
.animated-slider { height: 80px; overflow: hidden; display: flex; justify-content: center; margin-bottom: 30px; }
.slide-track { display: flex; flex-direction: column; animation: slide 8s infinite alternate; }
.slide-track span { font-size: 4rem; font-weight: 800; text-transform: uppercase; height: 80px; line-height: 80px; color: var(--emerald); -webkit-text-stroke: 1px var(--white); }
@keyframes slide {
    0%, 20% { transform: translateY(0); }
    25%, 45% { transform: translateY(-80px); }
    50%, 70% { transform: translateY(-160px); }
    75%, 95% { transform: translateY(-240px); }
    100% { transform: translateY(0); }
}

/* Buttons */
.btn-primary { background-color: var(--emerald); color: var(--white); padding: 15px 30px; border: none; font-weight: 700; text-transform: uppercase; cursor: pointer; text-decoration: none; display: inline-block; transition: 0.3s; }
.btn-primary:hover { background-color: var(--onyx); }
.btn-full { width: 100%; margin-top: 10px; }

/* About */
.about-section { padding: 60px 20px; text-align: center; background-color: var(--white); }
.about-section p { max-width: 800px; margin: 0 auto; font-size: 1.1rem; }

/* Capabilities & B2B */
.capabilities-section, .b2b-section { padding: 60px 20px; }
.grid-row { display: grid; grid-template-columns: 1fr; gap: 30px; margin-bottom: 50px; align-items: center; }
.text-col h2 { color: var(--emerald); margin-bottom: 15px; font-size: 1.5rem; }
.text-col ul { list-style: none; margin-top: 15px; }
.text-col ul li { border-left: 3px solid var(--emerald); padding-left: 15px; margin-bottom: 10px; font-weight: 600; }
.img-col img { width: 100%; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.img-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.empty-col { display: none; }

/* Innovation */
.innovation-section { background-color: var(--emerald); color: var(--white); padding: 60px 20px; text-align: center; }
.innovation-section h2 { margin-bottom: 20px; }

/* Order Form */
.order-section { padding: 60px 20px; background-color: var(--cream); }
.form-container { max-width: 600px; margin: 0 auto; background: var(--white); padding: 30px; border-radius: 8px; box-shadow: 0 5px 20px rgba(0,0,0,0.1); }
.form-container h2 { text-align: center; color: var(--emerald); margin-bottom: 20px; }
.moq-banner { background: #e8f5e9; color: var(--emerald); padding: 15px; border-radius: 5px; text-align: center; font-weight: 700; margin-bottom: 20px; border: 1px solid var(--emerald); }
.client-info { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 20px; }
.client-info input, .additional-specs textarea { width: 100%; padding: 12px; border: 1px solid var(--gray-light); border-radius: 4px; font-family: inherit; }
.product-builder { margin-bottom: 20px; }
.product-builder label { display: block; margin-bottom: 10px; font-weight: 700; }
.product-builder select { width: 100%; padding: 12px; border: 2px dashed var(--emerald); border-radius: 4px; background: var(--cream); font-family: inherit; }

.cart-items { margin-bottom: 20px; }
.cart-row { display: flex; justify-content: space-between; align-items: center; background: var(--cream); padding: 15px; margin-bottom: 10px; border-radius: 4px; border-left: 4px solid var(--emerald); flex-wrap: wrap; gap: 10px; }
.cart-row .item-name { font-weight: 700; flex: 1 1 100%; }
.cart-row input, .cart-row select { padding: 8px; border: 1px solid var(--gray-light); border-radius: 4px; }
.cart-row .remove-btn { background: #d32f2f; color: white; border: none; padding: 8px 12px; border-radius: 4px; cursor: pointer; }
.additional-specs textarea { min-height: 80px; }
.success-msg { display: none; background: var(--emerald); color: white; padding: 15px; text-align: center; margin-top: 15px; border-radius: 4px; font-weight: 700; }

/* Footer */
.footer { background-color: var(--onyx); color: var(--cream); padding: 40px 20px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 20px; max-width: 1000px; margin: 0 auto; }
.footer h3 { color: var(--emerald); margin-bottom: 10px; }
.footer a { color: var(--cream); text-decoration: none; }
.footer a:hover { text-decoration: underline; }

/* Responsive */
@media (min-width: 768px) {
    .nav-menu { display: flex; }
    .nav-location { display: block; }
    .grid-row { grid-template-columns: 1fr 1fr; }
    .grid-row.alternate .text-col { order: 1; }
    .grid-row.alternate .img-col { order: 2; }
    .client-info { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}