/* --- 1. GLOBAL STYLES & VARIABLES --- */
:root {
    --navy: #1a2a3a; 
    --accent: #e67e22; 
    --light: #f8f9fa; 
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
}

* { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
}

body { 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
    color: var(--navy); 
    line-height: 1.6; 
    background-color: var(--white);
    overflow-x: hidden; /* Prevents unwanted side-scrolling during animations */
}

.container { 
    max-width: 1100px; 
    margin: 0 auto; 
    padding: 0 20px; 
}

.section-padding { 
    padding: 80px 0; 
}

/* --- 2. THE GLASSMISM HEADER (Sticky & Blurred) --- */
header { 
    background: rgba(255,255,255,0.9); 
    backdrop-filter: blur(10px); 
    position: sticky; 
    top: 0; 
    z-index: 1000; 
    border-bottom: 1px solid #eee; 
    padding: 15px 0; 
}

.nav-flex { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.logo-img { 
    height: 45px; 
    transition: 0.3s; 
}

.nav-links { 
    display: flex; 
    gap: 25px; 
    list-style: none; 
}

.nav-links a { 
    text-decoration: none; 
    color: var(--navy); 
    font-weight: 600; 
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--accent);
}

.active-link { 
    color: var(--accent)!important; 
    border-bottom: 2px solid var(--accent);
}

/* --- 3. FRONT SCREEN ENTRANCE ANIMATIONS (Hero) --- */
.hero { 
    background: linear-gradient(135deg, var(--navy), #2c3e50); 
    color: white; 
    padding: 120px 0; 
    text-align: center; 
}

.hero-small { 
    background: var(--navy); 
    color: white; 
    padding: 60px 0; 
    text-align: center; 
}

/* These classes power the "slide up" effect on load */
.anim-title { animation: fadeInUp 1s ease-out forwards; opacity: 0; }
.anim-subtitle { animation: fadeInUp 1s ease-out 0.3s forwards; opacity: 0; }
.anim-button { animation: fadeInUp 1s ease-out 0.6s forwards; opacity: 0; }

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

/* --- 4. BUTTONS & CARDS --- */
.cta-button { 
    background: var(--accent); 
    color: white; 
    padding: 14px 35px; 
    border-radius: 50px; 
    text-decoration: none; 
    font-weight: bold; 
    display: inline-block; 
    border: none; 
    transition: 0.3s ease;
    cursor: pointer;
}

.cta-button:hover {
    transform: scale(1.05);
    background: #d35400;
}

.card { 
    padding: 30px; 
    background: var(--light); 
    border-radius: 15px; 
    text-align: center; 
    transition: 0.4s ease;
}

/* Hover "gadget" for service cards */
.card:hover { 
    transform: translateY(-10px); 
    background: white;
    box-shadow: var(--shadow); 
}

/* --- 5. SPECIAL CONTENT BLOCKS --- */
.expression-card { 
    background: white; 
    padding: 40px; 
    border-radius: 20px; 
    border: 2px dashed var(--accent); 
    text-align: center; 
    box-shadow: var(--shadow); 
}

.badge {
    background: var(--accent);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8em;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: inline-block;
}

.tax-box { 
    background: #fff8e1; 
    padding: 25px; 
    border-left: 5px solid var(--accent); 
    border-radius: 10px; 
    margin: 20px 0; 
}

.modern-img { 
    width: 100%; 
    border-radius: 15px; 
    box-shadow: var(--shadow); 
}

/* --- 6. LAYOUT GRIDS --- */
.grid-2 { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 50px; 
    align-items: center; 
}

.grid-3 { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 30px; 
}

/* --- 7. SCROLL REVEAL GADGET (Powers the JS animations) --- */
.reveal { 
    opacity: 0; 
    transform: translateY(30px); 
    transition: all 0.8s ease-out; 
}

.reveal.active { 
    opacity: 1; 
    transform: translateY(0); 
}

/* --- 8. COOKIE BANNER --- */
.cookie-container { 
    position: fixed; 
    bottom: 20px; 
    left: 20px; 
    right: 20px; 
    background: var(--navy); 
    color: white; 
    padding: 20px; 
    border-radius: 12px; 
    display: none; 
    justify-content: space-between; 
    align-items: center; 
    z-index: 9999; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* --- 9. RESPONSIVE DESIGN --- */
@media (max-width: 800px) { 
    .grid-2 { grid-template-columns: 1fr; text-align: center; } 
    .nav-links {
