:root {
    --color-black: #0a0a0a;
    --color-white: #ffffff;
    --color-grey: #1a1a1a;
    --font-primary: 'Poppins', sans-serif;
    --spacing-lg: 12vh;

}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-primary); background-color: var(--color-black); color: var(--color-white); line-height: 1.4; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { color: inherit; text-decoration: none !important; transition: opacity 0.3s ease; }
a:hover { opacity: 0.7; }

h1 { font-size: clamp(3rem, 6vw, 5rem); font-weight: 600; letter-spacing: -1px; margin-bottom: 1.5rem; line-height: 1.1; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 300; margin-bottom: 1.5rem; }
h2 strong { font-weight: 500; }
p { font-size: 1.1rem; font-weight: 300; }

.hero-sub { font-size: 1.1rem; max-width: 800px; margin-bottom: 2.5rem; }
.supporting-line { font-size: 1rem; margin-top: 2rem; opacity: 0.7; }
.section-label { text-transform: uppercase; letter-spacing: 1px; font-size: 0.9rem; margin-bottom: 2rem; opacity: 0.8; }
.text-left { text-align: left; } .text-center { text-align: center; } .text-dark { color: var(--color-black); }

.container { width: 90%; max-width: 1200px; margin: 0 auto; }
section { padding: var(--spacing-lg) 0; }
.full-height { min-height: 85vh; display: flex; align-items: center; padding-top: 15vh; }

.bg-black { background-color: var(--color-black); }
.bg-white { background-color: var(--color-white); }
.bg-grey { background-color: var(--color-grey); }

.bg-image { background-image: url('hero.webp'); background-size: cover; background-position: center; background-color: rgba(10, 10, 10, 0.6); background-blend-mode: overlay; }

.split-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .split-grid { grid-template-columns: 1fr 2fr; gap: 4rem; } }

hr { border: none; height: 2px; margin: 1.5rem 0; }
.rule-light { background-color: var(--color-white); width: 40px; }
.rule-dark { background-color: var(--color-black); width: 40px; }
.full-width { width: 100%; margin-bottom: 3rem; opacity: 0.2; }

.link-underline { }
.list-style h2 { padding-bottom: 1rem; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.bg-white .list-style h2 { border-bottom: 1px solid rgba(0, 0, 0, 0.1); }

.hero-actions, .mid-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.mid-actions { justify-content: center; margin-top: 3rem; }
.footer-actions { margin-top: 2rem; font-size: 1.5rem; }

.btn { display: inline-block; padding: 1rem 2.5rem; text-transform: uppercase; font-weight: 500; letter-spacing: 1px; font-size: 0.9rem; transition: all 0.3s ease; cursor: pointer; white-space: nowrap; }
.btn-primary { background-color: var(--color-white); color: var(--color-black); }
.btn-primary:hover { background-color: #e0e0e0; }
.btn-secondary { border: 1px solid var(--color-white); color: var(--color-white); }
.btn-secondary:hover { background-color: var(--color-white); color: var(--color-black); }

#site-header { position: fixed; top: 0; width: 100%; z-index: 100; padding: 2rem 0; transition: background-color 0.3s ease, padding 0.3s ease; }
#site-header.scrolled { background-color: rgba(10, 10, 10, 0.98); padding: 1rem 0; }
.header-inner { width: 90%; max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }

.logo a { font-size: 1.8rem; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; transition: all 0.3s ease; }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a { font-weight: 400; font-size: 0.9rem; }
.nav-wa { color: #25D366 !important; }

/* Dropdown */
.dropdown { position: relative; display: inline-block; }
.dropbtn { padding: 10px 0; }
.dropdown-content { display: none; position: absolute; background-color: rgba(10, 10, 10, 0.98); min-width: 260px; box-shadow: 0px 8px 24px rgba(0,0,0,0.6); z-index: 200; top: 100%; left: 0; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 4px; padding: 0.5rem 0; }
.dropdown-content a { color: var(--color-white); padding: 12px 20px; text-decoration: none; display: block; font-size: 0.85rem; font-weight: 300; transition: background-color 0.2s ease, padding-left 0.2s ease; }
.dropdown-content a:hover { background-color: rgba(255, 255, 255, 0.05); padding-left: 24px; }
.dropdown:hover .dropdown-content { display: block; animation: dropFadeIn 0.3s ease forwards; }
@keyframes dropFadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.service-blocks {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    width: 100%;
}
@media (min-width: 768px) {
    .service-blocks {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .service-blocks {
        grid-template-columns: repeat(3, 1fr);
    }
}
.service-block {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem 1.5rem;
    font-size: 1.2rem;
    font-weight: 300;
    transition: background-color 0.3s ease;
    background-color: var(--color-grey);
}
.service-block:hover { background-color: rgba(255, 255, 255, 0.05); }

.process-grid { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 2rem; }
.process-grid h2 { font-weight: 400; margin: 0; }

.contact-form { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.form-group { display: flex; flex-direction: column; }
.form-group label { margin-bottom: 0.5rem; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; opacity: 0.8; }
.form-control { background: transparent; border: 1px solid rgba(255, 255, 255, 0.2); padding: 1rem; color: var(--color-white); font-family: var(--font-primary); font-size: 1rem; transition: border-color 0.3s ease; border-radius: 0; }
.form-control:focus { outline: none; border-color: var(--color-white); background-color: rgba(255, 255, 255, 0.05); }
textarea.form-control { resize: vertical; min-height: 150px; }

.sticky-wa { position: fixed; bottom: 120px; right: 30px; background-color: #25D366; color: white; padding: 1rem 2rem; border-radius: 50px; font-weight: 500; box-shadow: 0 4px 15px rgba(0,0,0,0.3); z-index: 100; transition: all 0.3s ease; }
.sticky-wa:hover { opacity: 0.9; transform: translateY(-2px); }

.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; will-change: opacity, transform; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

.hamburger { display: none; flex-direction: column; justify-content: center; gap: 6px; width: 30px; height: 30px; background: transparent; border: none; cursor: pointer; z-index: 1001; }
.hamburger .line { width: 100%; height: 1px; background-color: var(--color-white); transition: all 0.3s ease-in-out; }
.hamburger.active .line:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.hamburger.active .line:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

.mobile-menu-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background-color: rgba(10, 10, 10, 0.98); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); z-index: 1000; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.4s ease; }
.mobile-menu-overlay.active { opacity: 1; pointer-events: all; }
.mobile-nav-links { display: flex; flex-direction: column; text-align: center; gap: 2.5rem; }
.mobile-nav-links a { font-size: 1.8rem; font-weight: 300; text-transform: uppercase; letter-spacing: 2px; }
.wa-mobile-link { color: #25D366 !important; font-weight: 400 !important; }

@media (max-width: 900px) { 
    .desktop-nav { display: none; }
    .hamburger { display: flex; }
    .logo a { font-size: 1.4rem; letter-spacing: 3px; }
    .hero-actions { flex-direction: row !important; flex-wrap: nowrap !important; justify-content: center; }
    .mid-actions { flex-direction: row !important; flex-wrap: nowrap !important; justify-content: center; }
    .hero-actions .btn { padding: 0.6rem 0.6rem; font-size: 0.75rem; white-space: nowrap; flex: 1 1 auto; min-width: 0; }
    .mid-actions .btn { padding: 0.6rem 0.6rem; font-size: 0.75rem; white-space: nowrap; flex: 1 1 auto; min-width: 0; }
    .container { width: 85%; }
    h1 { font-size: clamp(2.5rem, 8vw, 4rem); }
    .rule-light, .rule-dark { width: 30px; }
    .service-blocks { grid-template-columns: 1fr; }
    .sticky-wa { bottom: 110px; right: 20px; padding: 0.8rem 1.5rem; font-size: 0.9rem; }
    .bg-image { background-position: center 25%; }
}

/* --- Universal Nav Profile Styles --- */
.nav-container-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

#nav-profile-section {
    position: relative;
    display: flex;
    align-items: center;
}

#nav-login-btn {
    color: var(--color-white);
    font-size: 0.85rem;
    letter-spacing: 1px;
    opacity: 0.8;
}

.user-avatar {
    width: 35px;
    height: 35px;
    background: #D4AF37;
    color: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 13px;
    cursor: pointer;
    transition: 0.3s;
}

.user-avatar:hover { transform: scale(1.05); }

.nav-dropdown-box {
    display: none;
    position: absolute;
    top: 50px;
    right: 0;
    width: 280px;
    background: #0a0a0a;
    border: 1px solid #222;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.8);
    z-index: 10005;
}

.user-email-display { 
    color: #444; 
    font-size: 11px; 
    margin-bottom: 20px; 
    text-align: center; 
    border-bottom: 1px solid #111; 
    padding-bottom: 15px; 
}

.nav-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.nav-grid-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 5px;
    background: #111;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    transition: 0.3s;
}

.nav-grid-item span { font-size: 20px; }
.nav-grid-item small { color: #fff; font-size: 10px; margin-top: 8px; text-transform: uppercase; letter-spacing: 1px; }
.nav-grid-item:hover { background: #1a1a1a; }

.logout-btn { background: none; border: none; width: 100%; cursor: pointer; }

/* --- Footer Grid --- */
.structured-footer { padding: 4rem 0 2rem 0; }
.footer-grid-layout { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; text-align: left; margin-bottom: 3rem; }
.footer-col h4 { color: #D4AF37; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1.5rem; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 0.8rem; }
.footer-col ul li a { color: #888; font-size: 0.9rem; text-decoration: none; transition: color 0.3s; }
.footer-col ul li a:hover { color: #fff; }
@media (max-width: 768px) {
    .footer-grid-layout { grid-template-columns: 1fr; text-align: center; }
    .footer-col h3, .footer-col p { max-width: 100% !important; margin-left: auto; margin-right: auto; }
}

/* Force cursor visibility — overrides any hidden cursor issues */
* { cursor: auto !important; }
a, button, .btn, .hamburger, .logout-btn, .sticky-wa, .rapid-opt, [role="button"], input, select, textarea, label, .user-avatar, .nav-grid-item, .loc-card { cursor: pointer !important; }

