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

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fff;
    padding-top: 66px;
}

/* ===== Navigation ===== */
.navbarwarp{
    width: 100%;
    background-color: #245c27;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.navbar {
    padding: 18px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1210px;
    margin: 0 auto;
}

.brand img {
    height: 30px;
    display: block;
}

.contact-btn {
    border: 1.5px solid #C9A961;
    color: #C9A961;
    background: transparent;
    padding: 9px 26px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    display: inline-block;
    border-radius: 2px;
}
.contact-btn:hover { background-color: #C9A961; color: #245c27; }

/* ===== Hero Banner ===== */
.hero {
    width: 100%;
    height: clamp(300px, 33vw, 500px);
    background-image: url('img/TopBanner.png');
    background-size: cover;
    background-position: center 40%;
}

/* ===== Product Section ===== */
.product-section {
    max-width: 1208px;
    margin: 50px auto 70px;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}

.product-image {
    width: 100%;
    overflow: hidden;
}
.product-image img { width: 100%; display: block; }

.product-text-box {
    background-color: #ededed;
    padding: 88px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-text-box h2 {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    color: #222;
    margin-bottom: 16px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.product-text-box p {
    font-size: 14.5px;
    color: #666;
    line-height: 1.85;
}

/* ===== Section Divider ===== */
.section-title {
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    color: #222;
    font-weight: 600;
    margin: 60px auto 44px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* ===== Features List ===== */
.features-list {
    max-width: 1210px;
    margin: 0 auto 80px;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    align-items: stretch;
}

.feature-text-box {
    background-color: #f7f6f2;
    padding: 36px 34px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-text-box h3 {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    color: #222;
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.3;
}

.feature-text-box p {
    font-size: 14px;
    color: #777;
    line-height: 1.75;
}

.feature-img-wrap {
    border-radius: 4px;
    overflow: hidden;
}

.feature-img-wrap img {
    width: 100%;
    height: 390px;
    object-fit: cover;
    display: block;
}

/* ===== Contact Page ===== */
.hero.contact-hero {
    background-image: url('img/contact-hero.png');
    background-position: center center;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.contact-section {
    padding: 86px 40px;
    background-color: #fff;
}

.contact-cards {
    max-width: 1210px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.contact-card {
    text-align: center;
    padding: 52px 30px;
    background-color: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.contact-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin-bottom: 16px;
    letter-spacing: 0.2px;
}

.contact-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.75;
}

.contact-card a {
    color: #666;
    text-decoration:none;
}

/* ===== Footer ===== */
.footer {
    background-color: #112f16;
    padding: 45px 60px 26px 60px;
    text-align: center;
}

.footer-brand img {
    height: 40px;
    display: inline-block;
    margin-bottom: 30px;
}

.footer-info {
    font-size: 14px;
    color: #b28e40;
    line-height: 1.85;
}
.footer-info a { color: #b28e40; text-decoration: none; }
.footer-info a:hover { color: #C9A961; }

.footer-copy {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(178, 142, 64, 0.4);
    font-size: 13px;
    color: #8a7340;
    letter-spacing: 0.5px;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .navbar { padding: 16px 24px; }
    .hero { height: 280px; }
    .product-section {
        grid-template-columns: 1fr;
        padding: 0 24px;
        margin: 36px auto 48px;
        gap: 24px;
    }
    .product-text-box { padding: 28px 24px; }
    .section-title { font-size: 20px; margin: 44px 0 32px; letter-spacing: 2px; }
    .features-list { padding: 0 24px; gap: 20px; margin-bottom: 56px; }
    .feature-row { grid-template-columns: 1fr; gap: 16px; }
    .feature-text-box { padding: 28px 24px; }
    .feature-img-wrap img { height: 200px; }
    .contact-section { padding: 56px 24px; }
    .contact-cards { grid-template-columns: 1fr; gap: 20px; }
    .contact-card { padding: 36px 24px; }
    .footer { padding: 40px 24px 32px; }
    .footer-brand { font-size: 28px; }
}
