@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
    --primary-green: #046358;
    --light-mint: #CDE0DE;
    --accent-yellow: #FAAA16;
    --white: #FFFFFF;
    --black: #000000;
    --text-dark: #3A3A3A;
    --card-radius: 20px;
}

body {
    font-family: 'Manrope', sans-serif;
    color: var(--text-dark);
    background-color: #fff;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5 { font-weight: 800; letter-spacing: -0.5px; }
.text-green { color: var(--primary-green); }
.text-yellow { color: var(--accent-yellow); }

/* Buttons */
.btn-yellow {
    background-color: var(--accent-yellow);
    color: var(--white);
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 50px;
    border: none;
    transition: 0.3s;
}
.btn-yellow:hover {
    background-color: #e59a10;
    color: var(--white);
}
.btn-outline-custom {
    border: 2px solid #ddd;
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 700;
    color: var(--black);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Navbar */
.navbar { padding: 25px 0; background: #fff; }
.navbar-brand { font-weight: 800; font-size: 1.5rem; display: flex; align-items: center; gap: 10px; }
.logo-mark { width: 40px; height: 40px; }
.nav-link { font-weight: 600; color: var(--text-dark) !important; margin: 0 10px; }

/* Hero */
.hero-section {
    padding: 80px 0;
    background: radial-gradient(circle at 50% 0%, #fffbe8 0%, #ffffff 60%);
    text-align: center;
}
.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--black);
}
.hero-sub {
    font-size: 1.125rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 40px;
}
.hero-image-wrapper {
    margin-top: 60px;
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

/* "Why Choose Us" Cards */
.feature-card {
    background-color: var(--light-mint);
    border-radius: var(--card-radius);
    padding: 40px 30px;
    height: 100%;
    border: none;
    transition: transform 0.3s;
}
.feature-card.dark {
    background-color: var(--primary-green);
    color: var(--white);
}
.icon-box {
    width: 50px; height: 50px;
    background: transparent;
    border: 2px solid var(--text-dark);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 25px;
    font-size: 1.2rem;
}
.feature-card.dark .icon-box { border-color: var(--white); color: var(--white); }

/* Stats */
.stat-num { font-size: 2.5rem; font-weight: 800; margin-bottom: 0; }
.stat-text { font-size: 0.9rem; color: #666; font-weight: 600; }

/* Services */
.section-badge {
    background: #f4f4f4;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}
.service-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: var(--card-radius);
    height: 100%;
}
.service-card img {
    width: 100%; height: 180px; object-fit: cover;
    border-radius: 15px; margin-bottom: 20px;
}

/* CTA Video Section */
.video-cta-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    height: 400px;
    margin-top: 60px;
}
.video-cta-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.play-btn {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 70px; height: 70px;
    background: #ff0000; color: white;
    border-radius: 15px; /* Rounded square from UI */
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem;
}

/* Testimonials */
.testimonial-card {
    background-color: var(--primary-green);
    border-radius: var(--card-radius);
    padding: 30px;
    text-align: center;
    color: white;
}
.testimonial-avatar {
    width: 50px; height: 50px; border-radius: 50%;
    border: 2px solid var(--accent-yellow);
    margin-bottom: 15px;
}

/* Contact Form */
.form-control {
    background-color: #f2f2f2;
    border: none;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
}
.form-control:focus { background: #e9e9e9; box-shadow: none; }

/* FAQ Accordion */
.accordion-button { font-weight: 700; box-shadow: none !important; }
.accordion-button:not(.collapsed) {
    color: var(--black);
    background-color: #fff;
}

/* Footer */
footer {
    background-color: var(--primary-green);
    color: white;
    padding-top: 100px;
    padding-bottom: 40px;
    margin-top: 100px;
    position: relative;
}
.footer-floater {
    background-color: var(--primary-green); /* Matching background for blend */
    background-image: linear-gradient(to right, #045249, #046358);
    border-radius: 30px;
    padding: 50px;
    text-align: center;
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.1);
}
.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}
.footer-links a:hover { color: white; }