/*
* Digital Marketing Agency Stylesheet
* Approximate Lines: 2000+
*/

/* 1. VARIABLES & RESET */
/* =================================== */
:root {
    --color-background: #0A0A1A;
    /* Very Dark Blue */
    --color-background-light: #161629;
    --color-surface: #1E1E32;
    --color-primary: #4F46E5;
    /* Indigo */
    --color-secondary: #00F5D4;
    /* Vibrant Teal */
    --color-text: #E0E0E0;
    /* Light Grey */
    --color-text-muted: #94A3B8;
    --color-border: rgba(255, 255, 255, 0.1);
    --color-shadow: rgba(0, 0, 0, 0.5);
    --color-success: #10B981;
    --color-error: #EF4444;
    --font-primary: 'Poppins', sans-serif;
    --font-display: 'Exo 2', sans-serif;
    --header-height: 80px;
    --border-radius: 12px;
    --transition-fast: 0.2s ease-in-out;
    --transition-medium: 0.4s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-background);
    color: var(--color-text);
    line-height: 1.7;
    overflow-x: hidden;
    cursor: none;
    /* Hide default cursor */
}

body::-webkit-scrollbar {
    width: 10px;
}

body::-webkit-scrollbar-track {
    background: var(--color-background);
}

body::-webkit-scrollbar-thumb {
    background-color: var(--color-primary);
    border-radius: 20px;
    border: 2px solid var(--color-background);
}

a,
button {
    cursor: none;
    /* Apply to interactive elements too */
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--color-secondary);
    transition: color var(--transition-fast);
}

a:hover {
    color: white;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    color: #FFFFFF;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.2rem;
}

/* 2. UTILITY & LAYOUT CLASSES */
/* =================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-padding {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    margin-bottom: 1rem;
}

.section-subtitle {
    max-width: 600px;
    margin: 0 auto;
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

.highlight {
    color: var(--color-secondary);
}

/* 3. PRELOADER & CURSOR */
/* =================================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-background);
    z-index: 1001;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid var(--color-surface);
    border-top: 5px solid var(--color-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.cursor-glow {
    position: fixed;
    width: 30px;
    height: 30px;
    border: 2px solid var(--color-secondary);
    border-radius: 50%;
    left: 0;
    top: 0;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    transition: width 0.3s, height 0.3s, background-color 0.3s;
}

body:hover .cursor-glow.hovered {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 245, 212, 0.2);
}


/* 4. HEADER & NAVIGATION */
/* =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: var(--header-height);
    transition: background-color var(--transition-fast), box-shadow var(--transition-fast);
}

.header.scrolled {
    background-color: rgba(10, 10, 26, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px var(--color-shadow);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 80px;
    filter: invert(1);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
}

.nav-menu {
    display: flex;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    color: var(--color-text);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-secondary);
    transition: width var(--transition-medium);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-close {
    display: none;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    color: #fff;
}


/* 5. BUTTONS */
/* =================================== */
.btn {
    padding: 12px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-family: var(--font-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn span {
    position: relative;
    z-index: 2;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
    z-index: 1;
}

.btn:hover::before {
    width: 250px;
    height: 250px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: linear-gradient(45deg, var(--color-primary), #6366F1);
    color: #fff;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid var(--color-primary);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}


/* 6. HERO SECTION */
/* =================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: var(--header-height);
}

.hero-background-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, var(--color-primary), transparent 60%);
    opacity: 0.15;
    filter: blur(80px);
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    left: 15%;
    animation: move-blob-1 15s infinite alternate;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: 5%;
    right: 10%;
    background: radial-gradient(circle, var(--color-secondary), transparent 60%);
    animation: move-blob-2 12s infinite alternate;
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 20%;
    right: 25%;
    opacity: 0.1;
    animation: move-blob-3 18s infinite alternate;
}

@keyframes move-blob-1 {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(50px, -50px) scale(1.2);
    }
}

@keyframes move-blob-2 {
    from {
        transform: translate(0, 0) rotate(0deg);
    }

    to {
        transform: translate(-40px, 40px) rotate(180deg);
    }
}

@keyframes move-blob-3 {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.3);
    }
}


.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.hero-3d-sphere {
    width: 400px;
    height: 400px;
    position: relative;
    transform-style: preserve-3d;
    animation: rotate-sphere 30s linear infinite;
}

@keyframes rotate-sphere {
    from {
        transform: rotateY(0deg) rotateX(10deg);
    }

    to {
        transform: rotateY(360deg) rotateX(10deg);
    }
}

.sphere-point {
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: var(--color-secondary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-secondary), 0 0 20px var(--color-secondary);
    opacity: 0;
    animation: fade-in-point 1s ease-out forwards;
}

@keyframes fade-in-point {
    to {
        opacity: 1;
    }
}

/* 7. SERVICES SECTION */
/* =================================== */
.services-section {
    background-color: var(--color-background-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
    transform-style: preserve-3d;
}

.service-card:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(-5deg);
    box-shadow: 0 20px 40px var(--color-shadow);
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.15) 0%, transparent 40%);
    transition: transform var(--transition-medium);
    transform: scale(0);
}

.service-card:hover::before {
    transform: scale(1);
}

.service-card-inner {
    position: relative;
    z-index: 2;
    transform: translateZ(20px);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.service-title {
    margin-bottom: 1rem;
}

.service-description {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.service-link {
    font-weight: 600;
    color: var(--color-secondary);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.service-link i {
    transition: transform var(--transition-fast);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* 8. PROCESS SECTION */
/* =================================== */
.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-timeline::after {
    content: '';
    position: absolute;
    width: 3px;
    background: linear-gradient(to bottom, var(--color-primary), var(--color-secondary));
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1.5px;
    border-radius: 3px;
    z-index: 1;
}

.process-step {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.process-step:nth-child(odd) {
    left: 0;
    justify-content: flex-end;
    text-align: right;
    flex-direction: row-reverse;
}

.process-step:nth-child(even) {
    left: 50%;
}

.process-icon {
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-surface);
    border: 3px solid var(--color-primary);
    border-radius: 50%;
    z-index: 2;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: #fff;
    flex-shrink: 0;
}

.process-content {
    background-color: var(--color-surface);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--color-border);
}

.process-content h3 {
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
}

/* 9. INTERACTIVE REPORT SECTION */
/* =================================== */
.interactive-report-section {
    background-color: var(--color-background-light);
}

.report-container {
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    box-shadow: 0 15px 30px var(--color-shadow);
    overflow: hidden;
}

.report-header {
    padding: 1rem 1.5rem;
    background-color: #161629;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--color-border);
}

.report-header h3 {
    font-size: 1.1rem;
    font-family: var(--font-primary);
    font-weight: 500;
}

.report-dots span {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-left: 5px;
}

.report-dots span:nth-child(1) {
    background-color: #ff5f56;
}

.report-dots span:nth-child(2) {
    background-color: #ffbd2e;
}

.report-dots span:nth-child(3) {
    background-color: #27c93f;
}

.report-body {
    padding: 2.5rem;
}

.report-kpi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.kpi-card {
    background-color: var(--color-background-light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    position: relative;
}

.kpi-card::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 110%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-primary);
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-fast), bottom var(--transition-fast);
    z-index: 10;
}

.kpi-card:hover::after {
    opacity: 1;
    visibility: visible;
    bottom: 120%;
}

.kpi-card i {
    font-size: 1.5rem;
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
}

.kpi-card h4 {
    font-size: 0.9rem;
    font-family: var(--font-primary);
    font-weight: 500;
    color: var(--color-text-muted);
}

.kpi-card p {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    font-family: var(--font-display);
}

.kpi-change {
    font-size: 0.9rem;
    font-weight: 600;
}

.kpi-change.positive {
    color: var(--color-success);
}

.kpi-change.negative {
    color: var(--color-error);
}

.report-chart {
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    overflow: hidden;
}


/* 10. TESTIMONIALS SECTION */
/* =================================== */
.testimonial-slider-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-slider {
    display: flex;
    transition: transform var(--transition-medium);
}

.testimonial-slide {
    flex: 0 0 100%;
    background-color: var(--color-surface);
    border-radius: var(--border-radius);
    border: 1px solid var(--color-border);
    padding: 3rem;
    text-align: center;
}

.testimonial-slide .fa-quote-left {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.testimonial-author h4 {
    color: #fff;
}

.testimonial-author span {
    color: var(--color-secondary);
    font-weight: 500;
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 110%;
    left: -5%;
    display: flex;
    justify-content: space-between;
}

.slider-controls button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    color: #fff;
    font-size: 1.2rem;
    transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.slider-controls button:hover {
    background-color: var(--color-primary);
    transform: scale(1.1);
}

/* 11. CTA SECTION */
/* =================================== */
.cta-section {
    padding: 60px 0;
}

.cta-container {
    background: linear-gradient(45deg, var(--color-primary), #3a33c7);
    border-radius: var(--border-radius);
    padding: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.cta-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.cta-text {
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
}

.cta-action .btn-primary {
    background: #fff;
    color: var(--color-primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* 12. FOOTER */
/* =================================== */
.footer {
    background-color: var(--color-background-light);
    padding: 80px 0 0;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 3rem;
    padding-bottom: 4rem;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-about-text {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    color: var(--color-text-muted);
}

.social-links a:hover {
    background-color: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.footer-col-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer-links ul li {
    margin-bottom: 1rem;
}

.footer-links ul li a {
    color: var(--color-text-muted);
}

.footer-links ul li a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--color-text-muted);
}

.footer-contact ul li i {
    margin-top: 5px;
    color: var(--color-secondary);
}

.footer-contact ul li a {
    color: var(--color-text-muted);
}

.footer-contact ul li a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding: 1.5rem 0;
    text-align: center;
    color: var(--color-text-muted);
}

/* 13. INNER PAGES (Contact, Legal) */
/* =================================== */
.page-header-section {
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header-desc {
    max-width: 600px;
    margin: 1rem auto 0;
    font-size: 1.1rem;
    color: var(--color-text-muted);
}

.breadcrumbs {
    margin-top: 1rem;
    color: var(--color-text-muted);
}

.breadcrumbs a {
    color: var(--color-text-muted);
}

.breadcrumbs a:hover {
    color: var(--color-secondary);
}

.breadcrumbs i {
    font-size: 0.8rem;
    margin: 0 0.5rem;
}

/* Contact Page */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.contact-info-panel {
    padding: 3rem;
    background-color: var(--color-background-light);
}

.contact-info-panel h3 {
    margin-bottom: 1rem;
}

.contact-info-panel p {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.contact-details-list li {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-details-list i {
    font-size: 1.5rem;
    color: var(--color-secondary);
    margin-top: 5px;
}

.contact-details-list h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.contact-details-list p,
.contact-details-list a {
    color: var(--color-text-muted);
}

.contact-form-wrapper {
    padding: 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    background-color: var(--color-background-light);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    color: var(--color-text);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.3);
}

/* Legal Pages */
.legal-content {
    background-color: var(--color-surface);
    padding: 3rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--color-border);
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    margin: 2rem 0 1rem;
    color: var(--color-secondary);
}

.legal-content p {
    margin-bottom: 1rem;
    color: var(--color-text-muted);
}

.legal-content strong {
    color: #fff;
    font-weight: 600;
}


/* 14. POPUP & LIVE CHAT */
/* =================================== */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1001;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-medium), visibility var(--transition-medium);
}

.popup.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background-color: var(--color-surface);
    padding: 3rem;
    border-radius: var(--border-radius);
    text-align: center;
    max-width: 500px;
    transform: scale(0.9);
    transition: transform var(--transition-medium);
}

.popup.active .popup-content {
    transform: scale(1);
}

.popup-icon {
    font-size: 4rem;
    color: var(--color-success);
    margin-bottom: 1rem;
}

.popup h3 {
    margin-bottom: 0.5rem;
}

.popup p {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.live-chat-stub {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--color-primary), #6366F1);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(79, 70, 229, 0.5);
    z-index: 999;
    transition: transform var(--transition-fast);
}

.live-chat-stub:hover {
    transform: scale(1.1) rotate(10deg);
}

/* 15. ANIMATIONS */
/* =================================== */
[data-animation] {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-in.visible {
    opacity: 1;
    transform: none;
}

[data-animation="fade-in-up"] {
    transform: translateY(50px);
}

[data-animation="fade-in-left"] {
    transform: translateX(-50px);
}

[data-animation="fade-in-right"] {
    transform: translateX(50px);
}

[data-animation="zoom-in"] {
    transform: scale(0.9);
}

/* 16. RESPONSIVE DESIGN */
/* =================================== */
@media (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100%;
        background-color: var(--color-surface);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        transition: right var(--transition-medium);
        box-shadow: -10px 0 30px var(--color-shadow);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

    .nav-link {
        font-size: 1.2rem;
    }

    .nav-toggle,
    .nav-close {
        display: block;
    }

    .nav-close {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        font-size: 2rem;
        color: #fff;
        background: none;
        border: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-about,
    .footer-contact {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    body {
        cursor: auto;
        /* Re-enable default cursor for touch devices */
    }

    .cursor-glow {
        display: none;
    }

    .header-actions .btn {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        order: 2;
    }

    .hero-visual {
        order: 1;
        margin-bottom: 2rem;
    }

    .hero-subtitle {
        margin: 1.5rem auto 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-3d-sphere {
        width: 300px;
        height: 300px;
    }

    .process-timeline::after {
        left: 35px;
    }

    .process-step {
        width: 100%;
        padding-left: 80px;
        padding-right: 10px;
        left: 0 !important;
        justify-content: flex-start !important;
        text-align: left !important;
        flex-direction: row !important;
    }

    .slider-controls {
        width: 100%;
        left: 0;
    }

    .cta-container {
        flex-direction: column;
        text-align: center;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .section-padding {
        padding: 60px 0;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-about .logo,
    .social-links {
        justify-content: center;
    }

    .footer-about-text {
        margin: 1.5rem auto;
    }

    .footer-contact ul li {
        justify-content: center;
    }
}