/* HOLO JELLY SYSTEM (REFINED) - styles.css */

/* 1. VARIABLES & GLOBAL STYLES
-------------------------------------------------- */
:root {
    --bg-color: #0c0b1e;
    /* Slightly darker background */
    --primary-color: #a162f7;
    /* More magenta-like purple from image */
    --secondary-color: #c86bfe;
    --accent-color: #00f5d4;
    --text-color: #e0e0e0;
    --text-muted: #a0a0c0;
    --panel-bg: rgba(28, 27, 51, 0.4);
    /* Darker, more transparent panel */
    --border-color: rgba(161, 98, 247, 0.2);
    /* Subtle purple border */
    --glow-color-1: #a162f7;
    --glow-color-2: #c86bfe;
    --glow-color-3: #00f5d4;

    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-primary);
    line-height: 1.7;
    overflow-x: hidden;
    cursor: none;
}

body.no-scroll {
    overflow: hidden;
}

/* Custom Scrollbar */
body::-webkit-scrollbar {
    width: 8px;
}

body::-webkit-scrollbar-track {
    background: var(--bg-color);
}

body::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

body::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Reusable Components */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5em;
    color: #fff;
}

h1 {
    font-size: 4rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #fff;
}

ul {
    list-style-type: none;
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-secondary);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 20px rgba(106, 90, 205, 0.4);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.section-header {
    margin-bottom: 4rem;
}

.section-header .subtitle {
    display: block;
    font-size: 1rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.text-center {
    text-align: center;
}

/* 2. THEME ELEMENTS
-------------------------------------------------- */
/* Custom Cursor */
.cursor-dot,
.cursor-outline {
    pointer-events: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    opacity: 1;
    transition: opacity 0.3s ease-in-out, transform 0.2s ease-in-out;
    z-index: 9999;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 245, 212, 0.2);
    border: 2px solid var(--accent-color);
    transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.cursor-outline.hover {
    width: 60px;
    height: 60px;
    background-color: rgba(199, 107, 254, 0.2);
    border-color: var(--secondary-color);
}

/* Animated Background Blobs */
.background-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    /* Increased blur */
    opacity: 0.3;
    /* More subtle opacity */
}

.blob1 {
    width: 500px;
    height: 500px;
    background: var(--glow-color-1);
    top: -150px;
    left: -150px;
    animation: moveBlob1 30s infinite alternate;
}

.blob2 {
    width: 600px;
    height: 600px;
    background: var(--glow-color-2);
    bottom: -200px;
    right: -200px;
    animation: moveBlob2 35s infinite alternate;
}

.blob3 {
    width: 400px;
    height: 400px;
    background: var(--glow-color-3);
    top: 50%;
    left: 50%;
    animation: moveBlob3 28s infinite alternate;
}

/* Slower, smoother blob animations */
@keyframes moveBlob1 {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(100px, 150px) scale(1.1);
    }
}

@keyframes moveBlob2 {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(-150px, -100px) scale(0.9);
    }
}

@keyframes moveBlob3 {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-40%, -60%) rotate(180deg);
    }
}

/* Glassmorphism Panel Style */
.jelly-panel,
.testimonial-card,
.contact-form-wrapper {
    background: var(--panel-bg);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.jelly-panel:hover,
.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(161, 98, 247, 0.4);
    background: rgba(28, 27, 51, 0.6);
}

/* Hide old card glow as it's replaced by background glows */
.card-glow {
    display: none;
}

/* 3. HEADER & NAVIGATION
-------------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(12, 11, 30, 0.7);
    /* Scrolled background */
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: #fff;
}

.logo img {
    height: 40px;
    margin-right: 10px;
    transition: transform 0.5s ease;
}

.logo:hover img {
    transform: rotate(360deg);
}

.main-nav .nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: #fff;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger .line {
    display: block;
    width: 25px;
    height: 2px;
    background: #fff;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.hamburger.open .line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open .line:nth-child(2) {
    opacity: 0;
}

.hamburger.open .line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background: var(--bg-color);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    z-index: 999;
    padding-top: 100px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.mobile-nav.open {
    transform: translateX(0);
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.mobile-nav a {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
}

.mobile-nav .btn {
    margin-top: 1rem;
}

/* 4. FOOTER
-------------------------------------------------- */
.footer {
    padding: 5rem 0 2rem;
    background: rgba(13, 12, 29, 0.5);
    margin-top: 5rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-family: var(--font-secondary);
}

.footer-about .logo {
    margin-bottom: 1rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    transform: translateY(-5px);
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-muted);
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-contact i {
    color: var(--accent-color);
    margin-top: 5px;
}

.footer-contact a {
    color: var(--text-muted);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
}

.footer-legal a {
    color: var(--text-muted);
    margin: 0 5px;
}

/* 5. PAGE-SPECIFIC STYLES
-------------------------------------------------- */
/* Hero Section (index.html) */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
}

.hero-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h1 {
    margin-bottom: 1rem;
}

.hero-content .highlight {
    background: -webkit-linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.holo-sphere {
    position: relative;
    width: 350px;
    height: 350px;
    transform-style: preserve-3d;
    animation: rotateSphere 30s infinite linear;
}

@keyframes rotateSphere {
    from {
        transform: rotateY(0deg) rotateX(10deg);
    }

    to {
        transform: rotateY(360deg) rotateX(10deg);
    }
}

.sphere-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid;
    transform-style: preserve-3d;
}

.sphere-ring:nth-child(1) {
    border-color: rgba(161, 98, 247, 0.5);
    transform: rotateY(0deg) rotateX(90deg);
}

.sphere-ring:nth-child(2) {
    border-color: rgba(200, 107, 254, 0.5);
    transform: rotateY(60deg) rotateX(90deg);
    animation: wobbleRing1 8s infinite alternate ease-in-out;
}

.sphere-ring:nth-child(3) {
    border-color: rgba(0, 245, 212, 0.5);
    transform: rotateY(120deg) rotateX(90deg);
    animation: wobbleRing2 10s infinite alternate ease-in-out;
}

@keyframes wobbleRing1 {
    from {
        transform: rotateY(60deg) rotateX(90deg) scale(1);
    }

    to {
        transform: rotateY(60deg) rotateX(90deg) scale(1.1);
    }
}

@keyframes wobbleRing2 {
    from {
        transform: rotateY(120deg) rotateX(90deg) scale(1);
    }

    to {
        transform: rotateY(120deg) rotateX(90deg) scale(0.9);
    }
}

.sphere-core {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, var(--primary-color), transparent 70%);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 2.5rem;
    color: var(--accent-color);
}

/* === Services Section (REVISED) === */
.services-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

/* This pseudo-element creates the large background glows */
.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 40%, rgba(0, 245, 212, 0.1), transparent 40%),
        radial-gradient(circle at 80% 60%, rgba(161, 98, 247, 0.1), transparent 40%);
    filter: blur(100px);
    z-index: -1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

/* REVISED Service Card Styling */
.service-card {
    background: var(--panel-bg);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 245, 212, 0.4);
    background: rgba(28, 27, 51, 0.6);
}

/* Decorative UI Elements from image */
.service-card:nth-of-type(1)::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid var(--secondary-color);
    opacity: 0.4;
}

.service-card:nth-of-type(3)::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-color);
    box-shadow: 0 0 8px var(--accent-color);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    display: inline-block;
    background: -webkit-linear-gradient(45deg, var(--accent-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #fff;
    /* White heading as in image */
}

.card-link {
    display: inline-block;
    margin-top: 1.5rem;
    font-weight: 600;
}

.card-link i {
    transition: transform 0.3s ease;
    margin-left: 5px;
}

.card-link:hover i {
    transform: translateX(5px);
}

/* === End of Revised Services Section === */


/* Process Section */
.process-section {
    padding: 6rem 0;
    background: rgba(0, 0, 0, 0.1);
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--border-color);
}

.process-step {
    padding: 2rem 3rem;
    position: relative;
    width: 50%;
}

.process-step:nth-child(odd) {
    left: 0;
    text-align: right;
}

.process-step:nth-child(even) {
    left: 50%;
}

.process-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--bg-color);
    border: 2px solid var(--primary-color);
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    color: var(--accent-color);
    z-index: 2;
    transition: all 0.3s ease;
}

.process-step:hover .process-icon {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.process-step:nth-child(odd) .process-icon {
    right: -30px;
}

.process-step:nth-child(even) .process-icon {
    left: -30px;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(106, 90, 205, 0.2);
    position: absolute;
    top: 0;
    z-index: -1;
}

.process-step:nth-child(odd) .step-number {
    right: 3rem;
}

.process-step:nth-child(even) .step-number {
    left: 3rem;
}

.process-content h3 {
    margin: 0 0 0.5rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
}

.testimonial-slider-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-slider {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    flex: 0 0 100%;
    padding: 2rem;
}

.testimonial-card * {
    position: relative;
    z-index: 1;
}

.testimonial-card p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author h4 {
    margin: 0;
}

.testimonial-author span {
    color: var(--text-muted);
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    left: 0;
    padding: 0 1rem;
}

.slider-nav button {
    background: var(--panel-bg);
    border: 1px solid var(--border-color);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-nav button:hover {
    background: var(--primary-color);
}

.slider-nav button.prev-btn {
    transform: translateX(-80px);
}

.slider-nav button.next-btn {
    transform: translateX(80px);
}

/* Industries Section */
.industries-section {
    padding: 6rem 0;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.industry-item {
    background: var(--panel-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.industry-item:hover {
    transform: translateY(-10px) scale(1.05);
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.industry-item i {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
    color: var(--accent-color);
    transition: color 0.3s ease;
}

.industry-item:hover i {
    color: #fff;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 3rem;
    border-radius: 20px;
}

.cta-content h2 {
    font-size: 2rem;
}

.cta-content p {
    color: #fff;
    margin: 1rem 0 2rem;
}

.cta-content .btn-primary {
    background: #fff;
    color: var(--primary-color);
}

.cta-content .btn-primary:hover {
    background: var(--bg-color);
    color: #fff;
}

/* Page Header (Contact, Legal pages) */
.page-header {
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200%;
    height: 100%;
    background: radial-gradient(circle, rgba(161, 98, 247, 0.2), transparent 60%);
    animation: pulseHeader 8s infinite ease-in-out;
}

@keyframes pulseHeader {
    0% {
        transform: translateX(-50%) scale(1);
        opacity: 0.2;
    }

    50% {
        transform: translateX(-50%) scale(1.2);
        opacity: 0.3;
    }

    100% {
        transform: translateX(-50%) scale(1);
        opacity: 0.2;
    }
}

.page-header h1 {
    font-size: 3.5rem;
}

.page-subtitle {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 1rem auto 2rem;
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumbs span {
    color: var(--text-muted);
}

.breadcrumbs i {
    font-size: 0.8rem;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: flex-start;
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-info-item .icon-box {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--panel-bg);
    border: 1px solid var(--border-color);
    font-size: 1.2rem;
    color: var(--accent-color);
}

.contact-info-item h4 {
    margin: 0 0 0.2rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.form-control {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 15px;
    color: #fff;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 15px rgba(0, 245, 212, 0.3);
}

textarea.form-control {
    resize: vertical;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2300f5d4' class='bi bi-chevron-down' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.contact-form .btn {
    width: 100%;
    margin-top: 1rem;
}

#form-status {
    margin-top: 1rem;
    text-align: center;
}

/* Legal Pages */
.legal-content {
    padding: 4rem 0;
}

.legal-header {
    padding-bottom: 4rem;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
}

.content-wrapper h2 {
    color: var(--accent-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.content-wrapper ul {
    list-style-type: disc;
    padding-left: 20px;
}

.content-wrapper ul li {
    margin-bottom: 0.5rem;
}

/* 6. ANIMATIONS & WIDGETS
-------------------------------------------------- */
/* Scroll Animations */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Back to Top & Live Chat */
.back-to-top,
.live-chat-widget {
    position: fixed;
    bottom: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.4s ease;
    z-index: 100;
}

.back-to-top {
    right: 20px;
    background: var(--primary-color);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.live-chat-widget {
    left: 20px;
    background: var(--accent-color);
    color: var(--bg-color);
    animation: chatPulse 2s infinite;
}

.live-chat-widget:hover {
    transform: scale(1.1);
    animation-play-state: paused;
}

@keyframes chatPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 245, 212, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0, 245, 212, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 245, 212, 0);
    }
}

/* 7. RESPONSIVENESS
-------------------------------------------------- */
@media (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    .hero-section .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-content p {
        margin: 1rem auto 2rem;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 3rem;
    }

    .holo-sphere {
        width: 300px;
        height: 300px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .page-header h1 {
        font-size: 2.8rem;
    }

    .main-nav,
    .nav-cta {
        display: none;
    }

    .hamburger,
    .mobile-nav {
        display: block;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-col {
        text-align: center;
    }

    .footer-social,
    .footer-contact li {
        justify-content: center;
    }

    .footer-bottom {
        justify-content: center;
    }

    .process-timeline::before {
        left: 30px;
    }

    .process-step,
    .process-step:nth-child(even) {
        width: 100%;
        left: 0;
        padding-left: 80px;
        padding-right: 0;
        text-align: left;
    }

    .process-icon,
    .process-step:nth-child(odd) .process-icon,
    .process-step:nth-child(even) .process-icon {
        left: 0;
        transform: translate(0, -50%);
    }

    .step-number {
        font-size: 2.5rem;
    }

    .process-step:nth-child(odd) .step-number,
    .process-step:nth-child(even) .step-number {
        left: 80px;
        right: auto;
    }

    .slider-nav button.prev-btn {
        transform: translateX(-10px);
    }

    .slider-nav button.next-btn {
        transform: translateX(10px);
    }

    .form-row {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        width: 95%;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .holo-sphere {
        width: 250px;
        height: 250px;
    }

    .sphere-core {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .jelly-panel,
    .service-card,
    .testimonial-card,
    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .content-wrapper {
        padding: 1.5rem;
    }

    .back-to-top {
        right: 10px;
        bottom: 10px;
    }

    .live-chat-widget {
        left: 10px;
        bottom: 10px;
    }
}