/* =========================================
   1. VARIABLES & RESET
   ========================================= */
   :root {
    --ziwax-green: #00cc66;
    --ziwax-dark-green: #00994d;
    --dark-blue: #0a192f;
    --darker-blue: #020c1b;
    --card-bg: #112240;
    --light-slate: #a8b2d1;
    --lightest-slate: #ccd6f6;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow-lg: 0 10px 30px -10px rgba(2, 12, 27, 0.7);
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

[data-theme="light"] {
    --dark-blue: #f0f4f8;
    --darker-blue: #ffffff;
    --card-bg: #ffffff;
    --light-slate: #485563;
    --lightest-slate: #102a43;
    --glass-bg: rgba(0, 0, 0, 0.05);
    --glass-border: rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px -10px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--dark-blue);
    color: var(--light-slate);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--lightest-slate);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--darker-blue);
}

::-webkit-scrollbar-thumb {
    background: var(--ziwax-green);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--ziwax-dark-green);
}

/* =========================================
   2. HERO SECTION
   ========================================= */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    filter: brightness(0.6) contrast(1.1);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(10, 25, 47, 0.8) 0%,
        rgba(10, 25, 47, 0.4) 50%,
        var(--dark-blue) 100%
    );
    z-index: -1;
}

/* Glass Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition);
    background: rgba(10, 25, 47, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

.navbar.scrolled {
    padding: 15px 50px;
    box-shadow: 0 10px 30px -10px rgba(2, 12, 27, 0.7);
}

.logo img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 0 5px rgba(0, 204, 102, 0.3));
}

.navbar ul {
    display: flex;
    gap: 40px;
}

.navbar ul li a {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.navbar ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--ziwax-green);
    transition: var(--transition);
}

.navbar ul li a:hover,
.navbar ul li a.active {
    color: var(--ziwax-green);
}

.navbar ul li a:hover::after,
.navbar ul li a.active::after {
    width: 100%;
}

.navbar-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--lightest-slate);
    font-size: 1.5rem;
    cursor: pointer;
}

.theme-toggle {
    background: none;
    border: none;
    color: var(--lightest-slate);
    font-size: 1.2rem;
    cursor: pointer;
    margin-left: 20px;
    transition: var(--transition);
}

.theme-toggle:hover {
    color: var(--ziwax-green);
    transform: rotate(15deg);
}

/* Hero Text */
.hero-text {
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    z-index: 1;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 20px;
    line-height: 1.1;
    background: linear-gradient(to right, #fff, #a8b2d1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-text p {
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: var(--ziwax-green);
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-down-btn {
    display: inline-block;
    color: var(--lightest-slate);
    font-size: 2rem;
    animation: bounce 2s infinite;
    margin-top: 50px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* =========================================
   3. WELCOME SECTION
   ========================================= */
.welcome-section {
    padding: 100px 50px;
    background-color: var(--dark-blue);
    position: relative;
}

.welcome-heading {
    font-size: 2.5rem;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
}

.welcome-heading::before {
    content: '01.';
    position: absolute;
    top: -20px;
    left: -20px;
    font-size: 4rem;
    color: rgba(0, 204, 102, 0.1);
    z-index: -1;
    font-family: var(--font-heading);
}

.welcome-heading::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 4px;
    bottom: -10px;
    left: 0;
    background-color: var(--ziwax-green);
}

.welcome-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.welcome-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.welcome-text strong {
    color: var(--ziwax-green);
}

.welcome-image {
    position: relative;
    text-align: center;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--glass-border);
}

.image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 204, 102, 0.2);
    transition: var(--transition);
}

.image-wrapper:hover::after {
    background: transparent;
}

.welcome-image img {
    width: 100%;
    transition: var(--transition);
    filter: grayscale(100%);
}

.image-wrapper:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.ceo-badge {
    margin-top: 20px;
    background: var(--glass-bg);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid var(--glass-border);
    display: inline-block;
}

.caption {
    color: var(--lightest-slate);
}

/* =========================================
   4. CORE QUALITIES (SWIPER)
   ========================================= */
.core-qualities {
    padding: 100px 20px;
    background: var(--darker-blue);
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--lightest-slate);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: "";
    display: block;
    width: 50px;
    height: 4px;
    background: var(--ziwax-green);
    margin: 15px auto 0;
}

.swiper {
    width: 100%;
    max-width: 1000px;
    padding-bottom: 50px;
}

.quality-slide {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.quality-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.quality-slide:hover img {
    transform: scale(1.1);
}

.overlay-text {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: rgba(10, 25, 47, 0.9);
    backdrop-filter: blur(5px);
    padding: 20px;
    border-radius: 8px;
    color: var(--ziwax-green);
    font-size: 1.3rem;
    font-weight: 700;
    border: 1px solid var(--glass-border);
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

.quality-slide:hover .overlay-text {
    transform: translateY(0);
    opacity: 1;
}

.swiper-pagination-bullet {
    background: var(--light-slate);
}

.swiper-pagination-bullet-active {
    background: var(--ziwax-green);
}

/* =========================================
   5. SERVICES SECTION
   ========================================= */
.services-section {
    padding: 100px 50px;
    background-color: var(--dark-blue);
}

.section-heading {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 80px;
    color: var(--lightest-slate);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    box-shadow: 0 10px 30px -15px rgba(2, 12, 27, 0.7);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px -15px rgba(2, 12, 27, 0.7);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--ziwax-green);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.card-image {
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: grayscale(50%);
}

.service-card:hover .card-image img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    color: var(--lightest-slate);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.card-content p {
    font-size: 0.95rem;
    color: var(--light-slate);
}

/* =========================================
   6. REVIEWS SECTION
   ========================================= */
.reviews-section {
    padding: 100px 50px;
    background: linear-gradient(to bottom, var(--darker-blue), var(--dark-blue));
    text-align: center;
}

.review-box {
    background: var(--card-bg);
    padding: 40px;
    margin: 20px auto;
    max-width: 800px;
    border-radius: 10px;
    position: relative;
    border: 1px solid var(--glass-border);
}

.review-box::before {
    content: '\201C';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 5rem;
    color: var(--ziwax-green);
    font-family: serif;
    opacity: 0.3;
}

.review-box p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--lightest-slate);
}

.review-box span {
    display: block;
    color: var(--ziwax-green);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =========================================
   7. PARTNERS SECTION
   ========================================= */
.partners-section {
    padding: 60px 0;
    background-color: var(--card-bg);
    overflow: hidden;
}

.partners-section .section-heading {
    color: var(--lightest-slate);
    margin-bottom: 40px;
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 0 50px;
}

.partner-logo {
    width: 120px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border-radius: 10px;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    transition: var(--transition);
    /* Dark Mode: Invert to make white bg black, then screen to make black transparent */
    filter: grayscale(100%) invert(1);
    mix-blend-mode: screen;
    opacity: 0.8;
}

.partner-logo:hover {
    transform: scale(1.1);
}

.partner-logo:hover img {
    opacity: 1;
    filter: none;
    mix-blend-mode: normal;
}

[data-theme="light"] .partner-logo img {
    /* Light Mode: Multiply to make white bg transparent */
    filter: grayscale(100%);
    mix-blend-mode: multiply;
    opacity: 0.8;
}

[data-theme="light"] .partner-logo:hover img {
    filter: none;
    mix-blend-mode: normal;
    opacity: 1;
}

/* =========================================
   8. CONTACT SECTION
   ========================================= */
.contact-section {
    padding: 100px 50px;
    background-color: var(--darker-blue);
    color: var(--lightest-slate);
    text-align: center;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.contact-item i {
    color: var(--ziwax-green);
    font-size: 1.5rem;
    margin-right: 20px;
    width: 30px;
    text-align: center;
}

.contact-cta {
    flex: 1;
    min-width: 300px;
    background: var(--card-bg);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact-cta p {
    margin-bottom: 30px;
    font-size: 1.2rem;
}

.contact-button {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    color: var(--ziwax-green);
    border: 1px solid var(--ziwax-green);
    border-radius: 5px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.contact-button:hover {
    background: rgba(0, 204, 102, 0.1);
    transform: translateY(-3px);
}

.contact-footer-tagline {
    margin-top: 60px;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    color: var(--ziwax-green);
    opacity: 0.8;
}

/* =========================================
   9. FOOTER
   ========================================= */
.footer {
    background-color: var(--darker-blue);
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid var(--glass-border);
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--light-slate);
    margin: 0 15px;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--ziwax-green);
}

.footer-note {
    color: #8892b0;
    font-size: 0.85rem;
}

/* =========================================
   10. RESPONSIVE
   ========================================= */
@media (max-width: 768px) {
    .navbar {
        padding: 20px;
    }

    .navbar ul {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70%;
        background: var(--card-bg);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        transition: var(--transition);
        box-shadow: -10px 0 30px -10px rgba(2, 12, 27, 0.7);
    }

    .navbar ul.active {
        transform: translateX(0);
    }

    .navbar-toggle {
        display: block;
        z-index: 1001;
    }

    .welcome-grid {
        grid-template-columns: 1fr;
    }

    .welcome-heading::before {
        font-size: 3rem;
    }

    .story-container,
    .contact-content {
        flex-direction: column;
    }
    
    .logo-arrow {
        transform: rotate(90deg);
    }

    .achievement-content {
        flex-direction: column;
    }
    
    .achievement-image {
        order: -1; /* Image on top on mobile */
        width: 100%;
    }
}

/* =========================================
   11. PAGE SPECIFIC STYLES
   ========================================= */

/* --- ABOUT PAGE --- */
.our-story-section {
    padding: 100px 50px;
    background-color: var(--dark-blue);
}

.story-container {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--ziwax-green);
}

.story-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--light-slate);
}

.story-logo {
    flex: 0.8;
    text-align: center;
    background: var(--glass-bg);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}

.logo-evolution-section {
    padding: 80px 50px;
    background-color: var(--darker-blue);
    text-align: center;
}

.evolution-heading {
    font-size: 2rem;
    margin-bottom: 50px;
    color: var(--lightest-slate);
}

.logo-evolution {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.logo-item {
    text-align: center;
    background: var(--glass-bg);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.logo-item:hover {
    transform: translateY(-10px);
}

.logo-item img {
    height: 100px;
    width: auto;
    margin-bottom: 15px;
    margin-left: auto;
    margin-right: auto;
}

.logo-arrow {
    font-size: 2rem;
    color: var(--ziwax-green);
}

/* --- SERVICES PAGE --- */
.services-hero {
    position: relative;
    height: 60vh;
    background: url('image/engineer1.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.services-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 25, 47, 0.85);
}

.services-hero-text {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.services-hero-text h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--white);
}

.services-hero-text p {
    font-size: 1.2rem;
    color: var(--ziwax-green);
}

.workflow-section {
    padding: 100px 50px;
    background-color: var(--darker-blue);
    text-align: center;
}

.workflow-section h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--lightest-slate);
}

.workflow-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.workflow-step {
    background: var(--glass-bg);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.workflow-step:hover {
    transform: translateY(-10px);
    border-color: var(--ziwax-green);
}

.workflow-step img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 2px solid var(--ziwax-green);
}

.workflow-step h3 {
    color: var(--lightest-slate);
    margin-bottom: 15px;
}

.workflow-step p {
    color: var(--light-slate);
    font-size: 0.9rem;
}

/* --- QUALITY ASSURANCE PAGE --- */
.quality-assurance-section {
    padding: 100px 50px;
    background-color: var(--dark-blue);
    max-width: 1000px;
    margin: 0 auto;
}

.quality-assurance-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--ziwax-green);
    text-align: center;
}

.quality-assurance-section p {
    margin-bottom: 20px;
    color: var(--light-slate);
    font-size: 1.1rem;
}

.quality-assurance-section ul {
    list-style: none;
    margin-top: 30px;
}

.quality-assurance-section ul li {
    margin-bottom: 20px;
    padding-left: 20px;
    border-left: 3px solid var(--ziwax-green);
    color: var(--light-slate);
}

.quality-assurance-section ul li span {
    color: var(--lightest-slate);
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

/* --- CONTACT PAGE --- */
.contact-wrapper {
    padding: 100px 50px;
    background-color: var(--dark-blue);
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-description {
    flex: 1;
    min-width: 300px;
}

.contact-description h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--ziwax-green);
}

.contact-description p {
    color: var(--light-slate);
    margin-bottom: 30px;
}

.contact-details li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: var(--lightest-slate);
    font-size: 1.1rem;
}

.contact-details li i {
    color: var(--ziwax-green);
    margin-right: 15px;
    width: 25px;
}

.contact-form-container {
    flex: 1;
    min-width: 300px;
    background: var(--glass-bg);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}

.form-title {
    margin-bottom: 30px;
    color: var(--lightest-slate);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-form label {
    color: var(--lightest-slate);
    font-weight: 500;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    padding: 15px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 5px;
    color: var(--lightest-slate);
    font-family: var(--font-body);
    width: 100%;
}

.contact-form select option {
    background: var(--dark-blue);
    color: var(--lightest-slate);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--ziwax-green);
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 20px;
    }
}

.contact-form button {
    padding: 15px;
    background: var(--ziwax-green);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.contact-form button:hover {
    background: var(--ziwax-dark-green);
    transform: translateY(-3px);
}

/* --- ACHIEVEMENT SECTION (About Page) --- */
.achievement-section {
    padding: 100px 50px;
    background-color: var(--darker-blue);
}

.achievement-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.achievement-text {
    flex: 1;
}

.achievement-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--lightest-slate);
}

.achievement-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--light-slate);
}

.achievement-text strong {
    color: var(--lightest-slate);
}

.achievement-image {
    flex: 1;
    position: relative;
}

.achievement-image img {
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--glass-border);
    transition: var(--transition);
}

.achievement-image:hover img {
    transform: scale(1.02);
    border-color: var(--ziwax-green);
}

/* --- FAQ SECTION (About Page) --- */
.faq-section {
    padding: 100px 50px;
    background-color: var(--dark-blue);
    max-width: 1000px;
    margin: 0 auto;
}

.faq-heading {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--lightest-slate);
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.accordion-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
}

.accordion-item:hover {
    border-color: var(--ziwax-green);
}

.accordion-toggle {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--lightest-slate);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
}

.accordion-toggle::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--ziwax-green);
    transition: var(--transition);
}

.accordion-item.active .accordion-toggle::after {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: var(--glass-bg);
}

.accordion-item.active .accordion-content {
    max-height: 200px; /* Adjust as needed */
    padding: 20px;
    border-top: 1px solid var(--glass-border);
}

.accordion-content p {
    color: var(--light-slate);
    font-size: 1rem;
}

/* --- FEATURE HIGHLIGHT SECTION (Services Page) --- */
.feature-highlight-section {
    padding: 100px 50px;
    background-color: var(--dark-blue);
    text-align: center;
}

.feature-highlight-section h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--lightest-slate);
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--glass-bg);
    padding: 40px 30px;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--ziwax-green);
    box-shadow: var(--shadow-lg);
}

.feature-card i {
    font-size: 3rem;
    color: var(--ziwax-green);
    margin-bottom: 25px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--lightest-slate);
}

.feature-card p {
    color: var(--light-slate);
    font-size: 0.95rem;
}
