/* =========================
   CSS RESET & BASE
========================= */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #2b2b2b;
    background-color: #ffffff;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* =========================
   VARIABLES (BRAND COLORS)
========================= */

:root {
    --green: #0e3b2e;
    --green-dark: #08271f;
    --gold: #c9a24d;
    --gray: #f5f6f7;
    --text-dark: #2b2b2b;
    --text-light: #ffffff;
}

/* =========================
   LAYOUT UTILITIES
========================= */

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

section {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

/* =========================
   BUTTONS
========================= */

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--gold);
    color: #000;
}

.btn-primary:hover {
    background-color: #b08d40;
}

.btn-whatsapp {
    background-color: #25d366;
    color: #fff;
}

.btn-whatsapp:hover {
    background-color: #1ebd5a;
}

/* =========================
   HEADER & MENU
========================= */

.header {
    background: #fff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo img {
    height: 48px;
}

.nav ul {
    display: flex;
    gap: 25px;
}

.nav a {
    font-weight: 500;
    color: var(--text-dark);
}

.nav a:hover {
    color: var(--gold);
}

.header-actions {
    display: flex;
    gap: 12px;
}

/* =========================
   HERO SLIDER
========================= */

.hero-slider {
    position: relative;
    height: 85vh;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    color: #fff;
    padding-top: 140px;
}

.hero-content h1,
.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 16px;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

/* Slider controls */

.hero-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #bbb;
    cursor: pointer;
}

.hero-dot.active {
    background: var(--gold);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    border: none;
    font-size: 30px;
    padding: 10px 16px;
    cursor: pointer;
    z-index: 5;
}

.hero-arrow.prev { left: 20px; }
.hero-arrow.next { right: 20px; }

/* =========================
   SERVICES / CARDS
========================= */

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.card {
    background: #fff;
    border-radius: 6px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-6px);
}

.card h3 {
    margin-bottom: 10px;
    color: var(--green);
}

/* =========================
   WHY CHOOSE US
========================= */

.why-us {
    background: var(--gray);
}

.why-us h2 {
    margin-bottom: 20px;
}

/* =========================
   FOOTER
========================= */

.footer {
    background: var(--green);
    color: #fff;
    padding: 60px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.footer h4 {
    margin-bottom: 15px;
    color: var(--gold);
}

.footer a {
    color: #fff;
}

.footer a:hover {
    color: var(--gold);
}

.sub-footer {
    background: var(--green-dark);
    color: #ccc;
    text-align: center;
    padding: 15px 0;
    font-size: 14px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

    .nav {
        display: none; /* mobile menu can be added later */
    }

    .hero-content {
        padding-top: 100px;
    }

    .hero-content h1,
    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* =========================
   INDUSTRIES WE SERVE
========================= */

.industries {
    background: #f8f9fa;
}

.section-header h2 {
    font-size: 2.4rem;
    margin-bottom: 10px;
    color: var(--green);
}

.section-header p {
    color: #666;
    margin-bottom: 50px;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.industry-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.industry-card img {
    height: 180px;
    width: 100%;
    object-fit: cover;
}

.industry-card h3 {
    font-size: 1.1rem;
    margin: 20px 20px 10px;
    color: var(--green);
}

.industry-card p {
    font-size: 0.95rem;
    color: #555;
    margin: 0 20px 20px;
    flex-grow: 1;
}

.industry-link {
    margin: 0 20px 20px;
    font-weight: 600;
    color: var(--green);
}

.industry-link:hover {
    color: var(--gold);
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1200px) {
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .industries-grid {
        grid-template-columns: 1fr;
    }
}




	

/* =========================
   WHY CHOOSE US (RIGHT PANEL)
========================= */

.why-choose {
    position: relative;
    background-size: cover;
    background-position: left center;
    padding: 100px 0;
}

.why-inner {
    display: flex;
    justify-content: flex-end;
}

.why-panel {
    background: rgba(255, 255, 255, 0.96);
    width: 55%;
    padding: 60px 60px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.why-panel h2 {
    font-size: 2.6rem;
    margin-bottom: 35px;
    color: var(--green);
}

.why-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 40px;
}

.why-point {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.why-point .check {
    width: 28px;
    height: 28px;
    background: var(--green);
    color: #fff;
    border-radius: 50%;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-point strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 4px;
    color: #1f2d2a;
}

.why-point p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.4;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {

    .why-inner {
        justify-content: center;
    }

    .why-panel {
        width: 100%;
        padding: 40px 30px;
    }

    .why-points {
        grid-template-columns: 1fr;
    }
}





/* =========================
   ABOUT PAGE
========================= */

.page-hero {
    background: #f5f6f7;
    padding: 80px 0;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: var(--green);
}

.page-hero p {
    color: #666;
}

.about-section {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
}

.about-text h2 {
    margin-bottom: 20px;
    color: var(--green);
}

.about-highlights ul li {
    margin-bottom: 15px;
    font-weight: 500;
}

.process-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.process-step {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.process-step span {
    font-size: 1.5rem;
    font-weight: b




/* =========================
   SERVICES PAGE
========================= */

.services-section {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 40px 35px;
    border-radius: 14px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.service-card h2 {
    margin-bottom: 15px;
    color: var(--green);
}

.service-card p {
    margin-bottom: 15px;
    color: #555;
}

.service-card ul {
    margin: 20px 0;
}

.service-card ul li {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.service-industries {
    font-size: 0.9rem;
    color: #333;
}

/* CTA */
.services-cta {
    background: var(--green);
    color: #fff;
    padding: 80px 0;
}

.services-cta h2 {
    margin-bottom: 10px;
}

.services-cta p {
    margin-bottom: 25px;
    color: #e0e0e0;
}




/* =========================
   MACHINES PAGE
========================= */

.machines-section {
    padding: 80px 0;
}

.machines-intro {
    max-width: 800px;
    margin-bottom: 50px;
}

.machines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.machine-card {
    background: #fff;
    padding: 35px 30px;
    border-radius: 14px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

.machine-card h3 {
    color: var(--green);
    margin-bottom: 15px;
}

.machine-card ul li {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

/* CAPABILITIES */

.capabilities-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.capability {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.capability h4 {
    margin-bottom: 10px;
    color: var(--green);
}

/* CTA */

.machines-cta {
    background: var(--green);
    color: #fff;
    padding: 80px 0;
}

.machines-cta p {
    color: #e0e0e0;
    margin-bottom: 25px;
}




/* =========================
   CONTACT PAGE
========================= */
/* ===== CONTACT PAGE INLINE CSS (TEST) ===== */

.contact-section {
    padding: 80px 0;
    background: #f5f6f7;
}

.contact-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
}

.contact-form-box,
.contact-info-box {
    background: #fff;
    padding: 45px;
    border-radius: 14px;
    box-shadow: 0 18px 50px rgba(0,0,0,0.12);
}

.contact-form-box h2,
.contact-info-box h2 {
    margin-bottom: 10px;
    color: #0e3b2e;
}

.contact-form-box p {
    margin-bottom: 25px;
    color: #666;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-form-box input,
.contact-form-box select,
.contact-form-box textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid #dcdcdc;
    font-size: 14px;
}

.contact-form-box textarea {
    min-height: 120px;
    margin-bottom: 20px;
}

.contact-form-box button {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    background: #caa24d;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.contact-info-box p {
    margin-bottom: 15px;
}

.whatsapp-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 20px;
    background: #25d366;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

/* Mobile */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}






/* ===== INDUSTRY PAGES ===== */

.industry-hero {
    background: #f7f9f8;
    padding: 70px 0 40px;
}

.industry-hero h1 {
    color: var(--green);
    margin-bottom: 10px;
}

.industry-hero p {
    max-width: 700px;
    color: #555;
}

.industry-content {
    padding: 60px 0;
}

.industry-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.industry-text h2,
.industry-text h3 {
    margin-top: 30px;
    color: #111;
}

.industry-text ul {
    padding-left: 18px;
    margin-top: 10px;
}

.industry-benefits li {
    margin-bottom: 8px;
}

.industry-cta-box {
    background: #fff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    height: fit-content;
}

.industry-cta-box h3 {
    margin-bottom: 10px;
}

.btn-primary {
    display: block;
    background: var(--gold);
    color: #000;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    margin-top: 15px;
    font-weight: 600;
}

.btn-whatsapp {
    display: block;
    background: #25D366;
    color: #fff;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    margin-top: 10px;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 900px) {
    .industry-grid {
        grid-template-columns: 1fr;
    }
}





/* PRODUCTS PAGE */
.products-intro {
  max-width: 800px;
  margin-bottom: 40px;
  color: #555;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-card {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.product-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.product-card p {
  color: #666;
  margin-bottom: 15px;
}

.product-card a {
  font-weight: 600;
  color: #0b3d2e;
  text-decoration: none;
}

@media (max-width: 992px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}
