/* ==========================================================================
   Media Mayavi - Premium Design System & Stylesheet
   ========================================================================== */

/* 1. Design System Tokens & Base Setup */
:root {
    --color-primary: #1D4ED8;
    --color-primary-rgb: 29, 78, 216;
    --color-secondary: #7C3AED;
    --color-secondary-rgb: 124, 58, 237;
    --color-accent: #38BDF8;
    --color-accent-rgb: 56, 189, 248;
    --color-bg: #FFFFFF;
    --color-bg-alt: #F8FAFC;
    --color-text: #111827;
    --color-text-muted: #4B5563;
    --color-success: #10B981;
    --color-glass-bg: rgba(255, 255, 255, 0.7);
    --color-glass-border: rgba(255, 255, 255, 0.4);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 30px rgba(29, 78, 216, 0.05);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.08);
    --shadow-soft-skeuo: 6px 6px 12px #e2e8f0, -6px -6px 12px #ffffff;
    --shadow-soft-skeuo-inset: inset 2px 2px 5px #cbd5e1, inset -2px -2px 5px #ffffff;
    --shadow-glow: 0 0 25px rgba(56, 189, 248, 0.35);
    
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-full: 9999px;
    
    --transition-fast: 0.2s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-normal: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-slow: 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* 2. Global Resets & Elements */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: initial; /* Lenis handles smooth scroll */
    overflow-x: hidden;
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    overflow-x: hidden;
    line-height: 1.6;
    background-image: url('ass/third_avater.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-attachment: fixed;
    background-color: #ffffff;
}

/* Custom Selection Colors */
::selection {
    background-color: rgba(56, 189, 248, 0.3);
    color: var(--color-text);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg-alt);
}
::-webkit-scrollbar-thumb {
    background: rgba(124, 58, 237, 0.25);
    border-radius: var(--border-radius-full);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

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

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

/* Typography Styles */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.2;
}

.section-header {
    margin-bottom: 5rem;
}

.section-title {
    font-size: 3rem;
    margin: 1rem 0;
    letter-spacing: -0.03em;
}

.section-desc {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    max-width: 650px;
    margin: 0 auto;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(29, 78, 216, 0.08);
    border: 1px solid rgba(29, 78, 216, 0.15);
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: var(--border-radius-full);
    margin-bottom: 1.5rem;
}

/* 3. Interactive Components & Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border-radius: var(--border-radius-full);
    transition: all var(--transition-normal);
    cursor: pointer;
    border: none;
}

.btn-lg {
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: #FFFFFF;
    box-shadow: 0 8px 24px rgba(29, 78, 216, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(29, 78, 216, 0.35);
}

.btn-secondary {
    background: var(--color-bg);
    color: var(--color-text);
    border: 1px solid var(--color-glass-border);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--color-bg-alt);
    border-color: rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

.shadow-glow {
    box-shadow: var(--shadow-glow);
}

.shadow-glow:hover {
    box-shadow: 0 0 35px rgba(56, 189, 248, 0.6);
}

/* Glassmorphism Card Style */
.glass-card {
    background: var(--color-glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--color-glass-border);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

/* Gradient text */
.gradient-text {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 4. Custom Cursor */
.custom-cursor {
    width: 8px;
    height: 8px;
    background-color: var(--color-primary);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: width var(--transition-fast), height var(--transition-fast), background-color var(--transition-fast);
}

.custom-cursor-glow {
    width: 40px;
    height: 40px;
    border: 1.5px solid rgba(29, 78, 216, 0.3);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.1s ease-out, border-color var(--transition-fast), width var(--transition-fast), height var(--transition-fast);
}

/* Cursor Hover states */
body.cursor-hover .custom-cursor {
    width: 12px;
    height: 12px;
    background-color: var(--color-accent);
}

body.cursor-hover .custom-cursor-glow {
    width: 60px;
    height: 60px;
    border-color: rgba(56, 189, 248, 0.6);
}

/* 5. Header / Navigation */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: padding var(--transition-normal), background-color var(--transition-normal);
    padding: 1.5rem 0;
}

.glass-nav {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.main-header.scrolled {
    padding: 0.8rem 0;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow-sm);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    text-decoration: none;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-text);
    letter-spacing: -0.02em;
}

.logo-text .accent-text {
    color: var(--color-primary);
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-text);
    text-decoration: none;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--color-primary);
    transition: width var(--transition-normal);
}

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

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

.btn-nav {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
}

/* Mobile Toggle menu button */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-text);
    transition: all var(--transition-normal);
}

/* 6. Section 1: Hero Section */
.hero-section {
    min-height: 80vh;
    display: flex;
    align-items: stretch;
    padding-top: 8rem;
    padding-bottom: 0;
    background: #ffffff !important;
}

/* Hero Section White Background overrides */
.hero-section .hero-title {
    color: #111827 !important;
}

.hero-section .hero-subtitle {
    color: #4b5563 !important;
}

.hero-section .badge {
    color: #1d4ed8 !important;
    border-color: rgba(29, 78, 216, 0.15) !important;
    background: rgba(29, 78, 216, 0.05) !important;
}

.hero-section .btn-secondary {
    color: #111827 !important;
    border-color: rgba(17, 24, 39, 0.15) !important;
    background: transparent !important;
}

.hero-section .btn-secondary:hover {
    background: rgba(29, 78, 216, 0.05) !important;
    border-color: var(--color-primary) !important;
}

.hero-section .floating-shape {
    background: rgba(255, 255, 255, 0.8) !important;
    border: 1px solid rgba(29, 78, 216, 0.12) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important;
}

#threejs-canvas-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 30%, rgba(56, 189, 248, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(124, 58, 237, 0.08) 0%, transparent 60%);
    z-index: 2;
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 3;
}

.hero-content {
    max-width: 720px;
    align-self: center;
}

.hero-badge {
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-self: end;
    position: relative;
}

.hero-avatar-wrapper {
    position: relative;
    width: 680px;
    height: 680px;
    display: flex;
    align-items: flex-end;
}

.avatar-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, rgba(29, 78, 216, 0.25) 0%, rgba(124, 58, 237, 0.15) 50%, transparent 100%);
    filter: blur(30px);
    border-radius: 50%;
    z-index: 1;
}

.hero-avatar {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom;
    z-index: 2;
}

/* Floating Animation */
.floating-avatar {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(1deg);
    }
}

/* Floating Marketing Icons */
.floating-shape {
    position: absolute;
    z-index: 4;
    font-size: 2rem;
    color: var(--color-primary);
    background: var(--color-glass-bg);
    border: 1px solid var(--color-glass-border);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    pointer-events: none;
}

.floating-shape svg {
    width: 24px;
    height: 24px;
    stroke-width: 2px;
}

.shape-1 {
    top: 25%;
    left: 8%;
    color: var(--color-primary);
    animation: floatIcon 7s ease-in-out infinite;
}

.shape-2 {
    bottom: 20%;
    left: 45%;
    color: var(--color-secondary);
    animation: floatIcon 9s ease-in-out infinite 1s;
}

.shape-3 {
    top: 15%;
    right: 35%;
    color: var(--color-accent);
    animation: floatIcon 8s ease-in-out infinite 0.5s;
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-12px) scale(1.05);
    }
}

/* 7. Section 2: About Section */
.about-section {
    padding-bottom: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
    align-items: center;
}

.about-text-content {
    max-width: 680px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.value-card {
    padding: 2rem;
    border-radius: var(--border-radius-md);
}

.value-icon {
    width: 48px;
    height: 48px;
    background: rgba(29, 78, 216, 0.08);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    margin-bottom: 1.25rem;
}

.value-icon svg {
    width: 24px;
    height: 24px;
}

.value-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.about-visual {
    display: flex;
    justify-content: flex-start;
    align-self: end;
    position: relative;
    margin-left: -8rem;
}

.about-avatar-container {
    position: relative;
    width: 600px;
    height: 600px;
    display: flex;
    align-items: flex-end;
}

.avatar-bg-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
    border: 1px dashed rgba(124, 58, 237, 0.3);
    border-radius: 50%;
    z-index: 1;
}

.pointing-avatar {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom;
    z-index: 2;
    transform: scaleX(-1); /* Flips avatar horizontally to face the right side */
    animation: gentleFloat 5s ease-in-out infinite;
    opacity: 0; /* Hidden initially for ScrollTrigger flight transition */
}

@keyframes gentleFloat {
    0%, 100% {
        transform: scaleX(-1) translateY(0);
    }
    50% {
        transform: scaleX(-1) translateY(-8px);
    }
}

.pointer-bubble {
    position: absolute;
    top: 15%;
    right: -10%;
    padding: 1rem 1.25rem;
    max-width: 200px;
    border-radius: var(--border-radius-md);
    z-index: 3;
    box-shadow: var(--shadow-sm);
    border-left: 3px solid var(--color-primary);
}

.pointer-bubble p {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-text);
}
/* 8a. Section 3: Showcase Section */
.showcase-section {
    padding: 8rem 0;
    position: relative;
    background: radial-gradient(circle at center, rgba(29, 78, 216, 0.05) 0%, var(--color-bg) 70%);
    overflow: hidden;
}

.showcase-visual-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 1080px;
    margin: 4rem auto 0 auto;
}

.showcase-avatar-wrapper {
    position: relative;
    width: 600px !important;
    height: 600px !important;
    max-width: 100% !important;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-glass);
    border: 1px solid var(--border-color);
    background: transparent;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-avatar-wrapper:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 30px 60px rgba(124, 58, 237, 0.12);
    border-color: rgba(124, 58, 237, 0.35);
}

.showcase-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}

.showcase-image {
    width: 100% !important;
    height: 100% !important;
    display: block;
    object-fit: contain !important;
    z-index: 1;
    position: relative;
}

/* Services Section Background Image and Light Theme overrides */
.services-section {
    background: transparent !important;
    position: relative;
    clip-path: inset(0);
    padding-bottom: 0 !important;
}

.services-fixed-title {
    position: fixed;
    top: 12%;
    left: 50%;
    transform: translate(-50%, 0);
    font-size: 11vw;
    font-weight: 900;
    color: #ffffff !important;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    pointer-events: none;
    letter-spacing: 0.15em;
    font-family: var(--font-heading);
    text-transform: uppercase;
    text-align: center;
    text-shadow: 0 10px 45px rgba(0, 0, 0, 0.08);
}

.services-section .section-title {
    color: #111827 !important;
}

.services-section .section-desc {
    color: #4b5563 !important;
}

.services-section .badge {
    color: #1d4ed8 !important;
    background: rgba(255, 255, 255, 0.25) !important;
    border-color: rgba(255, 255, 255, 0.45) !important;
    backdrop-filter: blur(4px) !important;
    box-shadow: 0 4px 12px rgba(29, 78, 216, 0.08) !important;
    font-size: 1.5rem !important;
    padding: 0.6rem 2.2rem !important;
    border-radius: 0px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.15em !important;
    font-weight: 800 !important;
    border-width: 2px !important;
}

.services-section .service-card {
    background: rgba(255, 255, 255, 0.75) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(229, 231, 235, 0.8) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03) !important;
    position: relative;
    overflow: hidden;
    border-radius: 50% !important;
    width: 340px !important;
    height: 340px !important;
    max-width: 100% !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2.5rem !important;
    margin: 0 auto;
}

/* Texture background image with full opacity */
.services-section .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('ass/cards_bg.png') !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1 !important;
    z-index: 0;
    transition: transform 0.4s ease;
    pointer-events: none;
}

.services-section .service-card h3,
.services-section .service-card p,
.services-section .service-icon,
.services-section .card-glow {
    position: relative;
    z-index: 1;
}

.services-section .service-card h3 {
    color: #ffffff !important;
}

.services-section .service-card p {
    color: rgba(255, 255, 255, 0.85) !important;
}

.services-section .service-icon {
    background: rgba(255, 255, 255, 0.12) !important;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

.services-section .service-card:hover {
    border-color: var(--color-primary) !important;
    box-shadow: 0 15px 40px rgba(29, 78, 216, 0.2) !important;
}

.services-section .service-card:hover::before {
    transform: scale(1.04);
}

/* Staggered Floating Animation for Circular Cards */
.services-section .service-card {
    animation: floatServiceCard 3.2s ease-in-out infinite;
}

/* Staggered offsets for organic planetary float */
.services-section .service-card:nth-child(2n) {
    animation-duration: 3.8s;
    animation-delay: -0.8s;
}

.services-section .service-card:nth-child(3n) {
    animation-duration: 3.5s;
    animation-delay: -1.5s;
}

.services-section .service-card:nth-child(4n) {
    animation-duration: 4.2s;
    animation-delay: -2.2s;
}

.services-section .service-card:hover {
    animation-play-state: paused;
}

@keyframes floatServiceCard {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    33% {
        transform: translateY(-8px) translateX(4px) rotate(1.2deg);
    }
    66% {
        transform: translateY(-3px) translateX(-3px) rotate(-1.2deg);
    }
}

/* 8. Section 3: Services Section */
.services-columns-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
}

.services-left-column,
.services-right-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.services-center-space {
    min-height: 550px;
    pointer-events: none;
}

.service-card {
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    height: 100%;
    border-radius: var(--border-radius-md);
    display: flex;
    flex-direction: column;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: rgba(29, 78, 216, 0.08);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    margin-bottom: 2rem;
    border: 1px solid rgba(29, 78, 216, 0.15);
    transition: background var(--transition-normal), color var(--transition-normal);
}

.service-icon svg {
    width: 26px;
    height: 26px;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Service Card Hover Animations */
.service-card:hover {
    border-color: rgba(56, 189, 248, 0.5);
    box-shadow: 0 15px 40px rgba(56, 189, 248, 0.08);
    transform: translateY(-5px);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: #FFFFFF;
}

/* Dynamic Card Glows */
.card-glow {
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.15) 0%, transparent 70%);
    bottom: -75px;
    right: -75px;
    pointer-events: none;
    border-radius: 50%;
    transition: opacity var(--transition-normal);
    opacity: 0;
}

.service-card:hover .card-glow {
    opacity: 1;
}

#why-choose-us {
    padding-top: 3rem !important;
    padding-bottom: 0 !important;
}

.why-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 4rem;
    align-items: end;
}

.why-content {
    order: 2;
    padding-top: 0 !important;
    margin-top: 0 !important;
    align-self: start !important;
}

.why-visual {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    position: relative;
    order: 1;
    margin-left: -80px;
}

.why-avatar-wrapper {
    position: relative;
    width: 500px !important;
    height: 700px !important;
    max-width: 100% !important;
    display: flex;
    align-items: flex-end;
}

.avatar-glow-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px !important;
    height: 450px !important;
    border: 1px solid rgba(29, 78, 216, 0.15);
    border-radius: 50%;
    z-index: 1;
}

.why-avatar {
    position: relative;
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    z-index: 2;
    animation: gentleFloatWhy 6s ease-in-out infinite 0.5s;
}

@keyframes gentleFloatWhy {
    0%, 100% {
        transform: scaleX(1) translateY(60px);
    }
    50% {
        transform: scaleX(1) translateY(52px);
    }
}

.presenter-tag {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.6rem 1.5rem;
    border-radius: var(--border-radius-full);
    z-index: 3;
    box-shadow: var(--shadow-sm);
    white-space: nowrap;
}

.presenter-tag span {
    font-size: 0.85rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-primary);
}

.why-timeline {
    position: relative;
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.why-timeline::before {
    display: none !important;
}

.why-timeline-item {
    position: relative;
    padding: 1.5rem !important;
    background: rgba(255, 255, 255, 0.6) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(229, 231, 235, 0.6) !important;
    border-radius: var(--border-radius-md) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02) !important;
    cursor: pointer;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease !important;
    opacity: 0.8;
}

.why-timeline-item:last-child {
    padding-bottom: 1.5rem !important;
}

.timeline-dot {
    display: none !important;
}

.why-timeline-text h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: var(--color-text);
    transition: color var(--transition-fast);
}

.why-timeline-text p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
    line-height: 1.5;
}

/* Active timeline state */
.why-timeline-item.active {
    background: rgba(255, 255, 255, 0.95) !important;
    border-color: var(--color-primary) !important;
    box-shadow: 0 10px 30px rgba(29, 78, 216, 0.08) !important;
    transform: translateY(-4px);
    opacity: 1 !important;
}

.why-timeline-item.active .why-timeline-text h3 {
    color: var(--color-primary);
}

.why-timeline-item:not(.active) {
    opacity: 0.7;
}

.why-timeline-item:hover {
    opacity: 1;
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.85) !important;
    border-color: rgba(29, 78, 216, 0.3) !important;
}

/* 10. Section 5: Portfolio Section */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.filter-btn {
    padding: 0.6rem 1.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    background: transparent;
    border: 1px solid transparent;
    border-radius: var(--border-radius-full);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.filter-btn:hover {
    color: var(--color-primary);
}

.filter-btn.active {
    color: var(--color-primary);
    background: rgba(29, 78, 216, 0.08);
    border-color: rgba(29, 78, 216, 0.15);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.portfolio-item {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    break-inside: avoid;
    aspect-ratio: 4 / 3;
}

/* Double-width layout grids for masonry effect */
.portfolio-item:nth-child(2),
.portfolio-item:nth-child(5) {
    aspect-ratio: 4 / 5;
}

.portfolio-img-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.portfolio-overlay {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    transform: translateY(20px);
    opacity: 0;
    transition: transform var(--transition-normal), opacity var(--transition-normal);
    z-index: 2;
}

.project-tag {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-primary);
    letter-spacing: 0.05em;
}

.portfolio-overlay h3 {
    font-size: 1.25rem;
    margin: 0.25rem 0 0.5rem;
}

.portfolio-overlay p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
}

.project-link-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform var(--transition-fast);
}

.project-link-btn svg {
    width: 18px;
    height: 18px;
}

.project-link-btn:hover {
    transform: scale(1.1);
}

/* Portfolio Hover Interactions */
.portfolio-item:hover .portfolio-img {
    transform: scale(1.08);
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
    opacity: 1;
}

/* 11. Section 6: Process Section */
.process-timeline-container {
    position: relative;
    max-width: 900px;
    margin: 1.5rem auto 0;
    padding: 2.5rem 0 6rem 0;
}

/* Central vertical track bg */
.process-track-bg {
    position: absolute;
    top: 2rem;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    background: rgba(29, 78, 216, 0.08);
    border-radius: 3px;
    z-index: 1;
}

/* Central vertical track active fill */
.process-track-active {
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    background: linear-gradient(to bottom, #1D4ED8, #7C3AED, #38BDF8);
    height: 0%; /* scrubbed by GSAP */
    border-radius: 3px;
    z-index: 2;
    transition: height 0.1s ease-out;
}

.process-avatar-mover {
    position: absolute;
    top: 2rem; /* controlled by GSAP top */
    left: 22.5%;
    transform: translate(-50%, -50%);
    width: 130px !important;
    height: 130px !important;
    z-index: 5;
    pointer-events: none;
    will-change: top, left;
}

.walking-avatar {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.15));
}

.walking-bubble {
    position: absolute;
    bottom: 95%;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-full);
    box-shadow: var(--shadow-sm);
    border-bottom: 2px solid var(--color-primary);
    white-space: nowrap;
    z-index: 6;
}

.walking-bubble span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text);
}

.process-steps {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    z-index: 3;
}

.process-step {
    display: flex;
    width: 100%;
    position: relative;
    transition: opacity var(--transition-normal);
}

.process-step:nth-child(odd) {
    justify-content: flex-start;
}

.process-step:nth-child(even) {
    justify-content: flex-end;
}

/* Card styling */
.process-step-card {
    width: 45%;
    background: rgba(255, 255, 255, 0.6) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(229, 231, 235, 0.6) !important;
    border-radius: var(--border-radius-md) !important;
    padding: 2rem !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02) !important;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease !important;
    cursor: pointer;
}

.process-step:nth-child(odd) .process-step-card {
    text-align: right;
}

.process-step:nth-child(even) .process-step-card {
    text-align: left;
}

.step-num {
    width: 44px;
    height: 44px;
    background: var(--color-bg);
    border: 2px solid rgba(29, 78, 216, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-text-muted);
    font-size: 1.1rem;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.process-step:nth-child(odd) .step-num {
    margin-left: auto;
    margin-right: 0;
    margin-bottom: 1.25rem;
}

.process-step:nth-child(even) .step-num {
    margin-left: 0;
    margin-right: auto;
    margin-bottom: 1.25rem;
}

.process-step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    transition: color var(--transition-fast);
}

.process-step-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    transition: color var(--transition-fast);
}

/* Active states */
.process-step.active .process-step-card {
    background: rgba(255, 255, 255, 0.95) !important;
    border-color: var(--color-primary) !important;
    box-shadow: 0 15px 40px rgba(29, 78, 216, 0.08) !important;
    transform: translateY(-4px);
    opacity: 1 !important;
}

.process-step.active .step-num {
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: #FFFFFF;
    box-shadow: 0 0 15px rgba(29, 78, 216, 0.3);
}

.process-step.active h3 {
    color: var(--color-primary);
}

.process-step:not(.active) {
    opacity: 0.65;
}

.process-step:hover {
    opacity: 1;
}

.process-step:hover .process-step-card {
    background: rgba(255, 255, 255, 0.8) !important;
    border-color: rgba(29, 78, 216, 0.25) !important;
}

/* 12. Section 7: Statistics Section */
.stats-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: #FFFFFF;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stats-section .stat-item {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.85);
}

/* 13. Section 8: Testimonials Section */
.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 4rem;
}

.testimonial-card {
    padding: 4rem 3.5rem;
    text-align: center;
    border-radius: var(--border-radius-lg);
}

.testimonial-card .rating {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 2rem;
}

.testimonial-card .rating svg {
    width: 20px;
    height: 20px;
    color: #e2e8f0;
}

.testimonial-card .rating svg.star-filled {
    color: #FBBF24;
    fill: #FBBF24;
}

.quote-text {
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 2.5rem;
}

.client-info {
    display: inline-flex;
    align-items: center;
    text-align: left;
    gap: 1.25rem;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-primary);
}

.client-name {
    font-size: 1.1rem;
    font-weight: 600;
}

.client-title {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* Swiper styling customization */
.testimonials-slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(124, 58, 237, 0.2);
    opacity: 1;
}

.testimonials-slider .swiper-pagination-bullet-active {
    background: var(--color-primary);
    width: 24px;
    border-radius: var(--border-radius-full);
}

/* 14. Section 9: Team Section */
.team-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 5rem;
}

.team-intro {
    max-width: 480px;
}

.team-avatar-box {
    margin-top: 3.5rem;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.team-avatar {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.team-bubble p {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-muted);
}

.team-members {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.team-card {
    padding: 2rem;
    text-align: center;
}

.member-image-wrapper {
    position: relative;
    width: 100%;
    height: 260px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.member-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.member-socials {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(29, 78, 216, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.member-socials a {
    width: 40px;
    height: 40px;
    background: var(--color-bg);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transform: translateY(15px);
    transition: all var(--transition-normal);
}

.member-socials a:hover {
    background: var(--color-accent);
    color: var(--color-text);
}

/* Hover effects */
.team-card:hover .member-img {
    transform: scale(1.05);
}

.team-card:hover .member-socials {
    opacity: 1;
}

.team-card:hover .member-socials a {
    transform: translateY(0);
}

.team-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.member-role {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* 15. Section 10: Pricing Section */
.pricing-toggle-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    background: rgba(29, 78, 216, 0.05);
    border: 1px solid rgba(29, 78, 216, 0.1);
    padding: 0.5rem 1.5rem;
    border-radius: var(--border-radius-full);
}

.pricing-toggle-wrapper span {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
}

.pricing-toggle-btn {
    width: 50px;
    height: 26px;
    background: rgba(29, 78, 216, 0.25);
    border-radius: var(--border-radius-full);
    border: none;
    cursor: pointer;
    position: relative;
    transition: background var(--transition-normal);
}

.pricing-toggle-btn.annual {
    background: var(--color-primary);
}

.toggle-circle {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: #FFFFFF;
    border-radius: 50%;
    transition: left var(--transition-normal);
}

.pricing-toggle-btn.annual .toggle-circle {
    left: 27px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 5rem;
    align-items: stretch;
}

.pricing-card {
    padding: 3.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card.highlighted {
    border: 2px solid var(--color-primary);
    transform: scale(1.03);
    position: relative;
    box-shadow: 0 25px 60px rgba(29, 78, 216, 0.1);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.4rem 1.2rem;
    border-radius: var(--border-radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
}

.pricing-header p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.price-container {
    display: flex;
    align-items: baseline;
    margin-bottom: 2.5rem;
}

.currency {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-text);
}

.price-value {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    color: var(--color-text);
    line-height: 1;
}

.period {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-left: 0.25rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 3rem;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.pricing-features li svg {
    width: 18px;
    height: 18px;
    color: var(--color-success);
}

.pricing-features li.disabled {
    color: var(--color-text-muted);
    opacity: 0.5;
}

.pricing-features li.disabled svg {
    color: var(--color-text-muted);
}

/* Pricing Interactive Hover animations */
.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.highlighted:hover {
    transform: scale(1.03) translateY(-5px);
}

/* 16. Section 11: FAQ Accordions */
.faq-accordion-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.25rem;
    border-radius: var(--border-radius-md);
    overflow: hidden;
}

.faq-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.8rem 2.2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    outline: none;
}

.faq-trigger span {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--color-text);
    padding-right: 1.5rem;
}

.faq-icon-box {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(29, 78, 216, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    transition: transform var(--transition-normal);
}

.faq-icon-box svg {
    width: 16px;
    height: 16px;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal) ease;
}

.faq-content p {
    padding: 0 2.2rem 2.2rem;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Active FAQ item style */
.faq-item.active .faq-icon-box {
    transform: rotate(180deg);
    background: var(--color-primary);
    color: #FFFFFF;
}

.faq-item.active {
    border-color: rgba(124, 58, 237, 0.3);
}

/* 17. Section 12: Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 0.90fr 1.1fr;
    gap: 5rem;
    align-items: stretch;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
}

.contact-details {
    margin: 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(29, 78, 216, 0.05);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.contact-icon svg {
    width: 20px;
    height: 20px;
}

.contact-item h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-item p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.map-wrapper {
    overflow: hidden;
    border-radius: var(--border-radius-md);
    flex-grow: 1;
    min-height: 220px;
}

.contact-form-panel {
    padding: 4rem 3.5rem;
    position: relative;
}

.contact-avatar-box {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.contact-avatar {
    width: 60px;
    height: 60px;
    object-fit: contain;
    animation: gentleFloat 5s ease-in-out infinite;
}

.contact-bubble {
    padding: 0.6rem 1.25rem;
    background: var(--color-bg);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--border-radius-md);
    position: relative;
    box-shadow: var(--shadow-sm);
}

.contact-bubble::after {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 14px;
    height: 14px;
    background: var(--color-bg);
    border-left: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-bubble p {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-primary);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: var(--color-bg-alt);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--color-text);
    outline: none;
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-primary);
    background: var(--color-bg);
    box-shadow: 0 0 10px rgba(29, 78, 216, 0.05);
}

.form-status {
    font-size: 0.9rem;
    margin-top: 1rem;
    text-align: center;
    font-weight: 500;
}

.form-status.success {
    color: var(--color-success);
}

.form-status.error {
    color: #EF4444;
}

/* 18. Footer */
.main-footer {
    background-color: var(--color-text);
    color: rgba(255, 255, 255, 0.7);
    padding: 6rem 0 3rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 0.6fr 0.6fr 1.6fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-brand .logo-text {
    color: #FFFFFF;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all var(--transition-normal);
}

.footer-socials a:hover {
    background: var(--color-primary);
    color: #FFFFFF;
    transform: translateY(-3px);
}

.footer-socials svg {
    width: 18px;
    height: 18px;
}

.footer-links h4,
.footer-newsletter h4 {
    color: #FFFFFF;
    font-size: 1.1rem;
    margin-bottom: 1.75rem;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-links ul a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer-links ul a:hover {
    color: var(--color-accent);
}

.footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-newsletter p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-full);
    padding: 0.25rem 0.25rem 0.25rem 1.25rem;
    margin-top: 0.5rem;
}

.newsletter-form input {
    background: transparent;
    border: none;
    outline: none;
    color: #FFFFFF;
    font-size: 0.9rem;
    flex-grow: 1;
    width: 100%;
}

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

.newsletter-form button {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #FFFFFF;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition-fast);
}

.newsletter-form button:hover {
    background: var(--color-secondary);
}

.newsletter-form button svg {
    width: 18px;
    height: 18px;
}

.newsletter-status {
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.newsletter-status.success {
    color: var(--color-success);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-container p {
    font-size: 0.8rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: #FFFFFF;
}

/* ==========================================================================
   19. Responsive Styles (Desktop First Breakpoints)
   ========================================================================== */

/* Laptop / Smaller Desktops (1200px) */
@media (max-width: 1200px) {
    .container {
        padding: 0 1.5rem;
    }
    .hero-title {
        font-size: 3.8rem;
    }
    .services-columns-container {
        gap: 2rem;
    }
    .pricing-grid {
        gap: 1.5rem;
    }
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

/* Tablets Landscape (992px) */
@media (max-width: 992px) {
    section {
        padding: 6rem 0;
    }
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-avatar-wrapper {
        width: 520px;
        height: 520px;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .about-visual {
        order: -1;
    }
    .why-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .why-visual {
        max-width: 360px;
        margin: 0 auto;
        order: -1;
        margin-left: 0 !important;
        justify-content: center;
    }
    .why-content {
        order: unset;
    }
    .why-timeline {
        grid-template-columns: 1fr !important;
        gap: 1.2rem;
    }
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-track-bg,
    .process-track-active,
    .process-avatar-mover {
        display: none !important;
    }
    .process-steps {
        gap: 2rem !important;
    }
    .process-step {
        justify-content: flex-start !important;
        opacity: 1 !important;
    }
    .process-step-card {
        width: 100% !important;
        text-align: left !important;
        padding: 1.5rem !important;
        opacity: 1 !important;
    }
    .step-num {
        margin-left: 0 !important;
        margin-right: auto !important;
        margin-bottom: 1rem !important;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .team-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .team-members {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 4rem auto 0;
        gap: 2.5rem;
    }
    .pricing-card.highlighted {
        transform: scale(1);
    }
    .pricing-card.highlighted:hover {
        transform: translateY(-5px);
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .map-wrapper {
        min-height: 250px;
    }
    .about-avatar-container {
        width: 460px;
        height: 460px;
    }
    .avatar-bg-circle {
        width: 380px;
        height: 380px;
    }
    .about-visual {
        justify-content: center;
        margin-left: 0;
    }
    .services-columns-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .services-center-space {
        display: none;
    }
}

/* Tablets Portrait (768px) */
@media (max-width: 768px) {
    .custom-cursor,
    .custom-cursor-glow {
        display: none; /* Disable custom cursor on touch/small screens */
    }
    .section-title {
        font-size: 2.3rem;
    }
    .hero-title {
        font-size: 3rem;
    }
    /* Mobile Menu drawer */
    .menu-toggle {
        display: flex;
        z-index: 1000;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--color-bg);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right var(--transition-normal);
        z-index: 999;
    }
    .nav-menu.active {
        right: 0;
    }
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    .portfolio-item {
        aspect-ratio: 4 / 3 !important;
    }
    .team-members {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Mobile Devices (480px) */
@media (max-width: 480px) {
    section {
        padding: 4.5rem 0;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    .hero-actions .btn {
        width: 100%;
    }
    .hero-avatar-wrapper {
        width: 400px;
        height: 400px;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .stats-section .stat-item {
        padding: 2rem;
    }
    .stat-number {
        font-size: 3rem;
    }
    .testimonial-card {
        padding: 2.5rem 1.5rem;
    }
    .quote-text {
        font-size: 1.1rem;
    }
    .pricing-toggle-wrapper {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
    .pricing-card {
        padding: 2.5rem 1.5rem;
    }
    .faq-trigger {
        padding: 1.5rem;
    }
    .faq-trigger span {
        font-size: 1rem;
    }
    .faq-content p {
        padding: 0 1.5rem 1.5rem;
    }
    .contact-form-panel {
        padding: 2.5rem 1.5rem;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-bottom-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .about-avatar-container {
        width: 360px;
        height: 360px;
    }
    .avatar-bg-circle {
        width: 280px;
        height: 280px;
    }
}
