/* 
===========================================
   CUSTOM CSS - Centro de Convenciones
   Estilos modernos UX/UI optimizados
===========================================
*/

/* ===========================================
   VARIABLES CSS (Modern Design System)
=========================================== */
:root {
    --color-primary: #f4b74f;
    --color-primary-dark: #c4851a;
    --color-primary-light: #ffd280;
    --color-secondary: #2C3E50;
    --color-accent: #8d4f4f;
    --color-success: #81c868;
    --color-white: #FFFFFF;
    --color-light: #F8F9FA;
    --color-dark: #1A1A2E;
    --color-text: #4A4A4A;
    --color-text-light: #6C757D;
    
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-strong: 0 15px 50px rgba(0, 0, 0, 0.15);
    
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 50px;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===========================================
   HERO SECTION - Diseño Moderno
=========================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 46, 0.85) 0%,
        rgba(44, 62, 80, 0.75) 50%,
        rgba(244, 183, 79, 0.2) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 80px;
}

.hero-content .row {
    min-height: auto !important;
}

.hero-content .min-vh-100 {
    min-height: 70vh !important;
}

.hero-badge {
    display: inline-block;
    background: rgba(244, 183, 79, 0.2);
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    padding: 8px 20px;
    border-radius: var(--radius-xl);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease forwards;
}

.hero-title {
    color: var(--color-white);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.6s ease 0.2s forwards;
    opacity: 0;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 600px;
    animation: fadeInUp 0.6s ease 0.4s forwards;
    opacity: 0;
}

.hero-subtitle strong {
    color: var(--color-primary);
}

/* Hero CTA Buttons */
.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
    animation: fadeInUp 0.6s ease 0.6s forwards;
    opacity: 0;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--color-primary);
    color: #ffffff;
    padding: 16px 35px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition-normal);
    box-shadow: 0 10px 30px rgba(244, 183, 79, 0.4);
}

.btn-hero-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(244, 183, 79, 0.5);
    color: #ffffff;
}

.btn-hero-primary i {
    font-size: 20px;
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--color-white);
    padding: 16px 35px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition-normal);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 0.8s forwards;
    opacity: 0;
}

.stat-item {
    text-align: left;
}

.stat-number {
    display: block;
    color: var(--color-primary);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    animation: bounce 2s infinite;
}

.hero-scroll-indicator a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: var(--transition-normal);
}

.hero-scroll-indicator a:hover {
    color: var(--color-primary);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

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

/* ===========================================
   SECCIONES - Mejoras Generales
=========================================== */
section {
    position: relative;
}

.heading-text h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 15px;
}

.heading-text .lead {
    color: var(--color-text-light);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* ===========================================
   VIDEOS - Iframes Redondeados
=========================================== */
.embed-responsive {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    background: #000;
}

.embed-responsive iframe,
.embed-responsive-item {
    border-radius: var(--radius-lg);
}

/* Video del recorrido - ajustar para llenar contenedor */
#servicios .embed-responsive {
    margin-top: 40px;
}

#servicios .embed-responsive video,
#servicios .embed-responsive iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Video player nativo */
video.embed-responsive-item {
    background: #000;
    object-fit: cover;
}

iframe.map {
    border-radius: 0;
}

/* Imagen del croquis redondeada */
img[src*="croquis"] {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
}

/* Imagen de ubicación redondeada */
img[src*="ubicacion-centro-convenciones"] {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
}

/* Imagen de promo redondeada */
img[src*="promo2022"] {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
}

/* ===========================================
   ICON BOXES - Servicios (Reset completo)
=========================================== */
#servicios .icon-box {
    background: #fff !important;
    border-radius: 24px !important;
    padding: 35px 25px !important;
    transition: all 0.3s ease !important;
    border: none !important;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08) !important;
    height: 100% !important;
    display: block !important;
    text-align: center !important;
    position: relative !important;
}

#servicios .icon-box:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12) !important;
}

#servicios .icon-box .icon {
    width: 70px !important;
    height: 70px !important;
    background: linear-gradient(135deg, #f4b74f 0%, #f4dbb1 100%) !important;
    border-radius: 50% !important;
    display: block !important;
    margin: 0 auto 20px auto !important;
    position: relative !important;
    float: none !important;
    left: auto !important;
    top: auto !important;
}

#servicios .icon-box .icon a {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    line-height: 70px !important;
    text-align: center !important;
}

#servicios .icon-box .icon i {
    font-size: 26px !important;
    color: #fff !important;
    line-height: 70px !important;
    display: block !important;
    text-align: center !important;
    width: 100% !important;
    position: static !important;
}

#servicios .icon-box h3 {
    font-size: 1.15rem !important;
    font-weight: 600 !important;
    color: #2C3E50 !important;
    margin: 0 0 12px 0 !important;
    text-align: center !important;
    clear: both !important;
}

#servicios .icon-box p {
    color: #555 !important;
    font-size: 0.95rem !important;
    line-height: 1.7 !important;
    text-align: center !important;
    margin: 0 !important;
}

#servicios .col-lg-4 {
    margin-bottom: 30px;
}

/* Asegurar altura uniforme en las columnas de servicios */
#servicios .row {
    display: flex;
    flex-wrap: wrap;
}

#servicios .col-lg-4 {
    display: flex;
    margin-bottom: 30px;
}

#servicios .col-lg-4 .icon-box {
    width: 100%;
}

/* ===========================================
   FAQ - Acordeón Moderno
=========================================== */
#faq {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.ac-item {
    background: var(--color-white);
    border-radius: var(--radius-lg) !important;
    margin-bottom: 15px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    border: none !important;
}

.ac-title {
    padding: 20px 25px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-secondary);
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 15px;
}

.ac-title:hover {
    color: var(--color-primary);
}

.ac-title i {
    color: var(--color-primary);
    font-size: 18px;
}

.ac-content {
    padding: 0 25px 20px 60px;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ===========================================
   TESTIMONIOS - Cards Mejoradas (Altura uniforme)
=========================================== */
#testimonios {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

#testimonios .row {
    display: flex;
    flex-wrap: wrap;
}

#testimonios .col-lg-4 {
    display: flex;
    margin-bottom: 30px;
}

.testimonial-item {
    transition: var(--transition-normal);
    border-radius: var(--radius-lg) !important;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium) !important;
}

.testimonial-content {
    flex-grow: 1;
}

.rating-summary {
    font-size: 1.1rem;
}

.rating-summary .amarillo i,
.testimonial-rating i {
    color: var(--color-primary) !important;
    margin-right: 2px;
}

/* CTA Card en testimonios */
#testimonios .col-lg-4:last-child .testimonial-item {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%) !important;
}

/* ===========================================
   FORMULARIO DE CONTACTO
=========================================== */
.form-control {
    border: 2px solid #e9ecef;
    border-radius: var(--radius-sm);
    padding: 12px 18px;
    font-size: 1rem;
    transition: var(--transition-normal);
}

.form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(244, 183, 79, 0.15);
}

.widget-contact-form .btn,
.widget-contact-form button.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--color-primary) !important;
    color: #ffffff !important;
    padding: 16px 35px !important;
    border-radius: var(--radius-xl) !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    text-decoration: none;
    transition: var(--transition-normal) !important;
    box-shadow: 0 10px 30px rgba(244, 183, 79, 0.4) !important;
    border: none !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.widget-contact-form .btn:hover,
.widget-contact-form button.btn:hover {
    background: var(--color-primary-dark) !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(244, 183, 79, 0.5) !important;
    color: #ffffff !important;
}

.widget-contact-form .btn i,
.widget-contact-form button.btn i {
    font-size: 20px;
}

/* ===========================================
   BOTONES GENERALES
=========================================== */
.btn {
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: var(--transition-normal);
}

/* Botón light en testimonios */
.btn.btn-light {
    border-radius: 50px !important;
    padding: 12px 28px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.btn.btn-light:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

/* ===========================================
   BOTÓN CTA NAVBAR - Estilo Moderno
=========================================== */
#mainMenu nav > ul > li > a.verde,
a.verde,
.verde {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    color: #ffffff !important;
    padding: 14px 32px !important;
    border-radius: 50px !important;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    position: relative;
    overflow: hidden;
    text-transform: none;
}

a.verde::before,
.verde::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

a.verde:hover,
.verde:hover {
    color: #ffffff !important;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

a.verde:hover::before,
.verde:hover::before {
    opacity: 1;
}

a.verde:active,
.verde:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

a.verde i,
.verde i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

a.verde:hover i,
.verde:hover i {
    transform: scale(1.1);
    animation: pulse-icon 0.5s ease;
}

@keyframes pulse-icon {
    0%, 100% { transform: scale(1.1); }
    50% { transform: scale(1.3); }
}

/* Responsive del botón CTA */
@media (max-width: 991px) {
    a.verde,
    .verde {
        padding: 10px 20px;
        font-size: 13px;
        width: 100%;
        justify-content: center;
        margin: 10px 0;
    }
}

/* ===========================================
   GALERÍA - Portfolio Mejorado
=========================================== */
.portfolio-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.portfolio-item img {
    transition: var(--transition-slow);
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

/* ===========================================
   CLIENTES LOGOS
=========================================== */
.client-logos img {
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition-normal);
}

.client-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* ===========================================
   FOOTER MODERNO
=========================================== */
#footer {
    background: #1a1a1a;
}

#footer .footer-content {
    background: #1a1a1a;
    padding: 40px 0;
}

#footer .widget-title {
    color: var(--color-white);
    font-weight: 600;
}

#footer p,
#footer span {
    color: rgba(255, 255, 255, 0.8);
}

#footer a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-normal);
}

#footer a:hover {
    color: var(--color-primary) !important;
}

.copyright-content {
    background: #1a1a1a !important;
    padding: 20px 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.copyright-content .copyright-text {
    color: rgba(255, 255, 255, 0.6) !important;
    margin: 0;
}

.copyright-content a {
    color: var(--color-primary) !important;
}

#footer .copyright-content {
    background: #1a1a1a !important;
}

/* ===========================================
   CROQUIS SECTION
=========================================== */
.list-group-item {
    border-radius: var(--radius-sm) !important;
    margin-bottom: 5px;
    border: none;
    box-shadow: var(--shadow-soft);
}

/* ===========================================
   RESPONSIVE DESIGN
=========================================== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-stats {
        gap: 25px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    #servicios .col-lg-4,
    #testimonios .col-lg-4 {
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        min-height: 100vh;
        padding: 80px 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: space-between;
    }
    
    .stat-item {
        flex: 1;
        text-align: center;
    }
    
    .hero-scroll-indicator {
        display: none;
    }
    
    .icon-box {
        border-radius: var(--radius-md) !important;
    }
    
    .testimonial-item {
        border-radius: var(--radius-md) !important;
    }
}

/* ===========================================
   ANIMACIONES SUAVES (Performance-friendly)
=========================================== */
@media (prefers-reduced-motion: no-preference) {
    .icon-box,
    .testimonial-item,
    .portfolio-item,
    .btn {
        will-change: transform;
    }
}

/* Respetar preferencias de movimiento reducido */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-background {
        animation: none;
    }
}

/* ===========================================
   MEJORAS DE ACCESIBILIDAD
=========================================== */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Color amarillo/dorado consistente */
.amarillo,
.amarillo i {
    color: var(--color-primary) !important;
}

.amarillo2 {
    color: var(--color-primary-dark) !important;
}

/* ===========================================
   BOTÓN FLOTANTE DE CONTACTO PERSONALIZADO
=========================================== */
.contact-float-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    font-family: var(--font-body);
}

.contact-float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    animation: pulse-contact 2s infinite;
}

.contact-float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.contact-float-btn i {
    font-size: 28px;
    color: white;
}

@keyframes pulse-contact {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

.contact-options {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: white;
    border-radius: 15px;
    padding: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    min-width: 220px;
}

.contact-options.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.contact-option-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    margin: 5px 0;
    background: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #333;
    width: 100%;
    text-align: left;
    font-size: 14px;
}

.contact-option-btn:hover {
    background: #f8f9fa;
    transform: translateX(-5px);
}

.contact-option-btn.whatsapp {
    color: #25D366;
}

.contact-option-btn.phone {
    color: #007bff;
}

.contact-option-btn i {
    font-size: 24px;
    width: 30px;
}

.contact-option-btn .option-text {
    display: flex;
    flex-direction: column;
}

.contact-option-btn .option-label {
    font-weight: 600;
    font-size: 14px;
}

.contact-option-btn .option-number {
    font-size: 12px;
    color: #666;
}

.contact-cta-text {
    position: absolute;
    bottom: 20px;
    right: 75px;
    background: #333;
    color: white;
    padding: 10px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.contact-cta-text.show {
    opacity: 1;
    visibility: visible;
}

.contact-cta-text::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 8px solid #333;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-float-widget {
        bottom: 15px;
        right: 15px;
    }
    
    .contact-float-btn {
        width: 55px;
        height: 55px;
    }
    
    .contact-float-btn i {
        font-size: 24px;
    }
    
    .contact-options {
        right: 0;
        min-width: 200px;
    }
    
    .contact-cta-text {
        display: none;
    }
}

/* ===========================================
   FOOTER PROFESIONAL - SEO Optimizado
=========================================== */
.footer-professional {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

.footer-professional .widget-title {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-professional .footer-links li {
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.footer-professional .footer-links li:hover {
    transform: translateX(5px);
}

.footer-professional .footer-links a:hover {
    color: #f4b74f !important;
    text-decoration: none;
}

.footer-professional .social-icons a:hover {
    transform: scale(1.15);
    opacity: 0.8;
}

.footer-professional .footer-keywords p {
    margin-bottom: 0;
    text-align: justify;
}

.footer-professional .footer-legal-links a:hover {
    color: #f4b74f !important;
    text-decoration: underline;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-professional .widget {
        margin-bottom: 30px;
    }
    
    .footer-professional .footer-keywords {
        font-size: 12px !important;
        text-align: center !important;
    }
    
    .footer-professional .copyright-content .row > div {
        text-align: center !important;
    }
}

/* Footer Hover Effects */
.footer-professional a {
    transition: all 0.3s ease;
}

.footer-professional .widget-title i {
    margin-right: 8px;
    font-size: 16px;
}
