/*
================================================
TABLE OF CONTENTS
================================================
1.  Root Variables & General Styles
2.  Header & Navigation
3.  Mobile Navigation
4.  Hero Section
5.  Shared Section Styles
6.  Services Section
7.  About Section
8.  Stats Counter Section
9.  Process Section
10. ROI Calculator Section
11. Testimonials Section
12. CTA Section
13. Footer
14. Subpage & Legal Page Styles
15. Contact Page Styles
16. Popup Styles
17. Utility & Animation Classes
18. Live Chat Widget
19. Responsive Media Queries
================================================
*/

/* --- 1. Root Variables & General Styles --- */
:root {
    --primary-color: #00a99d;
    /* Teal */
    --secondary-color: #8a4fff;
    /* Purple */
    --dark-bg: #0d1b2a;
    /* Dark Navy */
    --medium-bg: #1b263b;
    /* Lighter Navy */
    --light-bg: #f8f9fa;
    --text-dark: #e0e1dd;
    --text-light: #ffffff;
    --border-color: #415a77;
    --heading-font: 'Poppins', sans-serif;
    --body-font: 'Poppins', sans-serif;
    --header-height: 80px;
    --border-radius: 12px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--body-font);
    background-color: #ffffff;
    color: #4A4A4A;
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    color: var(--dark-bg);
    line-height: 1.3;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color var(--transition-speed) ease;
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* --- 2. Header & Navigation --- */
.header {
    background-color: var(--dark-bg);
    padding: 0 20px;
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.header.scrolled {
    background-color: rgba(13, 27, 42, 0.9);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    height: 80px;
    filter: brightness(0) invert(1);
    transition: transform var(--transition-speed) ease;
}

.logo-link:hover .logo {
    transform: scale(1.05);
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 16px;
    position: relative;
    padding: 10px 5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-speed) ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-light);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn {
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
}

.btn-primary {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 169, 157, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(138, 79, 255, 0.4);
    color: var(--text-light);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-light);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--text-light);
    transition: all 0.4s ease-in-out;
}

/* Mobile Toggle Animation */
.mobile-toggle.is-active .bar-top {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-toggle.is-active .bar-middle {
    opacity: 0;
}

.mobile-toggle.is-active .bar-bottom {
    transform: rotate(45deg) translate(-5px, -6px);
}


/* --- 3. Mobile Navigation --- */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--dark-bg);
    z-index: 999;
    transition: right 0.5s ease-in-out;
    padding-top: 120px;
}

.mobile-nav.is-active {
    right: 0;
}

.mobile-nav nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.mobile-nav nav ul li a {
    color: var(--text-light);
    font-size: 24px;
    font-weight: 600;
}

/* --- 4. Hero Section --- */
.hero {
    background-color: var(--dark-bg);
    color: var(--text-light);
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.highlight-container {
    display: inline-block;
    position: relative;
    color: var(--primary-color);
    overflow: hidden;
    height: 1.2em;
    vertical-align: bottom;
}

.highlight-text {
    display: block;
    animation: slide-up 9s infinite;
}

@keyframes slide-up {

    0%,
    33.33% {
        transform: translateY(0);
    }

    33.34%,
    66.66% {
        transform: translateY(-100%);
    }

    66.67%,
    100% {
        transform: translateY(-200%);
    }
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    color: var(--text-dark);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}


/* --- 5. Shared Section Styles --- */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background-color: rgba(0, 169, 157, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    color: #6c757d;
}

/* --- 6. Services Section --- */
.services-section {
    background-color: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #ffffff;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: 70px;
    height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 169, 157, 0.1);
    border-radius: 50%;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-description {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 25px;
}

.card-link {
    font-weight: 600;
    color: var(--primary-color);
    display: inline-block;
    transition: transform var(--transition-speed) ease;
}

.card-link i {
    margin-left: 5px;
    transition: transform var(--transition-speed) ease;
}

.card-link:hover i {
    transform: translateX(5px);
}


/* --- 7. About Section --- */
.about-section {
    background-color: #ffffff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrapper {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.05);
}

.about-text-wrapper .section-title {
    text-align: left;
}

.about-text-wrapper .section-tag {
    margin-left: 0;
}

.about-text-wrapper p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.about-features {
    margin-bottom: 2.5rem;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.about-features i {
    color: var(--primary-color);
    font-size: 1.5rem;
}


/* --- 8. Stats Counter Section --- */
.stats-section {
    background-color: var(--medium-bg);
    background-image: linear-gradient(45deg, var(--dark-bg) 0%, var(--medium-bg) 100%);
    color: var(--text-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-item i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-light);
}

.stat-label {
    font-size: 1rem;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}


/* --- 9. Process Section --- */
.process-section {
    background-color: var(--light-bg);
}

.process-timeline {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 4px;
    background-color: #ddd;
    transform: translateY(-50%);
    z-index: 1;
}

.timeline-item {
    width: 23%;
    position: relative;
    padding-top: 50px;
    z-index: 2;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background-color: #ddd;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: background-color 0.5s ease;
}

.timeline-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease;
    z-index: -1;
}

.timeline-item.is-visible::after {
    transform: translate(-50%, -50%) scale(1);
}

.timeline-item.is-visible::before {
    background-color: var(--primary-color);
}


.timeline-content {
    background-color: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
    transform: translateY(-50%);
}

.timeline-step {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: block;
}

.timeline-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.timeline-content p {
    margin: 0;
    color: #6c757d;
}

/* --- 10. ROI Calculator Section --- */
.roi-calculator-section {
    background-color: #ffffff;
}

.roi-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background-color: var(--light-bg);
    padding: 60px;
    border-radius: var(--border-radius);
}

.roi-content .section-title,
.roi-content .section-tag {
    text-align: left;
    margin-left: 0;
}

.roi-form-wrapper {
    background-color: #fff;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.form-group-inline {
    margin-bottom: 20px;
}

.form-group-inline label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group-inline input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

.roi-results {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.roi-results h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.result-item {
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.result-item strong {
    font-weight: 700;
    color: var(--secondary-color);
}

.final-roi strong {
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* --- 11. Testimonials Section --- */
.testimonials-section {
    background-color: var(--light-bg);
}

.testimonial-slider-wrapper {
    position: relative;
}

.testimonial-slider {
    display: flex;
    overflow: hidden;
    width: 100%;
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 15px;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card {
    background-color: #fff;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    color: #4A4A4A;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 20px;
}

.testimonial-text::after {
    content: '\f10d';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
}

.author-info {
    text-align: left;
}

.author-name {
    margin: 0;
    font-size: 1.1rem;
}

.author-title {
    color: #6c757d;
    font-size: 0.9rem;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff;
    border: 1px solid #ddd;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--dark-bg);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-speed) ease;
}

.slider-btn:hover {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.prev-btn {
    left: -25px;
}

.next-btn {
    right: -25px;
}

/* --- 12. CTA Section --- */
.cta-section {
    background-color: var(--dark-bg);
    color: var(--text-light);
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/cubes.png');
    opacity: 0.05;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    color: var(--text-light);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-text {
    color: var(--text-dark);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    font-size: 1.1rem;
}


/* --- 13. Footer --- */
.footer {
    background-color: var(--dark-bg);
    color: var(--text-dark);
    padding-top: 80px;
    position: relative;
}

.footer-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.footer-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.footer-shape.shape-1 {
    width: 300px;
    height: 300px;
    background-color: var(--primary-color);
    top: -100px;
    left: -100px;
}

.footer-shape.shape-2 {
    width: 200px;
    height: 200px;
    background-color: var(--secondary-color);
    bottom: -50px;
    right: -50px;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.footer-logo {
    height: 80px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-about-text {
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: var(--medium-bg);
    color: var(--text-dark);
    transition: all var(--transition-speed) ease;
}

.social-link:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-3px);
}

.footer-col-title {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--text-dark);
    position: relative;
    padding-left: 15px;
}

.footer-links ul li a::before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    transition: transform var(--transition-speed) ease;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 20px;
}

.footer-links ul li a:hover::before {
    transform: scale(1.2);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-info i {
    color: var(--primary-color);
    margin-top: 5px;
}

.contact-info a {
    color: var(--text-dark);
}

.contact-info a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    padding: 30px 0;
    text-align: center;
}

/* --- 14. Subpage & Legal Page Styles --- */
.subpage {
    background-color: var(--light-bg);
}

.page-header {
    background-color: var(--dark-bg);
    color: var(--text-light);
    padding: 140px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(13, 27, 42, 0.9), rgba(27, 38, 59, 0.9));
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    color: var(--text-light);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.breadcrumbs {
    font-size: 1rem;
}

.breadcrumbs a {
    color: var(--text-dark);
}

.breadcrumbs a:hover {
    color: var(--primary-color);
}

.breadcrumbs span {
    color: var(--text-light);
}

.breadcrumbs i {
    font-size: 0.8rem;
    margin: 0 10px;
}

.page-content {
    padding: 80px 0;
}

.content-wrapper {
    background-color: #ffffff;
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

.content-wrapper ul {
    list-style: disc;
    padding-left: 20px;
}

.content-wrapper ul li {
    margin-bottom: 10px;
}

.last-updated {
    margin-top: 2rem;
    font-style: italic;
    color: #6c757d;
    border-top: 1px solid #eee;
    padding-top: 1rem;
}


.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    margin-top: 50px;
}

.contact-info-block {
    background-color: #fff;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-info-block h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.contact-methods {
    margin-top: 30px;
}

.contact-methods li {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 25px;
}

.contact-methods i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 40px;
    text-align: center;
}

.contact-methods h4 {
    margin: 0 0 5px;
}

.contact-methods a {
    color: #4A4A4A;
}

.contact-form-wrapper {
    background-color: #fff;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-form .form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
    width: 100%;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--body-font);
    transition: border-color var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 169, 157, 0.2);
}

.btn.full-width {
    width: 100%;
    justify-content: center;
    padding: 15px;
    font-size: 1.1rem;
}


/* --- 16. Popup Styles --- */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
    backdrop-filter: blur(5px);
}

.popup:target,
.popup.is-visible {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background-color: white;
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    max-width: 400px;
    width: 90%;
    transform: scale(0.8);
    transition: transform 0.4s;
}

.popup:target .popup-content,
.popup.is-visible .popup-content {
    transform: scale(1);
}

.popup-icon {
    color: #28a745;
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.popup-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.popup-content p {
    margin-bottom: 2rem;
}

.popup-close {
    text-decoration: none;
}


/* --- 17. Utility & Animation Classes --- */
.animate-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- 18. Live Chat Widget --- */
.live-chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    z-index: 998;
    transition: transform 0.3s ease;
}

.live-chat-widget:hover {
    transform: scale(1.1);
}


/* --- 19. Responsive Media Queries --- */
@media (max-width: 1024px) {

    .about-content,
    .roi-wrapper {
        grid-template-columns: 1fr;
    }

    .about-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }

    .process-timeline {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .process-timeline::before {
        left: 50%;
        top: 5%;
        bottom: 5%;
        width: 4px;
        height: 90%;
        transform: translateX(-50%);
    }

    .timeline-item {
        width: 80%;
        max-width: 400px;
        padding-top: 0;
    }

    .timeline-content {
        transform: translateY(0);
    }

    .timeline-item::before,
    .timeline-item::after {
        top: -15px;
    }
}


@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .mobile-nav {
        display: block;
    }

    .header-cta {
        display: none;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links,
    .contact-info,
    .footer-links ul {
        justify-content: center;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-form .form-row {
        flex-direction: column;
        gap: 0;
    }

    .slider-btn {
        display: none;
    }
}