/* Estilos menú hamburguesa */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 10001;
}
.hamburger span {
    display: block;
    width: 28px;
    height: 4px;
    margin: 4px 0;
    background: var(--color-acento);
    border-radius: 2px;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    .nav-menu {
        display: none;
        flex-direction: column;
        gap: 10px;
        background: var(--color-primario);
        padding: 12px 0;
        border-radius: 12px;
        align-items: flex-start;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100vw;
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        z-index: 10000;
    }
    .nav-menu.active {
        display: flex;
    }
    nav {
        position: relative;
    }
}
/* Responsive styles generales */
@media (max-width: 1024px) {
    .container {
        max-width: 98vw;
        padding: 0 10px;
    }
    .main-content {
        padding: 24px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 10px;
        background: var(--color-primario);
        padding: 12px 0;
        border-radius: 12px;
        align-items: flex-start;
    }
    nav {
        flex-direction: column;
        align-items: flex-start;
    }
    .logo {
        margin-bottom: 12px;
    }
    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    .contact-info, .contact-info-footer {
        font-size: 1rem;
    }
    .ad-banner {
        font-size: 1rem;
        padding: 12px;
    }
    .section-title {
        font-size: 1.3rem;
    }
    .service-card {
        padding: 18px;
    }
    .faq {
        padding: 32px 0;
    }
    .main-content {
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 48px !important;
        max-width: 90vw;
    }
    .nav-menu {
        font-size: 1rem;
        padding: 8px 0;
    }
    .footer-content {
        font-size: 0.95rem;
    }
    .ad-banner {
        font-size: 0.95rem;
        padding: 8px;
    }
    .service-card {
        padding: 10px;
        font-size: 0.95rem;
    }
    .faq {
        padding: 18px 0;
    }
    .main-content {
        padding: 6px;
    }
    .hero-content {
        width: 100%;
        max-width: 100%;
    }
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    .btn-hero {
        padding: 14px 25px;
        font-size: 0.95rem;
    }
}
/* Nueva paleta de colores */
:root {
    --color-primario: #03323a;
    --color-secundario: #49c225;
    --color-acento: #A5FF8C;
    --color-fondo: #FCFFFF;
    --color-gris: #808F8F;
}
/* Botón flotante de WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    background: #25d366;
    color: white;
    border-radius: 50%;
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(40,167,69,0.25);
    font-size: 2.3rem;
    transition: background 0.3s, transform 0.2s;
    cursor: pointer;
    text-decoration: none;
}
.whatsapp-float:hover {
    background: #128c7e;
    transform: scale(1.08);
}
/* Main content container */
.main-content {
    max-width: 900px;
    margin: 40px auto;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: 48px;
}
@media (max-width: 768px) {
    .main-content { padding: 20px; }
}

/* Imagenes de secciones */
.about-img, .contact-img, .img-cita {
    border-radius: 14px;
    max-width: 260px;
    margin-left: 32px;
    float: right;
    object-fit: contain;
}
@media (max-width: 768px) {
    .about-img, .contact-img, .img-cita {
        float: none;
        display: block;
        margin: 0 auto 24px;
        max-width: 100%;
    }
}

/* FAQ styles */
.faq-list { margin-top: 32px; }
.faq-item { margin-bottom: 28px; }
.faq-q { font-weight: bold; color: #2d5cc5; margin-bottom: 8px; }
.faq-a { margin-left: 18px; }

/* Banner de publicidad */
.ad-banner {
    background: linear-gradient(90deg, #25d366 0%, #2d5cc5 100%);
    color: white;
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 32px;
    text-align: center;
    font-size: 1.3rem;
    font-weight: bold;
}

/* Botón WhatsApp personalizado */
.btn-wp {
    display: inline-block;
    background: #25d366;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(40,167,69,0.3);
    transition: background 0.3s;
}
.btn-wp:hover { background: #128c7e; }
.wp-icon { margin-right: 10px; font-size: 1.5rem; vertical-align: middle; }

/* Footer contact info */
.contact-info-footer {
    margin: 20px 0;
    font-size: 1.15rem;
}
/* Nav menu styles for all pages */
.nav-menu {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
}
.nav-menu li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s;
}
.nav-menu li a:hover {
    color: #ffd700;
}
.nav-link.active {
    color: var(--color-acento) !important;
    font-weight: bold;
    background: rgba(165, 255, 140, 0.1);
    border-radius: 8px;
    padding: 8px 16px !important;
}

/* Estilos compactos para el menú de navegación Bootstrap */
.navbar {
    padding: 0.5rem 1rem !important;
}

.navbar-brand img {
    height: 70px !important;
    max-height: 70px !important;
}

.navbar-nav {
    flex-wrap: nowrap !important;
    gap: 0 !important;
    align-items: center;
}

.navbar-nav .nav-item {
    margin-left: 0.2rem !important;
    margin-right: 0.2rem !important;
    white-space: nowrap;
}

.navbar-nav .nav-link {
    font-size: 0.85rem !important;
    padding: 0.35rem 0.5rem !important;
    font-weight: 500 !important;
    white-space: nowrap;
    transition: all 0.2s ease;
    line-height: 1.2;
}

.navbar-nav .nav-link:hover {
    color: var(--color-acento) !important;
    background: rgba(165, 255, 140, 0.1);
    border-radius: 6px;
}

.navbar-nav .nav-link.active {
    padding: 0.35rem 0.5rem !important;
    font-size: 0.85rem !important;
}

/* Ajustes para pantallas medianas */
@media (min-width: 992px) and (max-width: 1200px) {
    .navbar-brand img {
        height: 60px !important;
        max-height: 60px !important;
    }
    
    .navbar-nav .nav-link {
        font-size: 0.75rem !important;
        padding: 0.3rem 0.4rem !important;
    }
    
    .navbar-nav .nav-item {
        margin-left: 0.1rem !important;
        margin-right: 0.1rem !important;
    }
}

/* Ajustes para pantallas grandes */
@media (min-width: 1200px) {
    .navbar-nav .nav-link {
        font-size: 0.875rem !important;
        padding: 0.4rem 0.55rem !important;
    }
}

/* Ajustes para pantallas extra grandes */
@media (min-width: 1400px) {
    .navbar-nav .nav-link {
        font-size: 0.9rem !important;
        padding: 0.45rem 0.65rem !important;
    }
}
/* EASYMONEY Portal Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
header {
    background-color: var(--color-primario);
    color: var(--color-fondo);
    padding: 20px 0;
    position: relative;
    min-height: 200px;
}

/* Header con imagen de banner solo en la página de inicio */
/* NOTA: La imagen de fondo estática se ha removido para permitir que el slider dinámico funcione */
header.header-home {
    /* background-image: url('../images/banner/6.webp'); - Removido para usar slider dinámico */
    background: transparent; /* Fondo transparente para que se vea el slider */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 600px;
    /* El fondo ahora se maneja por el carousel de banners dentro de .hero-section */
}

/* Removido el ::before del header para que no interfiera con el slider */
/* El gradiente ahora se aplica directamente en cada slide del carousel */

header .container {
    position: relative;
    z-index: 2;
}

/* Asegurar que el hero-section tenga el mismo ancho que el navbar */
header.header-home .container > .hero-section {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    /* Remover padding lateral para que tenga el mismo ancho que el navbar */
    padding-left: 0;
    padding-right: 0;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    color: var(--color-acento);
    font-size: 24px;
    font-weight: bold;
}
.hero-section {
    position: relative;
    width: 100%;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 20px 20px 30px 20px;
    margin-top: 20px;
    border-radius: 12px;
    overflow: hidden;
    background: transparent; /* Sin fondo para que se vea el slider */
    /* Asegurar que tenga el mismo ancho que el navbar */
    box-sizing: border-box;
}

/* Ocultar contenido estático del hero-section por defecto (se mostrará solo si no hay slider) */
.hero-section > .hero-content:not(.carousel-item .hero-content) {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    position: absolute !important;
    left: -9999px !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
}

/* Mostrar contenido estático solo si no hay carousel */
.hero-section:not(:has(.carousel)) > .hero-content {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    left: auto !important;
    width: auto !important;
    height: auto !important;
}

/* Estilos para el carousel de banners */
.hero-section .carousel {
    width: 100%;
    min-height: 400px;
    border-radius: 12px;
    overflow: hidden;
    margin: 0;
}

.hero-section .carousel-inner {
    min-height: 400px;
    border-radius: 12px;
    overflow: hidden;
}

.hero-section .carousel-item {
    min-height: 400px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    display: none; /* Ocultar todos los items por defecto */
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

/* Mostrar solo el item activo */
.hero-section .carousel-item.active {
    display: flex !important; /* Mostrar el item activo */
}

.hero-section .carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(3, 50, 58, 0.4) 0%, rgba(3, 50, 58, 0.5) 30%, rgba(3, 50, 58, 0.6) 60%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
    border-radius: 12px; /* Mantener el border-radius del hero-section */
}

.hero-section .carousel-indicators {
    z-index: 3;
    margin-bottom: 20px;
}

.hero-section .carousel-control-prev,
.hero-section .carousel-control-next {
    z-index: 3;
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(3, 50, 58, 0.7);
    border-radius: 50%;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.hero-section .carousel-control-prev:hover,
.hero-section .carousel-control-next:hover {
    opacity: 1;
}

.hero-section .carousel-control-prev {
    left: 20px;
}

.hero-section .carousel-control-next {
    right: 20px;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 50%;
    max-width: 600px;
}

/* Ocultar contenido estático del hero-section cuando hay un carousel activo */
.hero-section:has(.carousel) > .hero-content:not(.carousel-item .hero-content) {
    display: none !important;
}

/* Ocultar contenido estático si no es parte del carousel */
.hero-section .carousel ~ .hero-content {
    display: none !important;
}

/* Posiciones del texto en los banners */
.hero-section .carousel-item .hero-content-izquierda {
    text-align: left;
    margin-right: auto;
    margin-left: 0;
}

.hero-section .carousel-item .hero-content-centro {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.hero-section .carousel-item .hero-content-derecha {
    text-align: right;
    margin-left: auto;
    margin-right: 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: var(--color-acento);
    margin-bottom: 30px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

/* Botones centrados para el carousel */
.hero-section .carousel-item .hero-buttons-center {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 20px;
}

.btn-hero {
    display: inline-block;
    background-color: var(--color-secundario);
    color: white;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-hero:hover {
    background-color: var(--color-primario);
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    color: white;
}

.btn-hero:first-child {
    background-color: var(--color-secundario);
}

.btn-hero:last-child {
    background-color: var(--color-primario);
}

.btn-hero:last-child:hover {
    background-color: var(--color-secundario);
}
.btn {
    display: inline-block;
    background-color: var(--color-secundario);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}
.btn:hover {
    background-color: var(--color-primario);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}
.services {
    padding: 80px 0;
    background-color: var(--color-fondo);
}
.section-title {
    text-align: center;
    margin-bottom: 50px;
    color: var(--color-primario);
    font-size: 2.2rem;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.service-card {
    background: var(--color-fondo);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    text-align: center;
}
.service-card:hover {
    transform: translateY(-10px);
}
.service-icon {
    font-size: 2.5rem;
    color: var(--color-secundario);
    margin-bottom: 20px;
}
.service-card h3 {
    margin-bottom: 15px;
    color: var(--color-primario);
}
.faq {
    padding: 80px 0;
    background-color: var(--color-acento);
}
.faq-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
.faq-image {
    display: flex;
    justify-content: center;
    align-items: center;
}
.faq-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    object-fit: contain;
}
.accordion {
    width: 100%;
}
.accordion-item {
    background: var(--color-fondo);
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}
.accordion-header {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}
.accordion-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}
.accordion-content.active {
    max-height: 500px;
    padding: 0 20px 20px;
}
footer {
    background-color: var(--color-primario);
    color: var(--color-fondo);
    padding: 40px 0;
    text-align: center;
}
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.contact-info {
    margin: 20px 0;
}
.social-icons {
    margin-top: 20px;
}
.social-icons a {
    color: var(--color-acento);
    margin: 0 10px;
    font-size: 1.5rem;
}
@media (max-width: 768px) {
    header {
        min-height: 150px;
        padding: 15px 0;
    }
    
    header.header-home {
        min-height: 500px;
    }
    
    .hero-section {
        min-height: 300px;
        padding: 15px 15px 20px 15px;
        margin-top: 15px;
    }
    
    .hero-content {
        width: 100%;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 10px;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-hero {
        width: 100%;
        text-align: center;
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 15px;
        align-items: flex-start;
    }
    
    .btn-hero {
        width: 100%;
        max-width: 300px;
        padding: 16px 35px;
        font-size: 1.1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .faq-image {
        order: 1;
    }
    
    .accordion {
        order: 2;
    }
    
    .faq-img {
        max-width: 100%;
    }
}

/* ===== SECCIÓN DE REFERENCIAS ===== */
.references {
    padding: 80px 0;
    background-color: var(--color-fondo);
}

.reference-card {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.reference-image {
    flex-shrink: 0;
    width: 250px;
    height: 250px;
    border-radius: 0;
    overflow: hidden;
    border: 5px solid var(--color-secundario);
    box-shadow: 0 6px 20px rgba(73, 194, 37, 0.3);
    background-color: #f5f5f5;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.reference-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.reference-content {
    flex: 1;
    position: relative;
}

.reference-quote {
    font-size: 3rem;
    color: var(--color-secundario);
    opacity: 0.3;
    margin-bottom: 20px;
    line-height: 1;
}

.reference-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
    font-style: italic;
}

.reference-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.reference-author strong {
    font-size: 1.2rem;
    color: var(--color-primario);
    font-weight: 700;
}

.reference-author span {
    font-size: 0.95rem;
    color: var(--color-gris);
    font-weight: 500;
}

/* Carousel personalizado */
#referencesCarousel {
    max-width: 1200px;
    margin: 0 auto;
}

#referencesCarousel .carousel-indicators {
    bottom: -50px;
}

#referencesCarousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--color-gris);
    opacity: 0.5;
    margin: 0 5px;
}

#referencesCarousel .carousel-indicators button.active {
    background-color: var(--color-secundario);
    opacity: 1;
}

#referencesCarousel .carousel-control-prev,
#referencesCarousel .carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: var(--color-secundario);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.9;
    transition: all 0.3s ease;
}

#referencesCarousel .carousel-control-prev {
    left: -25px;
}

#referencesCarousel .carousel-control-next {
    right: -25px;
}

#referencesCarousel .carousel-control-prev:hover,
#referencesCarousel .carousel-control-next:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
    background-color: var(--color-primario);
}

#referencesCarousel .carousel-control-prev-icon,
#referencesCarousel .carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

/* Responsive para referencias */
@media (max-width: 992px) {
    .reference-card {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 30px;
    }
    
    .reference-image {
        width: 200px;
        height: 200px;
    }
    
    .reference-img {
        object-position: center top;
    }
    
    .reference-text {
        font-size: 1rem;
    }
    
    #referencesCarousel .carousel-control-prev {
        left: 10px;
    }
    
    #referencesCarousel .carousel-control-next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .references {
        padding: 50px 0;
    }
    
    .reference-card {
        padding: 25px 20px;
    }
    
    .reference-image {
        width: 150px;
        height: 150px;
    }
    
    .reference-img {
        object-position: center top;
    }
    
    .reference-quote {
        font-size: 2rem;
    }
    
    .reference-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .reference-author strong {
        font-size: 1.1rem;
    }
    
    #referencesCarousel .carousel-control-prev,
    #referencesCarousel .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    #referencesCarousel .carousel-control-prev-icon,
    #referencesCarousel .carousel-control-next-icon {
        width: 15px;
        height: 15px;
    }
}

/* ===== FOOTER PROFESIONAL ===== */
.footer-professional {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffffff;
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.footer-professional::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3A9F1D, #2E7D32, #1B5E20);
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-section {
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 40px;
    margin-right: 12px;
}

.footer-logo h4 {
    color: #3A9F1D;
    font-weight: 700;
    margin: 0;
    font-size: 1.5rem;
}

.footer-description {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-title {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #3A9F1D;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: #3A9F1D;
    transform: translateX(5px);
}

.footer-links a i {
    margin-right: 8px;
    width: 16px;
    text-align: center;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: #b0b0b0;
    font-size: 0.9rem;
}

.footer-contact-item i {
    color: #3A9F1D;
    margin-right: 10px;
    width: 16px;
    text-align: center;
}

.footer-contact-item a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: #3A9F1D;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(58, 159, 29, 0.1);
    color: #3A9F1D;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(58, 159, 29, 0.2);
}

.footer-social a:hover {
    background: #3A9F1D;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(58, 159, 29, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 2rem;
    text-align: center;
    color: #888;
    font-size: 0.85rem;
}

.footer-bottom p {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-bottom a {
    color: #3A9F1D;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #ffffff;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-professional {
        padding: 2rem 0 1rem;
    }
    
    .footer-section {
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom p {
        flex-direction: column;
        gap: 0.25rem;
    }
}

@media (max-width: 576px) {
    .footer-professional {
        padding: 1.5rem 0 1rem;
    }
    
    .footer-logo h4 {
        font-size: 1.3rem;
    }
    
    .footer-title {
        font-size: 1rem;
    }
}
