/*
    Theme: Holographic Light Field
    Description: A dark, futuristic theme with glowing holographic elements,
    animated backgrounds, and interactive 3D effects.
*/

/* ------------------- */
/* 1. CSS VARIABLES    */
/* ------------------- */
:root {
    --color-background: #010014;
    --color-primary: #00f2ea;
    --color-secondary: #ff00c1;
    --color-accent: #7d00ff;
    --color-text: #c0c8e7;
    --color-heading: #ffffff;
    --color-border: rgba(0, 242, 234, 0.2);
    --color-surface: rgba(14, 18, 41, 0.7);

    --font-primary: 'Orbitron', sans-serif;
    --font-secondary: 'Poppins', sans-serif;

    --header-height: 80px;
    --border-radius: 8px;
    --container-width: 1200px;
    --section-padding: 100px;
    --transition-fast: 0.2s ease;
    --transition-med: 0.4s ease;

    --shadow-glow-primary: 0 0 15px rgba(0, 242, 234, 0.5), 0 0 30px rgba(0, 242, 234, 0.3);
    --shadow-glow-secondary: 0 0 15px rgba(255, 0, 193, 0.5), 0 0 30px rgba(255, 0, 193, 0.3);
}

/* ------------------- */
/* 2. RESET & GLOBALS  */
/* ------------------- */
*,
*::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);
    font-family: var(--font-secondary);
    line-height: 1.7;
    overflow-x: hidden;
    cursor: none;
    /* Hide default cursor */
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-primary);
    color: var(--color-heading);
    line-height: 1.2;
    font-weight: 700;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ------------------- */
/* 3. BACKGROUND & CURSOR */
/* ------------------- */
#particle-canvas,
.grid-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.grid-background {
    background-image:
        linear-gradient(rgba(0, 242, 234, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 242, 234, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: pan-grid 60s linear infinite;
}

@keyframes pan-grid {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 1000px 1000px;
    }
}

.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: opacity 0.3s, transform 0.3s, width 0.3s, height 0.3s;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-primary);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--color-primary);
    transition-duration: 0.1s;
}

/* Cursor hover effects */
body:has(a:hover, button:hover, .nav__link:hover) .cursor-outline {
    transform: translate(-50%, -50%) scale(1.5);
    background-color: rgba(0, 242, 234, 0.1);
}

body:has(a:hover, button:hover, .nav__link:hover) .cursor-dot {
    opacity: 0;
}


/* ------------------- */
/* 4. LAYOUT & HELPERS */
/* ------------------- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: var(--section-padding) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
}

.section-subtitle {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    color: var(--color-text);
}

/* ------------------- */
/* 5. HEADER & NAV     */
/* ------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: background-color var(--transition-med), backdrop-filter var(--transition-med);
}

.header.scrolled {
    background-color: rgba(1, 0, 20, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}

.nav__logo img {
    height: 80px;
    transition: transform var(--transition-med);
}

.nav__logo:hover img {
    transform: scale(1.1) rotate(-5deg);
}

.nav__list {
    display: flex;
    gap: 40px;
}

.nav__link {
    font-family: var(--font-primary);
    color: var(--color-heading);
    font-weight: 500;
    position: relative;
    padding: 10px 0;
    overflow: hidden;
}

.nav__link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transition: left var(--transition-med);
}

.nav__link:hover::before,
.nav__link.active::before {
    left: 0;
}

.nav__link:hover {
    color: var(--color-primary);
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav__toggle {
    display: none;
    width: 30px;
    height: 22px;
    position: relative;
    cursor: pointer;
}

.nav__toggle-icon span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-heading);
    transition: all var(--transition-med);
}

.nav__toggle-icon span:nth-child(1) {
    top: 0;
}

.nav__toggle-icon span:nth-child(2) {
    top: 10px;
}

.nav__toggle-icon span:nth-child(3) {
    bottom: 0;
}

.nav__menu.active .nav__toggle-icon span:nth-child(1) {
    transform: rotate(45deg);
    top: 10px;
}

.nav__menu.active .nav__toggle-icon span:nth-child(2) {
    opacity: 0;
}

.nav__menu.active .nav__toggle-icon span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 10px;
}

/* ------------------- */
/* 6. BUTTONS          */
/* ------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-weight: 700;
    text-transform: uppercase;
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color var(--transition-med), background-color var(--transition-med), border-color var(--transition-med);
    z-index: 1;
}

.btn span {
    position: relative;
    z-index: 2;
}

.btn i {
    position: relative;
    z-index: 2;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-background);
    border-color: var(--color-primary);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: var(--color-heading);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: 1;
}

.btn-primary:hover::before {
    width: 250%;
    height: 250%;
}

.btn-primary:hover {
    color: var(--color-accent);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-background);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

/* ------------------- */
/* 7. HERO SECTION     */
/* ------------------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: var(--header-height);
    overflow: hidden;
}

.hero__glow-1,
.hero__glow-2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    pointer-events: none;
}

.hero__glow-1 {
    width: 500px;
    height: 500px;
    background: rgba(0, 242, 234, 0.15);
    top: 10%;
    left: 10%;
    animation: glow-float 15s ease-in-out infinite alternate;
}

.hero__glow-2 {
    width: 400px;
    height: 400px;
    background: rgba(255, 0, 193, 0.15);
    bottom: 10%;
    right: 10%;
    animation: glow-float 12s ease-in-out infinite alternate-reverse;
}

@keyframes glow-float {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(50px, -50px) scale(1.2);
    }
}

.hero__content {
    position: relative;
    z-index: 2;
}

.hero__title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.hero__title .highlight {
    background: -webkit-linear-gradient(45deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero__subtitle {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.hero__cta {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.hero__scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.hero__scroll-indicator span {
    display: block;
    width: 24px;
    height: 24px;
    border-bottom: 2px solid var(--color-primary);
    border-right: 2px solid var(--color-primary);
    transform: rotate(45deg);
    margin: -10px;
    animation: scroll-down 2s infinite;
}

.hero__scroll-indicator span:nth-child(2) {
    animation-delay: -0.2s;
}

.hero__scroll-indicator span:nth-child(3) {
    animation-delay: -0.4s;
}

@keyframes scroll-down {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-20px, -20px);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: rotate(45deg) translate(20px, 20px);
    }
}

/* ------------------- */
/* 8. SERVICES SECTION */
/* ------------------- */
.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-med), box-shadow var(--transition-med);
    transform-style: preserve-3d;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent,
            rgba(0, 242, 234, 0.2),
            transparent 30%);
    animation: rotate 6s linear infinite;
    opacity: 0;
    transition: opacity var(--transition-med);
}

.service-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), var(--shadow-glow-primary);
}

.service-card:hover::before {
    opacity: 1;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

.service-card__icon {
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 20px;
    display: inline-block;
    transition: transform var(--transition-med);
}

.service-card:hover .service-card__icon {
    transform: scale(1.2);
}

.service-card__title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card__description {
    margin-bottom: 25px;
}

.service-card__link {
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--color-primary);
    display: inline-block;
    position: relative;
}

.service-card__link i {
    transition: transform var(--transition-fast);
    margin-left: 5px;
}

.service-card__link:hover i {
    transform: translateX(5px);
}

/* ------------------- */
/* 9. PROCESS SECTION  */
/* ------------------- */
.process {
    background-color: rgba(1, 0, 20, 0.5);
}

.process__timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.process__timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background: linear-gradient(to bottom, var(--color-primary), var(--color-secondary));
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    border-radius: 2px;
    box-shadow: var(--shadow-glow-primary);
}

.process__item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
}

.process__item:nth-child(odd) {
    left: 0;
    padding-right: 70px;
    text-align: right;
}

.process__item:nth-child(even) {
    left: 50%;
    padding-left: 70px;
    text-align: left;
}

.process__icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background-color: var(--color-background);
    border: 3px solid var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-primary);
    z-index: 10;
    box-shadow: 0 0 0 5px var(--color-background), var(--shadow-glow-primary);
}

.process__item:nth-child(odd) .process__icon {
    right: -30px;
}

.process__item:nth-child(even) .process__icon {
    left: -30px;
}

.process__content {
    padding: 20px 30px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    position: relative;
}

.process__step {
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 10px;
    display: block;
}

.process__title {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* ------------------- */
/* 10. INDUSTRIES SECTION */
/* ------------------- */
.industries__wrapper {
    display: flex;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    min-height: 400px;
}

.industries__tabs {
    flex: 0 0 250px;
    border-right: 1px solid var(--color-border);
    padding: 20px 0;
}

.industry-tab {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    padding: 20px;
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--color-text);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background-color var(--transition-med), color var(--transition-med);
    position: relative;
}

.industry-tab::after {
    content: '';
    position: absolute;
    right: -2px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0%;
    background: linear-gradient(var(--color-primary), var(--color-secondary));
    transition: height var(--transition-med);
}

.industry-tab.active,
.industry-tab:hover {
    background-color: rgba(0, 242, 234, 0.1);
    color: var(--color-heading);
}

.industry-tab.active::after {
    height: 100%;
}

.industry-tab i {
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

.industries__content {
    padding: 40px;
    flex: 1;
}

.industry-panel {
    display: none;
}

.industry-panel.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.industry-panel h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.industry-panel p {
    margin-bottom: 1.5rem;
    max-width: 600px;
}

.industry-panel ul {
    list-style: none;
}

.industry-panel li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.industry-panel i {
    color: var(--color-primary);
}


/* ------------------- */
/* 11. TESTIMONIALS    */
/* ------------------- */
.testimonials {
    background-color: rgba(1, 0, 20, 0.5);
}

.testimonial-slider-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-slider {
    overflow: hidden;
}

.testimonial-slide {
    padding: 40px;
    text-align: center;
    background: var(--color-surface);
    border-left: 4px solid var(--color-primary);
    border-radius: var(--border-radius);
    display: none;
}

.testimonial-slide.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.testimonial-quote {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.testimonial-quote::before {
    content: '“';
    font-size: 4rem;
    color: var(--color-primary);
    opacity: 0.5;
    position: absolute;
    margin-left: -40px;
    margin-top: -20px;
    font-family: serif;
}

.author-name {
    font-size: 1.2rem;
    color: var(--color-heading);
}

.author-title {
    color: var(--color-text);
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    left: 0;
    display: flex;
    justify-content: space-between;
}

.slider-controls button {
    background: rgba(0, 242, 234, 0.1);
    border: 1px solid var(--color-border);
    color: var(--color-primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-med);
}

.slider-controls .prev-btn {
    transform: translateX(-80px);
}

.slider-controls .next-btn {
    transform: translateX(80px);
}

.slider-controls button:hover {
    background: var(--color-primary);
    color: var(--color-background);
    box-shadow: var(--shadow-glow-primary);
}

/* ------------------- */
/* 12. CTA SECTION     */
/* ------------------- */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(45deg, rgba(0, 242, 234, 0.1), rgba(125, 0, 255, 0.1));
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-text {
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* ------------------- */
/* 13. FOOTER          */
/* ------------------- */
.footer {
    background: var(--color-background);
    padding: 80px 0 30px;
    border-top: 1px solid var(--color-border);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    opacity: 0.5;
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer__logo img {
    height: 80px;
    margin-bottom: 20px;
}

.footer__description {
    max-width: 300px;
}

.footer__links h3,
.footer__contact h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--color-heading);
    position: relative;
    padding-bottom: 10px;
}

.footer__links h3::after,
.footer__contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--color-primary);
}

.footer__links li,
.footer__contact li {
    margin-bottom: 10px;
}

.footer__links a:hover {
    color: var(--color-heading);
    padding-left: 5px;
}

.footer__contact a:hover {
    color: var(--color-heading);
}

.footer__contact i {
    color: var(--color-primary);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.footer__contact li {
    display: flex;
    align-items: flex-start;
}

.footer__bottom {
    text-align: center;
    border-top: 1px solid var(--color-border);
    padding-top: 30px;
}

/* ------------------- */
/* 14. LEGAL & CONTACT PAGES */
/* ------------------- */
.page-header {
    padding: 180px 0 100px;
    text-align: center;
    position: relative;
    background: linear-gradient(rgba(1, 0, 20, 0.8), rgba(1, 0, 20, 1));
}

.page-header__title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.page-header__subtitle {
    font-size: 1.2rem;
    max-width: 600px;
    margin: auto;
}

.legal-page .legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    padding: 40px;
    border-radius: var(--border-radius);
}

.legal-content h2 {
    font-size: 1.8rem;
    margin: 40px 0 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--color-border);
}

.legal-content p,
.legal-content li {
    margin-bottom: 15px;
}

.legal-content ul {
    list-style-type: disc;
    padding-left: 20px;
}

.legal-content a {
    text-decoration: underline;
}

/* Contact Page Styles */
.contact-page__wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: flex-start;
}

.contact-info-block,
.contact-form-wrapper {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    padding: 40px;
    border-radius: var(--border-radius);
}

.contact-info__title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.contact-details-list {
    margin-top: 30px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: center;
}

.icon-wrapper {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background: linear-gradient(var(--color-primary), var(--color-secondary));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    color: var(--color-background);
}

.info h3 {
    font-size: 1.2rem;
    color: var(--color-heading);
}

.info p {
    margin: 0;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    background-color: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    color: var(--color-text);
    font-family: var(--font-secondary);
    transition: border-color var(--transition-med), box-shadow var(--transition-med);
}

.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(0, 242, 234, 0.3);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

/* Success Popup */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: var(--color-surface);
    border: 1px solid var(--color-primary);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    max-width: 400px;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s;
}

.popup-overlay.active .popup-content {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: var(--color-text);
    font-size: 2rem;
    cursor: pointer;
}

.popup-icon {
    font-size: 4rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.popup-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

/* ------------------- */
/* 15. LIVE CHAT       */
/* ------------------- */
.live-chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    color: var(--color-background);
    cursor: pointer;
    box-shadow: var(--shadow-glow-primary);
    transition: transform var(--transition-med);
    z-index: 999;
}

.live-chat-widget:hover {
    transform: scale(1.1) rotate(-10deg);
}

/* ------------------- */
/* 16. ANIMATIONS      */
/* ------------------- */
.animate-on-load,
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-load.is-visible,
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ------------------- */
/* 17. RESPONSIVENESS  */
/* ------------------- */
@media (max-width: 992px) {
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--color-surface);
        backdrop-filter: blur(15px);
        padding: 100px 30px 30px;
        transition: right var(--transition-med);
        z-index: 100;
    }

    .nav__menu.active {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        gap: 30px;
    }

    .nav__toggle {
        display: block;
        z-index: 101;
    }

    .hero__title {
        font-size: 3rem;
    }

    .process__timeline::after {
        left: 30px;
    }

    .process__item {
        width: 100%;
        padding-left: 70px;
        padding-right: 0;
        text-align: left !important;
        left: 0 !important;
    }

    .process__item:nth-child(odd) {
        padding-left: 70px;
    }

    .process__icon {
        left: 0 !important;
    }

    .industries__wrapper {
        flex-direction: column;
    }

    .industries__tabs {
        flex: 0 0 auto;
        border-right: none;
        border-bottom: 1px solid var(--color-border);
        display: flex;
        overflow-x: auto;
        padding: 0;
    }

    .industry-tab {
        padding: 15px 20px;
        white-space: nowrap;
    }

    .industry-tab::after {
        right: 50%;
        transform: translateX(50%);
        top: auto;
        bottom: -2px;
        width: 0%;
        height: 4px;
    }

    .industry-tab.active::after {
        width: 100%;
    }

    .contact-page__wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .hero__subtitle {
        font-size: 1rem;
    }

    .hero__cta {
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .slider-controls .prev-btn {
        transform: translateX(-20px);
    }

    .slider-controls .next-btn {
        transform: translateX(20px);
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 140px 0 80px;
    }

    .page-header__title {
        font-size: 2.5rem;
    }

    .live-chat-widget {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}