/* ---- GLOBAL STYLES & COLOR PALETTE ---- */
:root {
    --chocolate-dark: #3E2723;
    --chocolate-cream: #FFF8E1;
    --accent-purple: #7B1FA2; /* Gagamitin na lang sa ibang highlights, hindi sa buttons */
    --accent-green: #4CAF50;  /* Primary action color */
    --dim-gray: #5f5f5f;       /* Para sa right-side header text */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --text-light: #FFFFFF;
    --text-dark: #3E2723;
    --font-primary: 'Poppins', sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-primary); background-color: var(--chocolate-dark); color: var(--text-light); }
.page-container { width: 100%; } /* Changed from .page-wrapper to simplify */
.page-wrapper { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 40px; }

/* ---- Buttons ---- */
.btn { padding: 12px 30px; border-radius: 50px; text-decoration: none; font-weight: 700; transition: all 0.3s ease; border: none; z-index: 10; }
.btn-primary { background-color: var(--accent-green); color: var(--text-light); }
.btn-secondary { background-color: var(--accent-green); color: var(--text-light); }
.btn:hover { transform: scale(1.05); filter: brightness(1.1); }

/* --- SECTION 1: HERO (NEW GRID LAYOUT) --- */
.hero-background { background: linear-gradient(90deg, var(--chocolate-dark) 55%, var(--chocolate-cream) 45%); }
.hero-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 100px auto 1fr; /* Header, Content, Spacer */
    min-height: 100vh;
    position: relative;
}
.main-header-left { grid-column: 1 / span 5; grid-row: 1; display: flex; align-items: center; }
.logo { display: flex; align-items: center; gap: 15px; font-size: 20px; font-weight: 700; color: var(--text-light); text-decoration: none; }
.logo-icon { font-size: 24px; color: var(--accent-green); }
.main-header-right {
    grid-column: 7 / -1;
    grid-row: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 25px;
}
.main-header-right a { color: var(--dim-gray); text-decoration: none; font-weight: 600; transition: color 0.3s ease; }
.main-header-right a:hover { color: var(--accent-green); }
.hero-content { grid-column: 1 / span 5; grid-row: 2; align-self: start; z-index: 2; padding-top: 10%; }
.hero-title { font-size: clamp(2rem, 4.5vw, 4rem); line-height: 1.1; font-weight: 800; }
.hero-description { font-size: 1.1rem; opacity: 0.9; margin: 25px 0; }
.hero-image-wrapper { grid-column: 4 / span 6; grid-row: 2 / span 2; align-self: center; z-index: 1; }
.hero-image { width: 100%; transform: rotate(25deg); filter: drop-shadow(0 20px 30px rgba(0,0,0,0.2)); }
.product-highlights {
    grid-column: 10 / -1;
    grid-row: 2;
    align-self: center;
    color: var(--text-dark);
    z-index: 2;
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
}
.benefits-list { list-style: none; padding: 0; }
.benefits-list li { padding-left: 25px; position: relative; margin-bottom: 12px; }
.benefits-list li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--accent-green); position: absolute; left: 0; top: 3px; }

/* --- FEATURES, PRODUCTS, BLOG, TESTIMONIALS, CONTACT --- */
.features-section { padding: 80px 0; }
.features-section .page-wrapper { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.glass-card { background: var(--glass-bg); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-radius: 16px; border: 1px solid rgba(255, 255, 255, 0.2); padding: 40px; text-align: center; }
.feature-number { font-size: 3.5rem; font-weight: 800; color: var(--accent-purple); opacity: 0.7; }
.glass-card h3 { font-size: 1.7rem; margin-top: 5px; font-weight: 700; }
.page-section { padding: 80px 0; }
.page-section h2 { font-size: 2.5rem; font-weight: 700; margin-bottom: 20px; text-align: center; }
.alt-bg { background-color: #331f1a; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 40px; text-align: left; }
.bootstrap-form .form-label { font-weight: 600; }
.bootstrap-form .form-control { background-color: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: var(--text-light); }
.bootstrap-form .form-control:focus { background-color: rgba(255,255,255,0.2); color: var(--text-light); box-shadow: 0 0 0 0.25rem rgba(76, 175, 80, 0.5); }
.bootstrap-form .btn-primary { background-color: var(--accent-green); }
.map-placeholder { background-color: rgba(0,0,0,0.2); border-radius: 8px; display: grid; place-items: center; }

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1024px) {
    .page-wrapper { padding: 0 20px; }
    .hero-background { background: var(--chocolate-dark); }
    .hero-grid-wrapper { display: flex; flex-direction: column; }
    .main-header-left { order: 1; align-self: center; padding: 20px 0 0 0; }
    .main-header-right { order: 2; flex-wrap: wrap; justify-content: center; padding: 20px 0; }
    .hero-content { order: 3; text-align: center; margin-top: 20px; }
    .hero-image-wrapper { order: 4; width: 80%; margin: 20px auto; transform: rotate(0deg) !important; animation: none !important; }
    .product-highlights {
        order: 5;
        width: 100vw;
        margin-left: -20px;
        padding: 40px;
        background-color: var(--chocolate-cream);
        flex-direction: column;
        align-items: center;
        text-align: left;
    }
}
@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; }
}