/* ============================================
   SPARKLECLEAN - PROFESSIONAL CLEANING WEBSITE
   Based on Nomad Template Design
   ============================================ */

/* CSS Variables */
:root {
    /* Colors */
    --primary: #ff8c5f;
    --primary-light: #ffb899;
    --primary-lighter: #ffd4c4;
    --secondary: #0a362f;
    --secondary-dark: #0b1e1b;
    --accent: #ff8c5f;
    --black: #000000;
    --white: #ffffff;
    --gray: #f9f9f9;
    --light-gray: #f0efef;
    --border-gray: #e6e6e6;
    --text-gray: #535353;
    --dark-gray: #afafaf;

    /* Typography */
    --font-display: 'Open Sans', sans-serif;
    --font-body: 'Open Sans', sans-serif;

    /* Spacing */
    --container-width: 1400px;
    --section-padding: 140px;
    --section-padding-mobile: 80px;

    /* Easing */
    --ease-dramatic: cubic-bezier(0.87, 0, 0.13, 1);
    --ease-expo-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-elastic: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);

    /* Glass Shadows & Blurs */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-bg-dark: rgba(0, 0, 0, 0.2);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-blur: blur(20px);

    --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    --shadow-soft: 0 20px 40px -15px rgba(0, 0, 0, 0.05);
    --shadow-primary: 0 10px 30px rgba(79, 172, 254, 0.4);
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 28px;
    color: var(--black);
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.2;
    color: var(--black);
}

h1 {
    font-size: 65px;
    line-height: 75px;
}

h2 {
    font-size: 52px;
    line-height: 62px;
}

h3 {
    font-size: 46px;
    line-height: 56px;
}

h4 {
    font-size: 38px;
    line-height: 48px;
}

h5 {
    font-size: 28px;
    line-height: 38px;
}

h6 {
    font-size: 22px;
    line-height: 32px;
}

p {
    color: var(--text-gray);
    margin-bottom: 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s var(--ease-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul,
ol {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons (Glass & Magnetic) */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 36px;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 400;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s var(--ease-expo-out);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-magnetic {
    /* JS will handle magnetic pull */
    transition: transform 0.1s linear, box-shadow 0.3s ease;
}

.btn-glass-primary,
.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    box-shadow: var(--shadow-primary);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--white);
}

.btn-glass-primary::before,
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s var(--ease-expo-out);
    z-index: -1;
}

.btn-glass-primary:hover,
.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(79, 172, 254, 0.5);
}

.btn-glass-primary:hover::before,
.btn-primary:hover::before {
    left: 100%;
}

.btn-glass-outline {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    color: var(--white);
    box-shadow: var(--shadow-glass);
}

.btn-glass-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.4);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Section Styles */
.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 70px;
}

.section-subtitle {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 16px;
    display: inline-block;
}

.section-title {
    margin-bottom: 20px;
}

.section-desc {
    font-size: 18px;
    color: var(--text-gray);
}

/* Background Colors */
.bg-gray {
    background-color: var(--gray);
}

.bg-secondary {
    background-color: var(--secondary);
}

.bg-secondary * {
    color: var(--white);
}

.bg-secondary p {
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    z-index: 1000;
    transition: all 0.4s var(--ease-expo-out);
    background: transparent;
}

.navbar.scrolled {
    height: 64px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 400;
    color: var(--white);
}

.navbar.scrolled .logo {
    color: var(--black);
}

.logo-img {
    height: 80px;
    /* Increased size significantly */
    width: auto;
    object-fit: contain;
    transition: transform 0.4s var(--ease-expo-out);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.logo:hover .logo-img {
    transform: scale(1.1) rotate(-5deg);
}

.logo-icon-wrapper {
    display: none;
}

.logo-icon {
    display: none;
}


.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 400;
    color: var(--white);
    position: relative;
    padding: 5px 0;
}

.navbar.scrolled .nav-link {
    color: var(--black);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s var(--ease-expo-out);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.bar {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s var(--ease-expo-out);
    border-radius: 2px;
}

.navbar.scrolled .bar {
    background: var(--black);
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--ease-smooth);
    z-index: 998;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   HERO SECTION (Glassmorphism & Mesh)
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
    background-color: var(--secondary);
    /* Fallback */
}

/* Animated Mesh Gradient */
.hero-mesh-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--secondary);
    overflow: hidden;
    z-index: 1;
}

.mesh-blob {
    position: absolute;
    filter: blur(80px);
    opacity: 0.6;
    animation: blobFloat 20s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: var(--primary-light);
    animation-delay: 0s;
}

.blob-2 {
    bottom: -20%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: var(--primary);
    animation-delay: -5s;
}

.blob-3 {
    top: 40%;
    left: 50%;
    width: 500px;
    height: 500px;
    background: var(--accent);
    transform: translateX(-50%);
    animation-delay: -10s;
    opacity: 0.3;
}

@keyframes blobFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(100px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-50px, 100px) scale(0.9);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    z-index: 10;
}

.hero-content {
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 30px;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 400;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeUp 1s var(--ease-expo-out) forwards 0.2s;
}

.badge-icon {
    color: var(--primary);
}

.hero-title {
    font-size: 72px;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 400;
    color: var(--white);
    letter-spacing: -1px;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeUp 1s var(--ease-expo-out) forwards 0.4s;
}

.hero-desc {
    font-size: 20px;
    line-height: 32px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 45px;
    max-width: 550px;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeUp 1s var(--ease-expo-out) forwards 0.6s;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeUp 1s var(--ease-expo-out) forwards 0.8s;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 20px;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeUp 1s var(--ease-expo-out) forwards 1s;
}

.avatars-group {
    display: flex;
}

.avatars-group img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--secondary);
    margin-left: -15px;
    object-fit: cover;
}

.avatars-group img:first-child {
    margin-left: 0;
}

.avatar-more {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--secondary);
    margin-left: -15px;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 12px;
    z-index: 10;
}

.trust-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stars {
    color: #ffb800;
    font-size: 14px;
}

.trust-text span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

@keyframes fadeUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Glass Hero Visuals */
.hero-visual {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: var(--shadow-glass);
}

.main-image-card {
    width: 100%;
    max-width: 450px;
    height: 550px;
    padding: 20px;
    position: relative;
    z-index: 2;
    transform: perspective(1000px) rotateY(-8deg) rotateX(5deg);
    transition: transform 0.6s var(--ease-expo-out);
    opacity: 0;
    animation: fadeUp 1s var(--ease-expo-out) forwards 0.5s;
}

.main-image-card:hover {
    transform: perspective(1000px) rotateY(0) rotateX(0);
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.glass-reflection {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, transparent 50%);
    pointer-events: none;
}

/* Floating Stats */
.stat-card {
    position: absolute;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 3;
    opacity: 0;
    animation: popIn 0.8s var(--ease-elastic) forwards;
}

.float-anim-1 {
    top: 40px;
    right: -20px;
    animation-delay: 1.2s;
    animation-name: popIn, floatCard1;
    animation-duration: 0.8s, 6s;
    animation-iteration-count: 1, infinite;
    animation-timing-function: var(--ease-elastic), ease-in-out;
}

.float-anim-2 {
    bottom: 60px;
    left: -40px;
    animation-delay: 1.4s;
    animation-name: popIn, floatCard2;
    animation-duration: 0.8s, 7s;
    animation-iteration-count: 1, infinite;
    animation-timing-function: var(--ease-elastic), ease-in-out;
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
}

.bg-cyan {
    background: var(--primary);
}

.bg-coral {
    background: var(--accent);
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-info strong {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--white);
    line-height: 1;
}

.stat-info span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

@keyframes popIn {
    0% {
        transform: scale(0.8) translateY(20px);
        opacity: 0;
    }

    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

@keyframes floatCard1 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes floatCard2 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(15px);
    }
}

/* Floating minimal bubbles */
.floating-bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.1));
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 10;
}

.bubble-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: -10%;
    animation: floatCard2 5s infinite ease-in-out;
}

.bubble-2 {
    width: 50px;
    height: 50px;
    bottom: 30%;
    right: -5%;
    animation: floatCard1 4s infinite ease-in-out;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-btn {
    display: block;
    width: 30px;
    height: 50px;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    display: block;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    display: block;
    margin: 6px auto;
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(15px);
        opacity: 0;
    }
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    background: var(--gray);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s var(--ease-expo-out);
    position: relative;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-image {
    height: 240px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-expo-out);
}

.service-content {
    padding: 30px;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-lighter);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 24px;
    margin-bottom: 20px;
    transition: all 0.3s var(--ease-expo-out);
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: var(--white);
    transform: rotateY(360deg);
}

.service-title {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 12px;
}

.service-desc {
    font-size: 15px;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 24px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 400;
    color: var(--black);
    transition: all 0.3s var(--ease-expo-out);
}

.service-link i {
    transition: transform 0.3s var(--ease-expo-out);
}

.service-link:hover {
    color: var(--primary);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    position: relative;
    overflow: hidden;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

.about-image img {
    width: 100%;
    height: auto;
}

.about-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--primary-lighter);
    border-radius: 20px;
    top: 30px;
    left: 30px;
    z-index: 1;
    animation: aboutPulse 4s ease-in-out infinite;
}

@keyframes aboutPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

.about-content {
    position: relative;
}

.about-title {
    margin-bottom: 24px;
}

.about-desc {
    font-size: 16px;
    line-height: 28px;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.about-features {
    display: grid;
    gap: 16px;
    margin-bottom: 40px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-check {
    width: 28px;
    height: 28px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 12px;
    flex-shrink: 0;
    animation: checkPulse 2s ease-in-out infinite;
}

@keyframes checkPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.about-feature span {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 400;
}

.about-stats {
    display: flex;
    gap: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-gray);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 400;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-gray);
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process {
    background: var(--secondary);
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    animation: patternRotate 60s linear infinite;
}

@keyframes patternRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.process .section-title,
.process .section-subtitle {
    color: var(--white);
    position: relative;
    z-index: 1;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.process-card {
    text-align: center;
    padding: 50px 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s var(--ease-expo-out);
    position: relative;
}

.process-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
}

.process-number {
    width: 70px;
    height: 70px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 400;
    color: var(--white);
    margin: 0 auto 25px;
    position: relative;
}

.process-number::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--primary);
    animation: numberPulse 2s ease-out infinite;
}

@keyframes numberPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.process-title {
    font-size: 24px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 15px;
}

.process-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 24px;
    margin: 0;
}

.process-connector {
    position: absolute;
    top: 85px;
    left: 33.33%;
    width: 33.33%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary) 50%, transparent 100%);
    background-size: 200% 100%;
    animation: connectorFlow 2s linear infinite;
}

@keyframes connectorFlow {
    0% {
        background-position: 100% 0;
    }

    100% {
        background-position: -100% 0;
    }
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    background: var(--gray);
    position: relative;
}

.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--white);
    border-radius: 24px;
    padding: 50px;
    box-shadow: var(--shadow-md);
    text-align: center;
    position: relative;
}

.testimonial-quote {
    width: 70px;
    height: 70px;
    background: var(--primary-lighter);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 28px;
    margin: 0 auto 30px;
}

.testimonial-text {
    font-family: var(--font-display);
    font-size: 22px;
    line-height: 36px;
    color: var(--black);
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-lighter);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    text-align: left;
}

.author-name {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 4px;
}

.author-role {
    font-size: 14px;
    color: var(--text-gray);
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    justify-content: center;
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #ffc107;
    font-size: 18px;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.testimonial-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--border-gray);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s var(--ease-expo-out);
    font-size: 16px;
    color: var(--black);
}

.testimonial-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-gray);
    cursor: pointer;
    transition: all 0.3s var(--ease-expo-out);
}

.testimonial-dot.active {
    background: var(--primary);
    width: 30px;
    border-radius: 5px;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center;
}

.pricing-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--border-gray);
    transition: all 0.4s var(--ease-expo-out);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.pricing-card.popular {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 8px 24px;
    border-radius: 30px;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        transform: translateX(-50%) scale(1);
    }

    50% {
        transform: translateX(-50%) scale(1.05);
    }
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-gray);
}

.pricing-name {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 10px;
}

.pricing-price {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 400;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 5px;
}

.pricing-price span {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-gray);
}

.pricing-desc {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
}

.pricing-features {
    margin-bottom: 30px;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray);
}

.pricing-feature:last-child {
    border-bottom: none;
}

.pricing-feature i {
    color: var(--primary);
    font-size: 14px;
}

.pricing-feature span {
    font-size: 15px;
    color: var(--text-gray);
}

.pricing-btn {
    width: 100%;
    justify-content: center;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
    background: var(--gray);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.faq-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 100px;
}

.faq-image img {
    width: 100%;
    height: auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s var(--ease-expo-out);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-item.active {
    box-shadow: var(--shadow-lg);
}

.faq-question {
    width: 100%;
    padding: 24px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 400;
    color: var(--black);
    transition: all 0.3s var(--ease-expo-out);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    width: 32px;
    height: 32px;
    background: var(--primary-lighter);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 12px;
    transition: all 0.3s var(--ease-expo-out);
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-item.active .faq-icon {
    background: var(--primary);
    color: var(--white);
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s var(--ease-expo-out);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer-content {
    padding: 0 30px 24px;
    font-size: 15px;
    line-height: 26px;
    color: var(--text-gray);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
    background: var(--secondary);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    animation: ctaPattern 30s linear infinite;
}

@keyframes ctaPattern {
    from {
        transform: rotate(0deg) scale(1.5);
    }

    to {
        transform: rotate(360deg) scale(1.5);
    }
}

.cta-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-content {
    color: var(--white);
}

.cta-title {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
    max-width: 500px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 400;
}

.cta-phone i {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.cta-image img {
    width: 100%;
    height: auto;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: var(--gray);
    border-radius: 16px;
    transition: all 0.3s var(--ease-expo-out);
}

.contact-card:hover {
    background: var(--primary-lighter);
    transform: translateX(10px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 8px;
}

.contact-details p,
.contact-details a {
    font-size: 15px;
    color: var(--text-gray);
    margin: 0;
}

.contact-details a:hover {
    color: var(--primary);
}

.contact-form-wrapper {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-gray);
}

.contact-form-title {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 10px;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--border-gray);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--black);
    background: var(--white);
    transition: all 0.3s var(--ease-expo-out);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-lighter);
}

.form-textarea {
    min-height: 140px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-submit {
    width: 100%;
    padding: 18px;
    font-size: 16px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--secondary);
    color: var(--white);
    padding: 80px 0 0;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo img {
    height: 70px;
    /* Large footer logo */
    margin-right: 15px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 28px;
    /* Increased text size too */
    font-weight: 400;
    color: var(--white);
    margin-bottom: 25px;
    background: transparent !important;
    /* Ensure no background */
}

.footer-desc {
    font-size: 15px;
    line-height: 26px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    transition: all 0.3s var(--ease-expo-out);
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 18px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 25px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s var(--ease-expo-out);
}

.footer-links a::before {
    content: '';
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s var(--ease-expo-out);
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-links a:hover::before {
    width: 10px;
}

.newsletter-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.newsletter-input {
    flex: 1;
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: 14px;
    transition: all 0.3s var(--ease-expo-out);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
}

.newsletter-btn {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border: none;
    border-radius: 10px;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s var(--ease-expo-out);
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-btn:hover {
    background: var(--primary-light);
    transform: scale(1.05);
}

.footer-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact .contact-item i {
    color: var(--primary);
    font-size: 16px;
}

.footer-contact .contact-item a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 25px;
}

.footer-legal a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-legal a:hover {
    color: var(--primary);
}

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-title {
    font-size: 52px;
    color: var(--white);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.page-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 1;
    margin: 0;
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.service-detail {
    padding: var(--section-padding) 0;
}

.service-detail:nth-child(even) {
    background: var(--gray);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.service-detail:nth-child(even) .service-detail-grid {
    direction: rtl;
}

.service-detail:nth-child(even) .service-detail-content {
    direction: ltr;
}

.service-detail-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.service-detail-image img {
    width: 100%;
    height: auto;
}

.service-detail-content {
    position: relative;
}

.service-detail-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-lighter);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 36px;
    margin-bottom: 25px;
}

.service-detail-title {
    font-size: 38px;
    margin-bottom: 20px;
}

.service-detail-desc {
    font-size: 16px;
    line-height: 28px;
    color: var(--text-gray);
    margin-bottom: 25px;
}

.service-features-list {
    display: grid;
    gap: 12px;
    margin-bottom: 30px;
}

.service-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-feature-item i {
    color: var(--primary);
    font-size: 16px;
}

.service-feature-item span {
    font-size: 15px;
    color: var(--text-gray);
}

/* ============================================
   RESPONSIVE DESIGN (Creative App-like Feel)
   ============================================ */
@media (max-width: 1200px) {
    .container {
        max-width: 1000px;
    }

    .hero-title {
        font-size: 56px;
    }
}

@media (max-width: 991px) {

    /* Navigation */
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--glass-bg-dark);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transform: translateY(-100%);
        transition: transform 0.5s var(--ease-expo-out);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        font-size: 24px;
        color: var(--white);
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        z-index: 1001;
    }

    .hamburger .bar {
        background: var(--black);
    }

    .navbar.scrolled .hamburger .bar {
        background: var(--black);
    }

    .nav-menu.active~.hamburger .bar {
        background: var(--white);
    }

    /* Hero */
    .hero {
        padding-top: 120px;
        padding-bottom: 80px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .main-image-card {
        max-width: 100%;
        height: 450px;
        transform: none !important;
    }

    .stat-card.float-anim-1 {
        top: 10px;
        right: 0;
    }

    .stat-card.float-anim-2 {
        bottom: 10px;
        left: 0;
    }

    /* Swipeable Card Galleries (App-like feel) */
    .services-grid,
    .pricing-grid,
    .process-grid {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        padding-bottom: 30px;
        gap: 20px;
        -webkit-overflow-scrolling: touch;
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .services-grid::-webkit-scrollbar,
    .pricing-grid::-webkit-scrollbar,
    .process-grid::-webkit-scrollbar {
        height: 8px;
        display: none;
        /* hide main scrollbar but keep functionality */
    }

    .service-card,
    .pricing-card,
    .process-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
        margin-top: 0 !important;
        /* Disabling GSAP stagger push */
        transform: none !important;
    }

    .about-container,
    .faq-grid,
    .footer-content,
    .footer-grid,
    .contact-grid,
    .service-detail-grid,
    .cta-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .hide-on-mobile {
        display: none !important;
    }

    .section {
        padding: var(--section-padding-mobile) 0;
    }

    .hero-title {
        font-size: 38px;
        line-height: 1.2;
    }

    .hero-desc {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .main-image-card {
        height: 350px;
    }

    .stat-card {
        padding: 10px 15px;
    }

    .stat-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .stat-info strong {
        font-size: 18px;
    }

    .service-card,
    .pricing-card,
    .process-card {
        flex: 0 0 95%;
        /* take up almost full width on small phones */
    }

    h2 {
        font-size: 36px;
        line-height: 44px;
    }

    h3 {
        font-size: 28px;
        line-height: 38px;
    }

    .pricing-card {
        padding: 30px 20px;
    }

    .pricing-price {
        font-size: 42px;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Animation Classes for JS */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s var(--ease-expo-out);
}

.slide-left {
    opacity: 0;
    transform: translateX(-50px);
}

.slide-left.visible {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.6s var(--ease-expo-out);
}

.slide-right {
    opacity: 0;
    transform: translateX(50px);
}

.slide-right.visible {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.6s var(--ease-expo-out);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
    transition: all 0.6s var(--ease-expo-out);
}