:root {
    --primary-color: #01A64E;
    --secondary-color: #054D2D;
    --neutral-color: #FFFFFF;
    --text-color: #000000;
    --gray-color: #f5f5f5;
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    --heading-font: 'Poppins', sans-serif;
    --body-font: 'Open Sans', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    line-height: 1.6;
    color: var(--text-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    margin: 0;
}

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

/* Header Styles */
.header {
    background: var(--neutral-color);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header.header-hidden {
    transform: translateY(-100%);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo img {
    height: 50px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    font-family: var(--body-font);
    font-weight: 500;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
}

.main-header {
    background: #fff;
    box-shadow: 0 3px 18px rgba(1, 50, 30, 0.07);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: box-shadow 0.18s;
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 86px;
}

.logo img {
    height: 56px;
    width: auto;
    display: block;
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 2.2rem;
}

.nav-menu {
    display: flex;
    gap: 2.1rem;
}

.nav-menu a {
    font-family: var(--heading-font);
    color: #222;
    font-size: 1.08rem;
    font-weight: 500;
    text-decoration: none;
    padding: 0.4em 0.2em;
    transition: color 0.16s, border-bottom 0.16s;
    border-bottom: 2px solid transparent;
}

.nav-menu a:hover {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.header-cta {
    background: linear-gradient(90deg, #01A64E 60%, #20b75c 100%);
    color: #fff !important;
    font-family: var(--heading-font);
    font-size: 1.09rem;
    font-weight: 700;
    border-radius: 2em;
    padding: 0.95em 2.2em;
    margin-left: 2.1em;
    box-shadow: 0 6px 24px rgba(1,166,78,0.18);
    display: inline-flex;
    align-items: center;
    gap: 0.7em;
    transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
    text-shadow: 0 2px 8px rgba(1,166,78,0.08);
    border: none;
    outline: none;
    cursor: pointer;
    animation: cta-pulse 1.6s infinite alternate cubic-bezier(.5,1.8,.6,1);
}

.header-cta i {
    font-size: 1.25em;
}

.header-cta:hover {
    background: linear-gradient(90deg, #20b75c 60%, #01A64E 100%);
    transform: scale(1.06) translateY(-2px);
    box-shadow: 0 10px 32px rgba(1,166,78,0.23);
}

@keyframes cta-pulse {
    0% { box-shadow: 0 6px 24px rgba(1,166,78,0.18); }
    100% { box-shadow: 0 10px 32px rgba(1,166,78,0.27); transform: scale(1.04); }
}

/* Responsive header */
@media (max-width: 900px) {
    .header-flex {
        height: auto;
        flex-direction: column;
        gap: 1.2rem;
        padding: 1.2rem 0 0.7rem 0;
    }
    .nav-menu {
        gap: 1.2rem;
    }
    .header-cta {
        margin-left: 0;
        margin-top: 1em;
        width: 100%;
        justify-content: center;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    color: #ffffff;
    overflow: hidden;
}

.hero-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 2.5rem;
}

.hero-content {
    flex: 1 1 0;
}

.hero-illustration {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.hero-illustration img {
    max-width: 700px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(5, 77, 45, 1), rgba(1, 166, 78, 1));
}

.hero .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 650px;
    margin-top: -80px;
}

.hero-title {
    text-shadow: 0 3px 16px rgba(0,0,0,0.18);
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 0.5em;
    letter-spacing: -1px;
}

.hero-subtitle {
    color: #f7f7f7;
    background: rgba(0,0,0,0.18);
    padding: 0.5em 1.2em;
    border-radius: 1.2em;
    margin-bottom: 2em;
    font-size: 1.18rem;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.primary-button.hero-cta-btn {
    background: linear-gradient(90deg, #07E05D 0%, #01A64E 100%);
    color: #fff !important;
    border: 3px solid rgba(255,255,255,0.75);
    box-shadow: 0 0 0 4px rgba(1,166,78,0.10), 0 10px 36px 0 rgba(1,166,78,0.35);
    text-shadow: 0 2px 8px rgba(1,166,78,0.26), 0 0 2px #222;
    font-size: 1.23rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    border-radius: 2em;
    padding: 1.15em 2.7em;
    display: inline-flex;
    align-items: center;
    gap: 0.8em;
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: background 0.18s, box-shadow 0.18s, transform 0.18s, border 0.18s;
    animation: cta-glow-pulse 1.8s infinite alternate cubic-bezier(.5,1.8,.6,1);
}
.primary-button.hero-cta-btn:hover, .primary-button.hero-cta-btn:focus {
    background: linear-gradient(90deg, #01A64E 0%, #07E05D 100%);
    box-shadow: 0 0 0 7px rgba(7,224,93,0.18), 0 16px 48px 0 rgba(1,166,78,0.45), 0 0 16px 4px #07E05D;
    transform: scale(1.07) translateY(-3px);
    border: 3.5px solid #fff;
    outline: none;
}
@keyframes cta-glow-pulse {
    0% { box-shadow: 0 0 0 4px rgba(1,166,78,0.10), 0 10px 36px 0 rgba(1,166,78,0.35); }
    100% { box-shadow: 0 0 0 10px rgba(7,224,93,0.16), 0 18px 56px 0 rgba(1,166,78,0.45); }
}

.trust-row {
    display: flex;
    gap: 1.5em;
    align-items: center;
    margin-top: 2em;
    justify-content: flex-start;
}

.trust-badge, .hero-google-reviews {
    background: rgba(255,255,255,0.93);
    border-radius: 1.8em;
    box-shadow: 0 2px 12px rgba(30, 80, 60, 0.12);
    padding: 0.7em 1.5em;
    display: flex;
    align-items: center;
    gap: 0.7em;
    font-size: 1.04rem;
    color: var(--secondary-color);
    transition: box-shadow 0.18s, transform 0.18s;
    cursor: pointer;
    animation: trust-pulse 1.8s infinite alternate;
}

.trust-badge:hover, .hero-google-reviews:hover {
    box-shadow: 0 6px 18px rgba(1,166,78,0.16);
    transform: scale(1.04);
}

@keyframes trust-pulse {
    0% { box-shadow: 0 2px 12px rgba(30, 80, 60, 0.12);}
    100% { box-shadow: 0 6px 24px rgba(1,166,78,0.18);}
}

.fade-in-up {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(30px);}
    100% { opacity: 1; transform: translateY(0);}
}

@media (max-width: 900px) {
    .trust-row { flex-direction: column; gap: 1em; align-items: flex-start;}
    .hero-title { font-size: 2.1rem; }
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        min-height: 600px;
    }

    .hero-content {
        margin-top: -40px;
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-cta-btn {
        font-size: 1.09rem;
    }

    .hero-flex {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }
    .hero-illustration {
        width: 100%;
        margin-top: 1.5rem;
        justify-content: flex-start;
    }
    .hero-illustration img {
        max-width: 260px;
        margin-left: 0;
        margin-right: 0;
    }
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--neutral-color);
}

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

.value-card {
    text-align: center;
    padding: 2.5rem;
    background: var(--neutral-color);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.value-card:hover::before {
    transform: scaleX(1);
}

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

.value-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Mission Vision Section */
.mission-vision {
    padding: 80px 0;
    background: var(--gray-color);
}

.mission-vision .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--neutral-color);
}

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

.service-card {
    padding: 2.5rem;
    background: var(--neutral-color);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.service-card:hover::before {
    transform: scaleX(1);
}

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

.service-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Enhanced Services Section */
.services-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.section-title {
    text-align: center;
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: var(--heading-font);
    font-weight: 600;
}

.section-subtitle {
    text-align: center;
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-card {
    background: var(--neutral-color);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 1.5rem;
    color: var(--neutral-color);
}

.service-card h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: var(--heading-font);
    font-weight: 600;
}

.service-description {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: var(--text-color);
}

.service-features li i {
    color: var(--primary-color);
    margin-right: 0.8rem;
    font-size: 0.9rem;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1.5rem;
    background: var(--primary-color);
    color: var(--neutral-color);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-cta i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.service-cta:hover {
    background: var(--secondary-color);
    transform: translateX(5px);
}

.service-cta:hover i {
    transform: translateX(3px);
}

/* Why Choose Us Section */
.why-choose-us {
    text-align: center;
    padding-top: 4rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.why-choose-us h3 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
}

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

.benefit-card {
    padding: 2rem;
    background: var(--neutral-color);
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.benefit-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-card h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

/* Responsive Adjustments */
@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Testimonials Section */
.testimonials {
    background: #f8f9fa;
    padding: 4rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    justify-items: center;
    margin-top: 2.5rem;
}

.testimonial-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(30, 80, 60, 0.10);
    padding: 2.5rem 2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 370px;
    transition: transform 0.18s cubic-bezier(.4,2,.6,1), box-shadow 0.18s cubic-bezier(.4,2,.6,1);
}

.testimonial-card:hover {
    transform: translateY(-7px) scale(1.03);
    box-shadow: 0 8px 32px rgba(30, 80, 60, 0.16);
}

.testimonial-photo {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 50%;
    border-bottom: 4px solid var(--primary-color);
    margin-bottom: 1.3rem;
    box-shadow: 0 2px 10px rgba(1,166,78,0.10);
}

.testimonial-name {
    font-family: var(--heading-font);
    font-size: 1.13rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    margin-top: 0;
    text-align: center;
}

.testimonial-rating {
    color: #FFD700;
    font-size: 1.25rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-align: center;
}

.testimonial-text {
    font-family: var(--body-font);
    color: #444;
    font-size: 1rem;
    text-align: center;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: var(--neutral-color);
}

.faq-container {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--gray-color);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    position: relative;
    padding-right: 2rem;
    font-family: var(--heading-font);
}

.faq-item h3::after {
    content: '+';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.faq-item.active h3::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-item p {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active {
    background: var(--neutral-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--gray-color);
}

.contact-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
    background: var(--neutral-color);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid #eee;
    border-radius: 30px;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(1, 166, 78, 0.1);
}

.submit-button {
    width: 100%;
    padding: 1.2rem;
    border-radius: 30px;
    background: var(--gradient-primary);
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.privacy-notice {
    font-size: 0.9rem;
}

.privacy-notice a {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.social-links a {
    color: var(--secondary-color);
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--primary-color);
}

/* Footer */
.footer {
    background: #f5f7fa;
    color: #222;
    padding: 3.5rem 0 1.5rem 0;
    font-family: var(--body-font);
    border-top: 1.5px solid #e1e5ec;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.7fr 1.2fr 1.7fr;
    gap: 2.5rem;
    align-items: flex-start;
    margin-bottom: 2.5rem;
}

.footer-logo {
    width: 160px;
    margin-bottom: 1.2rem;
}

.footer-info p {
    margin-bottom: 1.2rem;
    color: #444;
    font-size: 1.05rem;
}

.footer-certificates {
    display: flex;
    gap: 1.1rem;
    align-items: center;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.footer-certificates img {
    height: 42px;
    width: auto;
    opacity: 0.82;
    transition: opacity 0.22s;
    border-radius: 7px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(1,166,78,0.06);
    padding: 2px 6px;
}

.footer-certificates img:hover {
    opacity: 1;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 1.12rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.footer-links a {
    display: block;
    color: #222;
    text-decoration: none;
    margin-bottom: 0.7rem;
    font-size: 1.01rem;
    transition: color 0.16s;
}

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

.footer-contact-data {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.1rem;
}

.contact-info.fade-in.visible {
    text-align: center;
}

.footer-contact-data a,
.footer-address {
    color: #222;
    font-size: 1rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5em;
}

.footer-contact-data a:hover {
    color: var(--primary-color);
}

.footer-google-reviews, .hero-google-reviews {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    background: #fff;
    border-radius: 1.3em;
    box-shadow: 0 2px 12px rgba(30, 80, 60, 0.10);
    padding: 0.6em 1.2em 0.6em 0.7em;
    margin-bottom: 1.2em;
    margin-top: 0.2em;
    justify-content: center;
    align-content: center;
    margin-left: auto;
    margin-right: auto;
}

.google-reviews-badge {
    height: 38px;
    width: auto;
    border-radius: 0.7em;
    margin-right: 0.3em;
}

.google-reviews-info {
    display: flex;
    flex-direction: column;
    gap: 0.1em;
}

.google-rating {
    font-size: 1.22rem;
    font-weight: 700;
    color: #fbbc04;
    line-height: 1;
}

.google-stars {
    color: #fbbc04;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 1;
}

.google-reviews-count {
    color: #555;
    font-size: 0.92rem;
}

.social-links {
    display: flex;
    gap: 1.1rem;
    margin-top: 0.7rem;
}

.social-link {
    color: #fff;
    background: var(--primary-color);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.18rem;
    transition: background 0.18s, color 0.18s, transform 0.16s;
    box-shadow: 0 2px 12px rgba(1,166,78,0.10);
}

.social-link:hover {
    background: var(--secondary-color);
    color: #fff;
    transform: scale(1.11);
}

.footer-bottom {
    text-align: center;
    color: #888;
    font-size: 0.98rem;
    margin-top: 0.8rem;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.2rem;
    }
    .footer-info, .footer-links, .footer-contact {
        text-align: center;
        align-items: center;
        justify-content: center;
    }
    .footer-certificates {
        justify-content: center;
    }
    .footer-google-reviews {
        justify-content: center;
    }
}

/* Buttons */
.cta-button,
.submit-button {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: var(--gradient-primary);
    color: var(--neutral-color);
    text-decoration: none;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.1rem;
}

.cta-button:hover,
.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Headings */
h2 {
    font-family: 'Digital Geometric Bold', 'Roboto', sans-serif;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        cursor: pointer;
    }

    .menu-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background: var(--text-color);
        margin: 5px 0;
        transition: 0.3s;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--neutral-color);
        flex-direction: column;
        padding: 1rem;
        text-align: center;
    }

    .nav-menu.active {
        display: flex;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .trust-seals {
        justify-content: center;
    }
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card:nth-child(2), .value-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3), .value-card:nth-child(3) {
    animation-delay: 0.4s;
}

.service-card:nth-child(4) {
    animation-delay: 0.6s;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.trust-badge {
    text-align: center;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.trust-badge:hover {
    opacity: 1;
}

.trust-badge img {
    height: 50px;
    margin-bottom: 1rem;
}

.trust-badge p {
    font-size: 0.9rem;
    color: var(--secondary-color);
}

/* Header Transitions */
.header {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header.header-hidden {
    transform: translateY(-100%);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.stat {
    opacity: 0;
    transform: translateY(20px);
}

.stat.animate {
    animation: fadeInUp 0.6s ease forwards;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-text {
    color: var(--secondary-color);
    font-size: 1rem;
}

/* Hero Form */
.hero-form {
    flex: 1;
    max-width: 400px;
    margin-left: 2rem;
}

.form-card {
    background: var(--neutral-color);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-card h3 {
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.form-security {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

.form-security i {
    color: var(--primary-color);
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 2rem;
}

.success-message i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.success-message h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* FAQ Accordion */
.faq-item {
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item h3 {
    position: relative;
    padding-right: 2rem;
}

.faq-item h3::after {
    content: '+';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.faq-item.active h3::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-item p {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active {
    background: var(--neutral-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Contact Methods */
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-color);
    text-decoration: none;
    padding: 1rem;
    border-radius: 10px;
    background: var(--gray-color);
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: var(--primary-color);
    color: var(--neutral-color);
    transform: translateX(5px);
}

.contact-method i {
    font-size: 1.2rem;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-color);
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--neutral-color);
    transform: translateY(-3px);
}

/* Fade In Animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Select Styling */
select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

/* Loading Animation */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.fa-spinner {
    animation: spin 1s linear infinite;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        padding: 100px 20px 40px;
    }

    .hero-form {
        margin-left: 0;
        margin-top: 2rem;
        max-width: 100%;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat {
        text-align: center;
    }
}

/* Featured Service */
.featured-service {
    background: var(--neutral-color);
    border-radius: 20px;
    margin-bottom: 4rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.featured-service:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.featured-service-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    padding: 3rem;
    align-items: start;
}

.featured-service .service-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-service .service-icon i {
    font-size: 2rem;
    color: var(--neutral-color);
}

.featured-service h3 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.featured-service .service-description {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    line-height: 1.6;
}

.featured-service .service-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 0;
}

.featured-service .service-features li {
    display: flex;
    align-items: center;
    color: var(--text-color);
}

.featured-service .service-features li i {
    color: var(--primary-color);
    margin-right: 0.8rem;
}

.service-action {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
}

.trust-indicators {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
}

.trust-item i {
    color: var(--primary-color);
}

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

.service-card {
    background: var(--neutral-color);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.service-card .service-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-card .service-icon i {
    font-size: 1.5rem;
    color: var(--neutral-color);
}

.service-card h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: var(--heading-font);
    font-weight: 600;
}

.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-description {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    flex: 1;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: var(--text-color);
}

.service-features li i {
    color: var(--primary-color);
    margin-right: 0.8rem;
    font-size: 0.9rem;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1.5rem;
    background: var(--primary-color);
    color: var(--neutral-color);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: auto;
}

.service-cta i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.service-cta:hover {
    background: var(--secondary-color);
}

.service-cta:hover i {
    transform: translateX(3px);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .featured-service-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .featured-service .service-features {
        grid-template-columns: 1fr;
    }

    .service-action {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-action {
        flex-direction: column;
        align-items: flex-start;
    }

    .featured-service .service-icon {
        width: 60px;
        height: 60px;
    }

    .featured-service .service-icon i {
        font-size: 1.5rem;
    }

    .featured-service h3 {
        font-size: 1.75rem;
    }
}

/* Trust Badges Section */
.trust-badges-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.trust-badges-row {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
    margin: 0 auto;
    max-width: 900px;
}

.feature-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(30, 80, 60, 0.08);
    padding: 2.5rem 1.5rem 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.18s cubic-bezier(.4,2,.6,1), box-shadow 0.18s cubic-bezier(.4,2,.6,1);
    min-height: 275px;
}

.feature-card:hover {
    transform: translateY(-7px) scale(1.03);
    box-shadow: 0 8px 32px rgba(30, 80, 60, 0.18);
}

.feature-icon-bg {
    background: var(--primary-color);
    border-radius: 50%;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.4rem;
    box-shadow: 0 2px 10px rgba(1,166,78,0.10);
}

.feature-icon {
    color: #fff;
    font-size: 2rem;
    margin: 0;
}

.feature-card h3 {
    color: var(--primary-color);
    font-size: 1.22rem;
    font-family: var(--heading-font);
    font-weight: 700;
    margin-bottom: 0.7rem;
    margin-top: 0;
}

.feature-card p {
    color: #444;
    font-size: 1rem;
    font-family: var(--body-font);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.certifications-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.certification-logo {
    height: 60px;
    width: auto;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.certification-logo:hover {
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .certifications-grid {
        gap: 2rem;
    }

    .certification-logo {
        height: 50px;
    }
}

/* WhatsApp Contact Button (in section) */
.whatsapp-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.7em;
    background: #25D366;
    color: #fff;
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    border-radius: 2em;
    padding: 0.85em 2em;
    margin-top: 2.2em;
    margin-bottom: 1em;
    box-shadow: 0 2px 16px rgba(37,211,102,0.13);
    transition: background 0.18s, transform 0.18s;
    text-decoration: none;
}
.whatsapp-contact-btn i {
    font-size: 1.3em;
}
.whatsapp-contact-btn:hover {
    background: #20b75c;
    transform: translateY(-2px) scale(1.03);
}

/* WhatsApp Floating Bubble */
.whatsapp-bubble {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1000;
    width: 62px;
    height: 62px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 6px 24px rgba(37,211,102,0.23);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.3rem;
    cursor: pointer;
    animation: whatsapp-bounce 1.4s infinite alternate cubic-bezier(.5,1.8,.6,1);
    transition: background 0.18s, transform 0.18s;
}
.whatsapp-bubble:hover {
    background: #20b75c;
    transform: scale(1.08);
}
@keyframes whatsapp-bounce {
    0% {
        transform: translateY(0) scale(1);
        box-shadow: 0 6px 24px rgba(37,211,102,0.23);
    }
    60% {
        transform: translateY(-10px) scale(1.06);
        box-shadow: 0 12px 32px rgba(37,211,102,0.26);
    }
    100% {
        transform: translateY(-5px) scale(1.03);
        box-shadow: 0 8px 28px rgba(37,211,102,0.21);
    }
}
@media (max-width: 600px) {
    .whatsapp-bubble {
        right: 14px;
        bottom: 14px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    .whatsapp-contact-btn {
        font-size: 1rem;
        padding: 0.7em 1.3em;
    }
}

/* Contact Features Icons */
.contact-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.1rem;
}
.contact-feature i {
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    font-size: 1.25rem;
    width: 2.6rem;
    height: 2.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(1,166,78,0.12);
    transition: background 0.18s, transform 0.18s;
}
.contact-feature i:hover {
    background: var(--secondary-color);
    transform: scale(1.07);
}
.contact-feature span {
    font-family: var(--body-font);
    font-size: 1.05rem;
    color: #222;
}

/* Custom Dropdown for Servicio de interés */
.form-group select#servicio {
    width: 100%;
    padding: 0.9em 2.7em 0.9em 1.2em;
    border: 2px solid var(--primary-color);
    border-radius: 1.8em;
    background: #fff url('data:image/svg+xml;utf8,<svg fill="%2301A64E" height="20" viewBox="0 0 20 20" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M5.516 7.548a.75.75 0 0 1 1.06 0L10 10.97l3.424-3.423a.75.75 0 1 1 1.06 1.06l-3.954 3.954a.75.75 0 0 1-1.06 0L5.516 8.608a.75.75 0 0 1 0-1.06z"/></svg>') no-repeat right 1.2em center/1.3em 1.3em;
    font-family: var(--body-font);
    font-size: 1.05rem;
    color: #222;
    font-weight: 600;
    outline: none;
    margin-right: 0.3em;
    box-shadow: 0 2px 8px rgba(1,166,78,0.07);
    transition: border 0.18s;
}
.form-group select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 4px 20px rgba(1,166,78,0.09);
    outline: none;
}

@media (max-width: 700px) {
    .contact-feature i {
        font-size: 1.1rem;
        width: 2.1rem;
        height: 2.1rem;
    }
    .form-group select {
        font-size: 0.97rem;
        padding: 0.8em 2.2em 0.8em 1em;
    }
}

/* Typography & Headings */
h1, .h1 {
    font-family: var(--heading-font);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 0.5em;
    line-height: 1.08;
    letter-spacing: -1px;
}

h2, .h2, .section-title {
    font-family: var(--heading-font);
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.8em;
    line-height: 1.13;
    letter-spacing: -0.5px;
}

h3, .h3 {
    font-family: var(--heading-font);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5em;
    line-height: 1.18;
}

.section-subtitle {
    font-family: var(--body-font);
    font-size: 1.18rem;
    color: #5d6d6d;
    margin-bottom: 1.7em;
    margin-top: -1em;
    font-weight: 400;
    line-height: 1.4;
}

p, li, label, input, select, textarea, span, a {
    font-family: var(--body-font);
    font-size: 1.04rem;
    color: #333;
    line-height: 1.7;
    text-decoration: none;@media (max-width: 600px) {
        .hero-flex {
            flex-direction: column;
            align-items: center;
            padding: 0 0.5em;
            gap: 0;
        }
        .hero-content {
            width: 100%;
            text-align: center;
            margin-bottom: 0.5em;
            padding-top: 1em;
        }
        .hero-title {
            font-size: 1.45rem;
            margin-bottom: 0.6em;
            line-height: 1.13;
        }
        .hero-subtitle {
            font-size: 1.01rem;
            padding: 0.8em 0.5em;
            margin-bottom: 1.7em;
            border-radius: 1.2em;
        }
        .hero-cta {
            width: 100%;
            display: flex;
            justify-content: center;
            margin-bottom: 1.4em;
        }
        .primary-button.hero-cta-btn {
            width: 92vw;
            max-width: 320px;
            font-size: 1rem;
            padding: 0.9em 0;
            margin: 0 auto;
        }
        .trust-row {
            flex-direction: column;
            align-items: center;
            gap: 0.7em;
            margin-top: 0.5em;
            margin-bottom: 1.7em;
            width: 100%;
        }
        .trust-badge, .hero-google-reviews {
            width: 92vw;
            max-width: 340px;
            font-size: 0.97rem;
            padding: 0.7em 0.8em;
            justify-content: center;
            margin: 0 auto;
        }
        .hero-google-reviews {
            margin-top: 0.2em;
        }
        .hero-illustration {
            display: flex;
            justify-content: center;
            width: 100%;
            margin: 1.7em auto 0 auto;
        }
        .hero-illustration img {
            width: 110px;
            max-width: 60vw;
            height: auto;
            margin: 0 auto;
        }
    }
}

/* Section Spacing */
section {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
}
.hero {
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
}
.testimonials,
.faq-section,
.contact-section {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
}
.footer {
    padding-top: 3.5rem;
    padding-bottom: 1.5rem;
}

/* Grid and Form Spacing */
.features-grid, .testimonials-grid, .faq-grid, .contact-grid {
    gap: 2.5rem;
}
.form-group {
    margin-bottom: 1.7rem;
}
.contact-features {
    margin-bottom: 1.7rem;
}

/* Button Consistency */
.primary-button, .cta-button, .submit-button, .header-cta {
    border-radius: 2em;
    padding: 0.95em 2.2em;
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 1.09rem;
    letter-spacing: 0.2px;
}

/* Responsive Headings & Spacing */
@media (max-width: 900px) {
    h1, .h1 { font-size: 2.1rem; }
    h2, .h2, .section-title { font-size: 1.5rem; }
    .section-subtitle { font-size: 1rem; }
    section { padding-top: 2.5rem; padding-bottom: 2.5rem; }
    .hero { padding-top: 3rem; padding-bottom: 3rem; }
}

.primary-button.hero-cta-btn span {
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 800;
}
.primary-button.hero-cta-btn:focus span,
.primary-button.hero-cta-btn:hover span {
    color: #fff !important;
    text-decoration: none !important;
}

/* Certificaciones más notorias */
.prominent-cert {
    height: 64px !important;
    width: auto !important;
    margin: 0 1.2em !important;
    filter: drop-shadow(0 4px 18px rgba(1,166,78,0.15));
    transition: transform 0.18s, filter 0.18s;
}
.prominent-cert:hover {
    transform: scale(1.07) rotate(-2deg);
    filter: drop-shadow(0 8px 28px rgba(1,166,78,0.25));
}

/* Contact features grid */
.contact-features.contact-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.2em 1.6em;
    margin-bottom: 2.1em;
    align-items: stretch;
}
@media (max-width: 700px) {
    .contact-features.contact-features-grid {
        grid-template-columns: 1fr;
        gap: 1em;
    }
}
.contact-feature {
    background: rgba(255,255,255,0.92);
    border-radius: 1em;
    box-shadow: 0 2px 10px rgba(30,80,60,0.06);
    padding: 1.1em 1.2em;
    display: flex;
    align-items: center;
    gap: 0.7em;
    font-size: 1.01rem;
}

/* Teléfono con selector de país */
.phone-input-group {
    display: flex;
    align-items: center;
    gap: 0.5em;
}
.country-code-select {
    background: #f6fef8;
    border: 1.5px solid #01A64E;
    border-radius: 1.2em;
    padding: 0.5em 1.2em;
    font-size: 1.03rem;
    color: #222;
    font-family: var(--body-font);
    font-weight: 600;
    outline: none;
    margin-right: 0.3em;
    box-shadow: 0 2px 8px rgba(1,166,78,0.07);
    transition: border 0.18s;
}
.country-code-select:focus {
    border-color: #07E05D;
}
.phone-input-group input[type="tel"] {
    flex: 1;
    border-radius: 1.2em;
    border: 1.5px solid #ddd;
    padding: 0.5em 1.2em;
    font-size: 1.03rem;
    font-family: var(--body-font);
}

/* Botón CTA header: máximo contraste, texto e icono blanco, sin subrayado */
.cta-button.header-cta {
    background: linear-gradient(90deg, #07E05D 0%, #01A64E 100%);
    color: #fff !important;
    border: 3px solid rgba(255,255,255,0.85);
    box-shadow: 0 0 0 4px rgba(1,166,78,0.13), 0 8px 32px 0 rgba(1,166,78,0.32);
    text-shadow: 0 2px 8px rgba(1,166,78,0.23), 0 0 2px #222;
    font-size: 1.13rem;
    font-weight: 800;
    border-radius: 2em;
    padding: 1.05em 2.3em;
    display: inline-flex;
    align-items: center;
    gap: 0.7em;
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: background 0.18s, box-shadow 0.18s, transform 0.18s, border 0.18s, color 0.18s;
    text-decoration: none !important;
}
.cta-button.header-cta span {
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 800;
}
.cta-button.header-cta i {
    color: #fff !important;
    font-size: 1.18em;
    transition: color 0.18s;
}
.cta-button.header-cta:hover,
.cta-button.header-cta:focus {
    background: linear-gradient(90deg, #01A64E 0%, #07E05D 100%);
    box-shadow: 0 0 0 7px rgba(7,224,93,0.18), 0 16px 48px 0 rgba(1,166,78,0.45), 0 0 16px 4px #07E05D;
    transform: scale(1.07) translateY(-3px);
    border: 3.5px solid #fff;
    outline: none;
    color: #fff !important;
    text-decoration: none !important;
}
.cta-button.header-cta:hover span,
.cta-button.header-cta:focus span {
    color: #fff !important;
    text-decoration: none !important;
}
.cta-button.header-cta:hover i,
.cta-button.header-cta:focus i {
    color: #fff !important;
}

/* Submit button máximo contraste */
.submit-button {
    background: linear-gradient(90deg, #07E05D 0%, #01A64E 100%);
    color: #fff !important;
    font-weight: 800;
    border: none;
    border-radius: 2em;
    padding: 1em 2.3em;
    font-size: 1.09rem;
    box-shadow: 0 6px 24px rgba(1,166,78,0.18);
    text-shadow: 0 2px 8px rgba(1,166,78,0.13), 0 0 2px #222;
    transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
    cursor: pointer;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 0.7em;
}
.submit-button span {
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 800;
}
.submit-button i {
    color: #fff !important;
    font-size: 1.18em;
    transition: color 0.18s;
}
.submit-button:hover, .submit-button:focus {
    background: linear-gradient(90deg, #01A64E 0%, #07E05D 100%);
    box-shadow: 0 0 0 7px rgba(7,224,93,0.14), 0 16px 48px 0 rgba(1,166,78,0.35);
    transform: scale(1.06) translateY(-2px);
    color: #fff !important;
    outline: none;
    text-decoration: none !important;
}
.submit-button:hover span,
.submit-button:focus span {
    color: #fff !important;
    text-decoration: none !important;
}
.submit-button:hover i,
.submit-button:focus i {
    color: #fff !important;
}

/* Social links: icono blanco en hover, sin subrayado */
.social-link {
    color: #222;
    text-decoration: none !important;
    transition: color 0.18s;
}
.social-link i {
    color: #222;
    transition: color 0.18s;
}
.social-link:hover,
.social-link:focus {
    color: #fff !important;
    text-decoration: none !important;
}
.social-link:hover i,
.social-link:focus i {
    color: #fff !important;
}

/* Responsive */
@media (max-width: 700px) {
    /* Header responsive mejoras balanceadas */
    .main-header {
        box-shadow: 0 2px 12px rgba(1,50,30,0.10);
        padding: 0.7em 0 0.5em 0;
    }
    .header-flex {
        flex-direction: column;
        align-items: center;
        height: auto;
        gap: 0.5em;
        padding: 0.3em 0 0.5em 0;
    }
    .logo img {
        height: 42px;
        max-width: 82vw;
        margin: 0 auto 0.1em auto;
        display: block;
    }
    .nav-container {
        width: 100%;
        flex-direction: row;
        justify-content: center;
        gap: 0.1em;
        align-items: center;
        padding: 0px;
    }
    .nav-menu {
        display: none !important;
    }
    .mobile-menu {
        display: none !important;
    }
    .cta-button.header-cta {
        width: auto;
        min-width: 60vw;
        max-width: 95vw;
        margin: 0.2em auto 0 auto;
        justify-content: center;
        font-size: 0.8rem;
        padding: 0.55em 0.8em;
        border-radius: 2em;
        box-shadow: 0 4px 18px rgba(1,166,78,0.13);
    }

    .cta-button.header-cta span {
        font-size: 0.8rem;
    }
}

@media (max-width: 600px) {
  .hero-flex {
    flex-direction: column;
    align-items: center;
    padding: 0 0.5em;
    gap: 0;
    width: 100%;
  }
  .hero-content {
    width: 100%;
    max-width: 90vw;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5em;
    padding-bottom: 0.5em;
  }
  .hero-title {
    font-size: 2.25rem;
    font-weight: 600;
    margin-bottom: 0.3em;
    line-height: 1.13;
    text-align: center;
    max-width: 95vw;
  }
  .hero-subtitle {
    font-size: 1rem;
    color: #f7f7f7;
    background: rgba(0,0,0,0.13);
    padding: 0.7em 0.5em;
    margin-bottom: 1.1em;
    border-radius: 1em;
    max-width: 95vw;
    text-align: center;
  }
  .hero-cta {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 1.1em;
  }
  .primary-button.hero-cta-btn {
    width: 80%;
    max-width: 80vw;
    font-size: 1rem;
    padding: 0.8em 3.8em;
    margin: 0 auto;
    border-radius: 2em;
    text-align: center;
  }
  .trust-row {
    flex-direction: column;
    align-items: center;
    gap: 0.5em;
    margin-top: 0.3em;
    margin-bottom: 1.1em;
    width: 100%;
    max-width: 80vw;
  }
  .trust-badge, .hero-google-reviews {
    width: 100%;
    max-width: 80vw;
    font-size: 0.93rem;
    padding: 0.55em 0.8em;
    justify-content: center;
    margin: 0 auto;
    box-sizing: border-box;
  }
  .hero-google-reviews {
    margin-top: 0.1em;
  }
  .hero-illustration {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 0 auto 0 auto;
  }
  .hero-illustration img {
    width: 450px;
    max-width: 90vw;
    height: auto;
    margin: 0 auto;
  }
  .contact-form {
    gap: 0.2em;
  }

}
