/*
================================================
DIGITAL ORGAN PRINTING THEME - STYLE.CSS
================================================
TABLE OF CONTENTS
------------------------------------------------
1.  :ROOT & CSS VARIABLES
2.  GLOBAL RESETS & BASE STYLES
3.  TYPOGRAPHY
4.  LAYOUT & HELPERS (CONTAINER)
5.  PRELOADER
6.  CUSTOM CURSOR
7.  PARTICLE CANVAS BACKGROUND
8.  HEADER & NAVIGATION
9.  MOBILE MENU
10. BUTTONS & UI ELEMENTS
11. HERO SECTION
12. SECTION STYLES (HEADER, PADDING)
13. SERVICES SECTION
14. PROCESS SECTION (TIMELINE)
15. INTERACTIVE TOOLS SECTION (ROI CALCULATOR)
16. TESTIMONIALS SECTION
17. CTA SECTION
18. FOOTER
19. POPUP & MODAL STYLES
20. LEGAL CONTENT PAGES
21. FLOATING WIDGETS (CHAT)
22. ANIMATIONS & KEYFRAMES
23. RESPONSIVE DESIGN (MEDIA QUERIES)
================================================
*/

/* 1. :ROOT & CSS VARIABLES
------------------------------------------------ */
:root {
    --color-bg-dark: #010413;
    --color-bg-medium: #0a0c27;
    --color-bg-light: #12153a;
    --color-primary: #00ffff;
    /* Cyan */
    --color-secondary: #ff00ff;
    /* Magenta */
    --color-accent: #4d57ff;
    /* Electric Blue */
    --color-text-primary: #e0e1ff;
    --color-text-secondary: #a0a3d4;
    --color-border: rgba(0, 255, 255, 0.2);
    --color-shadow: rgba(0, 255, 255, 0.1);

    --font-primary: 'Orbitron', sans-serif;
    --font-secondary: 'Rajdhani', sans-serif;

    --header-height: 80px;
    --border-radius: 8px;
    --transition-fast: 0.2s ease-in-out;
    --transition-medium: 0.4s ease-in-out;
    --transition-slow: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* 2. GLOBAL RESETS & BASE STYLES
------------------------------------------------ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--color-bg-dark);
    color: var(--color-text-primary);
    font-family: var(--font-secondary);
    line-height: 1.7;
    overflow-x: hidden;
    cursor: none;
}

body.no-scroll {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

/* 3. TYPOGRAPHY
------------------------------------------------ */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    color: var(--color-text-primary);
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

.text-gradient {
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

/* 4. LAYOUT & HELPERS
------------------------------------------------ */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 5. PRELOADER
------------------------------------------------ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-bg-dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.preloader-text {
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--color-primary);
    margin-bottom: 20px;
    letter-spacing: 2px;
    opacity: 0;
    animation: fadeInText 1s ease forwards 0.5s;
}

.preloader-grid {
    display: grid;
    grid-template-columns: repeat(3, 30px);
    grid-gap: 5px;
}

.preloader-grid div {
    width: 30px;
    height: 30px;
    background-color: var(--color-bg-medium);
    border: 1px solid var(--color-border);
    opacity: 0;
    transform: scale(0);
    animation: growCell 0.5s forwards;
}

/* Grid cell animation delays */
.preloader-grid div:nth-child(1) {
    animation-delay: 0.1s;
}

.preloader-grid div:nth-child(2) {
    animation-delay: 0.2s;
}

.preloader-grid div:nth-child(3) {
    animation-delay: 0.3s;
}

.preloader-grid div:nth-child(4) {
    animation-delay: 0.4s;
}

.preloader-grid div:nth-child(5) {
    animation-delay: 0.5s;
}

.preloader-grid div:nth-child(6) {
    animation-delay: 0.6s;
}

.preloader-grid div:nth-child(7) {
    animation-delay: 0.7s;
}

.preloader-grid div:nth-child(8) {
    animation-delay: 0.8s;
}

.preloader-grid div:nth-child(9) {
    animation-delay: 0.9s;
}


/* 6. CUSTOM CURSOR
------------------------------------------------ */
.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;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-primary);
    transition: transform 0.1s linear;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--color-primary);
    transition: transform 0.2s ease-out, width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
}

body:hover .cursor-dot,
body:hover .cursor-outline {
    opacity: 1;
}

a:hover~.cursor-outline,
button:hover~.cursor-outline,
.service-card:hover~.cursor-outline {
    transform: translate(-50%, -50%) scale(1.5);
    background-color: rgba(0, 255, 255, 0.1);
    border-color: var(--color-secondary);
}

a:hover~.cursor-dot,
button:hover~.cursor-dot,
.service-card:hover~.cursor-dot {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0;
}


/* 7. PARTICLE CANVAS BACKGROUND
------------------------------------------------ */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.5;
}

/* 8. HEADER & NAVIGATION
------------------------------------------------ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 0;
    z-index: 1000;
    transition: background-color var(--transition-medium), backdrop-filter var(--transition-medium), box-shadow var(--transition-medium);
}

.header.scrolled {
    background-color: rgba(1, 4, 19, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px var(--color-shadow);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo img {
    height: 80px;
    transition: transform var(--transition-medium);
}

.logo:hover img {
    transform: rotate(10deg) scale(1.1);
}

.nav-list {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-family: var(--font-primary);
    color: var(--color-text-primary);
    font-weight: 500;
    position: relative;
    padding: 10px 0;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-medium);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary);
}

.header-actions {
    display: flex;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 1002;
    cursor: pointer;
}

.hamburger-box {
    width: 30px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 30px;
    height: 2px;
    background-color: var(--color-text-primary);
    position: absolute;
    transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.hamburger-inner {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: '';
    left: 0;
}

.hamburger-inner::before {
    top: -10px;
}

.hamburger-inner::after {
    bottom: -10px;
}

.mobile-menu-toggle.active .hamburger-inner {
    background-color: transparent;
}

.mobile-menu-toggle.active .hamburger-inner::before {
    transform: translateY(10px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-inner::after {
    transform: translateY(-10px) rotate(-45deg);
}


/* 9. MOBILE MENU
------------------------------------------------ */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 300px;
    height: 100vh;
    background-color: rgba(1, 4, 19, 0.95);
    backdrop-filter: blur(15px);
    z-index: 999;
    transition: right var(--transition-slow);
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: var(--header-height);
}

.mobile-menu.open {
    right: 0;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
}

.mobile-nav-link {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--color-text-primary);
    transition: color var(--transition-fast), letter-spacing var(--transition-fast);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--color-primary);
    letter-spacing: 2px;
}

/* 10. BUTTONS & UI ELEMENTS
------------------------------------------------ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    font-family: var(--font-primary);
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color var(--transition-medium), border-color var(--transition-medium);
}

.btn span {
    z-index: 2;
}

.btn i {
    z-index: 2;
    transition: transform var(--transition-medium);
}

.btn:hover i {
    transform: translateX(5px);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: transform var(--transition-medium);
    transform-origin: right;
    transform: scaleX(0);
}

.btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Primary Button */
.btn-primary {
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    color: var(--color-bg-dark);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
}

.btn-primary:hover {
    color: var(--color-text-primary);
}

.btn-primary::before {
    background: var(--color-bg-light);
}

/* Secondary Button */
.btn-secondary {
    background: transparent;
    color: var(--color-text-primary);
    border-color: var(--color-primary);
}

.btn-secondary:hover {
    color: var(--color-bg-dark);
}

.btn-secondary::before {
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
}

.btn-block {
    width: 100%;
    justify-content: center;
}


/* 11. HERO SECTION
------------------------------------------------ */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--color-text-secondary);
    font-weight: 500;
}

.hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-background-svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    z-index: 0;
}

.hero-background-svg svg {
    width: 100%;
    height: 100%;
}

.morph-path1 {
    animation: morph1 10s infinite alternate ease-in-out;
}

.morph-path2 {
    animation: morph2 12s infinite alternate ease-in-out;
}


/* 12. SECTION STYLES
------------------------------------------------ */
section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-header {
    margin-bottom: 60px;
}

.section-header .section-subtitle {
    display: block;
    font-family: var(--font-primary);
    color: var(--color-primary);
    margin-bottom: 10px;
    letter-spacing: 1.5px;
    font-weight: 500;
}

.section-header .section-title {
    margin-bottom: 20px;
}

.section-header p {
    max-width: 600px;
    color: var(--color-text-secondary);
    font-size: 1.1rem;
}

.section-header.text-center {
    text-align: center;
}

.section-header.text-center p {
    margin-left: auto;
    margin-right: auto;
}

/* 13. SERVICES SECTION
------------------------------------------------ */
.services-section {
    background-color: var(--color-bg-medium);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    position: relative;
    perspective: 1000px;
}

.service-card-inner {
    position: relative;
    padding: 40px 30px;
    background: var(--color-bg-light);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    height: 100%;
    transition: transform var(--transition-slow), box-shadow var(--transition-slow);
    transform-style: preserve-3d;
}

.service-card:hover .service-card-inner {
    transform: rotateY(10deg) rotateX(5deg);
    box-shadow: -10px 10px 30px var(--color-shadow);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--color-primary);
    display: inline-block;
    transition: transform var(--transition-medium);
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(-10deg);
}

.service-title {
    margin-bottom: 15px;
}

.service-description {
    color: var(--color-text-secondary);
    margin-bottom: 25px;
}

.service-link {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link i {
    transition: transform var(--transition-fast);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* 14. PROCESS SECTION (TIMELINE)
------------------------------------------------ */
.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background: linear-gradient(to bottom, var(--color-primary), var(--color-secondary));
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    border-radius: 2px;
    z-index: 1;
}

.process-step {
    padding: 10px 40px;
    position: relative;
    width: 50%;
}

.process-step:nth-child(odd) {
    left: 0;
}

.process-step:nth-child(even) {
    left: 50%;
}

.process-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-bg-dark);
    border: 3px solid var(--color-primary);
    border-radius: 50%;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color var(--transition-medium), border-color var(--transition-medium);
}

.process-step:hover .process-icon {
    background: var(--color-primary);
    border-color: var(--color-secondary);
}

.process-number {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    transition: color var(--transition-medium);
}

.process-step:hover .process-number {
    color: var(--color-bg-dark);
}

.process-step:nth-child(even) .process-icon {
    left: -30px;
}

.process-content {
    padding: 30px;
    background: var(--color-bg-medium);
    border-radius: var(--border-radius);
    border: 1px solid var(--color-border);
    position: relative;
}

.process-step:nth-child(odd) {
    text-align: right;
}

.process-content h3 {
    color: var(--color-primary);
    margin-bottom: 10px;
}

.process-content p {
    color: var(--color-text-secondary);
}


/* 15. INTERACTIVE TOOLS SECTION
------------------------------------------------ */
.tools-section {
    background-color: var(--color-bg-medium);
}

.tools-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tool-calculator {
    background: var(--color-bg-light);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid var(--color-border);
}

.tool-calculator h3 {
    text-align: center;
    margin-bottom: 30px;
}

.tool-calculator .form-group {
    margin-bottom: 20px;
}

.tool-calculator label {
    display: block;
    margin-bottom: 8px;
    color: var(--color-text-secondary);
    font-weight: 600;
}

.tool-calculator input {
    width: 100%;
    padding: 12px;
    background-color: var(--color-bg-medium);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    color: var(--color-text-primary);
    font-family: var(--font-secondary);
    font-size: 1rem;
}

.tool-calculator input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 10px var(--color-shadow);
}

.roi-result {
    margin-top: 30px;
    padding: 20px;
    text-align: center;
    border: 2px dashed var(--color-primary);
    border-radius: var(--border-radius);
}

.roi-result p {
    font-weight: 600;
    color: var(--color-text-secondary);
}

.roi-result h3 {
    font-size: 2rem;
    color: var(--color-primary);
}


/* 16. TESTIMONIALS SECTION
------------------------------------------------ */
.testimonial-slider-wrapper {
    position: relative;
}

.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--color-bg-medium);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.testimonial-quote-icon {
    font-size: 2rem;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.testimonial-text {
    flex-grow: 1;
    color: var(--color-text-secondary);
    margin-bottom: 30px;
    font-style: italic;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid var(--color-border);
}

.author-info h4 {
    margin-bottom: 5px;
    color: var(--color-text-primary);
}

.author-info span {
    color: var(--color-primary);
    font-size: 0.9rem;
    font-weight: 600;
}

/* 17. CTA SECTION
------------------------------------------------ */
.cta-section {
    background: linear-gradient(45deg, var(--color-accent), var(--color-bg-light));
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    background: rgba(1, 4, 19, 0.5);
    padding: 60px 40px;
    border-radius: var(--border-radius);
    border: 1px solid var(--color-border);
    backdrop-filter: blur(5px);
}

.cta-title {
    margin-bottom: 20px;
}

.cta-text {
    color: var(--color-text-secondary);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

/* 18. FOOTER
------------------------------------------------ */
.footer {
    background-color: var(--color-bg-medium);
    padding: 80px 0 0;
    border-top: 1px solid var(--color-border);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 60px;
}

.footer-col h3 {
    margin-bottom: 25px;
    color: var(--color-primary);
}

.footer-logo img {
    height: 80px;
    margin-bottom: 20px;
}

.about-col p {
    color: var(--color-text-secondary);
    max-width: 350px;
}

.links-col ul li:not(:last-child) {
    margin-bottom: 15px;
}

.links-col a {
    color: var(--color-text-secondary);
    font-weight: 500;
}

.links-col a:hover {
    color: var(--color-primary);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: var(--color-text-secondary);
}

.footer-contact li:not(:last-child) {
    margin-bottom: 15px;
}

.footer-contact i {
    color: var(--color-primary);
    margin-top: 5px;
}

.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid var(--color-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: var(--color-text-secondary);
}

.footer-legal-links {
    display: flex;
    gap: 25px;
}

.footer-legal-links a {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

.footer-legal-links a:hover {
    color: var(--color-primary);
}

/* 19. POPUP & MODAL STYLES
------------------------------------------------ */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-medium), visibility var(--transition-medium);
}

.popup.show {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: var(--color-bg-light);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid var(--color-primary);
    text-align: center;
    max-width: 500px;
    position: relative;
    transform: scale(0.7);
    transition: transform var(--transition-medium);
}

.popup.show .popup-content {
    transform: scale(1);
}

.popup-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    color: var(--color-text-secondary);
    cursor: pointer;
}

.popup-icon {
    font-size: 4rem;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.popup-content h3 {
    margin-bottom: 15px;
}

.popup-content p {
    color: var(--color-text-secondary);
    margin-bottom: 30px;
}

/* 20. LEGAL CONTENT PAGES
------------------------------------------------ */
.page-header-section {
    padding: 160px 0 80px;
    text-align: center;
    background: linear-gradient(rgba(1, 4, 19, 0.8), rgba(1, 4, 19, 0.8)), url('placeholder.jpg') no-repeat center center/cover;
}

.page-title {
    margin-bottom: 15px;
}

.page-subtitle {
    color: var(--color-text-secondary);
    font-size: 1.2rem;
    max-width: 700px;
    margin: auto;
}

.legal-content {
    background-color: var(--color-bg-medium);
    padding: 80px 0;
}

.legal-content .container {
    max-width: 800px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    color: var(--color-primary);
    margin-bottom: 15px;
}

.legal-section p,
.legal-section li {
    color: var(--color-text-secondary);
    line-height: 1.8;
}

/* CONTACT PAGE SPECIFIC */
.contact-section-standalone {
    padding: 80px 0;
    background-color: var(--color-bg-medium);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: flex-start;
}

.contact-details .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-top: 30px;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-top: 5px;
}

.contact-text h3 {
    margin-bottom: 5px;
}

.contact-text p {
    color: var(--color-text-secondary);
}

.contact-form .form-row {
    display: flex;
    gap: 20px;
}

.contact-form .form-group {
    margin-bottom: 20px;
    width: 100%;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    background: var(--color-bg-dark);
    border: 1px solid var(--color-border);
    color: var(--color-text-primary);
    border-radius: 4px;
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 10px var(--color-shadow);
}

.contact-form textarea {
    resize: vertical;
}

/* 21. FLOATING WIDGETS (CHAT)
------------------------------------------------ */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--color-primary), var(--color-accent));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--color-bg-dark);
    cursor: pointer;
    box-shadow: 0 0 20px var(--color-shadow);
    z-index: 998;
    transform: scale(0);
    animation: zoomIn 0.5s forwards 2s;
}

/* 22. ANIMATIONS & KEYFRAMES
------------------------------------------------ */

/* Preloader Animations */
@keyframes fadeInText {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes growCell {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Hero SVG Morph */
@keyframes morph1 {
    0% {
        d: path("M0,500 C150,600 300,500 450,600 C600,700 750,600 900,500 C1050,400 1200,500 1350,400 L1440,350 L1440,800 L0,800 Z");
    }

    100% {
        d: path("M0,600 C180,500 320,650 480,600 C650,550 780,700 920,650 C1050,600 1220,500 1380,550 L1440,500 L1440,800 L0,800 Z");
    }
}

@keyframes morph2 {
    0% {
        d: path("M0,600 C200,500 400,650 600,600 C800,550 1000,700 1200,650 L1440,600 L1440,800 L0,800 Z");
    }

    100% {
        d: path("M0,550 C150,650 350,500 500,550 C650,600 800,500 950,550 C1100,600 1250,500 1440,550 L1440,800 L0,800 Z");
    }
}

/* Scroll Animations */
[data-animation] {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animation].is-visible {
    opacity: 1;
    transform: none;
}

[data-animation="fade-up"] {
    transform: translateY(50px);
}

[data-animation="fade-in"] {
    transform: scale(0.9);
}

[data-animation="slide-in-left"] {
    transform: translateX(-100px);
}

[data-animation="slide-in-right"] {
    transform: translateX(100px);
}

[data-animation="zoom-in"] {
    transform: scale(0.8);
}

/* Custom panel grow animation */
@keyframes panelGrow {
    from {
        clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
        opacity: 0;
    }

    to {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
        opacity: 1;
    }
}

[data-animation="panel-grow"] {
    opacity: 1;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
    animation-duration: 1s;
}

[data-animation="panel-grow"]:not(.is-visible) {
    animation-name: none;
    opacity: 0;
}

[data-animation="panel-grow"].is-visible {
    animation-name: panelGrow;
}

@keyframes zoomIn {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

/* 23. RESPONSIVE DESIGN (MEDIA QUERIES)
------------------------------------------------ */

/* Tablets (max-width: 992px) */
@media (max-width: 992px) {

    .main-nav,
    .header-actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .process-timeline::after {
        left: 30px;
    }

    .process-step {
        width: 100%;
        padding-left: 80px;
        padding-right: 0;
    }

    .process-step:nth-child(even) {
        left: 0;
    }

    .process-icon {
        left: 0;
    }

    .process-step:nth-child(odd) {
        text-align: left;
    }

    .tools-wrapper {
        grid-template-columns: 1fr;
    }

    .testimonial-slider {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .about-col {
        grid-column: 1 / -1;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .cursor-dot,
    .cursor-outline {
        display: none;
    }

    body {
        cursor: auto;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-col p {
        margin: auto;
    }

    .footer-contact li {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .contact-form .form-row {
        flex-direction: column;
    }
}