/* ========== FOOTER STYLES ========== */
.footer {
    background: linear-gradient(135deg, #090909 0%, #090c09 100%);
    color: #fff;
    padding: 60px 0 20px;
   
    position: relative;
    overflow: hidden;
}

/* Decorative elements */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #c34f07, #E9742B, #c34f07);
    background-size: 200% 100%;
    animation: gradientMove 3s linear infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.footer::after {
    content: '🏜️';
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 60px;
    opacity: 0.1;
    transform: rotate(-15deg);
    animation: fly 10s linear infinite;
}

@keyframes fly {
    0% { transform: translateX(0) rotate(-15deg); }
    50% { transform: translateX(-20px) rotate(-10deg); }
    100% { transform: translateX(0) rotate(-15deg); }
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

/* Footer Columns */
.footer-col {
    display: flex;
    flex-direction: column;
}

/* Logo Styles */
.footer-logo {
    margin-bottom: 20px;
}

.footer-logo a {
    font-family: 'Dancing Script', cursive;
    font-size: 32px;
    font-weight: 700;
    text-decoration: none;
    background: linear-gradient(135deg, #fff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.footer-logo a span {
    background: linear-gradient(135deg, #c34f07, #E9742B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-logo a:hover {
    transform: scale(1.05);
}

/* Description */
.footer-description {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: #b0b0b0;
    margin-bottom: 25px;
    max-width: 300px;
}

/* Contact Items */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #e0e0e0;
    transition: all 0.3s ease;
}

.contact-item i {
    width: 32px;
    height: 32px;
    background: rgba(195, 79, 7, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c34f07;
    font-size: 16px;
    transition: all 0.3s ease;
}

.contact-item:hover i {
    background: #c34f07;
    color: white;
    transform: translateY(-3px);
}

.contact-item:hover span {
    color: white;
}

/* Footer Titles */
.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    color: white;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #c34f07, #E9742B);
    border-radius: 3px;
}

.newsletter-title {
    margin-top: 25px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: #b0b0b0;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links li a i {
    font-size: 12px;
    color: #c34f07;
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-links li a:hover i {
    transform: translateX(3px);
    color: #E9742B;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.social-icon:hover::before {
    transform: translateY(0);
}

.social-icon:hover {
    transform: translateY(-5px) rotate(360deg);
}

.whatsapp { background: #25D366; }
.facebook { background: #1877F2; }
.instagram { background: linear-gradient(45deg, #f09433, #d62976, #962fbf); }
.twitter { background: #1DA1F2; }
.youtube { background: #FF0000; }

/* Newsletter Box */
.newsletter-box {
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.newsletter-box:hover {
    border-color: #c34f07;
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 18px;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    outline: none;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c34f07, #E9742B);
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-btn:hover {
    transform: scale(1.1);
    background: linear-gradient(135deg, #E9742B, #c34f07);
    box-shadow: 0 5px 15px rgba(195, 79, 7, 0.4);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: #b0b0b0;
}

.payment-methods {
    display: flex;
    gap: 15px;
}

.payment-methods i {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.payment-methods i:hover {
    color: #E9742B;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 30px;
    }
    
    .footer-col:last-child {
        grid-column: span 3;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 50px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-col:first-child {
        grid-column: span 2;
    }
    
    .footer-description {
        max-width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .payment-methods {
        justify-content: center;
    }
    
    .footer::after {
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-col:first-child,
    .footer-col:last-child {
        grid-column: span 1;
    }
    
    .footer-logo a {
        font-size: 28px;
    }
    
    .footer-title {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .contact-item {
        font-size: 13px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .newsletter-box {
        flex-direction: column;
        background: transparent;
        padding: 0;
        gap: 10px;
    }
    
    .newsletter-input {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50px;
        padding: 12px 18px;
        width: 100%;
    }
    
    .newsletter-btn {
        width: 100%;
        border-radius: 50px;
        padding: 12px;
    }
    
    .newsletter-btn i {
        margin-right: 8px;
    }
    
    .footer-bottom {
        margin-top: 20px;
    }
    
    .copyright {
        font-size: 12px;
        line-height: 1.6;
    }
}

/* Small Mobile */
@media (max-width: 360px) {
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-logo a {
        font-size: 24px;
    }
    
    .contact-item {
        font-size: 12px;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .payment-methods i {
        font-size: 20px;
    }
}