/* Non-Critical Styles Extracted from footer.php and header.php */

/* Footer Styles */
.footer-ref {
    background: #1a365d;
    color: #fff;
    padding: 3rem 0 1rem 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    text-align: left;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 0 20px;
    text-align: left;
}

.footer-col {
    flex: 1 1 250px;
    min-width: 220px;
    margin-bottom: 2rem;
    text-align: left;
}

.footer-col h3,
.footer-col h2,
.footer-col ul,
.footer-col ul li,
.footer-col.links ul li a,
.footer-btn,
.footer-social {
    text-align: left !important;
}

.footer-social {
    justify-content: flex-start;
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-col h3 {
    color: #bdbdbd;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer-col.address h2 {
    color: #4ee2c7;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.footer-col ul li {
    margin-bottom: 0.7rem;
    color: #e0e0e0;
    font-size: 1.05rem;
}

.footer-col.links ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col.links ul li a:hover {
    color: #4ee2c7;
}

.footer-social a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-social a:hover {
    color: #4ee2c7;
}

.footer-btn {
    display: inline-block;
    background: #4ecf7a;
    color: #fff;
    padding: 0.7rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.2rem;
    margin-top: 0.5rem;
    transition: background 0.2s;
}

.footer-btn:hover {
    background: #43b96a;
}

.footer-copyright {
    text-align: center;
    color: #bdbdbd;
    font-size: 1rem;
    margin-top: 1rem;
    letter-spacing: 1px;
}

@media (max-width: 900px) {
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        text-align: left;
    }

    .footer-col {
        margin-bottom: 2rem;
        text-align: left;
    }
}

/* Scroll Navigation Buttons */
.scroll-nav {
    position: fixed;
    right: 25px;
    bottom: 180px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.scroll-btn {
    width: 50px;
    height: 50px;
    background: rgba(34, 199, 169, 0.3);
    backdrop-filter: blur(8px);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-btn:hover {
    transform: translateY(-2px);
    background: rgba(34, 199, 169, 0.5);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.scroll-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .scroll-nav {
        right: 17px;
        bottom: 150px;
    }

    .scroll-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

/* WhatsApp Floating Button */
.wa-float {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.wa-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
    color: #fff;
    box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .wa-float {
        bottom: 85px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1a202c;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 3.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}