:root {
    --bg-dark: #0b1a28;
    --bg-darker: #06111a;
    --text-light: #f4f6f8;
    --text-muted: #a0aec0;
    --accent-blue: #008cff;
    --accent-blue-hover: #0070cc;
    --accent-green: #00ff00;
    --accent-gold: #dca961;
    --accent-red: #e60000;
    --accent-red-hover: #b30000;
    
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    text-transform: uppercase;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Typography */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}
.section-title.text-left {
    text-align: left;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 500;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--accent-red);
    color: white;
}
.btn-primary:hover {
    background-color: var(--accent-red-hover);
}

.btn-secondary {
    background-color: var(--accent-red);
    color: white;
    padding: 8px 20px;
    font-size: 0.9rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}
.btn-secondary:hover {
    background-color: var(--accent-red-hover);
}

/* Footer */
footer {
    background: var(--bg-dark);
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-left a {
    color: var(--accent-green);
    font-weight: 700;
}
.footer-right {
    color: var(--text-muted);
}

/* Feature Split Layouts */
.feature-split {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}
.feature-split:nth-child(even) {
    flex-direction: row-reverse;
}
.feature-text {
    flex: 1;
}
.feature-text h3 {
    font-size: 2.2rem;
    color: white;
    margin-bottom: 20px;
}
.feature-text h3 span {
    color: var(--accent-gold);
}
.feature-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 15px;
}
.feature-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.feature-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}
.feature-image:hover img {
    transform: scale(1.05);
}

/* FAQ Cards Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}
.faq-card {
    background: var(--bg-darker);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.faq-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-green);
}
.faq-card h4 {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.faq-card h4 img {
    width: 24px;
    height: 24px;
}
.faq-card p {
    color: var(--text-light);
    line-height: 1.7;
}

@media (max-width: 992px) {
    .feature-split, .feature-split:nth-child(even) {
        flex-direction: column;
    }
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* Navbar */
.navbar {
    background-color: var(--bg-darker);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}
.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 2rem;
    font-family: var(--font-heading);
    font-weight: 700;
}
.logo-w { color: white; }
.logo-d { color: var(--accent-green); }

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}
.nav-links > a, .dropdown-trigger {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    transition: color 0.3s;
    cursor: pointer;
}
.nav-links > a:hover, .nav-links > a.active, .dropdown-trigger:hover {
    color: var(--accent-green);
}
.btn-audit {
    border-radius: 20px;
}

/* Mega Menu */
.dropdown {
    position: relative;
    display: inline-block;
    padding: 15px 0;
}

.mega-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--bg-darker);
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    z-index: 1000;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
}

/* Invisible bridge to prevent hover loss when moving mouse down */
.mega-menu::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 0;
    width: 100%;
    height: 30px;
    background: transparent;
}

.mega-menu.menu-2-col {
    min-width: 550px;
}

.mega-menu.menu-4-col {
    min-width: 900px;
}

.mega-menu-inner {
    display: flex;
    gap: 30px;
}

.mega-menu-column {
    flex: 1;
}

.mega-menu-column h4 {
    color: var(--accent-gold);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 5px;
    padding-left: 25px;
}

.dropdown:hover .mega-menu {
    display: block;
}

.mega-menu-list {
    list-style: none;
}

.mega-menu-list li {
    padding: 10px 25px;
}

.mega-menu-list a {
    color: var(--text-light);
    display: block;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: none;
    transition: color 0.3s;
}

.mega-menu-list a:hover {
    color: var(--accent-green);
    transform: translateX(5px);
    display: inline-block;
}

/* Hero */
.hero {
    padding: 100px 0;
    background: linear-gradient(to right, #0b1a28 40%, rgba(11, 26, 40, 0.7) 100%), url('images/office_bg.webp') no-repeat right center / cover;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}
.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}
.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    color: var(--accent-gold);
    margin-bottom: 20px;
}
.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}
.hero-image {
    position: absolute;
    bottom: -150px;
    right: 5%;
    height: 120%;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    pointer-events: none;
}
.hero-person {
    height: 100%;
    width: auto;
    object-fit: contain;
    object-position: bottom center;
    filter: drop-shadow(-10px 0 20px rgba(0,0,0,0.5));
}

/* Services */
.services {
    padding: 60px 0;
    margin-top: -80px; /* Overlap hero */
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.service-card {
    background: white;
    color: var(--bg-dark);
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}
.service-card:hover {
    transform: translateY(-5px);
}
.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
}
.service-icon img {
    width: 100%;
    height: 100%;
}
.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    min-height: 50px;
}
.service-card p {
    font-size: 0.95rem;
    color: #4a5568;
    margin-bottom: 20px;
    min-height: 60px;
}

/* Process */
.process {
    padding: 60px 0;
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}
.process-card {
    background: var(--bg-darker);
    color: var(--text-light);
    padding: 25px 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.process-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.process-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-green);
}
.process-icon {
    width: 30px;
    height: 30px;
}
.process-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    flex-grow: 1;
}
.process-card p {
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Testimonials Carousel */
.testimonials {
    padding: 80px 0;
    background: var(--bg-dark);
}

.testimonial-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    min-width: 100%;
    box-sizing: border-box;
    padding: 20px;
}

.testimonial-card {
    background: var(--bg-darker);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial-img-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background: #0b1a28;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 2px solid var(--accent-red);
}

.client-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stars {
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.author {
    color: var(--text-muted);
    font-size: 1rem !important;
    font-style: normal !important;
}

.author strong {
    color: white;
    font-size: 1.1rem;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 20px;
}

.carousel-btn {
    background: transparent;
    border: 2px solid var(--accent-red);
    color: var(--accent-red);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: var(--accent-red);
    color: white;
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: background 0.3s ease;
}

.carousel-dot.active {
    background: var(--accent-red);
}

/* Deep Content Sections */
.deep-content-section {
    padding: 60px 0;
    background: var(--bg-dark);
}

.deep-content-section.alt {
    background: var(--bg-darker);
}

.content-block {
    max-width: 900px;
    margin: 0 auto;
}

.content-block h2 {
    color: var(--accent-gold);
    margin-bottom: 25px;
    font-size: 2rem;
    text-align: center;
}

.content-block h3 {
    color: white;
    margin-top: 40px;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.content-block p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.content-block ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.content-block ul li {
    font-size: 1.15rem;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.content-block ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
}

/* Team */
.team {
    padding: 60px 0;
}
.team-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.team-member {
    text-align: center;
}
.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-gold);
}
.team-member.leader img {
    width: 160px;
    height: 160px;
}
.team-info {
    margin-top: 15px;
}
.team-info h3 {
    font-size: 1.2rem;
    color: white;
}
.team-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Areas & FAQ */
.areas-faq {
    padding: 60px 0;
}
.areas-content {
    display: flex;
    gap: 40px;
}
.areas-list-section {
    flex: 1;
}
.areas-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.areas-list li {
    display: flex;
    align-items: center;
}
.areas-list li::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url('https://api.iconify.design/mdi:map-marker.svg?color=%2300ff00') no-repeat center center / contain;
    margin-right: 10px;
}
.areas-list a {
    font-size: 1.1rem;
    transition: color 0.2s;
}
.areas-list a:hover {
    color: var(--accent-green);
}
.map-placeholder {
    flex: 1;
    background: #1e3a8a url('https://api.iconify.design/mdi:map.svg?color=%23ffffff&opacity=0.2') no-repeat center center;
    border-radius: 8px;
    min-height: 200px;
    border: 2px solid var(--accent-blue);
}

.faq-section {
    /* max-width removed to allow full-width background and container centering */
}
.faq-item {
    margin-bottom: 20px;
    background: var(--bg-darker);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-blue);
}
.faq-item h4 {
    margin-bottom: 10px;
    color: var(--accent-gold);
}

/* CTA Banner */
.cta-banner {
    text-align: center;
    padding: 60px 0;
    background-color: var(--bg-darker);
    border-top: 1px solid rgba(255,255,255,0.1);
}
.cta-banner h2 {
    font-size: 3rem;
    margin-bottom: 30px;
}
.contact-info-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}
.contact-item.highlight {
    color: var(--accent-gold);
}

/* Footer */
footer {
    padding: 20px 0;
    background: #000;
    font-size: 0.8rem;
    color: var(--text-muted);
}
.footer-content {
    display: flex;
    justify-content: space-between;
}

/* Responsive */
@media (max-width: 992px) {
    .services-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
    .hero h1 { font-size: 3rem; }
    .contact-info-row { flex-direction: column; gap: 15px; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .services-grid, .process-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .areas-content { flex-direction: column; }
    .hero { background-position: center; }
}

/* Mobile Menu Toggle & Styles */
.mobile-menu-toggle {
    display: none;
    font-size: 2rem;
    color: var(--accent-gold);
    cursor: pointer;
    z-index: 1001;
}

@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: var(--bg-darker);
        padding: 80px 30px 30px 30px;
        box-shadow: -10px 0 30px rgba(0,0,0,0.8);
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1000;
        overflow-y: auto;
        align-items: flex-start;
        border-left: 1px solid rgba(255,255,255,0.05);
    }
    
    .nav-links.mobile-active {
        right: 0;
    }
    
    .nav-links > a, .dropdown-trigger {
        font-size: 1.5rem;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        width: 100%;
        display: block;
    }
    
    .btn-audit {
        display: none;
    }
    
    /* Modify Mega Menu for Mobile Accordion */
    .dropdown {
        width: 100%;
        padding: 0;
    }
    
    .dropdown:hover .mega-menu {
        display: none; /* Disable hover on mobile */
    }
    
    .dropdown.mobile-open .mega-menu {
        display: block;
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        background: transparent;
        padding: 10px 0 10px 20px;
        min-width: 100% !important;
    }
    
    .mega-menu-inner {
        flex-direction: column;
        gap: 15px;
    }
    
    .mega-menu-list a {
        font-size: 1.1rem;
        padding: 8px 0;
    }
    
    .mega-menu-column h4 {
        padding-left: 0;
        border-bottom: none;
        margin-bottom: 5px;
    }
}

