/* Base Footer Styles */
footer {
    background: linear-gradient(135deg, #2c3e50, #34495e); /* Dark gradient background for a luxury feel */
    color: white;
    padding: 40px 20px;
    font-family: 'Arial', sans-serif;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Subtle shadow for 3D effect */
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Footer Content Styling */
.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 1rem;
}

/* Footer Left Section */
.footer-left {
    flex: 1;
    min-width: 250px;
}

.footer-left h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #FFD700; /* Golden color for the heading */
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); /* Add subtle 3D effect */
}

.footer-left p {
    font-size: 1rem;
    color: #ddd; /* Light gray color for text */
    line-height: 1.6;
    font-weight: 300; /* Lighter font weight for text */
}

/* Footer Center Section */
.footer-center {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.footer-center h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #FFD700;
    text-transform: uppercase;
    font-weight: bold;
}

.footer-center ul {
    list-style: none;
    padding: 0;
}

.footer-center ul li {
    margin: 8px 0;
}

.footer-center ul li a {
    text-decoration: none;
    color: white;
    font-size: 1.1rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-center ul li a:hover {
    color: #1abc9c; /* Emerald green color on hover */
    transform: translateX(5px); /* Slight slide effect */
}

/* Footer Right Section */
.footer-right {
    flex: 1;
    min-width: 200px;
    text-align: right;
}

.footer-right h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #FFD700;
    text-transform: uppercase;
    font-weight: bold;
}

.social-icons {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.social-icons a {
    font-size: 2rem;
    color: white;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.2);
    color: #FFD700; /* Golden color on hover */
}

/* Footer Bottom Section */
.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 15px;
    font-size: 0.9rem;
    color: #ddd;
    font-weight: 300;
}

.footer-bottom .back-to-top {
    display: inline-block;
    margin-top: 10px;
    font-size: 1rem;
    text-decoration: none;
    color: #1abc9c;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-bottom .back-to-top:hover {
    color: white;
    transform: scale(1.1);
}

/* Credits Styling */
.footer-bottom .credits {
    margin-top: 10px;
    font-size: 0.85rem;
    color: #aaa;
    line-height: 1.5;
}

.footer-bottom .credits a {
    color: #FFD700; /* Gold color for links */
    text-decoration: none;
}

.footer-bottom .credits a:hover {
    color: #1abc9c; /* Emerald green on hover */
}






/* WhatsApp Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

/* WhatsApp Button Style */
.whatsapp-button {
    background-color: #25d366; /* WhatsApp Green */
    color: white;
    border-radius: 50px;
    padding: 15px 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-button img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

/* WhatsApp Text Style */
.whatsapp-button span {
    font-size: 1.2rem;
    font-weight: bold;
    transition: color 0.3s ease;
}



/* Hover Effects */
.whatsapp-button:hover {
    transform: scale(1.1); /* Slightly enlarge on hover */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.whatsapp-button:hover span {
    color: #fff; /* Change text color on hover */
}

/* Tooltip (optional: can add a small floating text with a delay) */
.whatsapp-button::after {
    content: "Click to chat with us!";
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #25d366;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    margin-bottom: 10px;
}

/* Show Tooltip on hover */
.whatsapp-button:hover::after {
    opacity: 1;
    visibility: visible;
}

/* Animation for Floating Effect */
.whatsapp-widget {
    animation: float 3s ease-in-out infinite;
}

/* Floating animation */
@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Reminder Popup */
.whatsapp-reminder {
    position: fixed;
    bottom: 120px;
    right: 20px;
    z-index: 9998;
    background-color: #ff9800;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    color: white;
    font-size: 1.1rem;
    display: none; /* Hidden by default */
    text-align: center;
    transition: opacity 0.3s ease;
}

/* Show when active */
.whatsapp-reminder.active {
    display: block;
    animation: fade-in 0.5s ease-in-out;
}

/* Cancel button styling */
.cancel-button {
    background-color: transparent;
    border: none;
    color: #FF5722; /* Red-Orange color for Cancel */
    font-size: 1rem;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.2s ease;
}

.cancel-button:hover {
    color: #E64A19;
    transform: scale(1.05);
}

/* Smooth fade-out effect */
@keyframes fade-out {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/* Apply fade-out animation when removing the reminder */
.whatsapp-reminder {
    animation: fade-out 0.5s ease-out forwards;
}


/* Footer Contact Us Section */
.footer-contact {
    background: linear-gradient(135deg, #ffd700, #ffbf00); /* Golden gradient background */
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    font-size: 1rem;
}

.footer-contact h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
}

.footer-contact p {
    margin: 5px 0;
}

.footer-contact a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #1abc9c;
}

.footer-contact strong {
    font-weight: bold;
}



/* Responsive Styles for Footer */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-left,
    .footer-center,
    .footer-right {
        min-width: 100%;
    }

    .social-icons {
        justify-content: center;
    }
    
      .whatsapp-button {
        padding: 12px 22px;
    }

    .whatsapp-button img {
        width: 25px;
        height: 25px;
    }

    .whatsapp-button span {
        font-size: 1rem;
    }
}

/* Extra Small Device Adjustments */
@media (max-width: 480px) {
    .footer-left h3, .footer-center h3, .footer-right h3 {
        font-size: 1.5rem; /* Smaller heading for smaller devices */
    }

    .footer-left p, .footer-center ul li a {
        font-size: 0.9rem; /* Smaller font size for mobile devices */
    }

    .footer-bottom {
        font-size: 0.8rem; /* Smaller font size for the footer text */
    }
}



