/* 
    ESTILOS SITIO WEB LA NELITA 
    DESARROLLADO POR DANIEL DALZOTTO
*/
:root {
    --primary-blue: #0f4c81;
    --secondary-blue: #1e88e5;
    --orange: #ff6f00;
    --dark-gray: #2c3e50;
    --light-gray: #ecf0f1;
    --red: #dc2626; /* Agregar esta variable */
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #f8fafc;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* HEADER */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.3s ease;
    background: white;
    /* Animación inicial de entrada */
    animation: headerEntrance 0.8s ease-out forwards;
    opacity: 0;
}

@keyframes headerEntrance {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.site-header.scrolled {
    background: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.top-bar {
    background: #dc2626;
    color: white;
    padding: 0.5rem 1rem;
    display: none;
    border-bottom: 1px solid #b91c1c;
    /* Animación para top-bar */
    animation: slideDown 0.6s ease-out 0.2s forwards;
    opacity: 0;
}

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

@media (min-width: 768px) {
    .top-bar {
        display: block;
    }
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    max-width: 1280px;
    margin: 0 auto;
}

.top-bar-contact {
    display: flex;
    gap: 2rem;
}

.top-bar-contact a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
    font-weight: 500;
}

.top-bar-contact a:hover {
    opacity: 0.8;
}
.company-name {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.top-bar-social {
    display: flex;
    gap: 1rem;
}

.top-bar-social a {
    color: white;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-bar-social a:hover {
    opacity: 0.8;
}

.top-bar-contact svg,
.top-bar-social svg {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.875rem;
}

.contact-link:hover {
    color: var(--dark-gray);
}

.social-link {
    color: white;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--dark-gray);
}

.main-nav {
    padding: 1rem 0;
    animation: fadeInUp 0.6s ease-out 0.4s forwards;
    opacity: 0;
}

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

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 5px;
}
/* ===== SEARCH STYLES ===== */
/* Desktop Search */
.desktop-search-container {
    position: relative;
    margin-right: 1rem;
}

.search-toggle {
    background: none;
    border: none;
    color: #4b5563;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.search-toggle:hover {
    color: #3b82f6;
    background-color: #f3f4f6;
}

.search-form-wrapper {
    position: absolute;
    top: 100%;
    right: 0;
    width: 400px;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    border: 1px solid #e5e7eb;
}

.search-form-wrapper.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.search-input-group {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.search-field {
    flex: 1;
    padding: 0.75rem 1rem;
    padding-right: 3rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
    background: #f9fafb;
}

.search-field:focus {
    border-color: #3b82f6;
    background: white;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.search-submit {
    right: 0.5rem;
    background: var(--red);
    border: none;
    border-radius: 0.375rem;
    color: white;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 0.9rem;
}

.search-submit:hover {
    background: var(--orange);
}

.search-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.search-close:hover {
    color: #374151;
    background: #f3f4f6;
}

/* Mobile Search Overlay */
.mobile-search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-search-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 1.5rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.mobile-search-overlay.active .mobile-search-container {
    transform: translateY(0);
}

.mobile-search-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.mobile-search-header h3 {
    margin: 0;
    color: #111827;
    font-size: 1.25rem;
    font-weight: 600;
}

.mobile-search-close {
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
    font-size: 1.25rem;
}

.mobile-search-close:hover {
    color: #374151;
    background: #f3f4f6;
}

.mobile-search-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.mobile-search-field {
    flex: 1;
    padding: 1rem 1.25rem;
    padding-right: 4rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    background: #f9fafb;
}

.mobile-search-field:focus {
    border-color: #3b82f6;
    background: white;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.mobile-search-submit {
    position: absolute;
    right: 0.5rem;
    background: #3b82f6;
    border: none;
    border-radius: 0.5rem;
    color: white;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 1rem;
}

.mobile-search-submit:hover {
    background: #2563eb;
}

/* Mobile Actions */
.mobile-actions {
    display: none;
    align-items: center;
    gap: 0.5rem;
}

.mobile-search-toggle,
.mobile-menu-button {
    background: none;
    border: none;
    color: #4b5563;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
    font-size: 1.25rem;
}

.mobile-search-toggle:hover,
.mobile-menu-button:hover {
    color: #3b82f6;
    background: #f3f4f6;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: white;
    z-index: 9998;
    transition: right 0.3s ease;
    box-shadow: -10px 0 25px -5px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
    font-size: 1.25rem;
}

.mobile-menu-close:hover {
    color: #374151;
    background: #f3f4f6;
}

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

.mobile-nav-links li {
    border-bottom: 1px solid #f3f4f6;
}

.mobile-nav-links li:last-child {
    border-bottom: none;
}

.mobile-nav-links a {
    display: block;
    padding: 1rem 1.5rem;
    color: #374151;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.mobile-nav-links a:hover {
    background: #f9fafb;
    color: #3b82f6;
}

.mobile-menu-actions {
    padding: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.mobile-cta-button {
    display: block;
    width: 100%;
    padding: 0.75rem 1.5rem;
    background: #3b82f6;
    color: white;
    text-decoration: none;
    border-radius: 0.5rem;
    text-align: center;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.mobile-cta-button:hover {
    background: #2563eb;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .desktop-search-container {
        margin-right: 0.5rem;
    }
    
    .search-form-wrapper {
        width: 350px;
    }
}

@media (max-width: 768px) {
    .desktop-search-container {
        display: none;
    }
    
    .mobile-actions {
        display: flex;
    }
    
    .search-form-wrapper {
        width: 300px;
        right: -50px;
    }
}

@media (max-width: 480px) {
    .mobile-menu {
        width: 100%;
    }
    
    .mobile-search-container {
        padding: 1rem;
    }
    
    .mobile-search-field {
        padding: 0.875rem 1rem;
        padding-right: 3.5rem;
    }
    
    .search-form-wrapper {
        width: 280px;
        right: -80px;
    }
}

/* Overlay Background */
.overlay-background {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 9997;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

/* LOGO  */
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
    /* Animación específica para el logo */
    animation: slideInFromLeft 0.8s ease-out 0.6s forwards;
    opacity: 0;
    transform: translateX(-50px);
}

@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-image img {
    height: 52px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.site-header.scrolled .logo-image img {
    height: 40px;
}

/* LOGO MOBILE */
@media (max-width: 768px) {
    .logo-image img {
        height: 35px;
    }
    
    .site-header.scrolled .logo-image img {
        height: 30px;
    }
}

.site-header.scrolled .logo-image img {
    filter: none;
}

/* DESKTOP NAV*/
.desktop-nav {
    display: none;
    align-items: center;
    gap: 2rem;
    /* Animación específica para el menú desktop */
    animation: slideInFromRight 0.8s ease-out 0.8s forwards;
    opacity: 0;
    transform: translateX(50px);
}

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (min-width: 1024px) {
    .desktop-nav {
        display: flex;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
    position: relative;
}

.nav-item {
    position: relative;
    list-style: none !important;
    /* Animación individual para cada item del menú */
    animation: fadeInUp 0.5s ease-out forwards;
    opacity: 0;
}

/* Animación escalonada para los items del menú */
.nav-item:nth-child(1) { animation-delay: 0.9s; }
.nav-item:nth-child(2) { animation-delay: 1.0s; }
.nav-item:nth-child(3) { animation-delay: 1.1s; }
.nav-item:nth-child(4) { animation-delay: 1.2s; }
.nav-item:nth-child(5) { animation-delay: 1.3s; }
.nav-item:nth-child(6) { animation-delay: 1.4s; }

.nav-item::before {
    display: none !important;
}

.nav-link {
    font-weight: 500;
    text-decoration: none;
    color: #374151;
    transition: color 0.3s ease;
    position: relative;
    font-size: 1rem;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-menu > .nav-item > .nav-link {
    transition: all 0.3s ease;
    padding: 8px 16px;
    margin: -8px -16px;
    border: 2px solid transparent;
}

.nav-menu > .nav-item > .nav-link:hover,
.nav-menu > .nav-item > .nav-link.active {
    color: white;
    background: var(--red);
    border: 2px double white;
    border-radius: 0.375rem;
}

/* SUBMENU */
.nav-item.has-children {
    position: relative;
}

.nav-item.has-children .nav-link {
    padding-right: 20px;
}

.nav-item.has-children .nav-link {
    position: relative;
    padding-right: 36px;
}

.nav-item.has-children .nav-link::after {
    content: '↓';
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.0rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    opacity: 0.6;
}

.nav-item.has-children:hover .nav-link::after {
    transform: translateY(-50%) rotate(180deg) scale(1.2);
    opacity: 1;
    color: var(--dark-gray);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid #e5e7eb;
    padding: 0.5rem 0;
}

.nav-item.has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu-item {
    list-style: none;
    margin: 0;
    padding: 0;
}

.submenu-link {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.submenu-link:hover,
.submenu-link.active {
    background: var(--red);
    color: var(--light-gray);
    padding-left: 1.75rem;
}

/* MOBILE SUBMENU STYLES */
.mobile-nav-item.has-children .mobile-nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-align: left;
}

.submenu-toggle {
    transition: transform 0.3s ease;
}

.mobile-nav-link.active .submenu-toggle {
    transform: rotate(180deg);
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f8fafc;
    margin-left: 1rem;
    border-left: 2px solid #e5e7eb;
}

.mobile-submenu.active {
    max-height: 500px;
}

.mobile-submenu-link {
    display: block;
    padding: 0.75rem 1rem;
    color: #6b7280;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-left: 2px solid transparent;
}

.mobile-submenu-link:hover,
.mobile-submenu-link.active {
    color: var(--primary);
    border-left-color: var(--red);
    background: white;
}

.nav-menu,
.mobile-nav-links,
.sub-menu,
.mobile-submenu {
    list-style: none !important;
}

.nav-item::before,
.mobile-nav-item::before,
.submenu-item::before,
.mobile-submenu-item::before {
    display: none !important;
}

/* CTA BUTTON - Animación especial */
.cta-button {
    background: var(--dark-gray);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
    white-space: nowrap;
    /* Animación para el botón CTA */
    animation: bounceIn 0.8s ease-out 1.5s forwards;
    opacity: 0;
    transform: scale(0.8);
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.cta-button:hover {
    background: #f57c00;
    transform: translateY(-1px) scale(1.05);
}

/* TABLET STYLES */
@media (max-width: 1023px) and (min-width: 768px) {
    .nav-menu {
        gap: 1.5rem;
    }
    
    .nav-link {
        font-size: 0.95rem;
    }
    
    .submenu {
        min-width: 200px;
    }
}

/* MOBILE STYLES */
@media (max-width: 767px) {
    .mobile-menu {
        display: none;
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        z-index: 999;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        max-height: calc(100vh - 100px);
        overflow-y: auto;
    }
    
    .mobile-menu.active {
        display: block;
    }
    
    .mobile-nav {
        padding: 1rem;
    }
    
    .mobile-nav-link {
        padding: 1rem 0.5rem;
    }
    
    .mobile-submenu-link {
        padding: 0.75rem 1.5rem;
    }
}

/* MOBILE MENU */
/* MOBILE MENU STYLES */
.mobile-menu-button {
    display: block;
    padding: 0.5rem;
    color: #374151;
    background: none;
    border: none;
    cursor: pointer;
    /* Animación para el botón móvil */
    animation: slideInFromRight 0.8s ease-out 0.8s forwards;
    opacity: 0;
    transform: translateX(50px);
    z-index: 1001;
}

@media (min-width: 1024px) {
    .mobile-menu-button {
        display: none;
    }
}

.mobile-menu-button svg {
    width: 1.5rem;
    height: 1.5rem;
    transition: transform 0.3s ease;
}

.mobile-menu {
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    z-index: 1000;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    visibility: hidden;
}

.mobile-menu.active {
    max-height: calc(100vh - 100px);
    opacity: 1;
    visibility: visible;
    overflow-y: auto;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 1rem;
}

.mobile-nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.mobile-nav-item {
    margin: 0;
    padding: 0;
    list-style: none;
    border-bottom: 1px solid #f3f4f6;
}

.mobile-nav-item:last-child {
    border-bottom: none;
}

.mobile-nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0.75rem;
    border-radius: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    color: #374151;
    transition: all 0.3s ease;
    font-size: 1rem;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: #eff6ff;
    color: var(--primary-blue);
}

/* Mobile submenu styles */
.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f8fafc;
    margin-left: 0.5rem;
    border-left: 2px solid #e5e7eb;
    list-style: none;
    padding: 0;
}

.mobile-submenu.active {
    max-height: 500px;
}

.mobile-submenu-item {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-submenu-link {
    display: block;
    padding: 0.75rem 1rem 0.75rem 1.5rem;
    color: #6b7280;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-left: 2px solid transparent;
}

.mobile-submenu-link:hover,
.mobile-submenu-link.active {
    color: var(--primary);
    border-left-color: var(--red);
    background: white;
}

.submenu-toggle {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

.mobile-nav-link.active .submenu-toggle {
    transform: rotate(180deg);
}

/* Overlay for mobile menu */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.mobile-menu-overlay.active {
    display: block;
}
/* Main Content */
.main-content {
    padding-top: 20px;
    min-height: 80vh;
}

@media (min-width: 768px) {
    .main-content {
        padding-top: 70px;
    }
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    height: 70vh;
    min-height: 700px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-content {
    max-width: 850px;
    color: white;
    position: relative;
    z-index: 3;
}

.slide-badge {
    display: inline-block;
    background: var(--secondary);
    color: white;
    padding: 3px 15px;
    border-radius: 30px;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease-out;
}

.slide-title {
    font-size: 5.5rem;
    color: var(--red);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    text-shadow: 
        1px 1px 2px #fff,
        -1px -1px 2px #fff,
        1px -1px 2px #fff,
        -1px 1px 2px #fff;
}

.slide-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.slide-buttons {
    display: flex;
    gap: 20px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 14px;
    right: 50px;
    display: flex;
    gap: 15px;
    z-index: 10;
}

.slider-prev,
.slider-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    transform: translateY(-2px);
}

.slider-prev svg,
.slider-next svg {
    width: 24px;
    height: 24px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .slide-title {
        font-size: 3rem;
    }
    
    .slider-controls {
        right: 30px;
        bottom: 80px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 80vh;
        min-height: 600px;
    }
    
    .slide-title {
        font-size: 2.5rem;
    }
    
    .slide-description {
        font-size: 1.1rem;
    }
    
    .slide-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 70vh;
        min-height: 500px;
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-badge {
        font-size: 12px;
        padding: 6px 15px;
    }
    
    .slide-content {
        text-align: center;
    }
    
    .slide-buttons {
        align-items: center;
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
    padding: 6rem 0;
    margin-bottom: 4rem;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

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

.cta-button.primary {
    background: var(--red);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.cta-button.primary:hover {
    color: var(--light-gray);
    background: #f57c00;
    transform: translateY(-2px);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid white;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.cta-button.secondary:hover {
    background: white;
    color: var(--primary-blue);
}

/* Services Section Styles - Versión Minimalista */
.services-section {
    padding: 60px 0;
    background: #ffffff;
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.services-overview-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    position: relative;
}

.services-overview-section::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(180deg, transparent 0%, #dc2626 100%);
    opacity: 0.1;
}

.section-header {
    text-align: center;
    align-items: center;
    margin: 0 auto 5rem;
    position: relative;
    z-index: 2;
}
.section-description {
    font-size: 1.3rem;
    color: #cbd5e1;
    margin-top: 1.5rem;
    font-weight: 300;
    line-height: 1.6;
}

.service-item {
    background: var(--light-gray);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #2a2a2a;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.service-item:hover {
    transform: translateY(-5px);
    border-color: #dc2626;
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.2);
}

.service-more {
    grid-column: span 4;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    border-color: #dc2626;
}

.service-more h3 {
    color: white;
}

/* Para tablets */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}
/* Para móviles */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}
@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.service-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 30px 20px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    text-align: center;
    position: relative;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

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

.service-icon {
    width: 50px;
    height: 50px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
}

.service-icon svg {
    width: 24px;
    height: 24px;
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.service-cta {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .services-section {
        padding: 40px 0;
    }
    .service-card {
        padding: 25px 15px;
        min-height: 120px;
    }
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .service-more {
        grid-column: span 1;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-more {
        grid-column: span 1;
    }
}
@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer Styles - Rediseñado */
.site-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding-top: 60px;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red), #ff6b6b);
}

.footer-content {
    padding: 4rem 1rem 2rem;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: 4rem;
    }
}

.footer-section h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--red);
    border-radius: 2px;
}

/* Logo Section */


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

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

.footer-links li {
    margin-bottom: 0.75rem;
    transition: transform 0.3s ease;
}

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

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

.footer-links a::before {
    content: '▸';
    color: var(--red);
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

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

.footer-links a:hover::before {
    transform: translateX(3px);
}

/* Services */
.footer-services {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-services li {
    margin-bottom: 0.75rem;
    color: #b0b7c3;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.footer-services li::before {
    content: '✓';
    color: var(--red);
    font-weight: bold;
    font-size: 0.8rem;
}

.footer-services li:hover {
    color: white;
}

/* Contact */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    color: #b0b7c3;
    font-size: 0.95rem;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.footer-contact li:hover {
    color: white;
}

.footer-contact .contact-icon {
    width: 20px;
    height: 20px;
    color: var(--red);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

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

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

/* Social Links */
.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 2rem;
}

.social-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #2d3748, #4a5568);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.social-icon:hover {
    background: linear-gradient(135deg, var(--red), #ff6b6b);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
}

.social-icon svg {
    width: 18px;
    height: 18px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    margin-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    color: #9ca3af;
    font-size: 0.9rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom-content {
        flex-direction: row;
        text-align: left;
    }
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-bottom-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--red);
    transition: width 0.3s ease;
}

.footer-bottom-links a:hover {
    color: white;
}

.footer-bottom-links a:hover::after {
    width: 100%;
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--red), #ff6b6b);
    border: none;
    border-radius: 12px;
    color: white;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
}

.scroll-top svg {
    width: 20px;
    height: 20px;
}

/* Utility Classes */
.hidden {
    display: none !important;
}

.text-center {
    text-align: center;
}

.text-white {
    color: white;
}

.bg-white {
    background: white;
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.backdrop-blur-sm {
    backdrop-filter: blur(4px);
}

.transition-all {
    transition: all 0.3s ease;
}

.mt-4 {
    margin-top: 1rem;
}

.text-gray-300 {
    color: #d1d5db;
}

.text-xs {
    font-size: 0.75rem;
}

.hover\:text-red:hover {
    color: var(--red);
}

/* Featured Projects Section - Rediseñada */
.featured-projects-section {
    padding: 6rem 0;
    background: white;
    position: relative;
}

.featured-projects-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e5e7eb, transparent);
}

.projects-header {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: end;
}

.projects-title-content {
    max-width: 600px;
}
.projects-steps {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 0;
    min-width: 300px;
}

.step-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
}

.step-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.step-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.step-number {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--red);
    margin-top: 0.5rem;
    display: block;
}

/* Contact Form Styles */
.projects-contact {
    background: var(--dark-gray);
    color: white;
    padding: 3rem;
    margin-top: 4rem;
}

.contact-header {
    margin-bottom: 2.5rem;
}

.contact-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.contact-description {
    color: #d1d5db;
    line-height: 1.6;
    font-size: 0.95rem;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #4b5563;
    border-radius: 0;
    padding: 0.75rem 1rem;
    color: white;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--red);
    background: rgba(255, 255, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-button {
    background: var(--red);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    grid-column: 1 / -1;
    justify-self: start;
    margin-top: 1rem;
}

.submit-button:hover {
    background: #b91c1c;
    transform: translateY(-2px);
}
.project-title {
    color: var(--light-gray);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}
.proyect-title {
    color: var(--dark-gray);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}
.projects-cta {
    text-align: center;
    margin-top: 3rem;
}
.project-description {
    font-size: 0.8rem;
    color: var(--light-gray);
    margin-bottom: 1rem;
    line-height: 1.4;
}
/* Responsive Design */
@media (max-width: 1024px) {
    .projects-header {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .projects-steps {
        min-width: auto;
    }
}

@media (max-width: 768px) {
    .featured-projects-section {
        padding: 4rem 0;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .projects-steps {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .featured-projects-section {
        padding: 3rem 0;
    }    
    .projects-steps {
        padding: 1.5rem;
    }
    
    .step-title {
        font-size: 1.1rem;
    }
    
    .projects-contact {
        padding: 2rem;
    }
}
.recent-projects-section {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 60px 0;
    background-image: url(../images/Proyectos2.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

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

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 80px;
}

.section-subtitle {
    font-size: 14px;
    font-weight: 500;
    color: #8a8a8a;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    display: block;
}
.section-title {
    font-size: 30px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--dark-gray);
    letter-spacing: -0.5px;
    margin-bottom: 25px;
}
.section-trabajos {
    font-size: 48px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--red);
    letter-spacing: -0.5px;
    margin-bottom: 25px;
}
.section-p {
    font-size: 24px;
    font-weight: 300;
    color: var(--dark-gray);
    letter-spacing: -0.5px;
    margin-bottom: 45px;
    text-align: justify;
}
.section-p strong {
    font-size: 30px;
    font-weight: 600;
    color: var(--red);
}
.view-more-btn {
    display: inline-block;
    padding: 11px 25px;
    background-color: transparent;
    color: var(--light-gray);
    border: 1px solid var(--red);
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.view-more-btn:hover {
    background-color: #1a1a1a;
    color: #fff;
    transform: translateY(-2px);
}

.projects-slider {
    position: relative;
    width: 100%;
    overflow: visible;
}

.slider-container {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 0;
}

.project-slide {
    min-width: 33.333%;
    padding: 0 15px;
    transition: all 0.3s ease;
}

.project-slide:hover {
    transform: translateY(-10px);
}

.project-image {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    margin-bottom: 25px;
    height: 450px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.project-slide:hover .project-image img {
    transform: scale(1.08);
}

.project-category {
    position: absolute;
    top: 25px;
    left: 25px;
    background-color: rgba(255, 255, 255, 0.95);
    color: #1a1a1a;
    padding: 10px 20px;
    border-radius: 2px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    z-index: 2;
    backdrop-filter: blur(10px);
}
.project-location {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
    font-weight: 400;
}

.project-link {
    display: inline-flex;
    align-items: center;
    color: var(--light-gray);
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 12px;
    transition: all 0.3s ease;
    margin-top: 20px;
    position: relative;
}

.project-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--red);
    transition: width 0.3s ease;
}

.project-link:hover:after {
    width: 100%;
}

.project-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.project-link:hover i {
    transform: translateX(3px);
}

.slider-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
    padding: 0 20px;
}
.slider-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.slider-arrow:hover {
    background-color: #1a1a1a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}


/* Responsive Design */
@media (max-width: 1200px) {
    .project-slide {
        min-width: 50%;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .section-title {
        font-size: 42px;
    }
        
    .project-image {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .recent-projects-section {
        padding: 60px 0;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 50px;
    }
    
    .section-title {
        font-size: 36px;
        margin-bottom: 25px;
    }
    
    .project-slide {
        min-width: 100%;
    }
    
    .project-image {
        height: 350px;
    }
    
    .project-title {
        font-size: 20px;
    }
    
    .slider-nav {
        flex-direction: column;
        gap: 25px;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .project-image {
        height: 280px;
    }
    
    .slider-controls {
        gap: 10px;
		bottom: 23px;
    }
    
    .slider-arrow {
        width: 45px;
        height: 45px;
    }
}

/* PAGINA NOSOTROS */
/* Page Header - Rojo Profesional */
.page-header {
    padding: 140px 0 90px;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.9), rgba(185, 28, 28, 0.9)), url('<?php echo get_template_directory_uri(); ?>/images/about-bg.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ffffff, #fecaca);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 500;
}

.breadcrumb a {
    color: #fecaca;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.breadcrumb a:hover {
    color: #dc2626;
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.breadcrumb-separator {
    color: #fca5a5;
    font-weight: bold;
}

.breadcrumb .current {
    color: white;
    font-weight: 600;
}

/* About Intro Section */
.about-intro-section {
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.about-intro-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(45deg, #dc2626, #ef4444);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.about-description p {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 300;
    text-align: justify;
}

.experience-counter {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(239, 68, 68, 0.05));
    border-radius: 20px;
    border: 1px solid rgba(220, 38, 38, 0.2);
    backdrop-filter: blur(10px);
}

.counter-item {
    text-align: center;
}

.number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(45deg, #ef4444, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    text-shadow: 0 0 30px rgba(220, 38, 38, 0.5);
}

.counter-label {
    font-size: 1.3rem;
    margin-top: 1rem;
    font-weight: 600;
}

.about-intro-image {
    position: relative;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: all 0.5s ease;
}

.about-intro-image:hover {
    transform: perspective(1000px) rotateY(0) rotateX(0);
}

.image-wrapper {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 
        0 25px 50px -12px rgba(220, 38, 38, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    border: 3px solid transparent;
}

.image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(45deg, #dc2626, #ef4444);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 
        0 20px 40px rgba(220, 38, 38, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.experience-badge span {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
}

.experience-badge small {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Why Different Section */
.why-different-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.why-different-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.05)" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.why-different-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    position: relative;
    z-index: 2;
}

.different-quote {
    font-size: 1.2rem;
    line-height: 1.7;
    font-weight: 600;
    border-left: 5px solid var(--red);
    padding-left: 2rem;
    margin: 2.5rem 0;
    text-align: justify;
}

.different-description p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 300;
    text-align: justify;
}
.why-different-features {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #ffffff, #fecaca);
    transition: width 0.3s ease;
}

.feature-card:hover::before {
    width: 100%;
    opacity: 0.1;
}

.feature-card:hover {
    transform: translateX(10px);
    border-color: var(--orange);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--secondary-blue);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.feature-card p {
    line-height: 1.7;
    position: relative;
    z-index: 2;
    font-weight: 300;
}

/* CTA Section */
.about-cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 50%, #991b1b 100%);
}
.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
    margin: 0 auto;
}
.cta-content h2 {
    font-size: 3.5rem;
    background: linear-gradient(45deg, #ffffff, #fecaca);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-content p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button.primary {
    background: white;
    color: #dc2626;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.cta-button.secondary {
    background: transparent;
    color: white;
    padding: 1.25rem 2.5rem;
    border: 3px solid white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
    background: white;
    color: #dc2626;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .about-intro-grid,
    .why-different-grid {
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 60px;
        background-attachment: scroll;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .about-intro-grid,
    .why-different-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-detailed-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-button.primary,
    .cta-button.secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .image-wrapper img {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .service-detailed-card,
    .feature-card {
        padding: 2rem;
    }
    
    .counter-number {
        font-size: 3.5rem;
    }
}

.advantages-section {
    padding: 100px 0;
    background: #fff;
}

.advantages-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.advantages-subtitle {
    display: block;
    font-size: 0.9rem;
    color: var(--red);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.advantages-title {
    font-size: 3rem;
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.advantages-intro {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.advantage-item {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background: #fff;
    border-color: var(--red);
}

.advantage-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.advantage-content {
    flex: 1;
}

.advantage-title {
    font-size: 1.3rem;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 10px;
}

.advantage-description {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
    .advantages-section {
        padding: 60px 0;
    }
    
    .advantages-title {
        font-size: 2.2rem;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .advantage-item {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .advantage-icon {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .advantage-item {
        padding: 15px;
    }
}

/* Projects Hero */
.projects-hero {
    padding: 140px 0 90px;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.9), rgba(185, 28, 28, 0.9)), url('<?php echo get_template_directory_uri(); ?>/images/projects-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
}

.projects-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.projects-hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ffffff, #fecaca);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.projects-hero-description {
    font-size: 1.3rem;
    line-height: 1.7;
    opacity: 0.9;
    margin: 0;
}

/* Projects Showcase */
.projects-showcase {
    padding: 80px 0;
    min-height: 100vh;
    background: #f8fafc;
}

.projects-showcase .container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: start;
}

/* Filters Sidebar */
.projects-filters {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 120px;
    height: fit-content;
}

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f1f5f9;
}

.filters-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.clear-filters {
    background: none;
    border: none;
    color: var(--red);
    font-weight: 600;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.clear-filters:hover {
    background: #fef2f2;
}

.filter-group {
    margin-bottom: 2rem;
}

.filter-group h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1rem;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #6b7280;
}

.filter-option:hover {
    background: #f8fafc;
    color: #374151;
}

.filter-option input {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.filter-option input:checked + .checkmark {
    background: var(--red);
    border-color: var(--red);
}

.filter-option input:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.range-inputs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.range-inputs input {
    width: 80px;
    padding: 0.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
}

.range-inputs input:focus {
    outline: none;
    border-color: var(--red);
}

/* Projects Main */
.projects-main {
    width: 100%;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

/* Project Card */
.project-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.project-card.featured {
    border: 2px solid var(--red);
}

.project-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
}

.badge {
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-badge {
    background: var(--red);
    color: white;
}

.status-badge {
    color: white;
}

.status-planning {
    background: #f59e0b;
}

.status-building {
    background: #3b82f6;
}

.status-completed {
    background: #10b981;
}

.status-sold {
    background: #8b5cf6;
}

.category-badge {
    background: rgba(255, 255, 255, 0.95);
    color: #1e293b;
    backdrop-filter: blur(10px);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: white;
    color: var(--red);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: #1e293b;
    color: white;
    transform: translateY(-2px);
}

.project-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 3rem;
}

/* Project Content */
.project-content {
    padding: 2rem;
}
.project-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.project-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #4b5563;
    font-weight: 500;
}

.spec-item i {
    color: var(--red);
    width: 16px;
}

.project-excerpt {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.project-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.project-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--red);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.project-link:hover {
    color: #b91c1c;
    gap: 0.75rem;
}

.contact-email {
    width: 40px;
    height: 40px;
    background: #fef2f2;
    color: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-email:hover {
    background: var(--red);
    color: white;
    transform: scale(1.1);
}

/* No Projects */
.no-projects {
    text-align: center;
    padding: 4rem 2rem;
    grid-column: 1 / -1;
}

.no-projects-icon {
    font-size: 4rem;
    color: #d1d5db;
    margin-bottom: 1.5rem;
}

.no-projects h3 {
    font-size: 1.5rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.no-projects p {
    color: #9ca3af;
    margin-bottom: 2rem;
}

/* Projects Pagination */
.projects-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.projects-pagination .page-numbers {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    color: #6b7280;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.projects-pagination .page-numbers:hover,
.projects-pagination .page-numbers.current {
    background: var(--red);
    border-color: var(--red);
    color: white;
    transform: translateY(-2px);
}

.projects-pagination .page-numbers.dots {
    border: none;
    background: none;
}

/* Projects CTA */
.projects-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    text-align: center;
}

.projects-cta .cta-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffffff, #fecaca);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.projects-cta .cta-content p {
    font-size: 1.3rem;
    color: #d1d5db;
    margin-bottom: 3rem;
}

.projects-cta .cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.projects-cta .cta-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.projects-cta .cta-button.primary {
    background: var(--red);
    color: white;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
}

.projects-cta .cta-button.primary:hover {
    background: #b91c1c;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.6);
}

.projects-cta .cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.projects-cta .cta-button.secondary:hover {
    background: white;
    color: #1e293b;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .projects-showcase .container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .projects-filters {
        position: static;
    }
    
    .projects-grid {
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    }
}

@media (max-width: 768px) {
    .projects-hero {
        padding: 140px 0 80px;
    }
    
    .projects-hero-title {
        font-size: 2.5rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .project-specs {
        grid-template-columns: 1fr;
    }
    
    .projects-cta .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .projects-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .projects-cta .cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .projects-hero-title {
        font-size: 2rem;
    }
    
    .projects-filters {
        padding: 1.5rem;
    }
    
    .project-content {
        padding: 1.5rem;
    }
    
    .projects-cta {
        padding: 60px 0;
    }
    
    .projects-cta .cta-content h2 {
        font-size: 1.8rem;
    }
}

/* Single Content Styles */
.single-content {
    padding: 60px 0 80px;
    background: #f8fafc;
}

.single-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
    align-items: start;
}

/* Main Content */
.single-main {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Header */
.single-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: #6b7280;
}

.single-breadcrumb a {
    color: var(--red);
    text-decoration: none;
    transition: color 0.3s ease;
}

.single-breadcrumb a:hover {
    color: #b91c1c;
}

.breadcrumb-separator {
    color: #d1d5db;
}

.single-breadcrumb .current {
    color: #374151;
    font-weight: 600;
}

.single-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--light-gray);
    margin-bottom: 2rem;
    line-height: 1.3;
}

/* Meta Information */
.single-meta {
    margin-bottom: 2.5rem;
}

/* Project Meta Grid */
.project-meta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.meta-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid var(--red);
}

.meta-item i {
    color: var(--red);
    font-size: 1.2rem;
    margin-top: 0.25rem;
}

.meta-label {
    display: block;
    font-size: 0.8rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.meta-value {
    display: block;
    font-size: 1.1rem;
    color: #1e293b;
    font-weight: 600;
}

/* Blog Meta */
.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.blog-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    padding: 0;
    color: #6b7280;
    font-size: 0.9rem;
}

/* Featured Image */
.single-featured-image {
    margin: 2rem 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.featured-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Content */
.single-content-inner {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #374151;
}

.single-content-inner h2,
.single-content-inner h3,
.single-content-inner h4 {
    color: #1e293b;
    margin: 2rem 0 1rem;
}

.single-content-inner p {
    margin-bottom: 1.5rem;
}

.single-content-inner ul,
.single-content-inner ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.single-content-inner li {
    margin-bottom: 0.5rem;
}

/* Project Gallery */
.project-gallery {
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.project-gallery h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

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

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Tags */
/* Single Tags - ¿Por qué elegirnos? */
.single-tags {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.single-tags h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1e293b;
    text-align: center;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.tag-item {
    background: linear-gradient(135deg, #fef2f2, #fecaca);
    color: #991b1b;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid #fecaca;
    transition: all 0.3s ease;
}

.tag-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(239, 68, 68, 0.15);
}

/* Responsive para tags */
@media (max-width: 768px) {
    .tags-list {
        gap: 0.5rem;
    }
    
    .tag-item {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}
/* CONTACTO */
/* Contact Form 7 Styles */
.wpcf7-form {
    max-width: 600px;
    margin: 0 auto;
}

.wpcf7-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.wpcf7-form p {
    margin-bottom: 1.5rem;
    position: relative;
}

.wpcf7-form label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: #374151;
    font-size: 0.95rem;
}

.wpcf7-form .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="url"],
.wpcf7-form select,
.wpcf7-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    background: #f8fafc;
    transition: all 0.3s ease;
    font-family: inherit;
    box-sizing: border-box;
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form input[type="url"]:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
    outline: none;
    border-color: #ef4444;
    background: white;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
    transform: translateY(-1px);
}

/* Textarea específico - no redimensionable */
.wpcf7-form textarea {
    min-height: 140px;
    max-height: 140px;
    resize: none !important;
    overflow-y: auto;
    line-height: 1.5;
}

/* Select personalizado */
.wpcf7-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 16px 12px;
    padding-right: 2.5rem;
}

/* Botón de enviar */
.wpcf7-form .wpcf7-submit {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(239, 68, 68, 0.25);
    margin-top: 1rem;
}

.wpcf7-form .wpcf7-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(239, 68, 68, 0.3);
    background: linear-gradient(135deg, #dc2626, #b91c1c);
}

/* Placeholders */
.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder {
    color: #9ca3af;
    opacity: 1;
}

/* Validación y estados */
.wpcf7-form .wpcf7-not-valid-tip {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: block;
}

.wpcf7-form .wpcf7-not-valid {
    border-color: #ef4444 !important;
    background: #fef2f2 !important;
}

.wpcf7-form .wpcf7-valid {
    border-color: #10b981 !important;
}

/* Mensajes de respuesta */
.wpcf7-response-output {
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0 !important;
    text-align: center;
    font-weight: 500;
}

.wpcf7-mail-sent-ok {
    border: 2px solid #10b981 !important;
    background: #ecfdf5 !important;
    color: #065f46 !important;
}

.wpcf7-validation-errors,
.wpcf7-mail-sent-ng {
    border: 2px solid #ef4444 !important;
    background: #fef2f2 !important;
    color: #991b1b !important;
}

/* Spinner de carga */
.wpcf7-spinner {
    margin: 0 auto !important;
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .wpcf7-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .wpcf7-form input[type="text"],
    .wpcf7-form input[type="email"],
    .wpcf7-form input[type="tel"],
    .wpcf7-form input[type="url"],
    .wpcf7-form select,
    .wpcf7-form textarea {
        padding: 0.875rem;
    }
}

/* Checkbox y radio buttons */
.wpcf7-form .wpcf7-checkbox,
.wpcf7-form .wpcf7-radio {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.wpcf7-form .wpcf7-list-item {
    margin: 0;
}

.wpcf7-form .wpcf7-list-item-label {
    font-weight: normal;
    color: #374151;
}

/* Author Bio */
.author-bio {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 15px;
    margin: 2rem 0;
}

.author-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.author-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.author-info p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Navigation */
.single-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.nav-previous a,
.nav-next a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #f8fafc;
    color: #374151;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-previous a:hover,
.nav-next a:hover {
    background: var(--red);
    color: white;
    transform: translateY(-2px);
}

/* Sidebar */
.single-sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-widget {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.widget-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f1f5f9;
}

/* Related Posts */
.related-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.related-post {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.related-post:hover {
    background: #f8fafc;
}

.related-post-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-post-content h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
}

.related-post-content h4 a {
    color: #1e293b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-post-content h4 a:hover {
    color: var(--red);
}

.related-post-date {
    font-size: 0.8rem;
    color: #6b7280;
}

/* Categories List */
.categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.categories-list li {
    margin-bottom: 0.75rem;
}

.categories-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    color: #374151;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.categories-list a:hover {
    background: #f8fafc;
    color: var(--red);
}

.category-count {
    background: #e5e7eb;
    color: #6b7280;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.8rem;
}

/* CTA Widget */
.cta-widget {
    background: linear-gradient(135deg, var(--red), #b91c1c);
    color: white;
    text-align: center;
}

.cta-widget h3 {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.cta-widget p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.cta-widget .cta-button {
    background: white;
    color: var(--red);
}
/* Responsive Design */
@media (max-width: 1024px) {
    .single-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .single-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .single-content {
        padding: 100px 0 60px;
    }
    
    .single-main {
        padding: 2rem;
    }
    
    .single-title {
        font-size: 2rem;
    }
    
    .project-meta-grid {
        grid-template-columns: 1fr;
    }
    
    .single-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-buttons {
        flex-direction: column;
    }
    
    .author-bio {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .single-main {
        padding: 1.5rem;
    }
    
    .single-title {
        font-size: 1.7rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Comentarios simples */
.simple-comments {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.simple-comments h3 {
    margin-bottom: 1.5rem;
    color: #333;
}

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

.comment {
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.comment:last-child {
    border-bottom: none;
}

.comment-meta {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.comment-author {
    font-weight: bold;
    color: #333;
}

.comment-content {
    margin-top: 0.5rem;
}

.comment-respond {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f9f9f9;
    border-radius: 5px;
}

.comment-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 3px;
    margin-bottom: 1rem;
}

.comment-form textarea {
    min-height: 100px;
}

/* ===== SEARCH PAGE STYLES ===== */
.search-page {
    background: #f9fafb;
    min-height: 70vh;
    padding: 2rem 0;
}

.search-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Search Header */
.search-header {
    text-align: center;
    margin-bottom: 3rem;
}

.search-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.search-info {
    background: #dbeafe;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    display: inline-block;
}

.search-query {
    font-size: 1.125rem;
    color: #374151;
    margin: 0;
}

.search-term {
    font-weight: 600;
    color: #1e40af;
}

/* Search Results */
.search-results {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.search-result {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.search-result:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.result-content {
    padding: 2rem;
}

/* Post Type */
.post-type {
    margin-bottom: 1rem;
}

.type-badge {
    background: #eff6ff;
    color: #1e40af;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Result Title */
.result-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.result-title a {
    color: inherit;
    text-decoration: none;
}

.result-title a:hover {
    color: #3b82f6;
}

/* Result Meta */
.result-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.meta-date,
.meta-author {
    display: flex;
    align-items: center;
}

/* Result Image */
.result-image {
    margin-bottom: 1rem;
}

.featured-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0.5rem;
}

/* Result Excerpt */
.result-excerpt {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.search-highlight {
    background: #fef3c7;
    padding: 0.125rem 0.25rem;
    border-radius: 0.25rem;
}

/* Read More Button */
.read-more-btn {
    display: inline-flex;
    align-items: center;
    color: #3b82f6;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.read-more-btn:hover {
    color: #1e40af;
}

.arrow {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.read-more-btn:hover .arrow {
    transform: translateX(2px);
}

/* Pagination */
.search-pagination {
    text-align: center;
    margin: 3rem 0;
}

.search-pagination .page-numbers {
    display: inline-flex;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.search-pagination a,
.search-pagination span {
    padding: 0.5rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    text-decoration: none;
    color: #374151;
    transition: all 0.3s ease;
}

.search-pagination a:hover {
    background: #3b82f6;
    color: white;
    border-color: #3b82f6;
}

.search-pagination .current {
    background: #3b82f6;
    color: white;
    border-color: #3b82f6;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 3rem 1rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.no-results-icon {
    color: #d1d5db;
    margin-bottom: 1.5rem;
}

.no-results-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1rem;
}

.no-results-text {
    color: #6b7280;
    margin-bottom: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.suggestions {
    margin-bottom: 2rem;
}

.suggestions-title {
    font-size: 0.875rem;
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

.suggestions-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #6b7280;
    font-size: 0.875rem;
}

.suggestions-list li {
    margin-bottom: 0.25rem;
}

.home-btn {
    display: inline-block;
    background: #3b82f6;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
}

.home-btn:hover {
    background: #2563eb;
}

/* Search Again */
.search-again {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.search-again-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1.5rem;
}

.search-again-form {
    margin-bottom: 1rem;
}

.search-again .search-form {
    display: flex;
    gap: 0.5rem;
    max-width: 400px;
    margin: 0 auto;
}

.search-again .search-field {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
}
/* Responsive */
@media (max-width: 768px) {
    .search-title {
        font-size: 2rem;
    }
    
    .result-content {
        padding: 1.5rem;
    }
    
    .result-title {
        font-size: 1.25rem;
    }
    
    .search-again .search-form {
        flex-direction: column;
    }
    
    .result-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .search-page {
        padding: 1rem 0;
    }
    
    .search-title {
        font-size: 1.75rem;
    }
    
    .result-content {
        padding: 1rem;
    }
}

/* ===== CATEGORY PAGE STYLES ===== */
.category-page {
    background: #f9fafb;
    min-height: 70vh;
    padding: 2rem 0;
}

.category-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Posts Grid */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.post-card {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    overflow: hidden;
}

.post-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

/* Post Thumbnail */
.post-thumbnail {
    position: relative;
    overflow: hidden;
}

.post-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-card:hover .post-image {
    transform: scale(1.05);
}

.post-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.category-badge {
    background: #3b82f6;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Post Content */
.post-content {
    padding: 1.5rem;
}

.post-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.post-title a {
    color: inherit;
    text-decoration: none;
}

.post-title a:hover {
    color: #3b82f6;
}

.post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.post-date,
.post-author {
    display: flex;
    align-items: center;
}

.post-excerpt {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    color: #3b82f6;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.read-more-btn:hover {
    color: #1e40af;
}

.read-more-btn .arrow {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.read-more-btn:hover .arrow {
    transform: translateX(2px);
}

/* Pagination */
.category-pagination {
    text-align: center;
}

.category-pagination .page-numbers {
    display: inline-flex;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-pagination a,
.category-pagination span {
    padding: 0.5rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    text-decoration: none;
    color: #374151;
    transition: all 0.3s ease;
}

.category-pagination a:hover {
    background: #3b82f6;
    color: white;
    border-color: #3b82f6;
}

.category-pagination .current {
    background: #3b82f6;
    color: white;
    border-color: #3b82f6;
}

/* No Posts */
.no-posts {
    text-align: center;
    padding: 3rem 1rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.no-posts-icon {
    color: #d1d5db;
    margin-bottom: 1.5rem;
}

.no-posts-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1rem;
}

.no-posts-text {
    color: #6b7280;
    margin-bottom: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.no-posts-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.home-btn,
.blog-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.home-btn {
    background: #3b82f6;
    color: white;
}

.home-btn:hover {
    background: #2563eb;
}

.blog-btn {
    background: #10b981;
    color: white;
}

.blog-btn:hover {
    background: #059669;
}

/* Related Categories */
.related-categories {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.related-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.related-category {
    background: #f8fafc;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.related-category:hover {
    background: #eff6ff;
    transform: translateY(-2px);
}

.related-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    text-decoration: none;
    color: inherit;
}

.related-content {
    flex: 1;
}

.related-cat-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.related-cat-count {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}

.related-arrow {
    color: #3b82f6;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.related-category:hover .related-arrow {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    
    .posts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .post-content {
        padding: 1.25rem;
    }
    
    .post-title {
        font-size: 1.125rem;
    }
    
    .no-posts-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .home-btn,
    .blog-btn {
        width: 200px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .category-page {
        padding: 1rem 0;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
}
/* Professionals Section Styles */
.professionals-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
}

.professionals-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e5e7eb, transparent);
}

.professionals-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.professionals-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.professional-card {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid var(--red);
    transition: all 0.3s ease;
    min-height: 140px;
}

.professional-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.15);
    background: white;
    border-left-color: var(--orange);
}

.professional-icon {
    width: 70px;
    height: 70px;
    background: var(--dark-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.professional-card:hover .professional-icon {
    background: var(--orange);
    transform: scale(1.1);
}

.professional-icon svg {
    width: 30px;
    height: 30px;
    color: white;
}

.professional-info {
    flex: 1;
}

.professional-info h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}

.professional-title {
    font-size: 1rem;
    color: var(--red);
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 992px) {
    .professionals-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 600px;
    }
    
    .professionals-column {
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .professionals-section {
        padding: 60px 0;
    }
    
    .professional-card {
        padding: 20px;
        gap: 20px;
        min-height: 120px;
    }
    
    .professional-icon {
        width: 60px;
        height: 60px;
    }
    
    .professional-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .professional-info h3 {
        font-size: 1.2rem;
    }
    
    .professional-title {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .professional-card {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }
    
    .professional-info h3 {
        font-size: 1.1rem;
    }
}