:root {
    --primary-color: #081268;
    --secondary-color: #cd9c35;
    --text-light: #ffffff;
    --text-dark: #333333;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
}

/* Header Styles */
.navbar {
    background-color: rgba(8, 18, 104, 0.85);
    padding: 1rem 0;
    transition: all 0.4s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background-color: rgba(8, 18, 104, 0.75);
    backdrop-filter: blur(12px);
}

.navbar-brand {
    color: var(--text-light) !important;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.6rem;
    text-transform: none;
    letter-spacing: 1px;
    padding: 0.5rem 0;
    position: relative;
    transition: all 0.4s ease;
}

.navbar-brand:hover {
    transform: translateY(-2px);
}

.brand-text {
    color: var(--text-light);
    transition: all 0.4s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    display: inline-block;
}

.brand-text:hover {
    color: var(--secondary-color);
    transform: scale(1.02);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

.nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    position: relative;
    margin: 0 0.2rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link:hover {
    color: var(--secondary-color) !important;
    transform: translateY(-2px);
}

.dropdown-menu {
    background-color: var(--primary-color);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 0.5rem;
    display: block;
    margin-top: 0;
}

.dropdown:hover .dropdown-menu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.dropdown-item {
    color: var(--text-light);
    padding: 0.7rem 1.2rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.dropdown-item:hover {
    background-color: var(--secondary-color);
    color: var(--text-light);
    transform: translateX(5px);
}

/* Ajuste para el enlace de Servicios */
.nav-item.dropdown .nav-link {
    cursor: pointer;
}

.nav-item.dropdown .nav-link::after {
    display: none;
}

/* Navbar Toggler Animation */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
    transition: all 0.3s ease;
    background-color: transparent;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='3' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 30px;
    height: 30px;
    transition: all 0.3s ease;
}

.navbar-toggler:hover .navbar-toggler-icon {
    transform: rotate(90deg);
    opacity: 0.8;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.3rem;
    }
    
    .nav-link {
        padding: 0.8rem 1rem !important;
    }
    
    .dropdown-menu {
        background-color: rgba(8, 18, 104, 0.95);
        backdrop-filter: blur(10px);
        position: static;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
    }
    
    .dropdown:hover .dropdown-menu {
        transform: none;
    }
    
    .dropdown-item {
        padding: 0.8rem 1.5rem;
    }
    
    .navbar-toggler {
        padding: 0.75rem;
        margin-right: 0.5rem;
    }
    
    .navbar-toggler-icon {
        width: 35px;
        height: 35px;
    }
}

/* Hero Section Mobile */
.hero-section-mobile {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.hero-section-mobile .container {
    position: relative;
    z-index: 3;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-top: 35vh;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Hero Section Desktop */
.hero-section-desktop {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.hero-section-desktop .container {
    position: relative;
    z-index: 3;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-top: 20vh;
    padding-left: 3rem;
    padding-right: 3rem;
}

.hero-section-desktop h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.hero-section-desktop .lead {
    font-size: 1.5rem;
    line-height: 1.6;
    max-width: 800px;
    margin-bottom: 2.5rem;
}

.hero-section-desktop .btn-whatsapp {
    font-size: 1.25rem;
    padding: 1rem 2.5rem;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* Desktop optimizations */
@media (min-width: 768px) {
    .hero-section .container {
        padding-top: 25vh;
        padding-left: 2rem;
    }
    
    .hero-section h1 {
        font-size: 3.5rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }
    
    .hero-section .lead {
        font-size: 1.25rem;
        line-height: 1.6;
        max-width: 600px;
    }
    
    .hero-section .btn-whatsapp {
        font-size: 1.1rem;
        padding: 0.75rem 2rem;
    }
}

@media (min-width: 1200px) {
    .hero-section .container {
        padding-top: 20vh;
        padding-left: 3rem;
    }
    
    .hero-section h1 {
        font-size: 4rem;
    }
    
    .hero-section .lead {
        font-size: 1.35rem;
        max-width: 700px;
    }
}

.hero-section h1,
.hero-section p {
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    font-weight: 700;
}

/* Eliminar slideshow y controles */
.hero-slideshow,
.slide,
.hero-controls,
.hero-dots {
    display: none !important;
}

/* Cards Section */
.card {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.card-title {
    color: var(--primary-color);
    font-weight: 600;
}

/* Buttons */
.btn-whatsapp {
    background-color: #25D366;
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp i {
    font-size: 1.2rem;
    margin-right: 8px;
    transition: transform 0.3s ease;
}

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

.btn-primary {
    background-color: var(--primary-color);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary i {
    font-size: 1.2rem;
    margin-right: 8px;
    transition: transform 0.3s ease;
}

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

.btn-success {
    background-color: #25D366;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-success:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.2);
}

.btn-success i {
    font-size: 1.3rem;
    margin-right: 10px;
    transition: transform 0.3s ease;
}

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

/* About Section */
#about {
    background-color: #f8f9fa;
}

#about h2 {
    color: var(--primary-color);
    font-weight: 700;
}

#about .lead {
    color: var(--text-dark);
    font-weight: 500;
}

/* Ajuste para la imagen en la sección About */
#about img {
    max-height: 500px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease-in;
}

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

/* Remove the old logo styles */
.navbar-brand img.logo {
    display: none;
}

@media (max-width: 768px) {
    .hero-section .container {
        align-items: center;
        text-align: center;
    }
}

.card-bg {
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.15);
    overflow: hidden;
}
.card-bg-1 {
    background-image: url('images/optimized/slide1.jpg');
}
.card-bg-2 {
    background-image: url('images/optimized/slide2.jpg');
}
.card-bg-3 {
    background-image: url('images/optimized/slide3.jpg');
}
.card-overlay {
    background: rgba(255,255,255,0.7);
    color: #222;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    width: 90%;
    margin: 0 auto;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.card-title, .card-text {
    color: #222;
    text-shadow: 1px 1px 4px rgba(255,255,255,0.2);
}
@media (max-width: 768px) {
    .card-bg {
        min-height: 220px;
    }
    .card-overlay {
        padding: 1rem 0.5rem;
        font-size: 0.95rem;
    }
}

.highlight-yellow {
    color: #cd9c35;
    font-weight: 900;
}

.card-modern {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    border: none;
    min-height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-img-modern {
    width: 100%;
    height: 140px;
    max-height: 140px;
    object-fit: cover;
    object-position: center 30%;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    margin-bottom: 0.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.card-line {
    height: 5px;
    width: 60px;
    background: var(--secondary-color);
    margin: 0.5rem auto 0.5rem 1.5rem;
    border-radius: 3px;
}
.card-modern .card-body {
    padding: 1.2rem 1.5rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.card-modern .card-title {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    text-align: left;
}
.card-modern .card-text {
    color: var(--text-dark);
    font-size: 1rem;
    text-align: left;
}
@media (max-width: 768px) {
    .card-img-modern {
        height: 90px;
        max-height: 90px;
    }
    .card-line {
        margin-left: 1rem;
    }
    .card-modern .card-body {
        padding: 1rem 1rem 1.2rem 1rem;
    }
}

.card-modern:nth-child(3) .card-img-modern {
    height: 170px;
    max-height: 170px;
    object-position: center 80%;
}

.about-img-contain {
    width: 100%;
    max-width: 400px;
    height: 500px;
    object-fit: contain;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    display: block;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 768px) {
    .about-img-contain {
        height: 300px;
    }
}

.card-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    display: block;
}

.valor-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 320px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.valor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.valor-icon {
    font-size: 2.7rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}
.valor-title {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.7rem;
}
#valores .row {
    row-gap: 2.5rem;
}
@media (max-width: 768px) {
    .valor-card {
        min-height: 220px;
        padding: 1.2rem 0.7rem;
    }
    .valor-icon {
        font-size: 2rem;
    }
}

.valor-card:hover .valor-icon {
    transform: scale(1.1);
}

/* Estilos mejorados para las tarjetas de servicios */
.card-servicio-horizontal {
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    border: none;
    overflow: hidden;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    background: white;
}

.card-servicio-horizontal:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.servicio-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    background: #f8f9fa;
    border-radius: 50%;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
    margin: 1rem;
    transition: all 0.3s ease;
}

.card-servicio-horizontal:hover .servicio-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--primary-color);
    color: white;
}

.card-servicio-horizontal .card-title {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.card-servicio-horizontal .card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.card-servicio-horizontal:hover .card-title::after {
    width: 100px;
}

.card-servicio-horizontal .card-body {
    padding: 2rem;
}

.card-servicio-horizontal p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.card-servicio-horizontal ul {
    margin-bottom: 1.5rem;
    padding-left: 1.2rem;
}

.card-servicio-horizontal ul li {
    margin-bottom: 0.5rem;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
}

.card-servicio-horizontal ul li::before {
    content: '✓';
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.alert-success {
    background-color: rgba(205, 156, 53, 0.1);
    border: none;
    color: var(--secondary-color);
    font-weight: 500;
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    display: inline-block;
    margin: 1rem 0;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover::after {
    width: 300px;
    height: 300px;
}

@media (max-width: 768px) {
    .card-servicio-horizontal .card-body {
        padding: 1.5rem;
    }
    
    .servicio-icon {
        font-size: 2.5rem;
        padding: 1rem;
        margin: 0.5rem;
    }
    
    .card-servicio-horizontal .card-title {
        font-size: 1.3rem;
    }
    
    .btn-primary {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Animaciones y transiciones */
.card-modern {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.valor-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.valor-icon {
    transition: transform 0.3s ease;
}

.valor-card:hover .valor-icon {
    transform: scale(1.1);
}

.btn {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Ajustes para las animaciones AOS */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* Efecto de hover en las tarjetas de oficinas */
#oficinas .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Efecto de hover en los íconos */
.fas {
    transition: transform 0.3s ease;
}

.card:hover .fas {
    transform: scale(1.1);
}

/* About Section Styles */
.about-image-container {
    position: relative;
    padding: 20px;
}

.about-img-contain {
    width: 100%;
    max-width: 400px;
    height: 500px;
    object-fit: contain;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    display: block;
    margin-left: auto;
    margin-right: auto;
    transition: transform 0.3s ease;
}

.about-img-contain:hover {
    transform: scale(1.02);
}

.experience-badge {
    position: absolute;
    bottom: 40px;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transform: rotate(-5deg);
    animation: float 3s ease-in-out infinite;
}

.experience-badge .number {
    font-size: 2rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    opacity: 0.9;
}

.about-content {
    padding: 20px;
}

.section-title {
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
}

.highlight-text {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.2rem;
    line-height: 1.6;
}

.about-features {
    display: flex;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: white;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.feature-item i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.feature-item span {
    font-weight: 600;
    color: var(--primary-color);
}

.about-cta {
    margin-top: 30px;
}

.about-cta .btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.about-cta .btn i {
    transition: transform 0.3s ease;
}

.about-cta .btn:hover i {
    transform: translateX(5px);
}

@keyframes float {
    0% {
        transform: rotate(-5deg) translateY(0px);
    }
    50% {
        transform: rotate(-5deg) translateY(-10px);
    }
    100% {
        transform: rotate(-5deg) translateY(0px);
    }
}

@media (max-width: 768px) {
    .about-img-contain {
        height: 300px;
    }
    
    .experience-badge {
        bottom: 20px;
        right: 20px;
        padding: 10px 20px;
    }
    
    .experience-badge .number {
        font-size: 1.5rem;
    }
    
    .about-features {
        gap: 10px;
    }
    
    .feature-item {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}

/* Estilos para la sección de Testimonios */
#testimonios {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

#testimonios::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--secondary-color), transparent);
}

.testimonio-video-container {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.testimonio-video-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.ratio-9x16 {
    position: relative;
    width: 100%;
    padding-top: 177.78%; /* 16:9 aspect ratio */
}

.ratio-9x16 iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 16px 16px 0 0;
}

.testimonio-info {
    padding: 1.5rem;
    text-align: center;
    background: white;
}

.testimonio-nombre {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.testimonio-caso {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .testimonio-video-container {
        margin-bottom: 2rem;
    }
    
    .testimonio-info {
        padding: 1rem;
    }
    
    .testimonio-nombre {
        font-size: 1.1rem;
    }
    
    .testimonio-caso {
        font-size: 0.9rem;
    }
}

/* Social Media Dropdown */
.nav-item.dropdown .nav-link {
    padding: 0.5rem 1rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.nav-item.dropdown .nav-link:hover {
    color: var(--accent-color);
    transform: scale(1.1);
}

.nav-item.dropdown .nav-link i {
    font-size: 1.2rem;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 0.5rem 0;
    min-width: 180px;
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
    border: none;
    background: transparent;
}

.dropdown-item:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

.dropdown-item i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

/* Social media specific colors on hover */
.dropdown-item:hover .fa-facebook {
    color: #1877f2;
}

.dropdown-item:hover .fa-instagram {
    color: #e4405f;
}

.dropdown-item:hover .fa-youtube {
    color: #ff0000;
}

.dropdown-item:hover .fa-linkedin {
    color: #0077b5;
} 