/* 
====================================
CSS Variables & Theme Setup
==================================== 
*/
:root {
    /* Light Theme (Default, we start mobile-first but structure for theming) */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --border-color: #e2e8f0;
    
    /* Brand Colors - Sunset Amber Theme */
    --primary-color: #f59e0b;
    --primary-hover: #d97706;
    --secondary-color: #ef4444;
    --accent-color: #f97316;
    
    /* Utilities */
    --gradient-brand: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-glow: 0 0 20px rgba(245, 158, 11, 0.2);

    /* Typography */
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: clamp(3.5rem, 8vw, 6rem) 0;
    --nav-height: clamp(70px, 8vw, 80px);
    
    /* Transitions */
    --bezier: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.2s var(--bezier);
    --transition-normal: 0.3s var(--bezier);
    --transition-slow: 0.5s var(--bezier);
}

/* Dark Theme */
[data-theme='dark'] {
    --bg-primary: #05050a;
    --bg-secondary: #0c0b14;
    --bg-tertiary: #151421;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --border-color: #27272a;
    
    --glass-bg: rgba(20, 20, 30, 0.6);
    --glass-border: rgba(255, 255, 255, 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.3);
    --shadow-lg: 0 10px 25px -5px rgb(0 0 0 / 0.5);
    --shadow-glow: 0 0 30px rgba(245, 158, 11, 0.3);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7; /* Improved readability */
    letter-spacing: -0.01em;
    overflow-x: hidden;
    transition: background-color var(--transition-normal), color var(--transition-normal);
}

@media (hover: hover) and (pointer: fine) {
    body, a, button, input, select, textarea {
        cursor: none !important;
    }
}


h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3; /* Better for modern geometric fonts */
    color: var(--text-primary);
    letter-spacing: -0.03em;
}

h1 { font-size: 3.5rem; font-weight: 800; }
h2 { font-size: 2.5rem; font-weight: 700; }
h3 { font-size: 1.75rem; font-weight: 600; }
h4 { font-size: 1.25rem; font-weight: 600; }

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

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

/* 
====================================
Background & Aesthetic Utilities
==================================== 
*/
.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: 
        linear-gradient(to right, var(--border-color) 0.5px, transparent 0.5px),
        linear-gradient(to bottom, var(--border-color) 0.5px, transparent 0.5px);
    background-size: 60px 60px;
    opacity: 0.15;
    z-index: -3;
    pointer-events: none;
    transform: translateZ(0);
    backface-visibility: hidden;
    will-change: transform;
}

[data-theme='dark'] .bg-grid {
    opacity: 0.1;
}

/* Glass Background Blobs */
.bg-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.bg-blob {
    position: absolute;
    width: 40vw;
    height: 40vw;
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(80px);
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    animation: blobFloat 20s infinite alternate ease-in-out;
}

.blob-1 {
    top: -10vw;
    left: -10vw;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
}

.blob-2 {
    bottom: -10vw;
    right: -10vw;
    background: radial-gradient(circle, var(--secondary-color) 0%, transparent 70%);
    animation-delay: -5s;
    animation-duration: 25s;
}

.blob-3 {
    top: 40%;
    right: 20%;
    width: 30vw;
    height: 30vw;
    background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
    opacity: 0.05;
    animation-direction: alternate-reverse;
    animation-duration: 30s;
}

[data-theme='dark'] .bg-blob { opacity: 0.15; }

@keyframes blobFloat {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(10vw, 5vw) scale(1.1); }
}

/* Decorative Abstract Shapes */
.decorative-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border: 1px solid var(--border-color);
    opacity: 0.1;
}

.shape-1 {
    width: 300px;
    height: 300px;
    border-radius: 60px;
    top: 15%;
    right: -50px;
    transform: rotate(15deg);
}

.shape-2 {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    bottom: 10%;
    left: -30px;
}

.gradient-text {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.gradient-bg {
    background: var(--gradient-brand);
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
    will-change: transform, box-shadow;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(255,255,255,0.15);
}

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

.section {
    padding: 3.5rem 0;
}

@media (min-width: 768px) {
    .section {
        padding: var(--section-padding);
    }
}

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-inline: auto;
}

.section-title {
    font-size: 2.75rem;
    margin-bottom: 3.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 1.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-brand);
    border-radius: 2px;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.btn-primary {
    background: var(--gradient-brand);
    color: white !important;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

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

.btn-sm { padding: 0.5rem 1rem; font-size: 0.875rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1.125rem; }
.btn-block { width: 100%; }
.rounded { border-radius: 50px; }

/* 
====================================
Navigation
==================================== 
*/
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background: transparent;
    z-index: 100;
    transition: background var(--transition-normal), box-shadow var(--transition-normal), border-bottom var(--transition-normal);
    border-bottom: 1px solid transparent;
    transform: translateZ(0);
    backface-visibility: hidden;
    will-change: background;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
}

nav.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.5px;
    transition: font-size var(--transition-normal);
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.05rem;
        padding-left: 0.5rem;
    }
}

.logo span {
    color: var(--primary-color);
}

.nav-links {
    display: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a:not(.btn) {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a:not(.btn):hover, .nav-links a.active {
    color: var(--primary-color);
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

#theme-toggle {
    background: transparent;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: background var(--transition-fast);
}

#theme-toggle:hover {
    background: var(--bg-tertiary);
}

.light-icon { display: none; }
[data-theme='dark'] .light-icon { display: block; }
[data-theme='dark'] .dark-icon { display: none; }

#mobile-menu-btn {
    display: block;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: clip-path var(--transition-normal);
    z-index: 99;
}

.mobile-menu.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.mobile-links {
    display: flex;
    flex-direction: column;
}

.mobile-links a {
    padding: 0.85rem 2rem;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(var(--border-color), 0.3);
    display: block;
    color: var(--text-primary);
    font-weight: 500;
    border-left: 3px solid transparent;
}

.mobile-links a:hover {
    background: var(--bg-tertiary);
    border-left-color: var(--primary-color);
    color: var(--primary-color);
}

@media (min-width: 992px) {
    .nav-links { display: flex; }
    #mobile-menu-btn { display: none; }
    .mobile-menu { display: none; }
}

/* 
====================================
Hero Section
==================================== 
*/
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: calc(var(--nav-height) + 2rem);
    position: relative;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 992px) {
    .hero-container { grid-template-columns: 1.2fr 0.8fr; }
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(245, 158, 11, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    transform: translateZ(0);
}

/* 
====================================
Common Section Elements
==================================== 
*/
.section {
    padding: var(--section-padding);
    overflow: hidden;
}

.section-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
    margin-bottom: 1.25rem;
    text-align: center;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    color: var(--text-secondary);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (max-width: 480px) {
    .container {
        width: 92%;
        padding: 0 0.5rem;
    }
    .hero-cta .btn-lg {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
        width: auto;
        flex: 0 0 auto;
    }
    .premium-growth-card {
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }
    .about-image-wrapper {
        max-width: 260px !important;
    }
    .method-item {
        gap: 1rem;
    }
    .method-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .method-item h3 {
        font-size: 1rem;
    }
    .method-item p, .contact-link {
        font-size: 0.85rem;
    }
}
.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 500px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 1rem;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    flex-wrap: nowrap;
    justify-content: space-between;
}

@media (max-width: 480px) {
    .hero-stats {
        gap: 0.5rem;
    }
    .stat-number {
        font-size: 1.35rem;
    }
    .stat-label {
        font-size: 0.75rem;
    }
}

@media (min-width: 480px) {
    .hero-stats {
        gap: 2rem;
    }
}

.stat-number {
    font-size: 1.75rem;
    color: var(--text-primary);
    transform: translateZ(0);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Hero Visual (Modern Animated Analytics Card) */
.hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.analytics-card-wrapper {
    position: relative;
    width: 100%;
    max-width: 320px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px; /* For 3D tilt */
}

.premium-growth-card {
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 0;
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 10;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
    transform: translateZ(0);
    backface-visibility: hidden;
    will-change: transform, box-shadow;
    /* Entrance animation */
    opacity: 0;
    transform: translateY(30px);
    animation: cardEntrance 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    animation-delay: 0.3s;
}

[data-theme='dark'] .premium-growth-card {
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(255,255,255,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Hover Effect 3D Tilt */
.premium-growth-card:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(-5deg);
    box-shadow: -20px 20px 50px rgba(245, 158, 11, 0.15), 0 5px 15px rgba(0,0,0,0.1);
}

[data-theme='dark'] .premium-growth-card:hover {
    box-shadow: -20px 20px 50px rgba(245, 158, 11, 0.2), 0 5px 15px rgba(0,0,0,0.5);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.pulse-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #10b981; /* Emerald */
    border-radius: 50%;
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: #10b981;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.trend-badge {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: all 0.4s ease;
}

.premium-growth-card:hover .trend-badge {
    background: #10b981;
    color: white;
    transform: scale(1.1);
}

.hero-profile-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.premium-growth-card:hover .hero-profile-img {
    transform: scale(1.05);
}

.growth-metric {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-heading);
    margin-bottom: 0.25rem;
    line-height: 1;
    background: linear-gradient(135deg, var(--text-primary), var(--text-secondary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.growth-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 500;
}

/* Animated Wave Chart */
.wave-container {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 60px;
    gap: 6px;
}

.wave-bar {
    width: 100%;
    background: var(--bg-tertiary);
    border-radius: 4px;
    height: 20%; /* Default low height */
    transition: height 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.4s ease;
}

[data-theme='dark'] .wave-bar { background: #1e293b; }

/* Base heights simulating a starting flat line */
.wb-1 { height: 15%; transition-delay: 0.0s; }
.wb-2 { height: 25%; transition-delay: 0.05s; }
.wb-3 { height: 10%; transition-delay: 0.1s; }
.wb-4 { height: 30%; transition-delay: 0.15s; }
.wb-5 { height: 20%; transition-delay: 0.2s; }
.wb-6 { height: 35%; transition-delay: 0.25s; }
.wb-7 { height: 20%; transition-delay: 0.3s; }

/* Active wave heights on hover */
.premium-growth-card:hover .wave-bar {
    background: var(--gradient-brand);
}

.premium-growth-card:hover .wb-1 { height: 40%; }
.premium-growth-card:hover .wb-2 { height: 70%; }
.premium-growth-card:hover .wb-3 { height: 50%; }
.premium-growth-card:hover .wb-4 { height: 90%; }
.premium-growth-card:hover .wb-5 { height: 60%; }
.premium-growth-card:hover .wb-6 { height: 100%; }
.premium-growth-card:hover .wb-7 { height: 80%; }

/* Floating Outer Badges */
.floating-badge {
    position: absolute;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    z-index: 20;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
    animation: fadeIn 0.8s ease forwards 0.8s;
    transform: translateZ(0);
    backface-visibility: hidden;
}

[data-theme='dark'] .floating-badge {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    color: var(--text-primary);
}

.badge-top {
    top: -20px;
    right: -20px;
    color: #E1306C; /* Instagram pink/red */
    transform: translateZ(20px) rotate(10deg);
}

.badge-bottom {
    bottom: 20px;
    left: -30px;
    color: #0077b5; /* LinkedIn blue */
    transform: translateZ(30px) rotate(-10deg);
}

/* 3D separation effect on hover */
.premium-growth-card:hover ~ .badge-top {
    transform: translateZ(40px) translateY(-15px) rotate(20deg) scale(1.1);
}

.premium-growth-card:hover ~ .badge-bottom {
    transform: translateZ(50px) translateY(15px) rotate(-20deg) scale(1.1);
}

/* Keyframes for SaaS Card Animations */
@keyframes cardEntrance {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes ping {
    75%, 100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* 
====================================
About Section
==================================== 
*/
.about-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 992px) {
    .about-container { grid-template-columns: 1fr 1fr; }
}

.about-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.about-image {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: white;
    box-shadow: var(--shadow-lg);
}

.experience-badge {
    position: absolute;
    bottom: -15px;
    right: -10px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 10;
}

@media (min-width: 480px) {
    .experience-badge {
        bottom: -20px;
        right: -20px;
        padding: 1.5rem;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .experience-badge {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
        bottom: -10px;
        right: -5px;
    }
    .exp-years {
        font-size: 1.75rem !important;
    }
    .exp-text {
        font-size: 0.75rem !important;
        line-height: 1.1;
    }
}

.exp-years {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--primary-color);
}

.exp-text {
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.2;
}

.about-content .section-desc {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.skills-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.skill-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    transform: translateZ(0);
}

.skill-header i {
    color: var(--primary-color);
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--bg-tertiary);
    border-radius: 50px;
    overflow: hidden;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.progress {
    height: 100%;
    background: var(--gradient-brand);
    border-radius: 50px;
    transform-origin: left;
    transition: transform 1.5s cubic-bezier(0.1, 0.7, 1.0, 0.1);
}

/* 
====================================
Services Section
==================================== 
*/
.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    position: relative;
}

@media (max-width: 480px) {
    #services .container {
        width: 100%;
        padding: 0 8px;
    }
}

.service-card {
    flex: 0 1 calc((100% - 4rem) / 3);
    min-width: 280px;
    padding: 2rem 1.5rem;
}



@media (min-width: 480px) {
    .service-card {
        padding: 2.5rem 2rem;
    }
}

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(245, 158, 11, 0.2);
    transform: translateZ(0);
    backface-visibility: hidden;
}

.service-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.service-features i {
    color: var(--accent-color);
    font-size: 0.8rem;
}

/* 
====================================
Portfolio Section
==================================== 
*/
.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .portfolio-grid { 
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
        gap: 2rem;
    }
}

.portfolio-item {
    overflow: hidden;
    padding: 0;
}

.portfolio-image {
    height: 220px;
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Temporary Backgrounds for Portfolio */
.temp-bg-1 { background: linear-gradient(45deg, #FF6B6B, #556270); }
.temp-bg-2 { background: linear-gradient(45deg, #1fa2ff, #12d8fa, #a6ffcb); }
.temp-bg-3 { background: linear-gradient(45deg, #8E2DE2, #4A00E0); }

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-content {
    padding: 1.5rem;
}

.portfolio-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.portfolio-tags span {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    background: var(--bg-tertiary);
    border-radius: 50px;
    color: var(--text-secondary);
    font-weight: 500;
}

.portfolio-content h3 {
    margin-bottom: 0.5rem;
    font-size: clamp(1.1rem, 3vw, 1.25rem);
}

.portfolio-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* 
====================================
Testimonials Section
==================================== 
*/
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .testimonials-grid { 
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
        gap: 2rem;
    }
}

.testimonial-card {
    padding: 2.5rem 2rem;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 2rem;
    color: rgba(245, 158, 11, 0.1);
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-style: italic;
    color: var(--text-primary);
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--bg-tertiary);
    border: 1.5px solid var(--border-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.client-info h3 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.client-info span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* 
====================================
Blog Section
==================================== 
*/
.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(1.5rem, 4vw, 2rem);
}

.blog-card {
    padding: 0;
    overflow: hidden;
}

.blog-card-content {
    padding: 2rem;
}

.blog-thumbnail {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.blog-card:hover .blog-thumbnail img {
    transform: scale(1.1);
}

.blog-meta {
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.blog-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-card h3 a {
    color: var(--text-primary);
}

.blog-card h3 a:hover {
    color: var(--primary-color);
}

.blog-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.read-more {
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* 
====================================
Contact Section
==================================== 
*/
.contact-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 992px) {
    .contact-container { grid-template-columns: 1fr 1fr; }
}

.contact-info .section-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.method-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.method-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-tertiary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.method-item h3 {
    margin-bottom: 0.25rem;
}

.method-item p {
    color: var(--text-secondary);
}

.contact-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

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

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
}

.social-icon:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

/* Form */
.contact-form-wrapper {
    padding: 3rem 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-body);
    transition: all var(--transition-fast);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.form-status {
    margin-top: 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    min-height: 1.5rem;
}

.form-trust-line {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 1.5rem;
    opacity: 0.7;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* 
====================================
Footer
==================================== 
*/
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding-top: 4rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-container { grid-template-columns: 2fr 1fr 1fr; }
}

.footer-col p {
    color: var(--text-secondary);
    margin-top: 1rem;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s var(--bezier);
    border: 1px solid var(--border-color);
}

.footer-social a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.3);
}

.footer-col h3 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
}

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

.footer-bottom {
    text-align: center;
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* 
====================================
Animation Utilities (Reveals)
==================================== 
*/
.reveal {
    opacity: 0;
    transform: translateY(15px) translateZ(0);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    backface-visibility: hidden;
    will-change: transform, opacity;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay {
    transition-delay: 0.2s;
}

/* 
====================================
Fluid Cursor Effect
==================================== 
*/
#fluid-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999; /* Higher than most elements to capture mouse across app */
    pointer-events: none;
    opacity: 0.8; /* Subtle transparency */
}

/* Precise Mouse Point */
.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    z-index: 10000; /* Above the fluid canvas */
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 0 10px var(--primary-color);
    border: 1.5px solid rgba(255, 255, 255, 0.5); /* Added for visibility on dark/colorful areas */
}

.cursor-dot.hover {
    width: 12px;
    height: 12px;
    background-color: var(--primary-color);
    box-shadow: 0 0 20px var(--primary-color);
    border-color: #fff;
}

/* 
====================================
The Process Section
==================================== 
*/
.process-section {
    position: relative;
    padding-bottom: 8rem;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 4rem auto;
    padding-left: 2rem;
}

.timeline-track {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 7px; /* Align with dots */
    width: 2px;
    background: var(--border-color);
    opacity: 0.3;
}

.timeline-item {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 4rem;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: 0;
    top: 5px;
    width: 16px;
    height: 16px;
    background: var(--bg-primary);
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 10px var(--primary-color);
    transition: transform 0.3s var(--bezier), box-shadow 0.3s var(--bezier);
}

.timeline-item:hover .timeline-dot {
    transform: scale(1.3);
    box-shadow: 0 0 20px var(--primary-color);
    background: var(--primary-color);
}

.timeline-content h3 {
    font-size: clamp(1.2rem, 4vw, 1.5rem);
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-weight: 700;
}

.timeline-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
}

.process-cta {
    text-align: center;
    margin-top: 5rem;
}

@media (max-width: 480px) {
    .process-cta .btn {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .timeline {
        margin: 2rem 0;
        padding-left: 1.5rem;
    }
    
    .timeline-dot {
        width: 12px;
        height: 12px;
        top: 6px;
    }

    .timeline-item {
        margin-bottom: 2.5rem;
        padding-left: 2rem;
    }

    .timeline-content h3 {
        font-size: 1.15rem;
    }
    
    .timeline-content p {
        font-size: 0.95rem;
    }
}