/* --- THEME VARIABLES --- */
:root {
    --primary: #009688; --primary-dark: #00796b;
    --secondary: #ff9800; --secondary-dark: #e65100;
    --dark-teal: #004d40; --dark-bg: #1e272e;
    --light-bg: #f4f7f6; --text-color: #333; --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
a { text-decoration: none; }
li { list-style: none; }

/* --- 1. TOP BAR --- */
.top-bar {
    background: var(--dark-bg); color: #ccc; font-size: 0.85rem; padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1); 
    height: 45px; display: flex; align-items: center;
    position: relative; z-index: 1002;
}
.container { width: 90%; max-width: 1200px; margin: 0 auto; padding: 0 15px; }
.top-flex { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.social-links a { color: #ccc; margin-right: 15px; transition: 0.3s; }
.social-links a:hover { color: var(--primary); }

.support-dropdown { position: relative; display: inline-block; }
.support-btn { background: none; border: none; color: #ccc; cursor: pointer; font-size: 0.85rem; }
.dropdown-content {
    display: none; position: absolute; right: 0; background-color: #fff;
    min-width: 160px; box-shadow: 0 8px 16px rgba(0,0,0,0.2); z-index: 2000; border-radius: 5px; top: 100%;
}
.dropdown-content a { color: #333; padding: 12px 16px; display: block; }
.dropdown-content a:hover { background-color: #f1f1f1; color: var(--primary); }
.support-dropdown:hover .dropdown-content { display: block; }

/* --- 2. NAVBAR --- */
.navbar {
    position: fixed; 
    top: 45px; 
    width: 100%; 
    z-index: 1000;
    padding: 15px 0; 
    transition: all 0.4s ease-in-out;
    background: transparent; 
}
.navbar.scrolled {
    background: var(--dark-teal) !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    padding: 10px 0;
    top: 0 !important;
}
.nav-flex { display: flex; justify-content: space-between; align-items: center; }
.logo { color: #ff7505; font-size: 1.8rem; font-weight: 700; text-transform: uppercase; }
.logo span { color: #289f9f; }

.nav-links { display: flex; gap: 30px; }
.nav-links li { position: relative; }
.nav-links a { color: white; font-weight: 500; display: flex; align-items: center; gap: 5px; }
.nav-dropdown { 
    display: none; position: absolute; top: 100%; left: 0; background: white; 
    min-width: 200px; border-radius: 5px; box-shadow: 0 10px 20px rgba(0,0,0,0.2); 
    padding: 10px 0; 
}
.nav-links li:hover .nav-dropdown { display: block; }
.nav-dropdown a { color: #333 !important; padding: 10px 20px; font-size: 0.9rem; }
.nav-dropdown a:hover { background: #f4f4f4; color: var(--primary) !important; padding-left: 25px; }

/* --- 3. FOOTER --- */
.footer { background-color: var(--dark-bg); color: #b2bec3; padding: 70px 0 20px; font-size: 0.9rem; margin-top: 50px; }
.footer-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-col h4 { color: white; font-size: 1.2rem; margin-bottom: 25px; position: relative; }
.footer-col h4::after { content: ''; position: absolute; left: 0; bottom: -10px; background-color: var(--secondary); height: 2px; width: 50px; }
.footer-logo { color: white; font-size: 2rem; font-weight: 700; margin-bottom: 15px; }
.footer-logo span { color: var(--secondary); }
.footer-socials a { display: inline-block; height: 40px; width: 40px; background-color: rgba(255,255,255,0.1); color: white; text-align: center; line-height: 40px; border-radius: 50%; margin-right: 10px; transition: 0.3s; }
.footer-socials a:hover { background-color: var(--primary); transform: translateY(-3px); }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { color: #b2bec3; transition: 0.3s; }
.footer-col ul li a:hover { color: var(--secondary); padding-left: 8px; }
.contact-info li { display: flex; align-items: flex-start; gap: 15px; }
.contact-info i { color: var(--primary); margin-top: 5px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; text-align: center; }