/* Modern Shared Footer Styles */
.modern-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
    color: #ffffff;
    padding: 60px 0 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 40px;
    align-items: start;
}

/* Brand Section */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-logo img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
}

.brand-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: #FFD700;
}

.brand-text p {
    font-size: 0.9rem;
    color: #f8f9fa;
    opacity: 0.9;
    margin: 5px 0 0;
}

.brand-description {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #FFD700;
    transform: translateY(-2px);
}

.social-links img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

/* Links Section */
.footer-links h4,
.footer-contact h4,
.footer-actions h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #FFD700;
    position: relative;
}

.footer-links h4::after,
.footer-contact h4::after,
.footer-actions h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: #FFD700;
    border-radius: 2px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.footer-links a:hover {
    color: #FFD700;
    opacity: 1;
    padding-left: 5px;
}

/* Contact Section */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-item img {
    width: 20px;
    height: 20px;
    margin-top: 3px;
    opacity: 0.8;
}

.contact-item strong {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 4px;
    color: #FFD700;
}

.contact-item p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

.contact-item a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #FFD700;
}

/* Make address text have same styling as email link in normal state */
.contact-item .address-text {
    color: #f8f9fa;
    opacity: 0.9;
}

/* Actions Section */
.footer-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.call-btn {
    background: #27ae60;
    color: white;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
}

.book-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.action-btn img {
    width: 18px;
    height: 18px;
}

.trust-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
}

.trust-item img {
    width: 20px;
    height: 20px;
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.footer-bottom p {
    margin: 0 0 10px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-bottom a {
    color: #FFD700;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-bottom a:hover {
    opacity: 0.8;
}

.seo-keywords {
    font-size: 0.8rem !important;
    opacity: 0.6 !important;
    line-height: 1.4;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 30px;
    }

    .footer-actions {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .modern-footer {
        padding: 40px 0 0;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .brand-logo {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-links h4::after,
    .footer-contact h4::after,
    .footer-actions h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-item {
        justify-content: center;
    }

    .action-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .action-btn {
        flex: 1;
        min-width: 140px;
        max-width: 200px;
    }

    .trust-badges {
        justify-content: center;
    }

    .footer-bottom {
        margin-top: 30px;
        padding: 20px 0;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 0 15px;
    }

    .action-buttons {
        flex-direction: column;
    }

    .action-btn {
        max-width: 100%;
    }

    .trust-badges {
        flex-direction: column;
        align-items: center;
    }

    .trust-item {
        width: 100%;
        justify-content: center;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modern-footer {
    animation: fadeInUp 0.6s ease-out;
}

/* Print Styles */
@media print {
    .modern-footer {
        display: none;
    }
}