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

:root {
    --primary-green: #1e4d3f;
    --accent-yellow: #fbbf24;
    --light-cream: #fef8f0;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --white: #ffffff;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Navigation */
.navbar {
    background: var(--primary-green);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container { display: flex; justify-content: space-between; align-items: center; }

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: var(--transition);
}

.logo:hover { transform: scale(1.02); }

.logo-icon-wrapper {
    width: 45px;
    height: 45px;
    background: var(--accent-yellow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary-green);
    transition: var(--transition);
}

.logo:hover .logo-icon-wrapper { transform: rotate(10deg); box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4); }

.logo-text { display: flex; flex-direction: column; gap: 0.1rem; }

.logo-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.5px;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: var(--accent-yellow);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links { display: flex; gap: 2rem; align-items: center; }

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent-yellow);
    transition: width 0.3s ease;
    border-radius: 2px;
}
.nav-link:hover {
    color: var(--accent-yellow);
    transform: translateY(-2px);
}
.nav-link:hover::after {
    width: 100%;
}
.nav-link.active::after {
    width: 100%;
}
.nav-link.active {
    color: var(--accent-yellow);
    font-weight: 600;
    /* background: rgba(251, 191, 36, 0.1); */
    padding: 0.5rem 1rem;
    border-radius: 8px;
}
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-primary { background: var(--accent-yellow); color: var(--text-dark); }

.btn-primary:hover { background: #f59e0b; transform: translateY(-2px); }

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: var(--primary-green);
    color: var(--white);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: var(--accent-yellow);
    border-radius: 50%;
    opacity: 0.1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero-text h1 .highlight { color: var(--accent-yellow); font-style: italic; }

.hero-text p { font-size: 1.1rem; margin-bottom: 2rem; opacity: 0.9; }

.hero-badges {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255,255,255,0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.badge i { color: var(--accent-yellow); }

.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-image { position: relative; }

.hero-img-wrapper {
    background: var(--accent-yellow);
    border-radius: 30px;
    padding: 1.5rem;
    position: relative;
    transform: rotate(2deg);
}

.hero-img-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    transform: rotate(-2deg);
}

.hero-circle {
    position: absolute;
    width: 150px;
    height: 150px;
    border: 3px solid var(--accent-yellow);
    border-radius: 50%;
    bottom: -30px;
    left: -30px;
}

/* Trusted Section */
.trusted-section { background: var(--light-cream); padding: 3rem 0; text-align: center; }

.trusted-section h3 {
    color: var(--text-light);
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    opacity: 0.6;
}

/* About Section */
.about-section { margin-bottom: 5rem; background: var(--white); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image { position: relative; }

.about-image img {
    width: 100%;
    border-radius: 30px;
    height: 500px;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--accent-yellow);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
}

.about-badge .number { font-size: 2.5rem; font-weight: 800; color: var(--primary-green); }

.about-badge .text { font-size: 0.9rem; color: var(--text-dark); font-weight: 600; }

.about-content h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--text-light);
    letter-spacing: 1px;
    margin-bottom: 1rem;
    text-align: center;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
    text-align: center;
}

.about-content h2 .italic { font-style: italic; color: var(--text-dark); }

.about-content p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
    text-align: center;
}

/* Services Section */
.services-section { padding: 5rem 0; background: var(--light-cream); }

.section-header { text-align: center; margin-bottom: 4rem; }

.section-header h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--text-light);
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-header h2 { font-size: 2.5rem; font-weight: 700; color: var(--primary-green); }

.section-header h2 .italic { font-style: italic; color: var(--text-dark); }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s;
}

.service-card:hover { transform: translateY(-10px); }

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--accent-yellow);
}

.service-card h3 { font-size: 1.25rem; margin-bottom: 1rem; color: var(--primary-green); }

.service-card p { color: var(--text-light); line-height: 1.6; }

/* Quality Section */
.quality-section { padding: 5rem 0; background: var(--white); }

.quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.quality-card { background: var(--light-cream); padding: 2rem; border-radius: 20px; justify-items: center; }

.quality-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--accent-yellow);
}

.quality-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--primary-green); }

.quality-card p { color: var(--text-light); font-size: 0.9rem; }

.quality-image {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: block;
}

.quality-image img { width: 100%; border-radius: 30px; }

/* Pricing Section */
.pricing-section { padding: 5rem 0; background: var(--light-cream); }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

.pricing-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s;
}

.pricing-card.featured { background: var(--primary-green); color: var(--white); transform: scale(1.05); }

.pricing-card:hover { transform: translateY(-10px); }

.pricing-card.featured:hover { transform: scale(1.08) translateY(-10px); }

.pricing-badge {
    display: inline-block;
    background: var(--accent-yellow);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.pricing-icon {
    width: 80px;
    height: 80px;
    background: rgba(251, 191, 36, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem auto;
    font-size: 2rem;
}

.pricing-card.featured .pricing-icon { background: rgba(255, 255, 255, 0.2); color: var(--accent-yellow); }

.price { font-size: 3rem; font-weight: 800; margin-bottom: 0.5rem; }

.price span { font-size: 1.5rem; }

.price-label { color: var(--text-light); font-size: 0.9rem; margin-bottom: 2rem; }

.pricing-card.featured .price-label { color: rgba(255, 255, 255, 0.8); }

.pricing-features { list-style: none; margin-bottom: 2rem; }

.pricing-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.pricing-features i { color: var(--accent-yellow); }

.btn-outline { background: transparent; border: 2px solid var(--primary-green); color: var(--primary-green); }

.btn-outline:hover { background: var(--primary-green); color: var(--white); }

.pricing-card.featured .btn-outline { border-color: var(--accent-yellow); color: var(--accent-yellow); }

.pricing-card.featured .btn-outline:hover { background: var(--accent-yellow); color: var(--primary-green); }

/* Testimonials */
.testimonials-section { padding: 5rem 0; background: var(--white); }

.testimonial-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3rem; }

.testimonial-card {
    background: var(--light-cream);
    padding: 2rem;
    border-radius: 20px;
    display: flex;
    gap: 2rem;
}

.testimonial-image {
    width: 120px;
    height: 120px;
    border-radius: 15px;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonial-content h4 { color: var(--primary-green); margin-bottom: 0.5rem; }

.testimonial-stars { color: var(--accent-yellow); margin-bottom: 1rem; }

.testimonial-content p {
    color: var(--text-light);
    font-style: italic;
    line-height: 1.6;
}

/* Contact Section */
.contact-section { background: var(--bg-white); }

.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }

.contact-card {
    background: var(--light-cream);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.contact-card:hover { transform: translateY(-8px); box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); background: white; }

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--accent-yellow);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value { font-size: 18px; font-weight: 600; color: var(--text-dark); }

/* CTA Section */
.cta-section { background: var(--accent-yellow); padding: 4rem 0; text-align: center; }

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-green);
    text-align: left;
}

.cta-content h2 .italic { font-style: italic; color: var(--text-dark); }

.cta-buttons { display: flex; gap: 1rem; align-items: center; }

.discount-badge {
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

/* Footer */
.footer {
    background: var(--primary-green);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer h3 { margin-bottom: 1rem; font-size: 1.1rem; }

.footer-links { list-style: none; }

.footer-links li { margin-bottom: 0.75rem; }

.footer-links a { color: rgba(255, 255, 255, 0.8); text-decoration: none; transition: color 0.3s; }

.footer-links a:hover { color: var(--accent-yellow); }

.footer-subscribe {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1rem;
    border-radius: 50px;
    display: flex;
    margin-top: 1rem;
}

.footer-subscribe input {
    background: none;
    border: none;
    color: var(--white);
    flex: 1;
    outline: none;
}

.footer-subscribe input::placeholder { color: rgba(255, 255, 255, 0.6); }

.footer-subscribe button {
    background: var(--accent-yellow);
    border: none;
    color: var(--primary-green);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a { color: rgba(255, 255, 255, 0.6); text-decoration: none; transition: color 0.3s ease; }

/* Floating Buttons */
.floating-btns {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 99;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

.float-btn:hover { transform: scale(1.1); }

.whatsapp-btn { background: #25d366; }

.call-btn { background: var(--accent-yellow); color: var(--primary-green); }

/* Responsive */
@media (max-width: 968px) {
    .nav-links { display: none; }
    .menu-toggle { display: block; }
    .hero-content { grid-template-columns: 1fr; }
    .hero-text h1 { font-size: 2.5rem; }
    .about-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card.featured { transform: scale(1); }
    .testimonial-grid { grid-template-columns: 1fr; }
    .cta-content { flex-direction: column; text-align: center; }
    .cta-content h2 { text-align: center; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .logo-title { font-size: 1.1rem; }
    .logo-subtitle { font-size: 0.65rem; }
    .logo-icon-wrapper { width: 38px; height: 38px; font-size: 1.1rem; }
    .hero-text h1 { font-size: 2rem; }
    .hero-text p { font-size: 0.95rem; }
    .hero-buttons { flex-direction: row; gap: 1rem; }
    .hero-buttons .btn { justify-content: center; }
    .hero-badges { flex-direction: row; gap: 0.75rem; }
    .section-header h2 { font-size: 1.75rem; }
    .services-grid { grid-template-columns: 1fr; }
    .service-card { padding: 2rem 1.5rem; }
    .service-icon { width: 70px; height: 70px; font-size: 1.75rem; }
    .quality-grid { grid-template-columns: 1fr; }
    .quality-card { padding: 2rem 1.5rem; }
    .quality-icon { width: 70px; height: 70px; font-size: 1.75rem; }
    .testimonial-card { flex-direction: column; }
    .cta-content h2 { font-size: 1.5rem; }
    .cta-buttons { flex-direction: column; width: 100%; }
    .cta-buttons .btn { width: 100%; }
    .footer-grid { grid-template-columns: 1fr; }
    .floating-btns { bottom: 1rem; right: 1rem; }
    .float-btn { width: 50px; height: 50px; font-size: 1.3rem; }
}

@media (max-width: 480px) {
    .container { padding: 0 15px; }
    .navbar { padding: 0.75rem 0; }
    .hero { padding: 2.5rem 0 3.5rem; }
    .hero-text h1 { font-size: 1.75rem; }
    .hero-text h1 .highlight { font-size: 2rem; }
    .hero-text p { font-size: 0.9rem; }
    .hero-buttons .btn { padding: 0.75rem 1.25rem; font-size: 0.9rem; }
    .badge { font-size: 0.85rem; padding: 0.5rem 1rem; }
    .section-header { margin-bottom: 2rem; }
    .section-header h3 { font-size: 0.85rem; }
    .section-header h2 { font-size: 1.5rem; }
    .section-header p { font-size: 0.85rem; }
    .service-card { padding: 1.5rem 1rem; }
    .service-icon { width: 60px; height: 60px; font-size: 1.5rem; }
    .service-card h3 { font-size: 1.1rem; }
    .service-card p { font-size: 0.85rem; }
    .quality-card { padding: 1.5rem 1rem; }
    .quality-icon { width: 60px; height: 60px; font-size: 1.5rem; }
    .quality-card h3 { font-size: 1.1rem; }
    .quality-card p { font-size: 0.85rem; }
    .about-content h3 { font-size: 0.85rem; }
    .about-content h2 { font-size: 1.5rem; }
    .about-content p { font-size: 0.85rem; }
    .about-badge { padding: 1rem; }
    .about-badge .number { font-size: 2rem; }
    .about-badge .text { font-size: 0.75rem; }
    .pricing-card { padding: 1.5rem; }
    .price { font-size: 2rem; }
    .pricing-features li { font-size: 0.85rem; }
    .testimonial-card { padding: 1.5rem; }
    .testimonial-image { width: 50px; height: 50px; }
    .testimonial-content h4 { font-size: 1rem; }
    .testimonial-content p { font-size: 0.85rem; }
    .cta-content h2 { font-size: 1.3rem; }
    .cta-buttons .btn { padding: 0.75rem 1.25rem; font-size: 0.9rem; }
    .footer { padding: 3rem 0 1.5rem; }
    .footer h3 { font-size: 1rem; }
    .footer-links, .footer p { font-size: 0.85rem; }
    .floating-btns { bottom: 0.75rem; right: 0.75rem; gap: 0.75rem; }
    .float-btn { width: 45px; height: 45px; font-size: 1.2rem; }
}