/*
================================================
--- TABLE OF CONTENTS ---
================================================
1.  :root Variables & Global Styles
2.  Keyframe Animations
3.  Utility Classes
4.  General Layout (Container, Grid Background)
5.  Header & Navigation
6.  Mobile Navigation
7.  Buttons & CTAs
8.  Hero Section
9.  Section Headers
10. Services Section (Exoskeleton 3D Cards)
11. About Us Section
12. Industries Section
13. Interactive Report Section
14. Testimonials Section
15. Contact Page Specifics
    15.1 Contact Info Panel
    15.2 Contact Form
    15.3 Popup Modal
16. Legal/Subpage Layout (Page Header, Content)
17. Footer
18. Live Chat Bubble
19. Scrollbar Styles
20. Responsive Design (Media Queries)
    20.1 Large Desktops (>= 1200px)
    20.2 Tablets (~992px)
    20.3 Mobile Devices (~768px)
    20.4 Small Mobile Devices (~480px)
================================================
*/


/* 1. :root Variables & Global Styles
-------------------------------------------------- */
:root {
    --primary-color: #00aaff;
    --primary-color-dark: #0088cc;
    --secondary-color: #00eaff;
    --bg-dark-1: #0a192f;
    --bg-dark-2: #112240;
    --text-light-1: #ccd6f6;
    --text-light-2: #8892b0;
    --border-color: rgba(0, 170, 255, 0.2);
    --shadow-color: rgba(0, 170, 255, 0.1);
    --header-height: 80px;
    --font-primary: 'Poppins', sans-serif;
    --font-mono: 'Roboto Mono', monospace;
    --transition-speed: 0.4s;
    --transition-ease: cubic-bezier(0.645, 0.045, 0.355, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-dark-1);
    color: var(--text-light-1);
    font-family: var(--font-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-speed) var(--transition-ease);
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

section {
    padding: 100px 0;
}


/* 2. Keyframe Animations
-------------------------------------------------- */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes grid-pan {
    0% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(20px, -20px);
    }

    50% {
        transform: translate(0, 0);
    }

    75% {
        transform: translate(-20px, 20px);
    }

    100% {
        transform: translate(0, 0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 var(--shadow-color);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0, 170, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 170, 255, 0);
    }
}

@keyframes bar-animate {
    from {
        width: 0;
    }

    to {
        width: var(--bar-value, 0);
    }
}


/* 3. Utility Classes
-------------------------------------------------- */
.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s var(--transition-ease), transform 0.6s var(--transition-ease);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* 4. General Layout (Container, Grid Background)
-------------------------------------------------- */
.grid-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image:
        linear-gradient(var(--border-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--border-color) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    animation: grid-pan 20s linear infinite;
    perspective: 800px;
    transform-style: preserve-3d;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(10, 25, 47, 0) 0%, var(--bg-dark-1) 70%);
    z-index: -1;
}


/* 5. Header & Navigation
-------------------------------------------------- */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background: rgba(10, 25, 47, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    height: var(--header-height);
    transition: top var(--transition-speed) var(--transition-ease);
}

.header.scrolled {
    box-shadow: 0 5px 20px var(--shadow-color);
}

.header.hidden {
    top: -100px;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo-link .logo {
    width: auto;
    height: 80px;
    filter: invert(1);
    transition: transform var(--transition-speed) ease;
}

.logo-link:hover .logo {
    transform: rotate(10deg);
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--text-light-1);
    position: relative;
    padding: 10px 5px;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-speed) var(--transition-ease);
}

.nav-link:hover::before,
.header-cta.active::before {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 22px;
    position: relative;
    z-index: 1001;
}

.mobile-toggle .bar {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-light-1);
    position: absolute;
    left: 0;
    transition: all 0.3s ease-in-out;
}

.bar-top {
    top: 0;
}

.bar-middle {
    top: 50%;
    transform: translateY(-50%);
}

.bar-bottom {
    bottom: 0;
}

.mobile-nav.open .bar-top {
    transform: rotate(45deg);
    top: 10px;
}

.mobile-nav.open .bar-middle {
    opacity: 0;
}

.mobile-nav.open .bar-bottom {
    transform: rotate(-45deg);
    top: 10px;
}


/* 6. Mobile Navigation
-------------------------------------------------- */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(75vw, 400px);
    height: 100vh;
    background: rgba(17, 34, 64, 0.95);
    backdrop-filter: blur(15px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right var(--transition-speed) var(--transition-ease);
}

.mobile-nav.open {
    right: 0;
}

.mobile-nav nav ul {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 30px;
}

.mobile-nav nav ul li {
    font-size: 1.2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-nav.open nav ul li {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav.open nav ul li:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-nav.open nav ul li:nth-child(2) {
    transition-delay: 0.2s;
}

.mobile-nav.open nav ul li:nth-child(3) {
    transition-delay: 0.3s;
}

.mobile-nav.open nav ul li:nth-child(4) {
    transition-delay: 0.4s;
}

.mobile-nav.open nav ul li:nth-child(5) {
    transition-delay: 0.5s;
}


/* 7. Buttons & CTAs
-------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 4px;
    font-family: var(--font-mono);
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-speed) var(--transition-ease);
    border: 1px solid transparent;
}

.btn span {
    z-index: 1;
}

.btn i {
    z-index: 1;
    transition: transform var(--transition-speed) ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-dark-1);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-color-dark);
    border-color: var(--primary-color-dark);
    box-shadow: 0 0 20px var(--shadow-color);
    transform: translateY(-3px);
}

.btn-primary:hover i {
    transform: translateX(5px);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--shadow-color);
    color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
}

.btn-tertiary {
    font-size: 0.9rem;
    padding: 8px 16px;
    background-color: var(--shadow-color);
    color: var(--secondary-color);
    border: 1px solid var(--border-color);
}


/* 8. Hero Section
-------------------------------------------------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeIn 1s ease-out;
}

.hero-title .line {
    display: block;
    opacity: 0;
    transform: translateY(100%);
    animation: slideInUp 0.8s var(--transition-ease) forwards;
}

.hero-title .line:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-title .line:nth-child(3) {
    animation-delay: 0.4s;
}

.hero-title .accent {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light-2);
    max-width: 600px;
    margin-bottom: 40px;
    animation: slideInUp 0.8s var(--transition-ease) 0.6s forwards;
    opacity: 0;
}

.hero-actions {
    display: flex;
    gap: 20px;
    animation: slideInUp 0.8s var(--transition-ease) 0.8s forwards;
    opacity: 0;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-shapes .shape {
    position: absolute;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.05;
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    right: 5%;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 10%;
    animation: float 10s ease-in-out infinite 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 10%;
    right: 15%;
    background: var(--secondary-color);
    animation: float 6s ease-in-out infinite 1s;
}


/* 9. Section Headers
-------------------------------------------------- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    color: var(--primary-color);
    overflow: hidden;
    width: 0;
    transition: width 1s var(--transition-ease);
    white-space: nowrap;
}

.animate-on-scroll.is-visible .section-title::before {
    width: 100%;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light-2);
    max-width: 600px;
    margin: 0 auto;
}


/* 10. Services Section (Exoskeleton 3D Cards)
-------------------------------------------------- */
.services-section {
    background: var(--bg-dark-2);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    perspective: 1500px;
}

.service-card {
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.8s var(--transition-ease);
    cursor: pointer;
    min-height: 280px;
}

.service-card .card-face {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    padding: 30px;
    border: 1px solid var(--border-color);
    background: var(--bg-dark-1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: background var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.service-card:hover {
    transform: rotateY(180deg);
}

.service-card:hover .card-front {
    box-shadow: none;
}

.card-front {
    z-index: 2;
}

.card-back {
    transform: rotateY(180deg);
    justify-content: space-around;
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}

.service-card .card-front:hover .service-icon {
    transform: scale(1.1);
}

.service-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-description {
    color: var(--text-light-2);
    font-size: 0.95rem;
}

.card-back ul {
    text-align: left;
    margin: 15px 0;
    width: 100%;
    padding-left: 20px;
}

.card-back ul li {
    font-size: 0.9rem;
    color: var(--text-light-2);
    margin-bottom: 8px;
    position: relative;
}

.card-back ul li::before {
    content: '\f058';
    /* Font Awesome check-circle */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: -20px;
}


/* 11. About Us Section
-------------------------------------------------- */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text .section-title {
    text-align: left;
    display: block;
}

.about-text p {
    margin-bottom: 30px;
    color: var(--text-light-2);
}

.stats-grid {
    display: flex;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-mono);
    color: var(--primary-color);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light-2);
    font-family: var(--font-mono);
}

.about-image {
    position: relative;
}

.image-frame {
    border: 2px solid var(--border-color);
    padding: 15px;
    transition: transform var(--transition-speed) ease;
}

.image-frame::before,
.image-frame::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    border-color: var(--primary-color);
    border-style: solid;
    transition: transform var(--transition-speed) ease;
}

.image-frame::before {
    top: -5px;
    left: -5px;
    border-width: 2px 0 0 2px;
}

.image-frame::after {
    bottom: -5px;
    right: -5px;
    border-width: 0 2px 2px 0;
}

.about-image:hover .image-frame {
    transform: translate(5px, -5px);
}

.about-image:hover .image-frame::before {
    transform: translate(-10px, -10px);
}

.about-image:hover .image-frame::after {
    transform: translate(10px, 10px);
}

.about-image img {
    filter: grayscale(80%) contrast(1.1);
    transition: filter var(--transition-speed) ease;
}

.about-image:hover img {
    filter: grayscale(0%);
}


/* 12. Industries Section
-------------------------------------------------- */
.industries-section {
    background-color: var(--bg-dark-2);
}

.industries-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.industry-item {
    background: var(--bg-dark-1);
    border: 1px solid var(--border-color);
    padding: 25px;
    text-align: center;
    transition: all var(--transition-speed) var(--transition-ease);
    transform: translateY(0);
    position: relative;
    overflow: hidden;
}

.industry-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--shadow-color), transparent);
    transition: left 0.6s ease;
}

.industry-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px var(--shadow-color);
}

.industry-item:hover::before {
    left: 100%;
}

.industry-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.industry-title {
    font-size: 1rem;
    font-weight: 500;
}


/* 13. Interactive Report Section
-------------------------------------------------- */
.report-dashboard {
    background: var(--bg-dark-2);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 8px;
}

.report-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.report-header h3 {
    font-size: 1.4rem;
}

.date-range {
    font-family: var(--font-mono);
    color: var(--text-light-2);
}

.report-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-areas:
        "kpi1 kpi2 kpi3 kpi4"
        "chart chart summary summary";
    gap: 20px;
}

.report-card {
    background: var(--bg-dark-1);
    border: 1px solid var(--border-color);
    padding: 20px;
}

.kpi-card {
    grid-area: auto;
}

.chart-card {
    grid-area: chart;
}

.summary-card {
    grid-area: summary;
}

.kpi-card h4 {
    font-size: 0.9rem;
    color: var(--text-light-2);
    margin-bottom: 10px;
}

.kpi-value {
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-mono);
    color: var(--secondary-color);
}

.kpi-change {
    font-family: var(--font-mono);
    font-size: 0.9rem;
}

.kpi-change.positive {
    color: #32cd32;
}

.kpi-change.negative {
    color: #ff6347;
}

.chart-card h4,
.summary-card h4 {
    margin-bottom: 20px;
}

.bar-chart {
    display: flex;
    justify-content: space-around;
    height: 150px;
    align-items: flex-end;
}

.bar {
    width: 30px;
    background: var(--bar-color);
    position: relative;
    animation: bar-animate 1.5s var(--transition-ease) forwards;
    animation-play-state: paused;
}

.animate-on-scroll.is-visible .bar {
    animation-play-state: running;
}

.bar::after {
    content: attr(data-label);
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    font-family: var(--font-mono);
    color: var(--text-light-2);
}

.summary-card p {
    color: var(--text-light-2);
}


/* 14. Testimonials Section
-------------------------------------------------- */
.testimonials-section {
    background: var(--bg-dark-2);
}

.testimonial-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 20px;
}

.testimonial-card {
    flex: 0 0 100%;
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-dark-1);
    border-left: 4px solid var(--primary-color);
    padding: 40px;
    box-shadow: 0 10px 30px var(--shadow-color);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
}

.testimonial-text::before {
    content: '\f10d';
    /* quote-left */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: -20px;
    left: -30px;
    font-size: 2.5rem;
    color: var(--border-color);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-name {
    font-weight: 600;
}

.author-title {
    font-size: 0.9rem;
    color: var(--text-light-2);
}


/* 15. Contact Page Specifics
-------------------------------------------------- */
.contact-section {
    padding-bottom: 120px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    background: var(--bg-dark-2);
    border: 1px solid var(--border-color);
}


/* 15.1 Contact Info Panel */
.contact-info-panel {
    padding: 40px;
    background: var(--bg-dark-1);
    border-right: 1px solid var(--border-color);
}

.contact-info-panel h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.contact-info-panel p {
    color: var(--text-light-2);
    margin-bottom: 30px;
}

.contact-methods .contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.method-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.method-details h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.method-details p,
.method-details p a {
    color: var(--text-light-2);
    font-size: 0.95rem;
}


/* 15.2 Contact Form */
.contact-form-wrapper {
    padding: 40px;
}

.contact-form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
    width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.form-group.full-width {
    width: 100%;
}

.form-group label {
    font-size: 0.9rem;
    font-family: var(--font-mono);
    margin-bottom: 8px;
    color: var(--text-light-2);
}

.form-group input,
.form-group textarea,
.form-group select {
    background: var(--bg-dark-1);
    border: 1px solid var(--border-color);
    padding: 12px;
    color: var(--text-light-1);
    font-family: var(--font-primary);
    border-radius: 4px;
    transition: all var(--transition-speed) ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px var(--shadow-color);
}

.contact-form button[type="submit"] {
    margin-top: 10px;
}


/* 15.3 Popup Modal */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 25, 47, 0.9);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup:target {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: var(--bg-dark-2);
    border: 1px solid var(--border-color);
    padding: 40px;
    text-align: center;
    max-width: 450px;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.popup:target .popup-content {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    color: var(--text-light-2);
}

.popup-content i {
    font-size: 4rem;
    color: #32cd32;
    margin-bottom: 20px;
}

.popup-content h3 {
    margin-bottom: 10px;
}

.popup-content p {
    color: var(--text-light-2);
    margin-bottom: 30px;
}


/* 16. Legal/Subpage Layout
-------------------------------------------------- */
body.subpage main {
    padding-top: var(--header-height);
}

.page-header {
    text-align: center;
    padding: 80px 0;
    background: var(--bg-dark-2);
    border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 15px;
}

.breadcrumbs {
    font-family: var(--font-mono);
    color: var(--text-light-2);
}

.breadcrumbs a {
    color: var(--text-light-2);
}

.breadcrumbs a:hover {
    color: var(--primary-color);
}

.page-header .section-description {
    max-width: 700px;
    margin: 20px auto 0;
    color: var(--text-light-2);
}

.page-content {
    padding: 80px 0;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
    border-left: 3px solid var(--primary-color);
    padding-left: 15px;
}

.content-wrapper p,
.content-wrapper ul {
    margin-bottom: 20px;
    color: var(--text-light-2);
}

.content-wrapper ul {
    list-style: disc;
    padding-left: 20px;
}

.content-wrapper ul li {
    margin-bottom: 10px;
}


/* 17. Footer
-------------------------------------------------- */
.footer {
    background-color: var(--bg-dark-2);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.footer-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.footer-shape {
    position: absolute;
    background: var(--border-color);
    opacity: 0.5;
}

.shape-1 {
    width: 200px;
    height: 1px;
    top: 20%;
    left: -50px;
    transform: rotate(45deg);
}

.shape-2 {
    width: 300px;
    height: 1px;
    bottom: 15%;
    right: -80px;
    transform: rotate(-30deg);
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.footer-logo {
    height: 80px;
    filter: invert(1);
    margin-bottom: 20px;
}

.footer-about-text {
    font-size: 0.9rem;
    color: var(--text-light-2);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-light-2);
    font-size: 1rem;
}

.social-link:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--bg-dark-1);
    transform: translateY(-3px);
}

.footer-col-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul a {
    color: var(--text-light-2);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--text-light-2);
    font-size: 0.9rem;
}

.contact-info i {
    margin-top: 4px;
    color: var(--primary-color);
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light-2);
}


/* 18. Live Chat Bubble
-------------------------------------------------- */
.live-chat-bubble {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    color: var(--bg-dark-1);
    cursor: pointer;
    z-index: 998;
    box-shadow: 0 5px 20px var(--shadow-color);
    animation: pulse 2s infinite;
}


/* 19. Scrollbar Styles
-------------------------------------------------- */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark-1);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-dark-2);
    border: 1px solid var(--border-color);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color-dark);
}


/* 20. Responsive Design
-------------------------------------------------- */

/* 20.1 Large Desktops */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

/* 20.2 Tablets */
@media (max-width: 992px) {
    .nav-list {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        grid-row: 1;
        margin-bottom: 40px;
    }

    .report-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "kpi1 kpi2"
            "kpi3 kpi4"
            "chart chart"
            "summary summary";
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-info-panel {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }
}

/* 20.3 Mobile Devices */
@media (max-width: 768px) {
    section {
        padding: 80px 0;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .stats-grid {
        flex-wrap: wrap;
        justify-content: center;
    }

    .report-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "kpi1"
            "kpi2"
            "kpi3"
            "kpi4"
            "chart"
            "summary";
    }

    .report-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .contact-form .form-row {
        flex-direction: column;
        gap: 20px;
    }
}

/* 20.4 Small Mobile Devices */
@media (max-width: 480px) {
    .header .btn {
        display: none;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-about .social-links,
    .footer-col ul {
        justify-content: center;
    }

    .contact-info li {
        justify-content: center;
    }
}