/* --- Variables & Forest Green Palette --- */
:root {
    --primary: #1a4d2e;       /* Forest Green */
    --primary-light: #2d7d4f; /* Lighter Green */
    --accent: #e1b12c;        /* Sunset Gold */
    --accent-hover: #fbc531;
    
    --bg-body: #ffffff;
    --bg-light: #f1f8f3;      /* Mint Tint */
    --text-main: #2d3436;
    --text-light: #636e72;
    
    --font-head: 'Montserrat', sans-serif;
    --font-body: 'Nunito', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-body);
    overflow-x: hidden;
    display: flex; flex-direction: column; min-height: 100vh;
}

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 800; color: var(--primary); }
a { text-decoration: none; color: inherit; transition: 0.3s; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section-pad { padding: 80px 0; }
.text-center { text-align: center; }

/* --- Buttons --- */
.btn-main, .btn-submit {
    display: inline-block;
    background: var(--accent); color: var(--primary);
    padding: 15px 40px; border-radius: 50px; font-weight: 800;
    box-shadow: 0 10px 20px rgba(225, 177, 44, 0.3);
    border: none; cursor: pointer; text-transform: uppercase; letter-spacing: 1px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-main:hover, .btn-submit:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 15px 30px rgba(225, 177, 44, 0.5); 
    background: var(--accent-hover); 
}

.btn-text {
    color: var(--primary); font-weight: 700; border-bottom: 2px solid var(--accent);
}
.btn-text:hover { color: var(--accent); }

/* --- Header --- */
header {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.05);
    padding: 0.8rem 0; /* Slightly reduced padding to fit logo */
}
.header-content { display: flex; justify-content: space-between; align-items: center; }

/* Logo Styling */
.logo { display: flex; align-items: center; }
.logo img { height: 50px; width: auto; } /* Adjusts logo size */

.nav-menu ul { display: flex; gap: 2rem; align-items: center; }
.nav-menu a { font-weight: 700; font-size: 1rem; color: var(--primary); }
.nav-menu a:hover, .nav-menu a.active { color: var(--accent); }
.menu-toggle { display: none; font-size: 1.5rem; color: var(--primary); cursor: pointer; }

/* --- Mobile Menu --- */
@media (max-width: 768px) {
    .menu-toggle { display: block; z-index: 1001; }
    .nav-menu {
        position: fixed; top: 0; right: -100%; width: 80%; height: 100vh;
        background: white; flex-direction: column; justify-content: center;
        transition: 0.4s ease; box-shadow: -10px 0 30px rgba(0,0,0,0.1); padding: 40px;
    }
    .nav-menu.active { right: 0; }
    .nav-menu ul { flex-direction: column; gap: 30px; font-size: 1.2rem; }
}

/* --- Hero Section (Home) --- */
.hero-container {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    position: relative; padding: 120px 0 60px 0;
    background: radial-gradient(circle at 10% 20%, rgb(241, 248, 243) 0%, rgb(255, 255, 255) 90%);
    overflow: hidden;
}
.hero-bg-shape { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.15; z-index: 0; }
.shape-1 { top: -100px; right: -100px; width: 500px; height: 500px; background: var(--primary); }
.shape-2 { bottom: -50px; left: -100px; width: 400px; height: 400px; background: var(--accent); }

.hero-content { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; width: 90%; max-width: 1200px; gap: 2rem; }
.hero-text { flex: 1; max-width: 550px; }
.hero-text h1 { font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1.1; margin-bottom: 1.5rem; color: var(--primary); }
.hero-text p { font-size: 1.1rem; color: var(--text-light); margin-bottom: 2.5rem; line-height: 1.8; }
.hero-buttons { display: flex; gap: 15px; }
.btn-secondary { display: inline-block; border: 2px solid var(--primary); color: var(--primary); padding: 12px 35px; border-radius: 50px; font-weight: 700; }
.btn-secondary:hover { background: var(--primary); color: white; }

/* Circle Widget */
.circle-wrapper { flex: 1; display: flex; justify-content: center; align-items: center; width: 100%; max-width: 550px; aspect-ratio: 1/1; animation: float 6s ease-in-out infinite; perspective: 1000px; }
.interactive-svg { width: 100%; height: 100%; filter: drop-shadow(0 20px 40px rgba(26, 77, 46, 0.2)); overflow: visible; }
.slice { transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); cursor: pointer; transform-origin: 250px 250px; opacity: 0.95; }
.slice:hover { transform: scale(1.08); z-index: 10; opacity: 1; filter: brightness(1.1); }
.slice path { stroke: white; stroke-width: 4px; }
.slice-text { font-family: var(--font-head); font-weight: 800; font-size: 24px; fill: white; text-anchor: middle; dominant-baseline: middle; pointer-events: none; text-shadow: 0 2px 4px rgba(0,0,0,0.2); }
.slice-icon { font-size: 30px; fill: white; text-anchor: middle; dominant-baseline: middle; }

/* --- Features (Home) --- */
.features-section { background: white; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 50px; }
.feature-card { padding: 30px; border-radius: 20px; background: var(--bg-light); transition: 0.3s; text-align: center; border: 1px solid transparent; }
.feature-card:hover { transform: translateY(-10px); background: white; border-color: var(--primary); box-shadow: 0 15px 30px rgba(0,0,0,0.05); }
.feature-icon { font-size: 2.5rem; color: var(--primary); margin-bottom: 20px; background: rgba(26, 77, 46, 0.1); width: 80px; height: 80px; display: inline-flex; justify-content: center; align-items: center; border-radius: 50%; }

/* --- Newsletter (Home) --- */
.newsletter { background: var(--primary); color: white; padding: 80px 0; text-align: center; position: relative; overflow: hidden; }
.newsletter::before { content:''; position: absolute; top:0; left:0; width:100%; height:100%; background: url('https://www.transparenttextures.com/patterns/cubes.png'); opacity: 0.1; }
.newsletter-content { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.input-group { display: flex; gap: 10px; background: white; padding: 5px; border-radius: 50px; }
.input-group input { flex: 1; border: none; padding: 15px 20px; border-radius: 50px; outline: none; font-family: inherit; }
.input-group button { background: var(--accent); color: var(--primary); font-weight: 700; border: none; padding: 10px 30px; border-radius: 50px; cursor: pointer; transition: 0.3s; }
.input-group button:hover { background: var(--accent-hover); }

/* --- Inner Page Styles --- */
.page-header {
    height: 50vh; min-height: 400px;
    background-size: cover; background-position: center;
    display: flex; align-items: center; justify-content: center;
    position: relative; margin-top: 60px;
}
.overlay { position: absolute; top:0; left:0; width:100%; height:100%; background: rgba(0,0,0,0.4); }
.header-text { position: relative; z-index: 2; text-align: center; color: white; padding: 20px; }
.header-text h1 { color: white; font-size: 3.5rem; margin-bottom: 15px; text-shadow: 0 4px 10px rgba(0,0,0,0.3); }

/* Card Grid */
.section-header { text-align: center; margin-bottom: 4rem; }
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 40px; }

.card { 
    background: white; border-radius: 20px; overflow: hidden; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); 
    transition: 0.3s; border: 1px solid #eee;
}
.card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(26, 77, 46, 0.15); border-color: var(--primary-light); }
.card-img { height: 250px; background-size: cover; background-position: center; position: relative; }
.badge { position: absolute; top: 20px; right: 20px; background: var(--accent); color: var(--primary); padding: 5px 15px; border-radius: 20px; font-weight: 700; font-size: 0.8rem; }
.card-body { padding: 30px; }
.card-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 20px; padding-top: 20px; border-top: 1px solid #eee; }
.price { font-size: 1.2rem; font-weight: 800; color: var(--primary); }

/* Contact Form */
.contact-container { display: flex; flex-wrap: wrap; background: white; border-radius: 20px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.1); border: 1px solid #eee; }
.contact-bg { flex: 1; min-width: 300px; background: var(--primary); padding: 50px; color: white; }
.contact-bg h2 { color: white; margin-bottom: 30px; }
.info-item { display: flex; gap: 20px; margin-bottom: 30px; align-items: center; }
.info-item i { color: var(--accent); font-size: 1.2rem; }
.contact-form-wrapper { flex: 2; min-width: 300px; padding: 50px; }
.form-group { margin-bottom: 25px; }
.form-group label { display: block; margin-bottom: 10px; font-weight: 700; color: var(--primary); }
.form-group input, .form-group textarea { width: 100%; padding: 15px; border: 2px solid #eee; border-radius: 10px; font-family: inherit; transition: 0.3s; outline: none; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--primary); }

/* Footer */
footer { background: #0f2e1b; color: #a4b0be; padding-top: 4rem; margin-top: auto; }
.footer-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; padding-bottom: 3rem; }
.footer-col h3 { color: white; margin-bottom: 1.5rem; }
.footer-col a:hover { color: var(--accent); padding-left: 5px; }
.socials a { color: white; margin-right: 15px; font-size: 1.2rem; }
.footer-bottom { text-align: center; padding: 20px; background: rgba(0,0,0,0.2); font-size: 0.8rem; }

/* Animation Keyframes */
@keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-15px); } 100% { transform: translateY(0px); } }

@media (max-width: 968px) {
    .hero-content { flex-direction: column-reverse; text-align: center; padding-top: 40px; }
    .hero-buttons { justify-content: center; }
    .circle-wrapper { max-width: 450px; }
    .contact-container { flex-direction: column; }
}