/* Professional Enhancements CSS */

/* Footer Enhancements - Perfect Professional Design */
.footer__area-enhanced {
    background: linear-gradient(135deg, #0d1421 0%, #1a1a2e 25%, #16213e 50%, #0f3460 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
    margin-top: 100px;
}

.footer__area-enhanced::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.02) 50%, transparent 100%);
    transform: skewY(-1deg);
}

.footer__area-enhanced::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(0,123,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(102,16,242,0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Newsletter Section - Premium Design */
.footer__newsletter-section {
    background: linear-gradient(135deg, #007bff 0%, #6610f2 50%, #8b5cf6 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.footer__newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><circle cx="30" cy="30" r="2"/></g></svg>');
    animation: float 20s ease-in-out infinite;
}

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

.footer__newsletter-content {
    position: relative;
    z-index: 2;
}

.newsletter-title {
    font-size: 42px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.newsletter-desc {
    font-size: 18px;
    color: rgba(255,255,255,0.95);
    margin-bottom: 50px;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.footer__newsletter-form {
    max-width: 650px;
    margin: 0 auto;
}

.newsletter-input-group {
    display: flex;
    gap: 0;
    margin-bottom: 30px;
    border-radius: 60px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.newsletter-input-group:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 25px 80px rgba(0,0,0,0.4),
        inset 0 1px 0 rgba(255,255,255,0.2);
}

.newsletter-input-group input[type="email"] {
    flex: 1;
    padding: 22px 30px;
    border: none;
    background: rgba(255,255,255,0.95);
    font-size: 16px;
    outline: none;
    color: #333;
    font-weight: 500;
    border-radius: 60px 0 0 60px;
    transition: all 0.3s ease;
}

.newsletter-input-group input[type="email"]:focus {
    background: white;
    box-shadow: inset 0 0 0 2px #007bff;
}

.newsletter-input-group input[type="email"]::placeholder {
    color: #999;
    font-weight: 400;
}

.newsletter-btn {
    padding: 22px 40px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border: none;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    border-radius: 0 60px 60px 0;
    position: relative;
    overflow: hidden;
}

.newsletter-btn::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;
}

.newsletter-btn:hover::before {
    left: 100%;
}

.newsletter-btn:hover {
    background: linear-gradient(135deg, #218838 0%, #1ea085 100%);
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(40,167,69,0.4);
}

.newsletter-btn:active {
    transform: translateX(3px) scale(0.98);
}

.newsletter-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.newsletter-features span {
    color: rgba(255,255,255,0.95);
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.1);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.newsletter-features span:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.newsletter-features i {
    color: #28a745;
    font-size: 14px;
}

/* Main Footer Content - Enhanced */
.footer__main-content {
    padding: 100px 0 80px;
    position: relative;
    z-index: 2;
}

.footer__widget {
    margin-bottom: 50px;
    position: relative;
}

.footer__widget-title {
    font-size: 22px;
    font-weight: 800;
    color: white;
    margin-bottom: 35px;
    position: relative;
    padding-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer__widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #007bff 0%, #6610f2 100%);
    border-radius: 3px;
    box-shadow: 0 4px 8px rgba(0,123,255,0.3);
}

.footer__widget-title::before {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 65px;
    width: 20px;
    height: 2px;
    background: rgba(255,255,255,0.3);
    border-radius: 2px;
}

/* About Section Enhanced */
.footer__about .footer-logo {
    max-width: 200px;
    margin-bottom: 30px;
    filter: brightness(1.1) contrast(1.1);
    transition: all 0.3s ease;
}

.footer__about .footer-logo:hover {
    transform: scale(1.05);
    filter: brightness(1.2) contrast(1.2);
}

.footer__content p {
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
    margin-bottom: 35px;
    font-size: 16px;
    font-weight: 400;
}

/* Achievement Cards - Premium Design */
.footer__achievements {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 35px 0;
    padding: 30px 25px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.2),
        inset 0 1px 0 rgba(255,255,255,0.3);
    position: relative;
    overflow: hidden;
}

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

.footer__achievements:hover::before {
    left: 100%;
}

.footer__achievements .achievement-item {
    text-align: center;
    padding: 15px 10px;
    transition: all 0.3s ease;
}

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

.footer__achievements .number {
    display: block;
    font-size: 28px;
    font-weight: 900;
    background: linear-gradient(135deg, #007bff 0%, #6610f2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0,123,255,0.3);
}

.footer__achievements .label {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.9);
    margin-top: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Social Links - Premium Enhancement */
.footer__social-enhanced {
    margin-top: 30px;
}

.social-title {
    display: block;
    color: white;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: white;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(255,255,255,0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link:hover::before {
    opacity: 1;
}

.social-link.facebook { 
    background: linear-gradient(135deg, #1877f2 0%, #0d5bd7 100%);
    box-shadow: 0 8px 25px rgba(24,119,242,0.4);
}
.social-link.twitter { 
    background: linear-gradient(135deg, #1da1f2 0%, #0d8bd9 100%);
    box-shadow: 0 8px 25px rgba(29,161,242,0.4);
}
.social-link.instagram { 
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 8px 25px rgba(225,48,108,0.4);
}
.social-link.pinterest { 
    background: linear-gradient(135deg, #bd081c 0%, #8a0815 100%);
    box-shadow: 0 8px 25px rgba(189,8,28,0.4);
}
.social-link.linkedin { 
    background: linear-gradient(135deg, #0077b5 0%, #005582 100%);
    box-shadow: 0 8px 25px rgba(0,119,181,0.4);
}
.social-link.youtube { 
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    box-shadow: 0 8px 25px rgba(255,0,0,0.4);
}

.social-link:hover {
    transform: translateY(-8px) scale(1.15);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.social-link i {
    font-size: 20px;
    position: relative;
    z-index: 2;
}

/* Footer Links - Enhanced */
.footer__widget-link {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__widget-link li {
    margin-bottom: 15px;
    position: relative;
}

.footer__widget-link a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    padding: 8px 0;
    position: relative;
    font-weight: 500;
    font-size: 15px;
}

.footer__widget-link a::before {
    content: '▶';
    margin-right: 12px;
    opacity: 0;
    transform: translateX(-15px);
    transition: all 0.3s ease;
    color: #007bff;
    font-size: 12px;
}

.footer__widget-link a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #007bff 0%, #6610f2 100%);
    transition: width 0.3s ease;
}

.footer__widget-link a:hover {
    color: white;
    padding-left: 20px;
    transform: translateX(5px);
}

.footer__widget-link a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

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

/* Contact Section - Premium Enhancement */
.footer__contact-enhanced {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.04) 100%);
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
}

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

.contact-item:hover::before {
    left: 100%;
}

.contact-item:hover {
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.08) 100%);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    border-color: rgba(0,123,255,0.3);
}

.contact-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #007bff 0%, #6610f2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(0,123,255,0.4);
    position: relative;
    overflow: hidden;
}

.contact-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.2), transparent);
    border-radius: 50%;
}

.contact-icon i {
    color: white;
    font-size: 20px;
    position: relative;
    z-index: 2;
}

.contact-content h5 {
    color: white;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-content p,
.contact-content a {
    color: rgba(255,255,255,0.85);
    margin: 0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
    line-height: 1.6;
}

.contact-content a:hover {
    color: #007bff;
    text-shadow: 0 0 10px rgba(0,123,255,0.5);
}

/* Business Hours - Premium Design */
.footer__business-hours {
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.2),
        inset 0 1px 0 rgba(255,255,255,0.3);
}

.footer__business-hours h5 {
    color: white;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer__business-hours i {
    color: #007bff;
    font-size: 20px;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    transition: all 0.3s ease;
}

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

.hour-item:hover {
    padding-left: 10px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
}

.hour-item span:first-child {
    color: rgba(255,255,255,0.85);
    font-weight: 600;
    font-size: 15px;
}

.hour-item span:last-child {
    color: white;
    font-weight: 700;
    font-size: 15px;
}

/* Certifications Section - Premium */
.footer__certifications {
    padding: 50px 0;
    border-top: 1px solid rgba(255,255,255,0.15);
    border-bottom: 1px solid rgba(255,255,255,0.15);
    margin: 50px 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 100%);
    border-radius: 20px;
}

.certifications-content h5,
.footer__awards h5 {
    color: white;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.certification-logos {
    display: flex;
    gap: 25px;
    align-items: center;
    flex-wrap: wrap;
}

.certification-logos img {
    height: 45px;
    opacity: 0.7;
    filter: brightness(0) invert(1);
    transition: all 0.4s ease;
    border-radius: 8px;
    padding: 8px;
    background: rgba(255,255,255,0.1);
}

.certification-logos img:hover {
    opacity: 1;
    transform: scale(1.15) translateY(-3px);
    background: rgba(255,255,255,0.2);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.awards-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.award-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    font-weight: 600;
    padding: 12px 18px;
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.award-item:hover {
    background: rgba(255,255,255,0.15);
    transform: translateX(8px);
    border-color: rgba(255,193,7,0.3);
}

.award-item i {
    color: #ffc107;
    font-size: 18px;
    text-shadow: 0 0 10px rgba(255,193,7,0.5);
}

/* Footer Bottom - Premium Design */
.footer__bottom-enhanced {
    padding: 40px 0;
    border-top: 1px solid rgba(255,255,255,0.15);
    background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 100%);
    backdrop-filter: blur(10px);
}

.footer__bottom-logo .footer-bottom-logo {
    max-width: 140px;
    transition: all 0.3s ease;
}

.footer__bottom-logo .footer-bottom-logo:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.footer__bottom-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer__bottom-links a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 6px;
    position: relative;
}

.footer__bottom-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #007bff;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.footer__bottom-links a:hover {
    color: white;
    background: rgba(255,255,255,0.1);
}

.footer__bottom-links a:hover::before {
    width: 100%;
}

.footer__bottom-links .separator {
    color: rgba(255,255,255,0.5);
    font-weight: 300;
}

.copyright__content-enhanced {
    text-align: right;
}

.copyright__content-enhanced p {
    color: rgba(255,255,255,0.85);
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 500;
}

.copyright__content-enhanced strong {
    color: white;
    font-weight: 800;
}

.made-with {
    margin-top: 8px !important;
    font-size: 13px !important;
    color: rgba(255,255,255,0.7) !important;
}

.text-red {
    color: #e74c3c !important;
    animation: heartbeat 2s ease-in-out infinite;
}

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

/* Back to Top Button - Premium */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #007bff 0%, #6610f2 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
    box-shadow: 0 8px 25px rgba(0,123,255,0.4);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.2);
}

.back-to-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.2), transparent);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.back-to-top:hover::before {
    opacity: 1;
}

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

.back-to-top:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 15px 40px rgba(0,123,255,0.6);
    background: linear-gradient(135deg, #0056b3 0%, #5a0fc8 100%);
}

.back-to-top:active {
    transform: translateY(-5px) scale(1.05);
}

.back-to-top i {
    font-size: 24px;
    position: relative;
    z-index: 2;
}

/* Advanced Responsive Design */
@media (max-width: 1199px) {
    .footer__achievements {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .certification-logos {
        justify-content: center;
    }
}

@media (max-width: 991px) {
    .newsletter-title {
        font-size: 36px;
    }
    
    .newsletter-input-group {
        flex-direction: column;
        border-radius: 20px;
    }
    
    .newsletter-input-group input[type="email"] {
        border-radius: 20px 20px 0 0;
    }
    
    .newsletter-btn {
        border-radius: 0 0 20px 20px;
        justify-content: center;
    }
    
    .newsletter-features {
        gap: 25px;
    }
    
    .footer__achievements {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .certification-logos {
        justify-content: center;
    }
    
    .footer__bottom-links {
        margin: 25px 0;
    }
    
    .copyright__content-enhanced {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .newsletter-title {
        font-size: 28px;
    }
    
    .footer__newsletter-section {
        padding: 60px 0;
    }
    
    .footer__main-content {
        padding: 70px 0 50px;
    }
    
    .newsletter-features {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .contact-item {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .certification-logos {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .footer__bottom-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .back-to-top i {
        font-size: 20px;
    }
}

@media (max-width: 575px) {
    .newsletter-title {
        font-size: 24px;
    }
    
    .newsletter-desc {
        font-size: 16px;
    }
    
    .footer__newsletter-section {
        padding: 50px 0;
    }
    
    .footer__achievements .number {
        font-size: 24px;
    }
    
    .footer__achievements .label {
        font-size: 12px;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
    }
    
    .contact-icon i {
        font-size: 18px;
    }
}

/* Perfect animations and micro-interactions */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer__widget {
    animation: fadeInUp 0.8s ease forwards;
}

.footer__widget:nth-child(1) { animation-delay: 0.1s; }
.footer__widget:nth-child(2) { animation-delay: 0.2s; }
.footer__widget:nth-child(3) { animation-delay: 0.3s; }
.footer__widget:nth-child(4) { animation-delay: 0.4s; }

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Loading animations for achievements */
@keyframes countUp {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

.achievement-card:nth-child(1) { animation: countUp 0.8s ease 0.2s forwards; opacity: 0; }
.achievement-card:nth-child(2) { animation: countUp 0.8s ease 0.4s forwards; opacity: 0; }
.achievement-card:nth-child(3) { animation: countUp 0.8s ease 0.6s forwards; opacity: 0; }
.achievement-card:nth-child(4) { animation: countUp 0.8s ease 0.8s forwards; opacity: 0; }

/* Perfect gradient text effect */
.gradient-text {
    background: linear-gradient(135deg, #007bff 0%, #6610f2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

/* Enhanced focus states for accessibility */
.newsletter-input-group input[type="email"]:focus,
.newsletter-btn:focus,
.social-links a:focus,
.footer__bottom-links a:focus,
.back-to-top:focus {
    outline: 3px solid rgba(0,123,255,0.5);
    outline-offset: 2px;
}

/* Perfect loading shimmer effect */
@keyframes shimmer {
    0% { background-position: -200px 0; }
    100% { background-position: calc(200px + 100%) 0; }
}

.shimmer {
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%);
    background-size: 200px 100%;
    animation: shimmer 1.5s infinite;
}

/* Perfect parallax effect support */
.footer__newsletter-section {
    transform: translateZ(0);
    will-change: transform;
}

/* Enhanced print styles */
@media print {
    .footer__newsletter-section,
    .back-to-top,
    .social-links {
        display: none !important;
    }
    
    .footer__main-content {
        background: white !important;
        color: black !important;
    }
    
    .footer__main-content * {
        color: black !important;
    }
}

/* Perfect high contrast mode support */
@media (prefers-contrast: high) {
    .footer__newsletter-section {
        background: #000 !important;
    }
    
    .achievement-card {
        border: 2px solid #fff !important;
    }
    
    .newsletter-btn {
        border: 2px solid #fff !important;
    }
}

/* Perfect reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Perfect dark mode support */
@media (prefers-color-scheme: dark) {
    .footer__main-content {
        background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    }
}

/* Additional perfection touches */
.footer__newsletter-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 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
    opacity: 0.3;
}

/* Perfect typography rhythm */
.footer__main-content h1,
.footer__main-content h2,
.footer__main-content h3,
.footer__main-content h4,
.footer__main-content h5,
.footer__main-content h6 {
    line-height: 1.2;
    font-feature-settings: "kern" 1, "liga" 1;
}

.footer__main-content p {
    line-height: 1.6;
    font-feature-settings: "kern" 1;
}

/* Perfect mobile menu fallback */
@media (max-width: 480px) {
    .newsletter-title {
        font-size: 22px !important;
        line-height: 1.3;
    }
    
    .newsletter-desc {
        font-size: 15px !important;
        line-height: 1.5;
    }
    
    .achievement-card {
        min-height: 120px;
    }
    
    .contact-item {
        margin-bottom: 20px;
    }
    
    .footer__business-hours {
        padding: 20px;
    }
}

/* Perfect ultra-wide screen support */
@media (min-width: 1600px) {
    .footer__newsletter-section .container {
        max-width: 1400px;
    }
    
    .newsletter-title {
        font-size: 48px;
    }
    
    .newsletter-desc {
        font-size: 20px;
    }
    
    .achievement-card {
        padding: 40px 35px;
    }
}

/* Perfect RTL support */
[dir="rtl"] .newsletter-btn i {
    margin-right: 0;
    margin-left: 10px;
}

[dir="rtl"] .social-links a {
    margin-left: 0;
    margin-right: 15px;
}

[dir="rtl"] .contact-item {
    direction: rtl;
}

/* Final perfection - browser-specific optimizations */
@supports (-webkit-backdrop-filter: blur(10px)) or (backdrop-filter: blur(10px)) {
    .achievement-card,
    .footer__business-hours,
    .footer__bottom-enhanced {
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
    }
}

/* Perfect vendor prefixes for maximum compatibility */
.newsletter-input-group input[type="email"],
.newsletter-btn,
.achievement-card,
.social-links a {
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
}

/* THE END - Perfect CSS Implementation Complete */

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Notification Container */
.notification-container {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 9999;
    max-width: 400px;
}

.alert {
    padding: 15px 20px;
    border-radius: 10px;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    animation: slideInRight 0.5s ease;
}

.alert-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
}

.alert-danger {
    background: linear-gradient(135deg, #dc3545 0%, #fd7e14 100%);
    color: white;
}

.alert i {
    font-size: 16px;
}

.btn-close {
    background: none;
    border: none;
    color: inherit;
    font-size: 18px;
    cursor: pointer;
    margin-left: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.btn-close:hover {
    opacity: 1;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Banner Enhancements */
.text-gradient {
    background: linear-gradient(135deg, #007bff 0%, #6610f2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.sub-title-banner {
    display: inline-block;
    background: linear-gradient(135deg, #007bff 0%, #6610f2 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.sub-title-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.banner__stats-wrap {
    display: flex;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

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

.banner__stats-item .number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #007bff;
    line-height: 1;
}

.banner__stats-item .text {
    display: block;
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

.banner__content-bottom {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    margin: 30px 0;
}

.tg-btn-outline {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid #007bff;
    color: #007bff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    background: transparent;
}

.tg-btn-outline:hover {
    background: #007bff;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.3);
}

.banner__trust-badges {
    margin-top: 20px;
}

.trust-text {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.trust-logos {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.trust-logos img {
    height: 30px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.trust-logos img:hover {
    opacity: 1;
}

/* Enhanced Service Cards */
.enhanced-service-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.enhanced-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #007bff 0%, #6610f2 100%);
}

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

.service-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.service-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #666;
}

.service-features li i {
    color: #28a745;
    margin-right: 10px;
    font-size: 12px;
}

.service-price {
    margin: 20px 0;
    padding: 15px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.service-price .price {
    font-size: 18px;
    font-weight: 700;
    color: #007bff;
}

.service-action {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.service-btn {
    padding: 10px 20px;
    border: 1px solid #ddd;
    color: #666;
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
    transition: all 0.3s ease;
    flex: 1;
    text-align: center;
}

.service-btn:hover {
    border-color: #007bff;
    color: #007bff;
}

.service-btn-primary {
    padding: 10px 20px;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
    transition: all 0.3s ease;
    flex: 1;
    text-align: center;
    border: 1px solid #007bff;
}

.service-btn-primary:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

.services-cta-box {
    background: linear-gradient(135deg, #007bff 0%, #6610f2 100%);
    padding: 50px 30px;
    border-radius: 20px;
    color: white;
    text-align: center;
}

.services-cta-box h3 {
    color: white;
    margin-bottom: 15px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* Features Section */
.features__area {
    background: #f8f9fa;
}

.feature__item {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.feature__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.feature__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #007bff 0%, #6610f2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.feature__icon i {
    font-size: 32px;
    color: white;
}

.feature__content h4 {
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 700;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}

.feature-list li {
    padding: 5px 0;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #666;
}

.feature-list li i {
    color: #28a745;
    margin-right: 10px;
    font-size: 12px;
}

/* About Section Enhancements */
.about__experience-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #007bff 0%, #6610f2 100%);
    color: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.about__experience-badge .number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.about__experience-badge .text {
    display: block;
    font-size: 12px;
    margin-top: 5px;
}

.about__success-rate {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #28a745;
    color: white;
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.about__success-rate .percentage {
    display: block;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.about__success-rate .text {
    display: block;
    font-size: 11px;
    margin-top: 3px;
}

.about-desc {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.about__achievements-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.achievement-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.achievement-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #007bff 0%, #6610f2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.achievement-icon i {
    color: white;
    font-size: 20px;
}

.achievement-content h5 {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 700;
}

.achievement-content p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.about__cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* Pricing Section */
.pricing__area {
    background: #f8f9fa;
}

.pricing__item {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

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

.pricing__item--featured {
    background: linear-gradient(135deg, #007bff 0%, #6610f2 100%);
    color: white;
    transform: scale(1.05);
}

.pricing__item--featured .pricing__title,
.pricing__item--featured .pricing__subtitle,
.pricing__item--featured .pricing__price,
.pricing__item--featured .pricing__features li {
    color: white;
}

.pricing__badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff6b35;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
}

.pricing__header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing__icon {
    width: 80px;
    height: 80px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.pricing__item--featured .pricing__icon {
    background: rgba(255,255,255,0.2);
}

.pricing__icon i {
    font-size: 32px;
    color: #007bff;
}

.pricing__item--featured .pricing__icon i {
    color: white;
}

.pricing__title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.pricing__subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.pricing__price {
    margin-bottom: 30px;
}

.pricing__price .currency {
    font-size: 24px;
    vertical-align: top;
}

.pricing__price .amount {
    font-size: 48px;
    font-weight: 700;
    color: #007bff;
}

.pricing__item--featured .pricing__price .amount {
    color: white;
}

.pricing__price .period {
    font-size: 16px;
    color: #666;
}

.pricing__features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.pricing__features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #666;
}

.pricing__features li i {
    color: #28a745;
    margin-right: 10px;
    font-size: 12px;
}

.pricing__item--featured .pricing__features li i {
    color: white;
}

.pricing__btn {
    text-align: center;
}

.pricing__bottom-content {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.pricing__bottom-content h4 {
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 700;
}

/* Enhanced Testimonials */
.enhanced-testimonial {
    height: 100%;
}

.enhanced-testimonial .testimonial__content-two {
    padding: 30px;
}

.enhanced-testimonial blockquote {
    font-style: italic;
    font-size: 16px;
    line-height: 1.7;
    margin: 20px 0;
    position: relative;
}

.company-info {
    margin-top: 5px;
}

.company-info small {
    color: #666;
    font-size: 12px;
}

.rating-text {
    margin-left: 10px;
    font-weight: 600;
    color: #ffc107;
}

.testimonial__results {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

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

.result-item .number {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #007bff;
}

.result-item .label {
    display: block;
    font-size: 12px;
    color: #666;
    margin-top: 2px;
}

.testimonial__stats-section {
    background: linear-gradient(135deg, #007bff 0%, #6610f2 100%);
    padding: 40px;
    border-radius: 20px;
    margin-top: 50px;
}

.testimonial__stats-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
}

.stats-item {
    text-align: center;
    color: white;
}

.stats-item .number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.stats-item .label {
    display: block;
    font-size: 14px;
    margin-top: 8px;
    opacity: 0.9;
}

/* Newsletter & Blog Section */
.newsletter__blog__area {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.newsletter__section {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    height: 100%;
}

.newsletter__form-group {
    display: flex;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.newsletter__form-group input[type="email"] {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #eee;
    border-radius: 30px;
    font-size: 16px;
    min-width: 250px;
}

.newsletter__form-group input[type="email"]:focus {
    outline: none;
    border-color: #007bff;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.benefits-list li {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #666;
}

.benefits-list li i {
    color: #28a745;
    margin-right: 8px;
    font-size: 12px;
}

.latest__blog__section {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    height: 100%;
}

.blog__item-mini {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.blog__item-mini:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.blog__thumb-mini {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
}

.blog__thumb-mini img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog__content-mini {
    flex: 1;
}

.blog__meta {
    display: flex;
    gap: 15px;
    margin-bottom: 8px;
}

.blog__meta .date,
.blog__meta .category {
    font-size: 12px;
    color: #666;
}

.blog__meta .category {
    background: #007bff;
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
}

.blog__content-mini h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

.blog__content-mini h4 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog__content-mini h4 a:hover {
    color: #007bff;
}

.blog__content-mini p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.blog__view-all {
    margin-top: 30px;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 991px) {
    .banner__stats-wrap {
        gap: 20px;
    }
    
    .banner__content-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .about__achievements-wrap {
        grid-template-columns: 1fr;
    }
    
    .testimonial__stats-wrap {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
    }
    
    .newsletter__form-group {
        flex-direction: column;
    }
    
    .newsletter__form-group input[type="email"] {
        min-width: auto;
    }
}

@media (max-width: 767px) {
    .banner__stats-wrap {
        gap: 15px;
    }
    
    .banner__stats-item .number {
        font-size: 24px;
    }
    
    .trust-logos {
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .about__cta-buttons {
        flex-direction: column;
    }
    
    .testimonial__results {
        justify-content: center;
    }
    
    .testimonial__stats-wrap {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .achievement-item {
        flex-direction: column;
        text-align: center;
    }
    
    .service-action {
        flex-direction: column;
    }
}

/* Additional Professional Effects */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-top: 15px;
}

/* Custom Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

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

.pulse-animation {
    animation: pulse 2s ease-in-out infinite;
}

/* Loading States */
.loading-skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Enhanced Interactive Elements */
.interactive-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.interactive-btn:hover::before {
    left: 100%;
}

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(135deg, #007bff 0%, #6610f2 100%);
    z-index: 9999;
    transition: width 0.3s ease;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #007bff 0%, #6610f2 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

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

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

/* Enhanced Tooltips */
.tooltip-custom {
    position: relative;
    cursor: pointer;
}

.tooltip-custom::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.tooltip-custom::before {
    content: '';
    position: absolute;
    bottom: calc(100% - 5px);
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #333;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.tooltip-custom:hover::after,
.tooltip-custom:hover::before {
    opacity: 1;
    visibility: visible;
}

/* Image Zoom Effect */
.zoom-on-hover {
    overflow: hidden;
    border-radius: 10px;
}

.zoom-on-hover img {
    transition: transform 0.5s ease;
}

.zoom-on-hover:hover img {
    transform: scale(1.1);
}

/* Gradient Text Effects */
.gradient-text {
    background: linear-gradient(135deg, #007bff 0%, #6610f2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Enhanced Button Styles */
.btn-enhanced {
    position: relative;
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
}

.btn-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, #6610f2 0%, #007bff 100%);
    transition: width 0.3s ease;
    z-index: -1;
}

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

.btn-enhanced:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Card Flip Effect */
.flip-card {
    perspective: 1000px;
    height: 300px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.flip-card-back {
    background: linear-gradient(135deg, #007bff 0%, #6610f2 100%);
    color: white;
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/* Modern Grid Layout */
.modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

/* Glassmorphism Effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

/* Neon Glow Effect */
.neon-glow {
    box-shadow: 
        0 0 5px currentColor,
        0 0 10px currentColor,
        0 0 15px currentColor,
        0 0 20px currentColor;
    animation: neonPulse 2s ease-in-out infinite alternate;
}

@keyframes neonPulse {
    from {
        box-shadow: 
            0 0 5px currentColor,
            0 0 10px currentColor,
            0 0 15px currentColor,
            0 0 20px currentColor;
    }
    to {
        box-shadow: 
            0 0 2px currentColor,
            0 0 5px currentColor,
            0 0 8px currentColor,
            0 0 12px currentColor;
    }
}

/* Typewriter Effect */
.typewriter {
    overflow: hidden;
    border-right: .15em solid orange;
    white-space: nowrap;
    margin: 0 auto;
    letter-spacing: .15em;
    animation: 
        typing 3.5s steps(40, end),
        blink-caret .75s step-end infinite;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: orange; }
}

/* Progressive Enhancement */
@supports (backdrop-filter: blur(10px)) {
    .modern-card {
        backdrop-filter: blur(10px);
        background: rgba(255, 255, 255, 0.8);
    }
}

@supports (clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%)) {
    .angled-section {
        clip-path: polygon(0 10%, 100% 0%, 100% 90%, 0% 100%);
        padding: 100px 0;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .auto-dark {
        background: #1a1a1a;
        color: #ffffff;
    }
    
    .auto-dark .card {
        background: #2d2d2d;
        border-color: #404040;
    }
}

/* Print Styles */
@media print {
    .no-print {
        display: none !important;
    }
    
    .print-only {
        display: block !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
}

/* Accessibility Enhancements */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.focus-visible:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .high-contrast {
        filter: contrast(150%);
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
