/* ===================================
   Footer Section Styles
   =================================== */

.montor-footer-section {
    position: relative;
}
/* Footer Main */
.footer-main {
    padding: 80px 0 40px;
background: linear-gradient(rgba(255, 255, 255, 0) 0%, rgba(1, 158, 178, 0.1) 100%);
    box-shadow: rgba(219, 205, 179, 0.2) 0px 4px 49px 0px;
}
/* Container */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Footer Grid */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    gap: 60px;
}

/* Footer Column */
.footer-column {
    display: flex;
    flex-direction: column;
}

/* Logo & About */
.footer-logo h3 {
    font-family: 'Pacifico', cursive;
    font-size: 42px;
    color: #17a2b8;
    margin-bottom: 20px;
    font-weight: 400;
}

.footer-description {
    font-size: 15px;
    line-height: 1.8;
    color: #9ca3af;
    margin: 0;
}

/* Footer Title */
.footer-title {
    font-size: 16px;
    font-weight: 700;
    color: #17a2b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
}

/* Contact List */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 15px;
    color: #9ca3af;
}

.contact-item i {
    color: #17a2b8;
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

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

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

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 35px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #d1f4f8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #17a2b8;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #17a2b8;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Newsletter */
.newsletter-title {
    margin-top: 10px;
}

.newsletter-form {
    width: 100%;
}

.newsletter-input-wrapper {
    position: relative;
    display: flex;
    background: #d1f4f8;
    border-radius: 8px;
    overflow: hidden;
}

.newsletter-input-wrapper input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    background: transparent;
    font-size: 14px;
    color: #374151;
    font-family: 'Inter', sans-serif;
}

.newsletter-input-wrapper input::placeholder {
    color: #9ca3af;
}

.newsletter-input-wrapper input:focus {
    outline: none;
}

.newsletter-submit {
    width: 60px;
    background: #17a2b8;
    border: none;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-submit:hover {
    background: #138496;
}

.newsletter-message {
    margin-top: 10px;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
}

.newsletter-message.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.newsletter-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* Copyright Bar */
.footer-copyright {
    background: #d1f4f8;
    padding: 25px 0;
    margin-top: 40px;
}

.copyright-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright-text,
.made-by {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.made-by a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s ease;
}

.made-by a:hover {
    color: #17a2b8;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #17a2b8;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(23, 162, 184, 0.3);
}

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

.scroll-to-top:hover {
    background: #138496;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(23, 162, 184, 0.4);
}

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

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

@media (max-width: 768px) {
    .footer-main {
        padding: 60px 0 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-about {
        grid-column: auto;
    }

    .footer-logo h3 {
        font-size: 36px;
    }

    .copyright-content {
        flex-direction: column;
        text-align: center;
    }

    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .footer-main {
        padding: 40px 0 20px;
    }

    .footer-logo h3 {
        font-size: 32px;
    }

    .footer-description {
        font-size: 14px;
    }

    .footer-title {
        font-size: 14px;
    }

    .contact-item {
        font-size: 14px;
    }

    .social-icons {
        gap: 12px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .newsletter-input-wrapper input {
        padding: 12px 15px;
        font-size: 13px;
    }

    .newsletter-submit {
        width: 50px;
        font-size: 16px;
    }
}

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

.footer-column {
    animation: fadeInUp 0.6s ease forwards;
}

.footer-column:nth-child(1) { animation-delay: 0.1s; }
.footer-column:nth-child(2) { animation-delay: 0.2s; }
.footer-column:nth-child(3) { animation-delay: 0.3s; }

