/* ===== ADDITIONAL IMPROVEMENTS ===== */

/* Enhanced Color Palette */
:root {
    --gold-gradient: linear-gradient(135deg, #27AE9C 0%, #1D8A7D 100%);
    --dark-gradient: linear-gradient(135deg, #1a1a1a 0%, #2c2416 100%);
    --light-gradient: linear-gradient(180deg, #ffffff 0%, #faf8f3 100%);
}

/* Improved Icon Styling */
.benefit-icon i,
.safety-icon i {
    font-size: 3rem !important;
    display: block;
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.badge-icon {
    transition: var(--transition);
}

.badge-item:hover .badge-icon {
    transform: scale(1.2);
    filter: brightness(1.2);
}

/* Enhanced Footer Styling */
.footer-column ul li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-column ul li i {
    color: var(--gold);
    font-size: 16px;
    width: 20px;
}

.whatsapp-link,
.map-link {
    color: var(--gold-light) !important;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.whatsapp-link:hover,
.map-link:hover {
    color: var(--gold) !important;
    transform: translateX(5px);
}

/* Improved Gallery with Better Responsiveness */
.gallery-item img {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.15) rotate(2deg);
    filter: brightness(1.1);
}

/* Enhanced Payment Info */
.payment-plan-info {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(184, 148, 44, 0.1));
    border: 2px solid var(--gold);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
    }

    50% {
        box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    }
}

.payment-icon i {
    font-size: 2.5rem !important;
    animation: cardFlip 4s ease-in-out infinite;
}

@keyframes cardFlip {

    0%,
    100% {
        transform: rotateY(0deg);
    }

    50% {
        transform: rotateY(180deg);
    }
}

/* Enhanced Video Placeholder */
.video-placeholder {
    background: linear-gradient(135deg, #2C2C2C 0%, #1a1a1a 50%, #2c2416 100%);
    position: relative;
    overflow: hidden;
}

.video-placeholder::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3), transparent);
    transform: translate(-50%, -50%);
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {

    0%,
    100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

/* Better Scroll Indicator */
.scroll-indicator {
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 30px;
    background: rgba(0, 0, 0, 0.3);
}

.scroll-arrow {
    animation: bounce 2s infinite, colorShift 3s ease-in-out infinite;
}

@keyframes colorShift {

    0%,
    100% {
        color: var(--gold-light);
    }

    50% {
        color: var(--gold);
    }
}

/* Improved Benefit Cards */
.benefit-card {
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

/* Enhanced Section Titles */
.section-title {
    background: linear-gradient(135deg, var(--charcoal), var(--desert-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Improved Safety Cards */
.safety-card {
    background: linear-gradient(135deg, #faf8f3, #ffffff);
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.safety-card:hover {
    border-color: var(--gold);
    background: linear-gradient(135deg, #ffffff, #faf8f3);
}

/* Featured Logos Enhancement */
.logo-item {
    transition: var(--transition);
    padding: 12px 24px;
    border-radius: 8px;
}

.logo-item:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: scale(1.05);
}

/* WhatsApp Float Button Enhancement */
.whatsapp-float {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    animation: floatPulse 3s ease-in-out infinite;
}

@keyframes floatPulse {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-5px) scale(1.05);
    }
}

.whatsapp-float:hover {
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7);
}

/* Responsive Typography Improvements */
@media (max-width: 768px) {

    .benefit-icon i,
    .safety-icon i {
        font-size: 2.5rem !important;
    }

    .payment-icon i {
        font-size: 2rem !important;
    }
}

/* RTL Support for Icons */
body[dir="rtl"] .whatsapp-link:hover,
body[dir="rtl"] .map-link:hover {
    transform: translateX(-5px);
}

body[dir="rtl"] .footer-column ul li {
    flex-direction: row-reverse;
}

/* Smooth Transitions for All Interactive Elements */
* {
    transition-property: transform, background, color, box-shadow, border-color;
    transition-duration: 0.3s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

button,
a,
.cta-primary {
    transition-property: all;
}
