/**
 * SEMES - Componentes Específicos
 * Equipos y Suministros Médicos
 */

/* ========================================
HERO SECTION - FULL IMAGE + CAROUSEL BELOW
   ======================================== */
.hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    color: var(--white);
}

/* --- Image Wrapper: shows full background image --- */
.hero-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-bg-img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Dark overlay on the background image */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(6, 20, 40, 0.55) 0%,
        rgba(12, 45, 87, 0.4) 50%,
        rgba(6, 20, 40, 0.7) 100%
    );
    z-index: 1;
}

/* --- Centered Text (overlaid on the image) --- */
.hero-content-center {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 5% 40px;
}

.hero-logo {
    display: inline-block;
    width: 200px;
    height: auto;
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 0.6s ease both;
    filter: drop-shadow(0 4px 16px rgba(56, 189, 248, 0.35));
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    color: #ffffff;
    letter-spacing: -1.5px;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease both;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    animation: fadeInUp 0.8s ease 0.15s both;
    line-height: 1.75;
    font-weight: 400;
    max-width: 650px;
}

/* --- Bottom Area: CTA Button + Carousel (below image, in normal flow) --- */
.hero-bottom {
    background: linear-gradient(180deg, var(--primary-dark) 0%, #061428 100%);
    padding: var(--spacing-xl) var(--spacing-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-lg);
}

.hero-cta-btn {
    animation: fadeInUp 0.8s ease 0.3s both;
    box-shadow: 0 8px 30px rgba(56, 189, 248, 0.3);
    font-size: 1.05rem;
    padding: 0.9rem 2.2rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-sky));
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: white;
}

.hero-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 44px rgba(56, 189, 248, 0.45);
}

/* --- Product Carousel --- */
.hero-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 0 12px;
    width: 100%;
    animation: fadeInUp 1s ease 0.5s both;
}

.carousel-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    padding: 0;
}

.carousel-arrow:hover {
    background: rgba(56, 189, 248, 0.25);
    border-color: var(--primary-sky);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.3);
}

.carousel-arrow i {
    width: 24px;
    height: 24px;
}

.carousel-track-wrapper {
    width: 100%;
    max-width: 780px;
    overflow: hidden;
    margin-top: -50px;
}

.carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.carousel-item {
    flex: 0 0 calc((100% - 40px) / 3);
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.carousel-item img {
    width: 100%;
    height: auto;
    max-height: 180px;
    object-fit: contain;
    display: block;
    transition: transform 0.5s ease, filter 0.5s ease;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.2));
}

.carousel-item:hover img {
    transform: scale(1.05);
}

/* Side items get a blue tint via CSS filter */
.carousel-item.side-item img {
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.15)) brightness(0.75) sepia(0.3) hue-rotate(180deg) saturate(1.8);
    opacity: 0.7;
    transform: scale(0.88);
}

.carousel-item.side-item:hover img {
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.2)) brightness(0.85) sepia(0.2) hue-rotate(180deg) saturate(1.4);
    opacity: 0.85;
    transform: scale(0.92);
}

/* Center item is full size with glow */
.carousel-item.center-item {
    transform: scale(1.5);
    z-index: 2;
}

.carousel-item.center-item img {
    filter: drop-shadow(0 8px 30px rgba(56, 189, 248, 0.35));
    max-height: 220px;
}

.carousel-item.center-item:hover img {
    filter: drop-shadow(0 12px 40px rgba(56, 189, 248, 0.5));
    transform: scale(1.08);
}

/* --- Hero Responsive --- */
@media (max-width: 992px) {
.hero-section {
    margin-top: 11px;
    height: 50vh;
}
.hero-image-wrapper {
    width: 100%;
}

.hero-bg-img {
    display: block;
    width: 100%;
    height: 30vh;
    object-fit: cover;
}
    .hero-logo {
        display: none;
    }

    .hero-title {
        font-size: 14px;
    }

    .hero-subtitle {
        font-size: 12px;
    }

    .hero-bottom {
        /* padding: var(--spacing-lg) var(--spacing-md); */
        height: 20vh;
    }

    .hero-carousel {
        margin-top: 40px;
        gap: 10px;
        padding: 0 12px;
    }

    .carousel-track-wrapper {
        max-width: 560px;
    }

    .carousel-item img {
        max-height: 140px;
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
    }

    .carousel-arrow i {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 576px) {

    .hero-content-center {
        padding: 30px 5% 20px;
    }

    .hero-logo {
        width: 100px;
        margin-bottom: var(--spacing-sm);
    }
.hero-bg-img {
    display: block;
    width: 100%;
    height: 30vh;
    object-fit: cover;
}
    .hero-title {
        font-size: 1rem;
        letter-spacing: -1px;
        margin-bottom: var(--spacing-xs);
    }

    .hero-subtitle {
        font-size: 15px;
        line-height: 1.5;
    }

    .hero-bottom {
        padding: var(--spacing-md) var(--spacing-sm);
        gap: var(--spacing-md);
    }

    .hero-cta-btn {
        font-size: 0.9rem;
        padding: 0.7rem 1.6rem;
    }

    .hero-carousel {
        gap: 8px;
        padding: 0 8px;
    }

    .carousel-track-wrapper {
        max-width: 300px;
    }

    .carousel-item img {
        max-height: 100px;
    }

    .carousel-item {
        padding: 4px;
    }

    .carousel-arrow {
        width: 34px;
        height: 34px;
    }

    .carousel-arrow i {
        width: 16px;
        height: 16px;
    }
}

/* --- Catalog Price Note --- */
.catalog-price-note {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    background: rgba(56, 189, 248, 0.08);
    border: 1px solid rgba(56, 189, 248, 0.18);
    color: var(--primary-blue);
    font-size: 0.88rem;
    font-weight: 500;
    margin: var(--spacing-md) auto var(--spacing-lg);
    text-align: center;
}

.catalog-price-note i {
    flex-shrink: 0;
    color: var(--primary-sky);
}

/* ========================================
   WHATSAPP BUTTON
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.8s both;
}

.whatsapp-float:hover {
    transform: scale(1.15) translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    width: 32px;
    height: 32px;
    color: white;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 1.5rem;
        right: 1.5rem;
    }
    
    .whatsapp-float i {
        width: 28px;
        height: 28px;
    }
}

/* ========================================
   CATALOG SECTION
   ======================================== */
.catalog-section {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(180deg, #f0f7ff 0%, #e0f2fe 50%, #f0f7ff 100%);
    color: var(--gray-800);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.catalog-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-2xl);
    color: var(--primary-dark);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-blue), var(--primary-sky));
    border-radius: var(--radius-full);
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--gray-500);
    margin-bottom: var(--spacing-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-2xl);
}

.catalog-card {
    position: relative;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(10, 106, 191, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.7);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.catalog-card:nth-child(1) {
    animation-delay: 0.1s;
}

.catalog-card:nth-child(2) {
    animation-delay: 0.2s;
}

.catalog-card:nth-child(3) {
    animation-delay: 0.3s;
}

.catalog-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(10, 106, 191, 0.15);
    border-color: rgba(56, 189, 248, 0.4);
}

.catalog-card-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.catalog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.catalog-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, 
        rgba(12, 45, 87, 0.9) 0%, 
        rgba(10, 106, 191, 0.4) 50%, 
        transparent 100%);
    z-index: 1;
    transition: all 0.4s ease;
}

.catalog-card:hover::before {
    background: linear-gradient(to top, 
        rgba(12, 45, 87, 0.95) 0%, 
        rgba(10, 106, 191, 0.5) 60%, 
        rgba(56, 189, 248, 0.1) 100%);
}

.catalog-card:hover .catalog-card-image img {
    transform: scale(1.1);
}

.catalog-card-content {
    position: relative;
    z-index: 2;
    padding: var(--spacing-xl);
    background: transparent;
    text-align: left;
}

.catalog-card-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: white;
}

.catalog-card-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
    font-size: 1rem;
}

.catalog-card-actions {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.catalog-card-actions .btn {
    font-size: 0.95rem;
    padding: 0.6rem 1.25rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
}

.catalog-card-actions .btn:hover {
    background: rgba(56, 189, 248, 0.3);
    border-color: var(--primary-sky);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(56, 189, 248, 0.3);
}

/* ========================================
   ABOUT SECTION (Redesigned)
   ======================================== */
.about-section {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(180deg, #0c2d57 0%, #0a4a8a 50%, #0c2d57 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    animation: float 12s ease-in-out infinite;
}

.about-orb-1 {
    top: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.18) 0%, transparent 70%);
}

.about-orb-2 {
    bottom: -15%;
    right: -10%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.14) 0%, transparent 70%);
    animation-delay: -6s;
}

.about-section .container {
    position: relative;
    z-index: 1;
}

.about-header-pro {
    margin-bottom: var(--spacing-xl);
}

.about-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 18px;
    border-radius: var(--radius-full);
    background: rgba(56, 189, 248, 0.12);
    border: 1px solid rgba(56, 189, 248, 0.25);
    color: var(--primary-sky);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    animation: fadeInUp 0.6s ease both;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.section-title-white {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    color: white;
    text-align: center;
    position: relative;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.section-title-white::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-sky), var(--accent-cyan));
    border-radius: var(--radius-full);
    box-shadow: 0 0 10px rgba(56, 189, 248, 0.5);
}

.about-text-center {
    max-width: 800px;
    margin: 0 auto var(--spacing-2xl);
    animation: fadeInUp 0.6s ease 0.2s both;
}

.about-text-center p {
    margin-bottom: var(--spacing-lg);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Stats row */
.about-stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-3xl);
    padding: var(--spacing-xl) var(--spacing-2xl);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.6s ease 0.3s both;
}

.about-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.about-stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, var(--primary-sky));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

.about-stat-label {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.about-stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, transparent, rgba(56, 189, 248, 0.4), transparent);
}

.values-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: var(--spacing-2xl);
    color: var(--primary-sky);
    text-align: center;
    animation: fadeInUp 0.6s ease 0.35s both;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
    max-width: 1100px;
    margin: 0 auto;
}

.value-card {
    text-align: center;
    padding: var(--spacing-2xl) var(--spacing-xl);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.06), transparent);
    transition: left 0.8s ease;
}

.value-card:hover::before {
    left: 100%;
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-10px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.25), 0 0 40px rgba(56, 189, 248, 0.12);
    border-color: rgba(56, 189, 248, 0.35);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-lg);
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-sky));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(10, 106, 191, 0.4);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card:hover .value-icon {
    transform: scale(1.12) rotate(5deg);
    box-shadow: 0 14px 35px rgba(56, 189, 248, 0.55);
    border-radius: var(--radius-xl);
}

.value-icon i {
    width: 40px;
    height: 40px;
    color: white;
}

.value-card h3 {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.value-card p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    line-height: 1.6;
}

.about-cta-link {
    text-align: center;
    margin-top: var(--spacing-2xl);
    animation: fadeInUp 0.6s ease 0.5s both;
}

/* ========================================
   ALLIANCES SECTION (CUSTOM)
   ======================================== */
.alliance-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.alliance-card.active-alliance:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(10, 106, 191, 0.15);
}

.about-alliances {
    margin-bottom: var(--spacing-3xl);
}

/* ========================================
   CONTACT SECTION (Redesigned)
   ======================================== */
.contact-section-pro {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(180deg, #f0f7ff 0%, #e8f4fd 50%, #f0f7ff 100%);
    color: var(--gray-800);
    position: relative;
    overflow: hidden;
}

.contact-bg-shape {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.contact-shape-1 {
    top: -120px;
    right: -120px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.08) 0%, transparent 70%);
    animation: float 14s ease-in-out infinite;
}

.contact-shape-2 {
    bottom: -150px;
    left: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(10, 106, 191, 0.06) 0%, transparent 70%);
    animation: float 10s ease-in-out infinite reverse;
}

.contact-section-pro .container {
    position: relative;
    z-index: 1;
}

.contact-header-pro {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.contact-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 18px;
    border-radius: var(--radius-full);
    background: rgba(10, 106, 191, 0.08);
    border: 1px solid rgba(10, 106, 191, 0.15);
    color: var(--primary-blue);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    animation: fadeInUp 0.6s ease both;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.contact-grid-pro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

/* Contact Info Side */
.contact-info-pro {
    padding: var(--spacing-2xl);
    background: linear-gradient(135deg, var(--primary-dark), #0a4a8a);
    border-radius: var(--radius-xl);
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(12, 45, 87, 0.25);
}

.contact-info-pro::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.15) 0%, transparent 70%);
    filter: blur(40px);
}

.contact-info-heading {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    position: relative;
}

.contact-info-desc {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-xl);
    position: relative;
}

.contact-methods-pro {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    position: relative;
}

.contact-method-pro {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    transition: all 0.35s ease;
}

.contact-method-pro:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(6px);
}

.contact-method-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: rgba(56, 189, 248, 0.15);
    border: 1px solid rgba(56, 189, 248, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.35s ease;
}

.contact-method-pro:hover .contact-method-icon {
    background: rgba(56, 189, 248, 0.25);
    transform: scale(1.08);
}

.contact-method-icon i {
    width: 20px;
    height: 20px;
    color: var(--primary-sky);
}

.contact-method-pro h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
    margin-bottom: 2px;
}

.contact-method-pro p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact-method-pro a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.contact-method-pro a:hover {
    color: var(--primary-sky);
}

.contact-social-pro {
    display: flex;
    gap: var(--spacing-md);
    position: relative;
}

.social-icon-pro {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-icon-pro:hover {
    background: var(--primary-sky);
    color: var(--primary-dark);
    border-color: var(--primary-sky);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(56, 189, 248, 0.35);
}

.social-icon-pro i {
    width: 20px;
    height: 20px;
}

/* Contact Form Side */
.contact-form-pro {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 40px rgba(10, 106, 191, 0.08);
    transition: box-shadow 0.4s ease;
}

.contact-form-pro:hover {
    box-shadow: 0 16px 50px rgba(10, 106, 191, 0.12);
}

.contact-form-heading {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: var(--spacing-xl);
}

.contact-form-heading i {
    color: var(--primary-blue);
}

.form-field {
    margin-bottom: var(--spacing-md);
}

.form-field label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: 6px;
}

.quote-form-pro input,
.quote-form-pro select,
.quote-form-pro textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(10, 106, 191, 0.1);
    border-radius: var(--radius-md);
    color: var(--gray-800);
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.quote-form-pro input::placeholder,
.quote-form-pro textarea::placeholder {
    color: var(--gray-400);
}

.quote-form-pro input:focus,
.quote-form-pro select:focus,
.quote-form-pro textarea:focus {
    outline: none;
    background: white;
    border-color: var(--primary-sky);
    box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.12);
    transform: translateY(-1px);
}

.quote-form-pro select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

.form-row-pro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.btn-submit-pro {
    margin-top: var(--spacing-sm);
    padding: 14px var(--spacing-xl);
    font-size: 1rem;
    border-radius: var(--radius-full);
    box-shadow: 0 6px 20px rgba(10, 106, 191, 0.3);
}

.btn-submit-pro:hover {
    box-shadow: 0 10px 30px rgba(10, 106, 191, 0.4);
}

/* ========================================
   AUTH PAGES
   ======================================== */

/* Animaciones personalizadas para Auth */
@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes floatCard {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

@keyframes slideInFromLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInFromRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Clases de utilidad para animaciones de scroll */
.animate-left { opacity: 0; }
.animate-left.animate-in { animation: slideInFromLeft 0.8s ease-out forwards; }

.animate-right { opacity: 0; }
.animate-right.animate-in { animation: slideInFromRight 0.8s ease-out forwards; }

.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(-45deg, #061428, #0c2d57, #0a6abf, #0c2d57);
    background-size: 400% 400%;
    animation: gradientBG 12s ease infinite;
    padding: var(--spacing-xl);
    position: relative;
    overflow: hidden;
}

.auth-page::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.15) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 0;
    animation: floatCard 8s ease-in-out infinite reverse;
}

.auth-page::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.12) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 0;
    animation: floatCard 10s ease-in-out infinite;
}

.auth-container {
    width: 100%;
    max-width: 480px;
    position: relative;
    z-index: 1;
    perspective: 1000px; /* Para efectos 3D sutiles */
}

.auth-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06),
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.4) inset; /* Borde brillante interior */
    border: 1px solid rgba(255, 255, 255, 0.2);
    
    /* Animación combinada: Entrada + Flotación suave */
    animation: 
        fadeInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1),
        floatCard 6s ease-in-out infinite 1s; /* Empieza a flotar después de entrar */
    transform-origin: center center;
}

.auth-title {
    font-size: 2rem;
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: var(--spacing-xl);
    font-weight: 800;
    background: linear-gradient(to right, var(--primary-dark), var(--primary-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    
    /* Animación de entrada */
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.2s forwards;
}

.auth-form {
    margin-bottom: var(--spacing-lg);
}

/* Animación en cascada para los inputs (Efecto Cremallera) */
.auth-form .form-group {
    margin-bottom: var(--spacing-lg);
    opacity: 0;
    /* La animación se define en los hijos nth-child */
}

/* Impares: Izquierda a Derecha */
.auth-form .form-group:nth-child(odd) {
    animation: slideInFromLeft 0.6s ease-out forwards;
}

/* Pares: Derecha a Izquierda */
.auth-form .form-group:nth-child(even) {
    animation: slideInFromRight 0.6s ease-out forwards;
}

/* Delays escalonados */
.auth-form .form-group:nth-child(1) { animation-delay: 0.2s; }
.auth-form .form-group:nth-child(2) { animation-delay: 0.3s; }
.auth-form .form-group:nth-child(3) { animation-delay: 0.4s; }
.auth-form .form-group:nth-child(4) { animation-delay: 0.5s; }

.auth-form label {
    display: block;
    color: var(--gray-700);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.auth-form input:focus + label {
    color: var(--primary-navy);
}

.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"] {
    width: 100%;
    padding: 0.85rem 1rem;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: var(--radius-md);
    color: var(--gray-800);
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.auth-form input:hover {
    border-color: #cbd5e1;
    transform: translateY(-1px);
}

.auth-form input::placeholder {
    color: #94a3b8;
    transition: opacity 0.3s;
}

.auth-form input:focus::placeholder {
    opacity: 0.5;
}

.auth-form input:focus {
    outline: none;
    background: #ffffff;
    border-color: var(--primary-sky);
    box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.15);
    transform: translateY(-2px);
}

.password-input {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    padding: 4px;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.toggle-password:hover {
    color: var(--primary-blue);
    background: rgba(10, 106, 191, 0.05);
}

.forgot-password {
    display: block;
    text-align: right;
    color: var(--primary-blue);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: var(--spacing-lg);
    transition: all 0.3s ease;
    
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.6s forwards;
}

.forgot-password:hover {
    color: var(--primary-sky);
    text-decoration: underline;
    transform: translateX(-3px);
}

.auth-submit {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-sky) 100%);
    color: white;
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: var(--radius-full);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: var(--spacing-lg);
    box-shadow: 0 4px 15px rgba(10, 106, 191, 0.3);
    position: relative;
    overflow: hidden;
    
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.7s forwards;
}

.auth-submit::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.auth-submit:hover::after {
    left: 100%;
}

.auth-submit:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 25px -5px rgba(10, 106, 191, 0.4);
}

.auth-submit:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.85rem 1rem;
    background: #ffffff;
    color: #1f2937;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: var(--spacing-lg);
    gap: 12px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    text-decoration: none;
    
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.9s forwards;
}

.btn-google:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-google svg {
    width: 20px;
    height: 20px;
}

.auth-footer {
    text-align: center;
    margin-top: var(--spacing-xl);
    color: var(--gray-600);
    font-size: 0.95rem;
    padding-top: var(--spacing-lg);
    border-top: 1px solid #e2e8f0;
    
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.8s forwards;
}

.auth-footer a {
    color: var(--primary-blue);
    font-weight: 700;
    transition: color 0.3s ease;
}

.auth-footer a:hover {
    color: var(--primary-sky);
    text-decoration: underline;
}

/* Ajustes para pantallas pequeñas */
@media (max-width: 480px) {
    .auth-card {
        padding: var(--spacing-xl);
    }
    
    .auth-title {
        font-size: 1.75rem;
    }
}

/* ========================================
   ALLIANCES SECTION
   ======================================== */
.alliances-section {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(to bottom, #f0f7ff 0%, #e0f2fe 100%);
}

.alliances-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-xl);
}

.alliance-card {
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.alliance-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-sky);
}

.alliance-card img {
    max-width: 120px;
    height: 80px;
    object-fit: contain;
    margin: 0 auto var(--spacing-md);
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.alliance-card:hover img {
    filter: grayscale(0%);
}

.alliance-card h3 {
    font-size: 1rem;
    color: var(--primary-dark);
    margin-bottom: var(--spacing-xs);
}

.alliance-card p {
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* ========================================
   ABOUT PAGE (Dedicated)
   ======================================== */
.about-page-pro {
    padding: 110px 0 var(--spacing-3xl);
    background: linear-gradient(180deg, #f0f7ff 0%, #e8f4fd 40%, #f0f7ff 100%);
    min-height: 100vh;
}

.about-pg-hero {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.about-pg-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 18px;
    border-radius: var(--radius-full);
    background: rgba(10, 106, 191, 0.08);
    border: 1px solid rgba(10, 106, 191, 0.15);
    color: var(--primary-blue);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    animation: fadeInUp 0.5s ease both;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.about-pg-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 0.6s ease 0.1s both;
}

.about-pg-subtitle {
    font-size: 1.15rem;
    color: var(--gray-500);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    animation: fadeInUp 0.6s ease 0.2s both;
}

/* Story section */
.about-pg-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
    margin-bottom: var(--spacing-3xl);
    padding: var(--spacing-2xl);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 32px rgba(10, 106, 191, 0.06);
}

.about-pg-story-text h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: var(--spacing-lg);
}

.about-pg-story-text p {
    color: var(--gray-600);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: var(--spacing-md);
}

.about-pg-story-img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-pg-story-img img {
    max-width: 100%;
    max-height: 350px;
    object-fit: contain;
    filter: drop-shadow(0 8px 30px rgba(10, 106, 191, 0.15));
    transition: transform 0.5s ease;
}

.about-pg-story-img:hover img {
    transform: scale(1.03);
}

/* Values section */
.about-pg-values {
    margin-bottom: var(--spacing-3xl);
}

.about-pg-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.about-pg-vcard {
    text-align: center;
    padding: var(--spacing-2xl) var(--spacing-xl);
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 20px rgba(10, 106, 191, 0.06);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.about-pg-vcard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-sky));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.about-pg-vcard:hover::before {
    transform: scaleX(1);
}

.about-pg-vcard:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 48px rgba(10, 106, 191, 0.12);
    border-color: rgba(56, 189, 248, 0.3);
}

.about-pg-vcard-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto var(--spacing-lg);
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-sky));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(10, 106, 191, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-pg-vcard:hover .about-pg-vcard-icon {
    transform: scale(1.12) rotate(5deg);
    box-shadow: 0 12px 30px rgba(56, 189, 248, 0.45);
    border-radius: var(--radius-xl);
}

.about-pg-vcard-icon i {
    width: 36px;
    height: 36px;
    color: white;
}

.about-pg-vcard h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: var(--spacing-sm);
}

.about-pg-vcard p {
    color: var(--gray-500);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* Timeline */
.about-pg-timeline {
    margin-bottom: var(--spacing-3xl);
}

.timeline-pro {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding-left: 40px;
}

.timeline-pro-line {
    position: absolute;
    left: 14px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-sky), var(--primary-blue), var(--primary-sky));
    border-radius: var(--radius-full);
}

.timeline-pro-item {
    position: relative;
    margin-bottom: var(--spacing-xl);
}

.timeline-pro-item:last-child {
    margin-bottom: 0;
}

.timeline-pro-dot {
    position: absolute;
    left: -33px;
    top: 18px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-sky));
    border: 3px solid #f0f7ff;
    box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.2), 0 2px 8px rgba(10, 106, 191, 0.3);
    transition: all 0.4s ease;
    z-index: 2;
}

.timeline-pro-item:hover .timeline-pro-dot {
    transform: scale(1.3);
    box-shadow: 0 0 0 6px rgba(56, 189, 248, 0.3), 0 4px 12px rgba(10, 106, 191, 0.4);
}

.timeline-pro-card {
    padding: var(--spacing-lg) var(--spacing-xl);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 16px rgba(10, 106, 191, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-pro-card:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 28px rgba(10, 106, 191, 0.1);
    border-color: rgba(56, 189, 248, 0.25);
}

.timeline-pro-year {
    display: inline-block;
    padding: 3px 14px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-sky));
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.timeline-pro-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* CTA */
.about-pg-cta {
    text-align: center;
}

.about-pg-cta-inner {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-2xl) var(--spacing-3xl);
    background: linear-gradient(135deg, var(--primary-dark), #0a4a8a);
    border-radius: var(--radius-xl);
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(12, 45, 87, 0.3);
}

.about-pg-cta-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.15) 0%, transparent 70%);
    filter: blur(30px);
}

.about-pg-cta-inner h2 {
    font-size: 1.6rem;
    font-weight: 700;
    position: relative;
}

.about-pg-cta-inner p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    position: relative;
}

.about-pg-cta-inner .btn {
    position: relative;
    margin-top: var(--spacing-sm);
}

/* ========================================
   CONTACT PAGE (Dedicated improvements)
   ======================================== */
.contact-page {
    padding: 110px 0 var(--spacing-3xl);
    background: linear-gradient(180deg, #f0f7ff 0%, #e8f4fd 40%, #f0f7ff 100%);
}

.contact-page .page-title {
    animation: fadeInUp 0.6s ease both;
}

.contact-page .page-subtitle {
    animation: fadeInUp 0.6s ease 0.1s both;
}

.contact-page .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--spacing-2xl);
    align-items: start;
}

.contact-info-section {
    animation: fadeInUp 0.6s ease 0.2s both;
}

.contact-info-section h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: var(--spacing-lg);
    line-height: 1.5;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.contact-method {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.35s ease;
}

.contact-method:hover {
    transform: translateX(6px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 16px rgba(10, 106, 191, 0.08);
    border-color: rgba(56, 189, 248, 0.2);
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-sky));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(10, 106, 191, 0.25);
}

.contact-icon i {
    width: 20px;
    height: 20px;
    color: white;
}

.contact-method h3 {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 2px;
}

.contact-method p {
    color: var(--gray-500);
    font-size: 0.9rem;
}

.contact-method a {
    color: var(--primary-blue);
    transition: color 0.3s ease;
}

.contact-method a:hover {
    color: var(--primary-sky);
}

.social-media-section {
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.social-media-section h3 {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: var(--spacing-md);
}

.social-links-large {
    display: flex;
    gap: var(--spacing-md);
}

.social-links-large a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    background: rgba(10, 106, 191, 0.06);
    border: 1px solid rgba(10, 106, 191, 0.1);
    color: var(--primary-blue);
    font-size: 0.88rem;
    font-weight: 500;
    transition: all 0.35s ease;
}

.social-links-large a:hover {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-sky));
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(10, 106, 191, 0.25);
}

.social-links-large a i {
    width: 16px;
    height: 16px;
}

.quotation-form-section {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 40px rgba(10, 106, 191, 0.08);
    animation: fadeInUp 0.6s ease 0.3s both;
}

.quotation-form-section h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: var(--spacing-xl);
}

/* ========================================
   RESPONSIVE
   ======================================== */
/* 992px: Tablets */
@media (max-width: 992px) {
    .about-stats-row {
        gap: var(--spacing-xl);
        padding: var(--spacing-lg) var(--spacing-xl);
    }

    .about-stat-number {
        font-size: 2.2rem;
    }

    .contact-grid-pro {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .contact-info-pro {
        order: 2;
    }

    .contact-form-pro {
        order: 1;
    }

    /* About page */
    .about-pg-story {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
        padding: var(--spacing-xl);
    }

    .about-pg-story-img {
        order: -1;
    }

    .about-pg-story-text h2 {
        font-size: 1.5rem;
    }

    .contact-page .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-pg-cta-inner {
        padding: var(--spacing-xl) var(--spacing-2xl);
    }
}

/* 768px: Mobile landscape / small tablets */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.6rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-title-white {
        font-size: 1.8rem;
    }
    
    .values-title {
        font-size: 1.4rem;
    }
    
    .catalog-grid {
        grid-template-columns: 1fr;
    }
    
    .alliances-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .about-text-center p {
        font-size: 1rem;
    }

    /* About stats responsive */
    .about-stats-row {
        flex-direction: column;
        gap: var(--spacing-lg);
        padding: var(--spacing-lg);
    }

    .about-stat-divider {
        width: 60px;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.4), transparent);
    }

    .about-stat-number {
        font-size: 2rem;
    }

    .about-label,
    .contact-label {
        font-size: 0.78rem;
        padding: 5px 14px;
    }

    .about-cta-link .btn {
        font-size: 0.9rem;
        padding: 0.7rem 1.5rem;
    }

    /* Contact section responsive */
    .contact-grid-pro {
        grid-template-columns: 1fr;
    }

    .contact-info-pro {
        padding: var(--spacing-xl);
    }

    .contact-form-pro {
        padding: var(--spacing-xl);
    }

    .contact-info-heading {
        font-size: 1.3rem;
    }

    .contact-form-heading {
        font-size: 1.15rem;
    }

    .form-row-pro {
        grid-template-columns: 1fr;
    }

    /* About page styles */
    .about-page {
        padding-top: 90px;
    }

    .about-hero .page-title {
        font-size: 2rem;
    }

    .about-hero .page-subtitle {
        font-size: 1.05rem;
    }

    .value-card-large {
        padding: var(--spacing-xl) var(--spacing-lg);
    }

    .value-card-large h3 {
        font-size: 1.1rem;
    }

    .value-card-large p {
        font-size: 0.88rem;
    }

    .timeline-item {
        padding-left: var(--spacing-xl);
    }

    .about-cta {
        padding: var(--spacing-xl);
    }

    .about-cta h2 {
        font-size: 1.4rem;
    }

    /* Contact page styles */
    .contact-page .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-page .page-title {
        font-size: 2rem;
    }

    .contact-page .page-subtitle {
        font-size: 1rem;
    }

    .quotation-form-section,
    .contact-info-section {
        padding: 0;
    }

    .social-links-large {
        flex-wrap: wrap;
    }

    /* About page mobile */
    .about-page-pro {
        padding-top: 90px;
    }

    .about-pg-title {
        font-size: 2rem;
    }

    .about-pg-subtitle {
        font-size: 1rem;
    }

    .about-pg-story {
        grid-template-columns: 1fr;
        padding: var(--spacing-lg);
    }

    .about-pg-story-text h2 {
        font-size: 1.3rem;
        flex-wrap: wrap;
    }

    .about-pg-story-img img {
        max-height: 220px;
    }

    .about-pg-values-grid {
        grid-template-columns: 1fr;
    }

    .about-pg-vcard {
        padding: var(--spacing-xl) var(--spacing-lg);
    }

    .timeline-pro {
        padding-left: 32px;
    }

    .timeline-pro-dot {
        left: -26px;
        width: 14px;
        height: 14px;
    }

    .timeline-pro-line {
        left: 12px;
        width: 2px;
    }

    .timeline-pro-card {
        padding: var(--spacing-md) var(--spacing-lg);
    }

    .timeline-pro-year {
        font-size: 0.8rem;
    }

    .timeline-pro-card p {
        font-size: 0.9rem;
    }

    .about-pg-cta-inner {
        padding: var(--spacing-xl) var(--spacing-lg);
    }

    .about-pg-cta-inner h2 {
        font-size: 1.3rem;
    }

    .about-pg-cta-inner p {
        font-size: 0.9rem;
    }

    /* Contact page mobile */
    .contact-page .page-title {
        font-size: 2rem;
    }

    .contact-info-section h2 {
        font-size: 1.2rem;
    }

    .quotation-form-section {
        padding: var(--spacing-xl);
    }

    .quotation-form-section h2 {
        font-size: 1.2rem;
    }
}

/* ========================================
   PRODUCTS PAGE
   ======================================== */
.catalog-page {
    padding: var(--spacing-3xl) 0;
}

.catalog-filter {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-2xl);
    flex-wrap: wrap;
}

.filter-buttons {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    background: var(--gray-100);
    color: var(--gray-700);
    font-weight: 500;
    transition: var(--transition);
}

.filter-btn:hover {
    background: var(--gray-200);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-sky));
    color: var(--white);
    box-shadow: 0 4px 10px rgba(10, 106, 191, 0.25);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    height: 200px;
    background: var(--gray-100);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-content {
    padding: var(--spacing-lg);
}

.product-content h3 {
    color: var(--primary-dark);
    margin-bottom: var(--spacing-sm);
}

.product-content p {
    color: var(--gray-600);
    margin-bottom: var(--spacing-md);
}

.product-specs {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    color: var(--gray-600);
    font-size: 0.875rem;
}

.product-specs i {
    width: 16px;
    height: 16px;
}

.product-actions {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
}

/* ========================================
   AUTH PAGES
   ======================================== */
.auth-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-3xl) 0;
}

.auth-container {
    width: 100%;
    max-width: 450px;
}

.auth-card {
    background: var(--white);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.auth-title {
    font-size: 2rem;
    color: var(--primary-navy);
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.auth-form {
    margin-bottom: var(--spacing-lg);
}

.auth-divider {
    position: relative;
    text-align: center;
    margin: var(--spacing-xl) 0;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gray-300);
}

.auth-divider span {
    position: relative;
    background: var(--white);
    padding: 0 var(--spacing-md);
    color: var(--gray-500);
}

.auth-footer {
    text-align: center;
    color: var(--gray-600);
}

.link-primary {
    color: var(--primary-blue);
    font-weight: 500;
}

.link-primary:hover {
    text-decoration: underline;
}

.link-secondary {
    color: var(--gray-600);
    font-size: 0.875rem;
}

.link-secondary:hover {
    color: var(--primary-blue);
}

/* ========================================
   BLOG
   ======================================== */
.blog-page {
    padding: var(--spacing-3xl) 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--spacing-2xl);
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    height: 200px;
    background: var(--gray-100);
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: var(--spacing-lg);
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
    font-size: 0.875rem;
    color: var(--gray-600);
}

.blog-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.blog-author img,
.author-avatar {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-full);
}

.author-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-sky));
    color: var(--white);
    font-weight: 600;
}

.blog-content h2 {
    color: var(--primary-dark);
    margin-bottom: var(--spacing-sm);
}

.blog-content p {
    color: var(--gray-600);
    margin-bottom: var(--spacing-md);
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.comment-count {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--gray-600);
    font-size: 0.875rem;
}

/* ========================================
   DASHBOARD
   ======================================== */
.dashboard-page {
    padding: var(--spacing-3xl) 0;
}

.dashboard-header {
    margin-bottom: var(--spacing-2xl);
}

.user-welcome {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.user-avatar-large {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-sky));
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
}

.dashboard-tabs {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-2xl);
    border-bottom: 2px solid var(--gray-200);
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-lg);
    color: var(--gray-600);
    font-weight: 500;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: var(--transition);
}

.tab-btn:hover {
    color: var(--primary-blue);
}

.tab-btn.active {
    color: var(--primary-blue);
    border-bottom-color: var(--primary-blue);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.quotations-list,
.comments-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.quotation-card,
.comment-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.quotation-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
}

.status-pending {
    background: #fef3c7;
    color: #92400e;
}

.status-contacted {
    background: #dbeafe;
    color: #1e40af;
}

.status-completed {
    background: #d1fae5;
    color: #065f46;
}

.empty-state {
    text-align: center;
    padding: var(--spacing-3xl);
    color: var(--gray-500);
}

.empty-state i {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-lg);
    color: var(--gray-400);
}

/* ========================================
   PROFESSIONAL CATALOG PAGE
   ======================================== */
.catalog-page-pro {
    padding: 120px 0 var(--spacing-3xl);
    background: linear-gradient(180deg, #f0f7ff 0%, #e8f4fd 40%, #f0f7ff 100%);
    min-height: 100vh;
}

.catalog-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.catalog-page-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: var(--spacing-sm);
    animation: fadeInUp 0.6s ease both;
}

.catalog-page-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.6s ease 0.1s both;
}

/* Toolbar: search + filters */
.catalog-toolbar {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    animation: fadeInUp 0.6s ease 0.2s both;
}

.catalog-search {
    position: relative;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
}

.catalog-search i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: var(--gray-400);
    pointer-events: none;
}

.catalog-search input {
    width: 100%;
    padding: 14px 20px 14px 48px;
    border: 2px solid rgba(10, 106, 191, 0.12);
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    font-size: 1rem;
    color: var(--gray-800);
    transition: all 0.35s ease;
    box-shadow: 0 2px 12px rgba(10, 106, 191, 0.06);
}

.catalog-search input:focus {
    outline: none;
    border-color: var(--primary-sky);
    box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.15), 0 4px 20px rgba(10, 106, 191, 0.1);
    background: #fff;
}

.catalog-search input::placeholder {
    color: var(--gray-400);
}

.catalog-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.cat-filter-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border: 2px solid rgba(10, 106, 191, 0.1);
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(8px);
    color: var(--gray-600);
    font-size: 0.92rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.cat-filter-pill i {
    width: 16px;
    height: 16px;
}

.cat-filter-pill:hover {
    border-color: var(--primary-sky);
    color: var(--primary-blue);
    background: rgba(56, 189, 248, 0.08);
    transform: translateY(-2px);
}

.cat-filter-pill.active {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-sky));
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(10, 106, 191, 0.3);
    transform: translateY(-1px);
}

.cat-filter-pill.active i {
    color: white;
}

.catalog-results-bar {
    margin-bottom: var(--spacing-lg);
    font-size: 0.92rem;
    color: var(--gray-500);
}

/* Products Grid */
.pro-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.pro-product-card {
    position: relative;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.9);
    box-shadow: 0 4px 20px rgba(10, 106, 191, 0.06);
    cursor: pointer;
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(24px);
    animation: fadeInUp 0.5s ease forwards;
}

.pro-product-card:nth-child(1) { animation-delay: 0.05s; }
.pro-product-card:nth-child(2) { animation-delay: 0.1s; }
.pro-product-card:nth-child(3) { animation-delay: 0.15s; }
.pro-product-card:nth-child(4) { animation-delay: 0.2s; }
.pro-product-card:nth-child(5) { animation-delay: 0.25s; }
.pro-product-card:nth-child(6) { animation-delay: 0.3s; }

.pro-product-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 48px rgba(10, 106, 191, 0.14);
    border-color: rgba(56, 189, 248, 0.3);
}

.pro-product-card.hidden {
    display: none !important;
}

.pro-card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-sky));
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(10, 106, 191, 0.3);
}

.pro-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #e0f2fe, #f0f7ff);
}

.pro-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.pro-product-card:hover .pro-card-image img {
    transform: scale(1.08);
}

.pro-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 106, 191, 0.0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.4s ease;
}

.pro-product-card:hover .pro-card-overlay {
    background: rgba(10, 106, 191, 0.35);
}

.pro-card-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: rgba(255,255,255,0.95);
    color: var(--primary-blue);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.35s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.pro-card-view-btn i {
    width: 18px;
    height: 18px;
}

.pro-product-card:hover .pro-card-view-btn {
    opacity: 1;
    transform: translateY(0);
}

.pro-card-body {
    padding: var(--spacing-lg);
}

.pro-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.pro-card-desc {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.5;
    margin-bottom: var(--spacing-md);
    max-height: 60px;
    overflow: hidden;
}

.pro-card-desc p {
    margin: 0;
}

.pro-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding-top: var(--spacing-sm);
    border-top: 1px solid rgba(10, 106, 191, 0.08);
}

.pro-card-cat-tag {
    font-size: 0.78rem;
    color: var(--primary-blue);
    font-weight: 500;
    background: rgba(56, 189, 248, 0.1);
    padding: 4px 10px;
    border-radius: var(--radius-full);
}

.pro-card-quote-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-sky));
    color: white;
    border: none;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(10, 106, 191, 0.2);
}

.pro-card-quote-btn i {
    width: 14px;
    height: 14px;
}

.pro-card-quote-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10, 106, 191, 0.35);
}

/* Empty state */
.catalog-empty {
    text-align: center;
    padding: var(--spacing-3xl) var(--spacing-xl);
    color: var(--gray-500);
}

.catalog-empty i {
    width: 64px;
    height: 64px;
    color: var(--gray-400);
    margin-bottom: var(--spacing-md);
}

.catalog-empty h3 {
    font-size: 1.3rem;
    color: var(--gray-600);
    margin-bottom: 8px;
}

/* ========================================
   PRODUCT DETAIL MODAL
   ======================================== */
.product-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(6, 20, 40, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.product-modal-backdrop.open {
    display: flex;
    opacity: 1;
}

.product-modal {
    position: relative;
    width: 100%;
    max-width: 960px;
    max-height: 90vh;
    background: #fff;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0,0,0,0.25);
    animation: modalSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes modalSlideIn {
    from { opacity: 0; transform: translateY(40px) scale(0.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(8px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

.modal-close-btn:hover {
    background: #fff;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.modal-close-btn i {
    width: 22px;
    height: 22px;
    color: var(--gray-700);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-height: 90vh;
    overflow-y: auto;
}

/* Gallery side */
.modal-gallery {
    background: linear-gradient(135deg, #f0f7ff, #e0f2fe);
    padding: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.modal-main-img {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: white;
    min-height: 280px;
}

.modal-main-img img {
    max-width: 100%;
    max-height: 340px;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.modal-main-img:hover img {
    transform: scale(1.03);
}

.modal-thumbs {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.modal-thumb {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.modal-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-thumb:hover,
.modal-thumb.active {
    border-color: var(--primary-sky);
    box-shadow: 0 2px 12px rgba(56, 189, 248, 0.3);
    transform: scale(1.08);
}

/* Info side */
.modal-info {
    padding: var(--spacing-2xl);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    overflow-y: auto;
}

.modal-category {
    display: inline-block;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    background: rgba(56, 189, 248, 0.1);
    color: var(--primary-blue);
    font-size: 0.82rem;
    font-weight: 600;
    width: fit-content;
}

.modal-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.3;
}

.modal-description {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 0.95rem;
}

.modal-description p {
    margin: 0;
}

.modal-specs {
    background: #f8fafc;
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    border: 1px solid rgba(10, 106, 191, 0.08);
}

.modal-specs h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: var(--spacing-md);
}

.modal-specs h4 i {
    width: 18px;
    height: 18px;
    color: var(--primary-blue);
}

.modal-spec-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(10, 106, 191, 0.06);
    font-size: 0.9rem;
}

.modal-spec-row:last-child {
    border-bottom: none;
}

.modal-spec-label {
    font-weight: 600;
    color: var(--gray-700);
}

.modal-spec-value {
    color: var(--gray-500);
    text-align: right;
}

.modal-actions {
    display: flex;
    gap: 12px;
    margin-top: var(--spacing-md);
    flex-wrap: wrap;
}

.modal-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.modal-actions .btn i {
    width: 18px;
    height: 18px;
}

.modal-actions .btn-outline {
    background: transparent;
    border: 2px solid rgba(10, 106, 191, 0.15);
    color: var(--gray-600);
}

.modal-actions .btn-outline:hover {
    border-color: var(--primary-sky);
    color: var(--primary-blue);
    background: rgba(56, 189, 248, 0.05);
}

/* Modal responsive */
@media (max-width: 768px) {
    .product-modal-backdrop {
        padding: 12px;
        align-items: flex-end;
    }

    .product-modal {
        max-height: 92vh;
        border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    }

    .modal-body {
        grid-template-columns: 1fr;
    }

    .modal-gallery {
        padding: var(--spacing-lg);
    }

    .modal-main-img {
        min-height: 200px;
    }

    .modal-main-img img {
        max-height: 220px;
    }

    .modal-info {
        padding: var(--spacing-lg);
    }

    .modal-title {
        font-size: 1.3rem;
    }

    .modal-actions {
        flex-direction: column;
    }

    .modal-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Catalog page responsive */
@media (max-width: 768px) {
    .catalog-page-pro {
        padding-top: 100px;
    }

    .catalog-page-title {
        font-size: 2rem;
    }

    .pro-products-grid {
        grid-template-columns: 1fr;
    }

    .catalog-filters {
        gap: 6px;
    }

    .cat-filter-pill {
        padding: 8px 14px;
        font-size: 0.85rem;
    }
}

/* ========================================
   RESPONSIVE (GLOBAL)
   ======================================== */
@media (max-width: 768px) {
    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .catalog-grid,
    .products-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-tabs {
        overflow-x: auto;
    }
}
