* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: #1e293b;
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

.container {
    width: 90%;
    max-width: 1280px;
    margin: auto;
}

/* Header */

header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e2e8f0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: #166534;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 700;
}

.logo h1 {
    font-size: 28px;
    color: #166534;
    font-weight: 800;
}

.logo p {
    font-size: 12px;
    color: #64748b;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 36px;
}

nav a {
    text-decoration: none;
    color: #334155;
    font-weight: 500;
    transition: 0.3s;
}

nav a:hover {
    color: #15803d;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: #166534;
    color: white;
    box-shadow: 0 10px 25px rgba(22,101,52,0.25);
}

.btn-primary:hover {
    background: #14532d;
    transform: translateY(-2px);
}

.btn-secondary {
    border: 1px solid #cbd5e1;
    color: #1e293b;
    background: white;
}

.btn-secondary:hover {
    border-color: #166534;
    color: #166534;
}

/* Hero */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(to bottom right, #dcfce7, #ffffff, #fef3c7);
    padding-top: 120px;
}

.hero-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    align-items: center;
}

.badge {
    display: inline-block;
    background: #dcfce7;
    color: #166534;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero h2 {
    font-size: 50px;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800;
    color: #0f172a;
}

.hero p {
    font-size: 18px;
    color: #475569;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.stats {
    display: flex;
    gap: 50px;
    margin-top: 50px;
}

.stats h3 {
    font-size: 36px;
    color: #15803d;
}

.stats span {
    color: #64748b;
    font-size: 14px;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 620px;
    object-fit: cover;
    border-radius: 36px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.2);
}

/* Sections */

section {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: auto;
    margin-bottom: 70px;
}

.section-header span {
    color: #15803d;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.section-header h2 {
    font-size: 40px;
    margin-top: 20px;
    margin-bottom: 20px;
    color: #0f172a;
}

.section-header p {
    color: #64748b;
    font-size: 18px;
}

/* Products */

.products {
    background: #f8fafc;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.card {
    background: white;
    border-radius: 30px;
    padding: 40px 30px;
    transition: 0.3s ease;
    border: 1px solid #e2e8f0;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.card-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: #dcfce7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 24px;
}

.card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #0f172a;
}

.card p {
    color: #64748b;
}

/* Services */

.services-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    align-items: center;
}

.services-content img {
    width: 100%;
    border-radius: 36px;
    height: 550px;
    object-fit: cover;
    box-shadow: 0 25px 60px rgba(0,0,0,0.18);
}

.service-item {
    display: flex;
    align-items: center;
    gap: 18px;
    background: #f8fafc;
    padding: 22px;
    border-radius: 20px;
    margin-top: 18px;
}

.check {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #166534;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* About */

.about {
    background: linear-gradient(to bottom right, #14532d, #166534);
    color: white;
    text-align: center;
}

.about h2 {
    font-size: 40px;
    max-width: 900px;
    margin: 20px auto;
}

.about p {
    max-width: 850px;
    margin: auto;
    color: #dcfce7;
    font-size: 18px;
}

.about-grid {
    margin-top: 70px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.about-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 30px;
    padding: 40px 30px;
    backdrop-filter: blur(10px);
}

.about-card h3 {
    margin-bottom: 18px;
    font-size: 28px;
}

/* Contact */

.contact-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background: white;
    border-radius: 36px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

.contact-form {
    padding: 60px;
}

.contact-form h2 {
    font-size: 42px;
    margin: 20px 0;
}

.contact-form p {
    color: #64748b;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

input,
textarea {
    width: 100%;
    padding: 18px;
    border-radius: 18px;
    border: 1px solid #cbd5e1;
    font-family: inherit;
    font-size: 15px;
}

textarea {
    resize: none;
}

.contact-info {
    position: relative;
    background: #14532d;
    color: white;
    padding: 60px;
    overflow: hidden;
}

.contact-info img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
}

.contact-info-content {
    position: relative;
    z-index: 2;
}

.contact-info h3 {
    font-size: 42px;
    margin-bottom: 20px;
}

.contact-detail {
    margin-top: 35px;
}

.contact-detail span {
    color: #bbf7d0;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
}

.contact-detail p {
    margin-top: 8px;
    font-size: 18px;
}

/* Footer */

footer {
    background: #020617;
    color: #94a3b8;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-content h3 {
    color: white;
    font-size: 24px;
    margin-bottom: 5px;
}

.whatsapp-float {
  position: fixed;
  width: 65px;
  height: 65px;
  bottom: 25px;
  right: 25px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  z-index: 999;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* Responsive */

@media(max-width: 1100px) {
    .hero-content,
    .services-content,
    .contact-box,
    .product-grid,
    .about-grid {
    grid-template-columns: 1fr;
    }

    .hero h2 {
    font-size: 48px;
    }

    nav {
    display: none;
    }
}

@media(max-width: 768px) {
    .hero h2,
    .section-header h2,
    .about h2,
    .contact-form h2 {
    font-size: 38px;
    }

    .stats {
    flex-direction: column;
    gap: 20px;
    }

    .hero-image img,
    .services-content img {
    height: 400px;
    }

    .contact-form,
    .contact-info {
    padding: 40px 30px;
    }
}