/* ==================== ADVANCED FEATURES ==================== */

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a, #2d1810);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s, visibility 0.5s;
}

.loading-screen.hide {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 80px;
    height: 80px;
    border: 5px solid rgba(201, 162, 39, 0.2);
    border-top: 5px solid #c9a227;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loader-text {
    position: absolute;
    margin-top: 120px;
    color: #c9a227;
    font-weight: 700;
    letter-spacing: 2px;
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #c9a227, #d4af37);
    border: none;
    border-radius: 50%;
    color: #1a1a1a;
    font-size: 1.3rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 1000;
    box-shadow: 0 5px 25px rgba(201, 162, 39, 0.4);
}

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

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(201, 162, 39, 0.6);
}

/* Animated Counter */
.counter {
    font-size: 3rem;
    font-weight: 900;
    color: #c9a227;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1810 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 30%, rgba(201, 162, 39, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
}

.testimonial-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    position: relative;
}

.testimonial-quote {
    font-size: 4rem;
    color: #c9a227;
    opacity: 0.3;
    position: absolute;
    top: 20px;
    left: 30px;
}

.testimonial-text {
    font-size: 1.2rem;
    color: #ddd;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid #c9a227;
    object-fit: cover;
}

.testimonial-info h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.testimonial-info p {
    color: #999;
    font-size: 0.9rem;
}

.testimonial-stars {
    color: #ffc107;
    margin-top: 10px;
}

/* Partners/Clients Marquee */
.partners {
    padding: 80px 0;
    background: #f8f8f8;
    overflow: hidden;
}

.marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 50px;
}

.marquee-content {
    flex-shrink: 0;
    display: flex;
    gap: 50px;
    min-width: 100%;
    animation: scroll 30s linear infinite;
}

@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 100px;
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    filter: grayscale(100%);
}

.partner-logo:hover {
    filter: grayscale(0%);
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(201, 162, 39, 0.2);
}

/* CTA Banner */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, #c9a227, #d4af37);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 3rem;
    color: #1a1a1a;
    font-weight: 900;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.3rem;
    color: rgba(26, 26, 26, 0.8);
    margin-bottom: 40px;
}

.cta-content .btn {
    background: #1a1a1a;
    color: #c9a227;
    padding: 18px 50px;
    font-size: 1.1rem;
}

.cta-content .btn:hover {
    background: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Process/Steps Section */
.process-section {
    padding: 100px 0;
    background: #fff;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #c9a227, #d4af37);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    color: #1a1a1a;
    margin: 0 auto 25px;
    position: relative;
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.3);
}

.process-step::after {
    content: "";
    position: absolute;
    top: 40px;
    right: -20px;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #c9a227, transparent);
}

.process-step:last-child::after {
    display: none;
}

.process-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.process-desc {
    color: #666;
    line-height: 1.6;
}

/* Floating Contact Button */
.floating-contact {
    position: fixed;
    bottom: 100px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); box-shadow: 0 8px 35px rgba(37, 211, 102, 0.6); }
}

.floating-contact:hover {
    transform: scale(1.15);
}

/* Parallax Divider */
.parallax-divider {
    height: 400px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-divider::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 26, 0.7);
}

.parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.parallax-content h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.parallax-content p {
    font-size: 1.3rem;
    color: #ddd;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cta-content h2 { font-size: 2rem; }
    .process-step::after { display: none; }
    .floating-contact, .scroll-top { bottom: 20px; width: 50px; height: 50px; }
}

/* Enhanced Floating WhatsApp Button */
.floating-contact::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.3);
    animation: whatsapp-ring 2s ease-in-out infinite;
}

@keyframes whatsapp-ring {
    0% {
        width: 100%;
        height: 100%;
        opacity: 1;
    }
    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}

.floating-contact i {
    position: relative;
    z-index: 2;
}

/* Enhanced Social Icons */
.sidebar-social a,
.footer-links a {
    position: relative;
    overflow: hidden;
}

.sidebar-social a::before,
.footer-links a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.sidebar-social a:hover::before,
.footer-links a:hover::before {
    width: 200%;
    height: 200%;
}

/* Service Icons Enhancement */
.service-icon {
    position: relative;
    overflow: hidden;
}

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

@keyframes icon-shine {
    0%, 100% { transform: translateX(-100%) rotate(45deg); }
    50% { transform: translateX(100%) rotate(45deg); }
}

/* Contact Icons Pulse */
.contact-item i {
    animation: icon-pulse 2s ease-in-out infinite;
}

@keyframes icon-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); filter: drop-shadow(0 0 15px #c9a227); }
}

/* Stat Icons Enhancement */
.stat-icon {
    display: block;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #c9a227;
    filter: drop-shadow(0 0 10px rgba(201, 162, 39, 0.5));
    animation: float-icon 3s ease-in-out infinite;
}

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

/* Footer Social Icons Enhancement */
.footer-social a:hover {
    transform: translateY(-8px) scale(1.15);
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.5);
    border-color: #d4af37;
}

.footer-social a:last-child:hover {
    background: linear-gradient(135deg, #25d366, #128c7e) !important;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5) !important;
    border-color: #25d366 !important;
    color: #fff !important;
}

.footer-links a:hover i {
    transform: scale(1.2);
    margin-left: 12px;
}

/* Animated Background for Footer Social */
.footer-social {
    position: relative;
    padding: 20px;
}

.footer-social::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(201, 162, 39, 0.5), 
        transparent);
}

/* Add sparkle effect to icons on hover */
@keyframes sparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1) rotate(180deg);
    }
}

.footer-social a::after,
.sidebar-social a::after {
    content: '✨';
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 12px;
    opacity: 0;
    transition: all 0.3s;
}

.footer-social a:hover::after,
.sidebar-social a:hover::after {
    animation: sparkle 1s ease-in-out infinite;
}
/* Decorative Section Icons */
.section-header::before {
    content: '✦';
    display: block;
    font-size: 2rem;
    color: #c9a227;
    margin-bottom: 15px;
    animation: icon-rotate 4s linear infinite;
}

@keyframes icon-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Add icons to section tags */
.section-tag::before {
    content: '◆';
    margin-left: 8px;
    color: #d4af37;
}

/* Enhanced Stats with better icons */
.stat {
    position: relative;
}

.stat::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 20px;
    height: 20px;
    background: #c9a227;
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.5); opacity: 0.6; }
}

/* Add decorative corners to service cards */
.service-card::before,
.service-card::after {
    content: '✦';
    position: absolute;
    font-size: 1rem;
    color: #c9a227;
    opacity: 0;
    transition: all 0.3s;
}

.service-card::before {
    top: 10px;
    right: 10px;
}

.service-card::after {
    bottom: 10px;
    left: 10px;
}

.service-card:hover::before,
.service-card:hover::after {
    opacity: 0.6;
    animation: twinkle 1s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Add visual indicators to links */
.nav-links a::before {
    content: '▸';
    margin-left: 5px;
    opacity: 0;
    transition: all 0.3s;
}

.nav-links a:hover::before {
    opacity: 1;
    margin-left: 10px;
}
/* Large Section Icons Animation */
.section-header > div:first-child i {
    display: inline-block;
    animation: bounce-icon 2s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(201, 162, 39, 0.6));
}

@keyframes bounce-icon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Service Card Icons Glow */
.service-icon i {
    animation: icon-glow 3s ease-in-out infinite;
}

@keyframes icon-glow {
    0%, 100% { 
        filter: drop-shadow(0 0 5px #1a1a1a);
        transform: scale(1);
    }
    50% { 
        filter: drop-shadow(0 0 15px #1a1a1a);
        transform: scale(1.1);
    }
}

/* WhatsApp Button Enhanced */
.floating-contact {
    animation: whatsapp-bounce 3s ease-in-out infinite;
}

@keyframes whatsapp-bounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.05); }
}

/* Footer Icons Shine Effect */
.footer-social a {
    position: relative;
    overflow: hidden;
}

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

@keyframes shine-sweep {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* Sidebar Icons Pulse */
.sidebar-link i {
    animation: icon-pulse-sidebar 2s ease-in-out infinite;
}

@keyframes icon-pulse-sidebar {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; transform: scale(1.1); }
}

/* Contact Info Icons Rotation */
.contact-item i {
    display: inline-block;
    transition: all 0.3s;
}

.contact-item:hover i {
    transform: rotate(360deg) scale(1.2);
}

/* Testimonial Quote Icon */
.testimonial-quote i {
    animation: quote-fade 3s ease-in-out infinite;
}

@keyframes quote-fade {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* Star Rating Sparkle */
.testimonial-rating i {
    display: inline-block;
    animation: star-twinkle 2s ease-in-out infinite;
}

.testimonial-rating i:nth-child(1) { animation-delay: 0s; }
.testimonial-rating i:nth-child(2) { animation-delay: 0.2s; }
.testimonial-rating i:nth-child(3) { animation-delay: 0.4s; }
.testimonial-rating i:nth-child(4) { animation-delay: 0.6s; }
.testimonial-rating i:nth-child(5) { animation-delay: 0.8s; }

@keyframes star-twinkle {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

/* CTA Icon Rocket Launch */
.cta-content > div:first-child i {
    animation: rocket-launch 3s ease-in-out infinite;
}

@keyframes rocket-launch {
    0%, 100% { transform: translateY(0) rotate(-45deg); }
    50% { transform: translateY(-20px) rotate(-35deg); }
}

/* Add hover glow to all Font Awesome icons */
i[class*="fa-"], i[class*="fas"], i[class*="fab"] {
    transition: all 0.3s ease;
}

i[class*="fa-"]:hover, i[class*="fas"]:hover, i[class*="fab"]:hover {
    transform: scale(1.15);
    filter: drop-shadow(0 0 10px currentColor);
}

/* Stats Section Enhancement */
.stats-section .stat:hover {
    transform: translateY(-15px) scale(1.05);
    background: rgba(255, 255, 255, 0.1);
    border-color: #c9a227;
    box-shadow: 0 20px 60px rgba(201, 162, 39, 0.4);
}

.stats-section .stat i {
    animation: stat-icon-float 3s ease-in-out infinite;
}

.stats-section .stat:nth-child(1) i { animation-delay: 0s; }
.stats-section .stat:nth-child(2) i { animation-delay: 0.3s; }
.stats-section .stat:nth-child(3) i { animation-delay: 0.6s; }
.stats-section .stat:nth-child(4) i { animation-delay: 0.9s; }

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

.stats-section .stat-number {
    animation: count-pulse 2s ease-in-out infinite;
}

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

/* Add decorative elements to stats section */
.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent, 
        #c9a227, 
        #d4af37,
        #c9a227, 
        transparent);
}

.stats-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(201, 162, 39, 0.5), 
        transparent);
}

/* Enhanced Partners Section Styling */
@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.partners-marquee-new {
    overflow: hidden;
    width: 100%;
}

.partners-track-new:hover {
    animation-play-state: paused;
}

.logo-box {
    transition: all 0.4s;
}

.logo-box:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(201, 162, 39, 0.3) !important;
}

.logo-box i {
    transition: all 0.3s;
}

.logo-box:hover i {
    transform: scale(1.2) rotate(10deg);
    color: #d4af37 !important;
}

/* Partner Cards Hover Effects */
.partner-card {
    position: relative;
    overflow: hidden;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(201, 162, 39, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
    opacity: 0;
}

.partner-card:hover::before {
    opacity: 1;
    animation: shine-sweep 2s ease-in-out infinite;
}

.partner-card:hover {
    transform: translateY(-10px);
    border-color: #c9a227;
    box-shadow: 0 20px 50px rgba(201, 162, 39, 0.3) !important;
}

.partner-card:hover h3 {
    color: #c9a227;
}

.partner-card > div:first-child {
    transition: all 0.4s;
}

.partner-card:hover > div:first-child {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, #c9a227, #d4af37) !important;
}

.partner-card:hover > div:first-child i {
    color: #fff !important;
}

/* Trust Indicators Animation */
.partners-enhanced h2,
.partners-enhanced .section-desc {
    animation: fadeInUp 0.8s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .logo-box {
        min-width: 150px !important;
        height: 90px !important;
    }
    
    .logo-box i {
        font-size: 2rem !important;
    }
}

/* Testimonials Slider Enhanced */
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.testimonials-slider button:hover {
    background: rgba(201, 162, 39, 0.4) !important;
    transform: translateY(-50%) scale(1.1);
}

.testimonial-dot:hover {
    transform: scale(1.5) !important;
}

/* Contact Form Enhancements */
.contact-enhanced input:focus,
.contact-enhanced textarea:focus,
.contact-enhanced select:focus {
    outline: none;
    border-color: #c9a227 !important;
    box-shadow: 0 0 20px rgba(201, 162, 39, 0.3);
    background: rgba(255, 255, 255, 0.08) !important;
}

.contact-enhanced button[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201, 162, 39, 0.6);
}

.contact-enhanced input,
.contact-enhanced textarea,
.contact-enhanced select {
    font-family: 'Cairo', sans-serif;
}

.contact-enhanced input::placeholder,
.contact-enhanced textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Contact Info Cards Hover */
.contact-enhanced > div > div > div:not(:first-child) {
    cursor: pointer;
}

.contact-enhanced > div > div > div:not(:first-child):hover {
    transform: translateY(-5px);
    border-color: #c9a227;
    box-shadow: 0 15px 40px rgba(201, 162, 39, 0.3);
}

.contact-enhanced a[href^="mailto"]:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(201, 162, 39, 0.6);
}

/* Social Links Hover in Contact */
.contact-enhanced a[href="#"]:hover,
.contact-enhanced a[href^="https://wa.me"]:hover {
    transform: translateY(-8px) scale(1.15);
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.5);
}

/* Working Hours Animation */
.contact-enhanced > div > div:last-child > div:last-child > div > div:hover {
    background: rgba(201, 162, 39, 0.1) !important;
    transform: translateX(-5px);
}

/* Response Time Icons Animation */
.contact-enhanced i.fa-bolt,
.contact-enhanced i.fa-headset,
.contact-enhanced i.fa-shield-alt {
    animation: icon-pulse-slow 3s ease-in-out infinite;
}

@keyframes icon-pulse-slow {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Mobile Responsive for Contact */
@media (max-width: 968px) {
    .contact-enhanced > div > div:nth-child(2) {
        grid-template-columns: 1fr !important;
    }
    
    .contact-enhanced > div > div:nth-child(3) {
        grid-template-columns: 1fr !important;
    }
}

/* Why Choose Us Section Enhancements */
.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: #c9a227 !important;
    box-shadow: 0 25px 60px rgba(201, 162, 39, 0.3) !important;
}

.feature-card:hover > div:nth-child(2) {
    transform: scale(1.15) rotate(10deg);
}

.feature-card > div:nth-child(2) {
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Guarantee Banner Hover */
.why-us > div > div:last-child:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(201, 162, 39, 0.5);
}

/* FAQ Section Enhancements */
.faq-item {
    animation: fadeInUp 0.6s ease backwards;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }
.faq-item:nth-child(6) { animation-delay: 0.6s; }

.faq-item:hover {
    transform: translateX(-10px);
}

/* FAQ CTA Button Hover */
.faq-section a[href="#contact"]:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(201, 162, 39, 0.5);
}

/* Responsive for Why Us */
@media (max-width: 968px) {
    .why-us > div > div:first-child {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 640px) {
    .why-us > div > div:first-child {
        grid-template-columns: 1fr !important;
    }
}
