/* ========================================
   PREMIUM DESIGN ENHANCEMENTS
   Ultra Modern & Professional Design
   ======================================== */

/* ===== LOGO & BRANDING ===== */
.logo {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(228, 3, 44, 0.3));
}

.logo img {
    transition: all 0.3s ease;
}

/* ===== HERO SECTION - ULTRA MODERN ===== */
.hero-content {
    position: relative;
    z-index: 10;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

/* ===== FEATURE CARDS - PREMIUM ===== */
.feature-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e4032c 0%, #c41230 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-12px);
    border-color: rgba(228, 3, 44, 0.2);
    box-shadow: 0 20px 50px rgba(228, 3, 44, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #e4032c 0%, #c41230 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(228, 3, 44, 0.4);
}

.feature-icon i {
    font-size: 2.5rem;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.feature-description {
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.6;
}

/* ===== SECTION HEADERS - PREMIUM ===== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-subtitle {
    font-size: 0.875rem;
    font-weight: 600;
    color: #e4032c;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(228, 3, 44, 0.1);
    border-radius: 50px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-title .highlight {
    background: linear-gradient(135deg, #e4032c 0%, #c41230 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== CALL TO ACTION BUTTONS - PREMIUM ===== */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2.5rem;
    background: linear-gradient(135deg, #e4032c 0%, #c41230 100%);
    color: white;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(228, 3, 44, 0.4);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(228, 3, 44, 0.5);
    color: white;
}

.cta-button:active {
    transform: translateY(-1px) scale(0.98);
}

.cta-button i {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

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

.cta-button-outline {
    background: transparent;
    border: 2px solid #e4032c;
    color: #e4032c;
    box-shadow: none;
}

.cta-button-outline:hover {
    background: linear-gradient(135deg, #e4032c 0%, #c41230 100%);
    color: white;
    border-color: transparent;
}

/* ===== SERVICE CARDS - PREMIUM ===== */
.service-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(228, 3, 44, 0.9) 0%, rgba(196, 18, 48, 0.95) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(228, 3, 44, 0.2);
}

.service-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 2rem;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.service-card:hover .service-content {
    color: white;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: white;
}

.service-description {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #6b7280;
    transition: color 0.3s ease;
}

.service-card:hover .service-description {
    color: rgba(255, 255, 255, 0.9);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    font-weight: 600;
    color: #e4032c;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-card:hover .service-link {
    color: white;
    transform: translateX(5px);
}

/* ===== BREADCRUMB - PREMIUM ===== */
.breadcrumb-wrapper {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
}

.breadcrumb-item a {
    color: #6b7280;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.breadcrumb-item a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e4032c;
    transition: width 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #e4032c;
}

.breadcrumb-item a:hover::after {
    width: 100%;
}

.breadcrumb-item.active {
    color: #e4032c;
    font-weight: 600;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '→';
    color: #d1d5db;
    font-weight: 400;
}

/* ===== BLOG POST - PREMIUM ===== */
.blog-post-header {
    margin-bottom: 3rem;
}

.blog-post-meta {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.blog-post-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: #6b7280;
}

.blog-post-meta-item i {
    color: #e4032c;
    font-size: 1.125rem;
}

.blog-post-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.blog-post-content {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #374151;
}

.blog-post-content h2,
.blog-post-content h3,
.blog-post-content h4 {
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
}

.blog-post-content h2 {
    font-size: 2rem;
}

.blog-post-content h3 {
    font-size: 1.5rem;
}

.blog-post-content p {
    margin-bottom: 1.5rem;
}

.blog-post-content ul,
.blog-post-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.blog-post-content li {
    margin-bottom: 0.75rem;
}

.blog-post-content a {
    color: #e4032c;
    text-decoration: underline;
    transition: all 0.3s ease;
}

.blog-post-content a:hover {
    color: #c41230;
}

/* ===== CONTACT INFO CARDS - PREMIUM ===== */
.contact-info-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    border-color: rgba(228, 3, 44, 0.2);
    box-shadow: 0 12px 35px rgba(228, 3, 44, 0.15);
}

.contact-info-icon {
    width: 75px;
    height: 75px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #e4032c 0%, #c41230 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.contact-info-card:hover .contact-info-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(228, 3, 44, 0.4);
}

.contact-info-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.contact-info-content {
    flex: 1;
}

.contact-info-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.contact-info-text {
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.6;
}

.contact-info-text a {
    color: #e4032c;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info-text a:hover {
    color: #c41230;
    text-decoration: underline;
}

/* ===== FLOATING CONTACT BUTTONS - ENHANCED ===== */
.floating-contact-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.floating-btn {
    position: relative;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18), 0 4px 10px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    cursor: pointer;
    overflow: hidden;
}

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

.floating-btn:hover::before {
    width: 100%;
    height: 100%;
}

.floating-btn i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.floating-btn:hover i {
    transform: scale(1.15) rotate(5deg);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #1ebe57 50%, #128C7E 100%);
    animation: floatWhatsApp 3s ease-in-out infinite;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #1ebe57 0%, #128C7E 50%, #0a6b5e 100%);
    transform: scale(1.15) translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.45), 0 6px 15px rgba(37, 211, 102, 0.3);
}

.phone-btn {
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 50%, #2563A8 100%);
    animation: floatPhone 3s ease-in-out infinite 0.5s;
}

.phone-btn:hover {
    background: linear-gradient(135deg, #357ABD 0%, #2563A8 50%, #1a4d8a 100%);
    transform: scale(1.15) translateY(-3px) rotate(-5deg);
    box-shadow: 0 12px 35px rgba(74, 144, 226, 0.45), 0 6px 15px rgba(74, 144, 226, 0.3);
}

@keyframes floatWhatsApp {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes floatPhone {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
    }
    
    .feature-icon i {
        font-size: 2rem;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 0.9375rem;
    }
    
    .service-image {
        height: 200px;
    }
    
    .service-content {
        padding: 1.5rem;
    }
    
    .contact-info-card {
        flex-direction: column;
        text-align: center;
    }
    
    .floating-contact-buttons {
        bottom: 20px;
        right: 20px;
        gap: 14px;
    }
    
    .floating-btn {
        width: 56px;
        height: 56px;
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        margin-bottom: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem 1rem;
    }
    
    .section-title {
        margin-bottom: 0.75rem;
    }
    
    .cta-button {
        padding: 0.875rem 1.75rem;
    }
    
    .floating-btn {
        width: 52px;
        height: 52px;
        font-size: 24px;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .floating-contact-buttons,
    .cta-button,
    header,
    footer {
        display: none !important;
    }
}
