/*
---
Theme: HYPERLUME
Colors:
  - Abyss: #0A0A0A
  - Neon Teal: #00EFFF
  - White Beam: #FFFFFF
  - Subtle Gray: #cccccc
  - Lighter Abyss: #1a1a1a
  - Gradient Glow: radial-gradient(circle, rgba(0, 239, 255, 0.15) 0%, rgba(0, 239, 255, 0) 60%)
---
*/

/* ===== VARIABLES & GLOBAL STYLES ===== */
:root {
    --abyss: #0A0A0A;
    --neon-teal: #00EFFF;
    --white-beam: #FFFFFF;
    --light-gray: #f0f0f0;
    --subtle-gray: #cccccc;
    --lighter-abyss: #141414;
    --border-color: rgba(0, 239, 255, 0.2);
    --shadow-color: rgba(0, 239, 255, 0.25);
    --font-family: 'Poppins', sans-serif;
    --transition-fast: 0.3s ease;
    --transition-slow: 0.5s ease;
    --header-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    background-color: var(--abyss);
    color: var(--subtle-gray);
    line-height: 1.7;
    overflow-x: hidden;
    cursor: none;
    /* Hide default cursor */
}

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    width: 25px;
    height: 25px;
    border: 2px solid var(--neon-teal);
    border-radius: 50%;
    left: 0;
    top: 0;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.custom-cursor.hover {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 239, 255, 0.2);
}

.custom-cursor.click {
    animation: cursorClick 0.3s forwards;
}

@keyframes cursorClick {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.4);
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

/* Hide custom cursor on mobile */
@media (max-width: 768px) {
    body {
        cursor: auto;
    }

    .custom-cursor {
        display: none;
    }
}


h1,
h2,
h3,
h4 {
    color: var(--white-beam);
    line-height: 1.2;
    font-weight: 600;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

a {
    color: var(--neon-teal);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--white-beam);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--neon-teal);
    box-shadow: 0 0 10px var(--neon-teal);
}

.section-description {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--subtle-gray);
}

.text-center {
    text-align: center;
}

/* Background effects */
.site-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: -2;
    opacity: 0.5;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
    cursor: none;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn span {
    z-index: 2;
}

.btn i {
    z-index: 2;
    transition: transform var(--transition-fast);
}

.btn:hover i {
    transform: translateX(5px);
}

.btn-primary {
    background-color: var(--neon-teal);
    color: var(--abyss);
    border-color: var(--neon-teal);
    box-shadow: 0 0 15px var(--shadow-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--neon-teal);
    box-shadow: 0 0 25px var(--shadow-color);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white-beam);
    border-color: var(--neon-teal);
}

.btn-secondary:hover {
    background-color: var(--neon-teal);
    color: var(--abyss);
    box-shadow: 0 0 15px var(--shadow-color);
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    height: var(--header-height);
    transition: background-color var(--transition-fast), box-shadow var(--transition-fast);
}

.header.scrolled {
    background-color: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px;
    filter: invert(1);
    transition: transform var(--transition-fast);
}

.logo:hover {
    transform: scale(1.1);
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--white-beam);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--neon-teal);
    transition: width var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    width: 30px;
    height: 22px;
    position: relative;
    z-index: 1001;
    cursor: none;
}

.bar {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--white-beam);
    transition: all 0.3s ease;
}

.bar-top {
    top: 0;
}

.bar-middle {
    top: 50%;
    transform: translateY(-50%);
}

.bar-bottom {
    bottom: 0;
}

.mobile-nav-open .bar-top {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.mobile-nav-open .bar-middle {
    opacity: 0;
}

.mobile-nav-open .bar-bottom {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* ===== MOBILE NAVIGATION ===== */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(15px);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: right var(--transition-slow);
}

.mobile-nav.open {
    right: 0;
}

.mobile-nav ul {
    text-align: center;
}

.mobile-nav li {
    margin: 30px 0;
}

.mobile-nav a {
    color: var(--white-beam);
    font-size: 1.5rem;
    font-weight: 500;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: var(--header-height);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(0, 239, 255, 0.5);
}

.hero .section-description {
    font-size: 1.25rem;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Hero Light Beams */
.hero-beams {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.beam {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 5px;
    background: linear-gradient(90deg, transparent, rgba(0, 239, 255, 0.5), transparent);
    animation: sweep 10s linear infinite;
}

.beam:nth-child(2) {
    animation-delay: -3.33s;
    animation-duration: 12s;
}

.beam:nth-child(3) {
    animation-delay: -6.66s;
    animation-duration: 8s;
}

@keyframes sweep {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Particle Background */
#particle-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.particle {
    position: absolute;
    background-color: var(--neon-teal);
    border-radius: 50%;
    opacity: 0;
    animation: particle-anim 5s linear infinite;
}

@keyframes particle-anim {
    0% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateY(-100vh) scale(0.5);
        opacity: 0;
    }
}

/* ===== SERVICES SECTION ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--lighter-abyss);
    padding: 2px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    perspective: 1000px;
    transition: transform var(--transition-slow);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), var(--neon-teal), transparent 40%);
    opacity: 0;
    transition: opacity var(--transition-slow);
    z-index: -1;
}

.service-card:hover::before {
    opacity: 0.1;
}

.service-card-inner {
    background-color: var(--lighter-abyss);
    padding: 30px;
    border-radius: 13px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid var(--border-color);
    transform-style: preserve-3d;
    transition: transform var(--transition-fast);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--neon-teal);
    margin-bottom: 20px;
    width: 80px;
    height: 80px;
    display: grid;
    place-items: center;
    background: radial-gradient(circle, rgba(0, 239, 255, 0.1) 0%, rgba(0, 239, 255, 0) 60%);
    border-radius: 50%;
    transition: transform var(--transition-fast);
}

.service-card:hover .service-icon {
    transform: scale(1.1) translateZ(30px);
}

.service-card h3 {
    margin-bottom: 15px;
    transition: color var(--transition-fast);
}

.service-card:hover h3 {
    color: var(--neon-teal);
}

.service-card p {
    flex-grow: 1;
    margin-bottom: 20px;
}

.learn-more-link {
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.learn-more-link i {
    transition: transform var(--transition-fast);
}

.learn-more-link:hover i {
    transform: translateX(5px);
}

/* ===== ABOUT SECTION ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.features-list {
    margin-top: 30px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 25px;
}

.feature-icon {
    font-size: 1.5rem;
    color: var(--neon-teal);
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border: 1px solid var(--border-color);
    border-radius: 50%;
}

.feature-item h4 {
    margin-bottom: 5px;
}

.about-image-wrapper {
    perspective: 1500px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.cube-container {
    width: 200px;
    height: 200px;
    position: relative;
}

.cube {
    width: 100%;
    height: 100%;
    position: absolute;
    transform-style: preserve-3d;
    animation: rotate-cube 20s infinite linear;
}

.face {
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(0, 239, 255, 0.1);
    border: 1px solid var(--neon-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--neon-teal);
    opacity: 0.8;
}

.front {
    transform: rotateY(0deg) translateZ(100px);
}

.back {
    transform: rotateY(180deg) translateZ(100px);
}

.right {
    transform: rotateY(90deg) translateZ(100px);
}

.left {
    transform: rotateY(-90deg) translateZ(100px);
}

.top {
    transform: rotateX(90deg) translateZ(100px);
}

.bottom {
    transform: rotateX(-90deg) translateZ(100px);
}

@keyframes rotate-cube {
    0% {
        transform: rotateX(0) rotateY(0);
    }

    100% {
        transform: rotateX(360deg) rotateY(360deg);
    }
}

/* ===== PROCESS SECTION ===== */
.process-section {
    background-color: var(--lighter-abyss);
}

.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.process-timeline::after {
    content: '';
    position: absolute;
    width: 3px;
    background-color: var(--border-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1.5px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--abyss);
    border: 3px solid var(--neon-teal);
    border-radius: 50%;
    z-index: 1;
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    color: var(--neon-teal);
    box-shadow: 0 0 15px var(--shadow-color);
}

.timeline-item:nth-child(even) .timeline-icon {
    left: -25px;
}

.timeline-content {
    padding: 20px 30px;
    background-color: var(--abyss);
    position: relative;
    border-radius: 6px;
    border: 1px solid var(--border-color);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 25px;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 25px;
}

.timeline-content h3 {
    margin-bottom: 10px;
    color: var(--neon-teal);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonial-slider-wrapper {
    position: relative;
    max-width: 800px;
    margin: auto;
    overflow: hidden;
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 40px;
    background: var(--lighter-abyss);
}

.testimonial-slider {
    display: flex;
    transition: transform var(--transition-slow);
}

.testimonial-slide {
    min-width: 100%;
    box-sizing: border-box;
    text-align: center;
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--neon-teal);
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 30px;
}

.testimonial-author h4 {
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--neon-teal);
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: calc(100% - 40px);
    left: 20px;
    display: flex;
    justify-content: space-between;
}

.slider-controls button {
    background: rgba(0, 239, 255, 0.1);
    border: 1px solid var(--border-color);
    color: var(--white-beam);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1rem;
    transition: all var(--transition-fast);
    cursor: none;
}

.slider-controls button:hover {
    background: var(--neon-teal);
    color: var(--abyss);
}

/* ===== INTERACTIVE CTA SECTION ===== */
.interactive-cta {
    background-image: linear-gradient(rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 0.8)), url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.interactive-cta .section-title,
.interactive-cta .section-description {
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

/* Sample Report Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--lighter-abyss);
    margin: auto;
    padding: 30px;
    border: 1px solid var(--border-color);
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    position: relative;
    box-shadow: 0 0 50px var(--shadow-color);
    animation: modal-fade-in 0.5s ease;
}

@keyframes modal-fade-in {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.close-modal-btn {
    color: var(--subtle-gray);
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 28px;
    font-weight: bold;
    cursor: none;
}

.close-modal-btn:hover,
.close-modal-btn:focus {
    color: var(--white-beam);
}

.modal-content h3 {
    margin-bottom: 15px;
}

.modal-content p {
    margin-bottom: 20px;
}

.report-image {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.report-image img {
    width: 100%;
    display: block;
}


/* ===== FOOTER ===== */
.footer {
    background-color: var(--lighter-abyss);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer-shapes .footer-shape {
    position: absolute;
    background-color: var(--neon-teal);
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.1;
}

.footer-shape.shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
}

.footer-shape.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    right: -50px;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 50px;
    filter: invert(1);
    margin-bottom: 20px;
}

.footer-about-text {
    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(--white-beam);
    font-size: 1.1rem;
}

.social-link:hover {
    background-color: var(--neon-teal);
    color: var(--abyss);
    border-color: var(--neon-teal);
}

.footer-col-title {
    margin-bottom: 25px;
    font-size: 1.25rem;
    position: relative;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background-color: var(--neon-teal);
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: var(--subtle-gray);
}

.footer-links ul li a:hover {
    color: var(--neon-teal);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-info i {
    color: var(--neon-teal);
    margin-top: 5px;
}

.contact-info a {
    color: var(--subtle-gray);
}

.contact-info a:hover {
    color: var(--neon-teal);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    text-align: center;
}

/* ===== LIVE CHAT WIDGET ===== */
.live-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 998;
}

.chat-icon {
    width: 60px;
    height: 60px;
    background-color: var(--neon-teal);
    color: var(--abyss);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.8rem;
    cursor: none;
    box-shadow: 0 0 20px var(--shadow-color);
    transition: transform var(--transition-fast);
}

.chat-icon:hover {
    transform: scale(1.1);
}

.chat-box {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 320px;
    background-color: var(--lighter-abyss);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    visibility: hidden;
    transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
}

.chat-box.open {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.chat-header {
    background-color: var(--abyss);
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.chat-header h3 {
    font-size: 1.1rem;
    margin: 0;
}

.close-chat {
    background: none;
    border: none;
    color: var(--white-beam);
    font-size: 1.5rem;
    cursor: none;
}

.chat-body {
    padding: 20px;
    text-align: center;
}

.chat-body p {
    margin-bottom: 20px;
}

.chat-body .btn {
    width: 100%;
}


/* ===== SUBPAGES (Contact, Legal) ===== */
.page-header {
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to top, var(--abyss) 0%, transparent 100%);
}

.hologram-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 239, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 239, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-scroll 10s linear infinite;
    z-index: -1;
}

@keyframes grid-scroll {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 50px 50px;
    }
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.breadcrumbs a {
    color: var(--subtle-gray);
}

.breadcrumbs a:hover {
    color: var(--neon-teal);
}

.breadcrumbs span {
    color: var(--white-beam);
}

/* CONTACT PAGE */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    background: var(--lighter-abyss);
    padding: 50px;
    border: 1px solid var(--border-color);
    border-radius: 15px;
}

.contact-info-panel h2 {
    margin-bottom: 15px;
}

.contact-info-panel p {
    margin-bottom: 30px;
}

.contact-methods .contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.method-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    color: var(--neon-teal);
    border: 1px solid var(--border-color);
    border-radius: 50%;
}

.method-details h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.method-details p,
.method-details a {
    color: var(--subtle-gray);
    font-size: 1rem;
}

.method-details a:hover {
    color: var(--neon-teal);
}

.contact-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    margin-bottom: 20px;
}

.contact-form label {
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--subtle-gray);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px 15px;
    background-color: var(--abyss);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--white-beam);
    font-family: var(--font-family);
    font-size: 1rem;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--neon-teal);
    box-shadow: 0 0 10px var(--shadow-color);
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    width: 100%;
}

/* POPUP */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-fast), visibility var(--transition-fast);
}

.popup:target {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: var(--lighter-abyss);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    border: 1px solid var(--border-color);
    box-shadow: 0 0 30px var(--shadow-color);
    width: 90%;
    max-width: 450px;
    transform: scale(0.9);
    transition: transform var(--transition-fast);
}

.popup:target .popup-content {
    transform: scale(1);
}

.popup .fa-check-circle {
    font-size: 4rem;
    color: var(--neon-teal);
    margin-bottom: 20px;
}

.popup h3 {
    margin-bottom: 15px;
}

.popup p {
    margin-bottom: 30px;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    color: var(--subtle-gray);
}

.popup-close:hover {
    color: var(--white-beam);
}

/* LEGAL PAGES */
.legal-page .page-content {
    padding: 80px 0;
}

.content-wrapper {
    background: var(--lighter-abyss);
    padding: 40px;
    border: 1px solid var(--border-color);
    border-radius: 15px;
}

.content-wrapper h2 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.8rem;
    color: var(--neon-teal);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.content-wrapper p,
.content-wrapper li {
    margin-bottom: 15px;
}

.content-wrapper ul {
    list-style: disc;
    padding-left: 20px;
}

/* ===== ANIMATIONS ===== */
.animate-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in.fade-in-left {
    transform: translateX(-30px);
}

.animate-in.fade-in-right {
    transform: translateX(30px);
}

.animate-in.is-visible {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 992px) {
    h1 {
        font-size: 2.8rem;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .nav {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-content {
        order: 2;
    }

    .about-image-wrapper {
        order: 1;
        margin-bottom: 40px;
    }

    .features-list {
        text-align: left;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 80px 0;
    }

    h1 {
        font-size: 2.2rem;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero .section-description {
        font-size: 1.1rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .process-timeline::after {
        left: 25px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item:nth-child(even) {
        left: 0;
    }

    .timeline-icon {
        left: 0;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        text-align: left;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 25px;
        margin-right: 0;
    }

    .contact-form .form-row {
        flex-direction: column;
        gap: 0;
        margin-bottom: 0;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .contact-wrapper {
        padding: 30px;
    }

    .footer-top {
        text-align: center;
    }

    .footer-col-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }

    .contact-info li {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .header .container {
        padding: 0 15px;
    }

    .header-cta {
        display: none;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .slider-controls {
        position: static;
        transform: none;
        width: auto;
        margin-top: 20px;
        justify-content: center;
        gap: 20px;
    }

    .testimonial-slider-wrapper {
        padding: 30px 20px;
    }
}