/*
================================================
TABLE OF CONTENTS
================================================
1.  CSS Variables & Root Styles
2.  Base & Reset Styles
3.  Global Components & Utilities
    - Container, Buttons, Section Headers
4.  Animations & Keyframes
    - Thermal Wipe, Heat Halo, Fade In, etc.
5.  Header & Navigation
6.  Footer
7.  Hero Section
8.  Services Section
9.  Process Section (Cool Down)
10. Interactive Report Section
11. Testimonials Section
12. CTA Section
13. Legal & Contact Pages
    - Page Header
    - Content Styles
    - Contact Form
    - Popup
14. Special Effects
    - Cursor Glow
    - Noise Overlay
15. Responsive Design
    - Tablets
    - Mobiles
================================================
*/

/* 1. CSS Variables & Root Styles
------------------------------------------------*/
:root {
    --color-background: #0D0221;
    --color-surface: #1a0a38;
    --color-primary: #FF0054;
    /* Hot Pink */
    --color-secondary: #FF8C00;
    /* Hot Orange */
    --color-tertiary: #F9F871;
    /* Hot Yellow */
    --color-cool-dark: #2d1b69;
    --color-cool-light: #A696FF;
    --color-text-primary: #F0F0F0;
    --color-text-secondary: #c0b8d8;
    --color-border: rgba(166, 150, 255, 0.2);
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Orbitron', sans-serif;
    --header-height: 80px;
    --transition-fast: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-glow: 0 0 15px rgba(255, 0, 84, 0.5), 0 0 30px rgba(255, 0, 84, 0.3);
    --shadow-cool: 0 0 15px rgba(166, 150, 255, 0.3);
}

/* 2. Base & Reset Styles
------------------------------------------------*/
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--color-background);
    color: var(--color-text-primary);
    font-family: var(--font-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-secondary);
    color: var(--color-text-primary);
    line-height: 1.2;
    font-weight: 700;
}

h1 {
    font-size: 4rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.2rem;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-tertiary);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 3. Global Components & Utilities
------------------------------------------------*/
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-family: var(--font-secondary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: linear-gradient(45deg, var(--color-secondary), var(--color-tertiary));
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
    z-index: -1;
}

.btn:hover::before {
    width: 250%;
    height: 250%;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-text-primary);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    color: var(--color-background);
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(255, 0, 84, 0.8), 0 0 40px rgba(255, 0, 84, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--color-text-primary);
    border-color: var(--color-primary);
}

.btn-secondary:hover {
    color: var(--color-background);
}


.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title span {
    position: relative;
    z-index: 1;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-secondary), var(--color-primary));
    border-radius: 2px;
}

.section-title.cool-title::after {
    background: linear-gradient(90deg, var(--color-cool-dark), var(--color-cool-light));
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* 4. Animations & Keyframes
------------------------------------------------*/
.animate-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--transition-slow), transform 0.8s var(--transition-slow);
}

.animate-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes thermal-wipe-anim {
    from {
        clip-path: inset(0 100% 0 0);
    }

    to {
        clip-path: inset(0 0 0 0);
    }
}

.animate-in[data-animation="thermal-wipe"].is-visible {
    opacity: 1;
    transform: translateY(0);
    animation: thermal-wipe-anim 1s cubic-bezier(0.7, 0, 0.3, 1) forwards;
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in[data-animation="fade-in-up"].is-visible {
    animation: fade-in-up 0.8s var(--transition-slow) forwards;
}

@keyframes fade-in-left {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-in[data-animation="fade-in-left"].is-visible {
    animation: fade-in-left 0.8s var(--transition-slow) forwards;
}

@keyframes fade-in-right {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-in[data-animation="fade-in-right"].is-visible {
    animation: fade-in-right 0.8s var(--transition-slow) forwards;
}

@keyframes zoom-in {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-in[data-animation="zoom-in"].is-visible {
    animation: zoom-in 0.8s var(--transition-slow) forwards;
}

@keyframes noise {
    0% {
        transform: translate(0, 0);
    }

    10% {
        transform: translate(-5%, -10%);
    }

    20% {
        transform: translate(-15%, 5%);
    }

    30% {
        transform: translate(7%, -25%);
    }

    40% {
        transform: translate(-5%, 25%);
    }

    50% {
        transform: translate(-15%, 10%);
    }

    60% {
        transform: translate(15%, 0%);
    }

    70% {
        transform: translate(0%, 15%);
    }

    80% {
        transform: translate(3%, 35%);
    }

    90% {
        transform: translate(-10%, 10%);
    }

    100% {
        transform: translate(0, 0);
    }
}

@keyframes shape-float-1 {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-30px) rotate(20deg);
    }
}

@keyframes shape-float-2 {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(25px) rotate(-15deg);
    }
}

@keyframes shape-float-3 {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}


/* 5. Header & Navigation
------------------------------------------------*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(13, 2, 33, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all var(--transition-fast);
}

.header.scrolled {
    height: calc(var(--header-height) - 10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 80px;
    transition: transform var(--transition-fast);
}

.logo:hover .logo-img {
    transform: rotate(360deg);
}

.logo-text {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--color-text-primary);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-family: var(--font-secondary);
    font-weight: 700;
    color: var(--color-text-secondary);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-secondary), var(--color-primary));
    transition: width var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-text-primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-toggle,
.nav-close {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--color-text-primary);
    font-size: 1.5rem;
}

/* 6. Footer
------------------------------------------------*/
.footer {
    background: linear-gradient(rgba(13, 2, 33, 0.5), rgba(13, 2, 33, 1)), url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"%3E%3Cg fill-rule="evenodd"%3E%3Cg fill="%232d1b69" fill-opacity="0.1"%3E%3Cpath opacity=".5" d="M96 95h4v1h-4v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9zm-1 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm-90-10v-9h-9v9h9zm10 0v-9h-9v9h9zm10 0v-9h-9v9h9zm10 0v-9h-9v9h9zm10 0v-9h-9v9h9zm10 0v-9h-9v9h9zm10 0v-9h-9v9h9zm10 0v-9h-9v9h9zm10 0v-9h-9v9h9zm-90-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm-90-10v-9h-9v9h9zm10 0v-9h-9v9h9zm10 0v-9h-9v9h9zm10 0v-9h-9v9h9zm10 0v-9h-9v9h9zm10 0v-9h-9v9h9zm10 0v-9h-9v9h9zm10 0v-9h-9v9h9zm10 0v-9h-9v9h9zm-90-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm-90-10v-9h-9v9h9zm10 0v-9h-9v9h9zm10 0v-9h-9v9h9zm10 0v-9h-9v9h9zm10 0v-9h-9v9h9zm10 0v-9h-9v9h9zm10 0v-9h-9v9h9zm10 0v-9h-9v9h9zm10 0v-9h-9v9h9zm-90-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm-90-10v-9h-9v9h9zm10 0v-9h-9v9h9zm10 0v-9h-9v9h9zm10 0v-9h-9v9h9zm10 0v-9h-9v9h9zm10 0v-9h-9v9h9zm10 0v-9h-9v9h9zm10 0v-9h-9v9h9zm10 0v-9h-9v9h9z"/%3E%3Cpath d="M6 5V0h1v5h4V0h1v5h4V0h1v5h4V0h1v5h4V0h1v5h4V0h1v5h4V0h1v5h4V0h1v5h4V0h1v5h4V0h1v5h4V0h1v5h4V0h1v5h4V0h1v5h5v1h-5v4h5v1h-5v4h5v1h-5v4h5v1h-5v4h5v1h-5v4h5v1h-5v4h5v1h-5v4h5v1h-5v4h5v1h-5v4h5v1h-5v4h5v1h-5v4h5v1h-5v4h5v1h-5v4h5v1h-4v5h-1v-5h-4v5h-1v-5h-4v5h-1v-5h-4v5h-1v-5h-4v5h-1v-5h-4v5h-1v-5h-4v5h-1v-5h-4v5h-1v-5h-4v5h-1v-5h-4v5h-1v-5h-4v5h-1v-5h-4v5h-1v-5h-4v5H0v-1h5v-4H0v-1h5v-4H0v-1h5v-4H0v-1h5v-4H0v-1h5v-4H0v-1h5v-4H0v-1h5v-4H0v-1h5v-4H0v-1h5v-4H0v-1h5v-4H0v-1h5v-4H0V5h6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
    padding: 80px 0 0;
    border-top: 2px solid var(--color-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    padding-bottom: 40px;
}

.footer-col-title {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-cool-light), var(--color-cool-dark));
}

.footer-about-text {
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    background: var(--color-surface);
    color: var(--color-cool-light);
    border-radius: 50%;
    border: 1px solid var(--color-border);
    transition: var(--transition-fast);
}

.social-links a:hover {
    background: var(--color-cool-light);
    color: var(--color-background);
    transform: translateY(-3px);
    box-shadow: var(--shadow-cool);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--color-text-secondary);
    position: relative;
}

.footer-links ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-cool-light);
    transition: width var(--transition-fast);
}

.footer-links ul li a:hover::after {
    width: 100%;
}

.footer-links ul li a:hover {
    color: var(--color-text-primary);
}


.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--color-text-secondary);
}

.footer-contact ul li i {
    color: var(--color-cool-light);
    margin-top: 5px;
}

.footer-contact ul li a {
    color: var(--color-text-secondary);
}

.footer-contact ul li a:hover {
    color: var(--color-text-primary);
}


.footer-bottom {
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid var(--color-border);
    color: var(--color-text-secondary);
}

/* 7. Hero Section
------------------------------------------------*/
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: var(--header-height);
    position: relative;
    overflow: hidden;
}

.hero-background-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(80px);
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--color-primary);
    top: 10%;
    left: 10%;
    animation: shape-float-1 15s infinite ease-in-out;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--color-secondary);
    bottom: 15%;
    right: 5%;
    animation: shape-float-2 12s infinite ease-in-out;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: var(--color-cool-light);
    bottom: 50%;
    right: 40%;
    animation: shape-float-3 18s infinite ease-in-out;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.hero-title span {
    display: block;
}

.hero-title span:first-child {
    color: var(--color-text-secondary);
    font-weight: 700;
}

.hero-title span:last-child {
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), var(--color-tertiary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}


.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}


/* 8. Services Section
------------------------------------------------*/
.services-section {
    background: var(--color-surface);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--color-background);
    padding: 40px 30px;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    text-align: center;
    transition: all var(--transition-slow);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent,
            rgba(255, 0, 84, 0.3),
            transparent 30%);
    animation: rotate 6s linear infinite;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

@keyframes rotate {
    100% {
        transform: rotate(1turn);
    }
}


.service-card:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(-5deg) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--color-primary);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    color: var(--color-primary);
    transition: color var(--transition-fast);
}

.service-card:hover .service-card-icon {
    color: var(--color-tertiary);
}

.service-card-title {
    margin-bottom: 1rem;
}

.service-card-desc {
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
}

.service-card-link {
    font-family: var(--font-secondary);
    font-weight: 700;
    color: var(--color-cool-light);
}

.service-card-link i {
    transition: transform var(--transition-fast);
    margin-left: 5px;
}

.service-card:hover .service-card-link i {
    transform: translateX(5px);
}

/* 9. Process Section (Cool Down)
------------------------------------------------*/
.process-section {
    background-color: var(--color-background);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--color-cool-dark) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.2;
    z-index: 0;
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background: linear-gradient(to bottom, var(--color-cool-dark), var(--color-cool-light), var(--color-cool-dark));
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    border-radius: 2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: var(--color-cool-light);
    border: 4px solid var(--color-cool-dark);
    top: 25px;
    border-radius: 50%;
    z-index: 1;
    box-shadow: var(--shadow-cool);
}

.timeline-item:nth-child(even)::after {
    left: -10px;
}

.timeline-content {
    padding: 20px 30px;
    background-color: var(--color-surface);
    position: relative;
    border-radius: 6px;
    border: 1px solid var(--color-border);
}

.timeline-item:nth-child(odd) .timeline-content {
    text-align: right;
}

.timeline-step {
    font-family: var(--font-secondary);
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-cool-light);
    opacity: 0.3;
}

.timeline-title {
    color: var(--color-text-primary);
    margin-top: 5px;
}

/* 10. Interactive Report Section
------------------------------------------------*/
.report-section {
    background: var(--color-surface);
}

.report-dashboard {
    background: var(--color-background);
    border-radius: 15px;
    border: 1px solid var(--color-border);
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.report-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
}

.report-header h3 {
    font-size: 1.3rem;
}

.report-tabs {
    display: flex;
    gap: 10px;
    background: var(--color-background);
    padding: 5px;
    border-radius: 50px;
}

.report-tab-btn {
    padding: 8px 20px;
    border-radius: 50px;
    border: none;
    background: transparent;
    color: var(--color-text-secondary);
    font-family: var(--font-secondary);
    cursor: pointer;
    transition: var(--transition-fast);
}

.report-tab-btn.active {
    background: var(--color-primary);
    color: var(--color-text-primary);
    box-shadow: var(--shadow-glow);
}

.report-content {
    padding: 30px;
}

.report-pane {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.report-pane.active {
    display: grid;
}

.stat-card {
    background: var(--color-surface);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid var(--color-border);
}

.stat-card h4 {
    font-size: 1rem;
    color: var(--color-text-secondary);
    margin-bottom: 10px;
}

.stat-value {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-text-primary);
    margin-bottom: 5px;
}

.stat-change {
    font-weight: 700;
}

.stat-change.positive {
    color: #4CAF50;
}

.stat-change.negative {
    color: #F44336;
}

/* 11. Testimonials Section
------------------------------------------------*/
.testimonial-slider-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
    min-width: 100%;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
}

.testimonial-content {
    background: var(--color-surface);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid var(--color-border);
    margin-bottom: 20px;
    position: relative;
}

.testimonial-content::before {
    content: '\f10d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 3rem;
    color: var(--color-primary);
    opacity: 0.1;
    position: absolute;
    top: 10px;
    left: 20px;
}

.testimonial-content p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--color-text-secondary);
}

.testimonial-author {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.author-info h4 {
    color: var(--color-text-primary);
}

.author-info span {
    color: var(--color-cool-light);
    font-size: 0.9rem;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 20px;
}

.slider-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--color-border);
    background: var(--color-surface);
    color: var(--color-text-primary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-btn:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-glow);
}

/* 12. CTA Section
------------------------------------------------*/
.cta-section {
    padding: 80px 0;
    background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
}

.cta-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--color-background);
}

.cta-text {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    color: rgba(13, 2, 33, 0.8);
}

.cta-section .btn-primary {
    background: var(--color-background);
    color: var(--color-primary);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.cta-section .btn-primary:hover {
    background: var(--color-background);
    color: var(--color-primary);
    transform: translateY(-5px) scale(1.05);
}

/* 13. Legal & Contact Pages
------------------------------------------------*/
.page-header-section {
    padding: 150px 0 80px;
    position: relative;
    overflow: hidden;
    background: var(--color-surface);
}

.page-header-section .shape {
    filter: blur(100px);
}

.page-header-desc {
    font-size: 1.2rem;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 1rem auto 0;
}

.breadcrumbs {
    margin-top: 1rem;
    color: var(--color-text-secondary);
}

.breadcrumbs a {
    color: var(--color-cool-light);
}

.breadcrumbs i {
    margin: 0 10px;
    font-size: 0.8rem;
}

.legal-content,
.contact-page-section {
    background-color: var(--color-background);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    margin: 2.5rem 0 1rem;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-border);
}

.legal-content p,
.legal-content li {
    color: var(--color-text-secondary);
    margin-bottom: 1rem;
}

.legal-content strong {
    color: var(--color-text-primary);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    background: var(--color-surface);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid var(--color-border);
}

.contact-info-panel h3 {
    margin-bottom: 1rem;
}

.contact-info-panel p {
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-details-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-details-list i {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-top: 5px;
}

.contact-details-list h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-details-list p,
.contact-details-list a {
    color: var(--color-text-secondary);
}

.contact-form .form-row {
    display: flex;
    gap: 1.5rem;
}

.contact-form .form-group {
    flex: 1;
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    background: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: 5px;
    color: var(--color-text-primary);
    font-family: var(--font-primary);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 10px rgba(255, 0, 84, 0.3);
}

.btn-full {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

/* Popup */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 2, 33, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.popup.show {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: var(--color-surface);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    max-width: 450px;
    width: 90%;
    border: 1px solid var(--color-border);
    transform: scale(0.9);
    transition: transform 0.3s;
}

.popup.show .popup-content {
    transform: scale(1);
}

.popup-icon i {
    font-size: 4rem;
    color: #4CAF50;
    margin-bottom: 1rem;
}

.popup-content h3 {
    margin-bottom: 0.5rem;
}

.popup-content p {
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
}

/* 14. Special Effects
------------------------------------------------*/
.cursor-glow {
    position: fixed;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 0, 84, 0.08) 0%, rgba(255, 0, 84, 0) 60%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 999;
    transition: transform 0.1s ease-out;
}

.thermal-noise-overlay {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAMAAAAp4XiDAAAAUVBMVEWFhYWDg4N3d3dtbW17e3t1dXWBgYGHh4d5eXlzc3OLi4ubm5uVlZWPj4+NjY19fX2JiYl/f39ra2uRkZGZmZlpaWmXl5dvb29xcXGTk5NnZ2c8TV1mAAAAG3RSTlNAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEAvEOwtAAAFVklEQVR4XpWWB67c2BUFb3g557T/hRo9/WUMZHlgr4Bg8Z4qQgQJlHI4A8SzFVrapvmTF9O7dmYRFZ60YiBhJRCgh1FYhiLAmdvX0Cz2EyrZVifwn0Pkf9mckkzJECIFNSLG1sRTWls5tjyb4pbZUgu diureticssQZ6RBJoJY2J5NDoeBjalHy0sfFVuWqrM9SIDeEM3cVNGSoSrxOKglK3EBQwTr94MH8AaM7FelrSr5MlLNbmsKwHe4PrkHjOLaNNIiT9NDtfCbrwsB7G47i39AbDRXAJC/8JdMr4AUo59xNRE4upHh4+gUIA1pLInMmg2A+uT+S4DR1vAbClNA10C1B0lD2+rY2sW2GH3vSBUqcE/bXAZC/H3fLLe3fAlU3ZUEP9G+OM2Gvsdif3huvGO98yJq2xO+TjVDPmbxENc2bmO7rHPAe2oJckTlevWpHu4uBvDBQ3DuhGDquY7wRdsB5sGASBg2WB3m2a2pMoGfIVoK5gvCmrAU3YxAiB3sn4cxOTk6d4g3H මි વેן实力 ");
 opacity: 0.05;
            z-index: 1001;
            pointer-events: none;
            animation: noise 0.2s infinite;
    }

    /* 15. Responsive Design
------------------------------------------------*/
    @media (max-width: 1024px) {
        h1 {
            font-size: 3.5rem;
        }

        h2 {
            font-size: 2.2rem;
        }

        .section-padding {
            padding: 80px 0;
        }

        .contact-wrapper {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 768px) {
        html {
            font-size: 15px;
        }

        h1 {
            font-size: 2.8rem;
        }

        h2 {
            font-size: 2rem;
        }

        .nav-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 70%;
            height: 100vh;
            background: var(--color-surface);
            flex-direction: column;
            justify-content: center;
            padding: 2rem;
            transition: right var(--transition-slow);
            box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
        }

        .nav-menu.show {
            right: 0;
        }

        .nav-list {
            flex-direction: column;
            gap: 2.5rem;
        }

        .nav-link {
            font-size: 1.2rem;
        }

        .nav-close {
            display: block;
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            font-size: 2rem;
        }

        .nav-toggle {
            display: block;
        }

        .header-actions .btn {
            display: none;
        }

        .hero-cta {
            flex-direction: column; align-items: center;
        }

        .report-header {
            flex-direction: column; gap: 1rem;
        }

        .contact-form .form-row {
            flex-direction: column; gap: 0;
        }

        .process-timeline::after {
            left: 30px;
        }

        .timeline-item {
            width: 100%; padding-left: 70px; padding-right: 25px;
        }

        .timeline-item:nth-child(even) {
            left: 0;
        }

        .timeline-item:nth-child(odd) .timeline-content,
        .timeline-item:nth-child(even) .timeline-content {
            text-align: left;
        }

        .timeline-item::after {
            left: 20px;
        }
    }

    @media (max-width: 480px) {
        .container {
            padding: 0 1rem;
        }

        .report-pane {
            grid-template-columns: 1fr;
        }

        .footer-grid {
            grid-template-columns: 1fr; text-align: center;
        }

        .footer-col-title::after {
            left: 50%; transform: translateX(-50%);
        }

        .social-links {
            justify-content: center;
        }

        .footer-contact ul li {
            justify-content: center;
        }

        .header .logo-text {
            display: none;
        }
    }