/* Modern Glassy UI - SkangoGames LLC */
/* White & Orange Theme with Glassmorphism */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Orange Palette */
    --orange-primary: #FF6B35;
    --orange-dark: #E55A2B;
    --orange-light: #FF8A65;
    --orange-lighter: #FFB99D;
    --orange-glow: rgba(255, 107, 53, 0.3);
    
    /* White & Neutral Palette */
    --white: #FFFFFF;
    --white-soft: #FAFAFA;
    --white-off: #F5F5F5;
    --gray-light: #E8E8E8;
    --gray-medium: #CCCCCC;
    --gray-dark: #999999;
    --text-dark: #1A1A1A;
    --text-medium: #4A4A4A;
    
    /* Glass Effects */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-bg-strong: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.9);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    --glass-shadow-hover: 0 12px 48px rgba(255, 107, 53, 0.2);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #FF8A65 100%);
    --gradient-soft: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 138, 101, 0.1) 100%);
    --gradient-bg: linear-gradient(135deg, #FFFFFF 0%, #FAFAFA 50%, #F5F5F5 100%);
    --gradient-hero: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 250, 245, 0.95) 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--gradient-bg);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    cursor: none; /* Hide default cursor */
    position: relative;
    z-index: 0; /* Ensure body content is above backdrop */
}

/* Custom Glassy Cursor */
.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.2), 
                0 0 40px rgba(255, 107, 53, 0.1),
                inset 0 0 20px rgba(255, 255, 255, 0.3);
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    mix-blend-mode: difference;
}

.custom-cursor.hover {
    width: 40px;
    height: 40px;
    background: rgba(255, 107, 53, 0.3);
    border-color: rgba(255, 107, 53, 0.6);
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.4), 
                0 0 60px rgba(255, 107, 53, 0.2),
                inset 0 0 30px rgba(255, 107, 53, 0.2);
}

.custom-cursor.click {
    width: 15px;
    height: 15px;
    background: rgba(255, 107, 53, 0.5);
    border-color: rgba(255, 107, 53, 0.8);
}

/* Cursor dot (inner dot) */
.cursor-dot {
    position: fixed;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--orange-primary);
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.8);
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease-out;
}

/* Show default cursor on interactive elements for accessibility */
a, button, input, textarea, select, [role="button"], [tabindex] {
    cursor: none;
}

/* Hide custom cursor on mobile devices */
@media (max-width: 768px) {
    body {
        cursor: auto;
    }
    
    .custom-cursor,
    .cursor-dot {
        display: none;
    }
    
    a, button, input, textarea, select, [role="button"], [tabindex] {
        cursor: pointer;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

/* Loading Screen */
.pre-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.pre-loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-container {
    text-align: center;
    position: relative;
}

.loading-logo {
    width: 120px;
    height: 120px;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
    filter: drop-shadow(0 4px 12px rgba(255, 107, 53, 0.2));
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid var(--gray-light);
    border-top: 4px solid var(--orange-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.loading-text {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: var(--orange-primary);
    letter-spacing: 2px;
    font-weight: 600;
}

.loading-progress {
    width: 200px;
    height: 4px;
    background: var(--gray-light);
    border-radius: 2px;
    margin: 20px auto 0;
    overflow: hidden;
}

.loading-progress-bar {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 2px;
    width: 0%;
    animation: progress 2s ease-in-out;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.navbar-logo {
    display: flex;
    align-items: center;
}

.navbar-logo img {
    height: 50px;
    filter: drop-shadow(0 2px 8px rgba(255, 107, 53, 0.2));
    transition: transform 0.3s ease;
}

.navbar-logo img:hover {
    transform: scale(1.05);
}

.navbar-nav {
    display: flex;
    list-style: none;
    gap: 40px;
}

.navbar-nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.navbar-nav a:hover::after,
.navbar-nav a.active::after {
    width: 100%;
}

.navbar-nav a:hover {
    color: var(--orange-primary);
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.navbar-whatsapp {
    flex-shrink: 0;
}

.whatsapp-text {
    display: inline;
}

.navbar-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.3s ease;
    flex-shrink: 0;
}

.navbar-toggle:hover {
    background: var(--gray-light);
}

.navbar-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 5px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--glass-bg-strong);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid var(--glass-border);
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-menu-nav {
    list-style: none;
    padding: 20px;
}

.mobile-menu-nav li {
    margin: 15px 0;
}

.mobile-menu-nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 500;
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-light);
    transition: all 0.3s ease;
}

.mobile-menu-nav a:hover {
    color: var(--orange-primary);
    padding-left: 10px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--glass-shadow);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white) !important;
    box-shadow: 0 4px 16px var(--orange-glow);
}

.btn-primary,
.btn-primary * {
    color: var(--white) !important;
}

.btn-primary svg {
    fill: var(--white) !important;
    color: var(--white) !important;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--orange-glow);
    color: var(--white) !important;
}

.btn-primary:hover,
.btn-primary:hover * {
    color: var(--white) !important;
}

.btn-primary:hover svg {
    fill: var(--white) !important;
    color: var(--white) !important;
}

.btn-secondary {
    background: var(--white);
    color: var(--orange-primary);
    border: 2px solid var(--orange-primary);
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.15);
}

.btn-secondary:hover {
    background: var(--orange-primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--orange-glow);
}

.btn-ghost {
    background: var(--glass-bg);
    color: var(--text-dark);
    border: 2px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    border-color: var(--orange-primary);
    color: var(--orange-primary);
    background: var(--glass-bg-strong);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 20px 60px;
    background: var(--gradient-hero);
}

/* Animated Gradient Background */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 138, 101, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.05) 0%, transparent 60%);
    pointer-events: none;
    animation: gradientMove 20s ease infinite;
}

/* Interactive gradient overlay */
.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
        rgba(255, 107, 53, 0.15) 0%, 
        rgba(255, 138, 101, 0.1) 30%, 
        transparent 70%);
    pointer-events: none;
    transition: background 0.3s ease;
    z-index: 2; /* Above backdrop */
}

/* Animated gradient orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
    animation: orbFloat 15s ease-in-out infinite;
    pointer-events: none;
    z-index: 1; /* Above backdrop */
}

.hero-orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.4), transparent);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.hero-orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 138, 101, 0.3), transparent);
    bottom: 20%;
    right: 15%;
    animation-delay: 5s;
}

.hero-orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.35), transparent);
    top: 50%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes gradientMove {
    0%, 100% {
        background-position: 0% 50%, 100% 50%, 50% 50%;
    }
    50% {
        background-position: 100% 50%, 0% 50%, 50% 50%;
    }
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1; /* Above backdrop */
}

.floating-element {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--orange-primary);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--orange-glow);
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    bottom: 30%;
    left: 30%;
    animation-delay: 4s;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    position: relative;
    z-index: 20; /* Above backdrop and other hero elements */
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 24px;
    color: var(--white) !important;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5),
                 0 0 40px rgba(255, 107, 53, 0.3),
                 0 2px 8px rgba(0, 0, 0, 0.3);
    filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.3));
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin-bottom: 40px;
    color: var(--white) !important;
    font-weight: 400;
    line-height: 1.7;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5),
                 0 0 20px rgba(255, 255, 255, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Sections */
.section {
    padding: 100px 20px;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 30px;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Cards */
.card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--glass-shadow);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.card:hover::before {
    left: 100%;
}

.card:hover {
    transform: translateY(-12px);
    box-shadow: var(--glass-shadow-hover);
    border-color: rgba(255, 107, 53, 0.3);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 36px;
    box-shadow: 0 4px 16px var(--orange-glow);
    transition: transform 0.3s ease;
}

.card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 700;
}

.card-text {
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 15px;
}

/* Stats Section */
.stats {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.04);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
    padding: 60px 20px;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 12px;
}

.stat-label {
    color: var(--text-medium);
    font-size: 1.1rem;
    font-weight: 500;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.team-member {
    text-align: center;
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--glass-shadow);
}

.team-member:hover {
    transform: translateY(-12px);
    box-shadow: var(--glass-shadow-hover);
    border-color: rgba(255, 107, 53, 0.3);
}

.team-avatar {
    width: 140px;
    height: 140px;
    margin: 0 auto 24px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--white);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.2);
    position: relative;
    transition: transform 0.3s ease;
}

.team-member:hover .team-avatar {
    transform: scale(1.05);
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 700;
}

.team-role {
    color: var(--orange-primary);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 15px;
}

/* Contact Form */
.contact-form {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 48px;
    box-shadow: var(--glass-shadow);
}

.form-group {
    margin-bottom: 28px;
}

.form-label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 15px;
}

.form-input {
    width: 100%;
    padding: 16px 20px;
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: 12px;
    color: var(--text-dark);
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.form-input:focus {
    outline: none;
    border-color: var(--orange-primary);
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.15);
    background: var(--white);
}

.form-input::placeholder {
    color: var(--gray-dark);
}

.form-textarea {
    resize: vertical;
    min-height: 140px;
    font-family: 'Inter', sans-serif;
}

/* Contact Info Links */
.contact-form a,
.contact-info a,
.d-flex.flex-column.gap-4 a,
.d-flex.items-center.gap-3 a {
    color: var(--orange-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.contact-form a:hover,
.contact-info a:hover,
.d-flex.flex-column.gap-4 a:hover,
.d-flex.items-center.gap-3 a:hover {
    color: var(--orange-dark);
    text-decoration: underline;
}

/* Contact Info Icons */
.d-flex.items-center.gap-3 .w-12.h-12 {
    background: var(--gradient-primary);
    box-shadow: 0 4px 16px var(--orange-glow);
    transition: all 0.3s ease;
}

.d-flex.items-center.gap-3:hover .w-12.h-12 {
    transform: scale(1.1);
    box-shadow: 0 6px 20px var(--orange-glow);
}

.d-flex.items-center.gap-3 h4 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 4px;
}

.d-flex.items-center.gap-3 p {
    color: var(--text-medium);
    margin: 0;
}

/* Portfolio Section */
.portfolio-clients {
    margin-bottom: 80px;
}

.portfolio-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 40px;
    text-align: center;
}

.client-logos-wrapper {
    overflow: hidden;
    position: relative;
    padding: 40px 0;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.client-logos-track {
    display: flex;
    gap: 60px;
    animation: scroll-logos 30s linear infinite;
    width: fit-content;
}

.client-logo-item {
    flex-shrink: 0;
    width: 150px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: var(--orange-primary);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-logo-item:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4);
    background: var(--orange-dark);
}

.client-logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.client-logo-item:hover img {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.portfolio-projects {
    margin-top: 60px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.project-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    overflow: hidden;
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--glass-shadow-hover);
    border-color: var(--orange-primary);
}

.project-video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: var(--text-dark);
    overflow: hidden;
}

.project-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.project-info {
    padding: 30px;
}

.project-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.project-title .text-orange {
    color: var(--orange-primary);
}

.project-description {
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 15px;
    margin: 0;
}

/* Footer */
.footer {
    background: var(--white-soft);
    border-top: 1px solid var(--glass-border);
    padding: 80px 0 40px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.04);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h3 {
    color: var(--orange-primary);
    margin-bottom: 24px;
    font-size: 1.4rem;
    font-weight: 700;
}

.footer-section p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: var(--text-medium);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
}

.footer-section ul li a:hover {
    color: var(--orange-primary);
    padding-left: 4px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 24px;
}

.social-link {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    flex-shrink: 0;
}

.social-link svg {
    width: 20px;
    height: 20px;
    display: block;
    flex-shrink: 0;
}

.social-link:hover {
    background: var(--gradient-primary);
    border-color: var(--orange-primary);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px var(--orange-glow);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--gray-light);
    color: var(--text-medium);
    font-size: 14px;
}

/* Animations */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes progress {
    0% { width: 0%; }
    100% { width: 100%; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    33% { transform: translateY(-20px) translateX(10px); }
    66% { transform: translateY(-10px) translateX(-10px); }
}

/* Snake Game Container */
#hero-snake-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3; /* Above backdrop and orbs */
    pointer-events: none;
}

/* Snake Game Element */
.hero-snake {
    position: absolute;
    width: 24px;
    height: 24px;
    border-radius: 50% 50% 50% 0;
    background: var(--gradient-primary);
    pointer-events: none;
    z-index: 5;
    transform-origin: center center;
    transition: transform 0.1s linear;
}

.hero-snake::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
}

.hero-snake-segment {
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.7);
    pointer-events: none;
    z-index: 4;
    transform-origin: center center;
    transition: transform 0.15s linear;
}

/* Bot Snakes */
.hero-bot-snake {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50% 50% 50% 0;
    pointer-events: none;
    z-index: 5;
    transform-origin: center center;
    transition: transform 0.1s linear;
}

.hero-bot-snake::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    width: 5px;
    height: 5px;
    background: var(--white);
    border-radius: 50%;
}

.hero-bot-snake-segment {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 4;
    transform-origin: center center;
    transition: transform 0.15s linear;
}

/* Explosion Effect */
.bot-explosion {
    position: absolute;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, 
        rgba(255, 107, 53, 1) 0%,
        rgba(255, 138, 101, 0.8) 20%,
        rgba(255, 200, 100, 0.6) 40%,
        rgba(255, 255, 255, 0.4) 60%,
        transparent 100%);
    pointer-events: none;
    z-index: 10;
    transform: translate(-50%, -50%);
    animation: explode 0.8s ease-out forwards;
}

@keyframes explode {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
        box-shadow: 0 0 0 rgba(255, 107, 53, 0);
    }
    50% {
        width: 100px;
        height: 100px;
        opacity: 0.9;
        box-shadow: 0 0 50px rgba(255, 107, 53, 0.8),
                    0 0 100px rgba(255, 138, 101, 0.6),
                    0 0 150px rgba(255, 200, 100, 0.4);
    }
    100% {
        width: 200px;
        height: 200px;
        opacity: 0;
        box-shadow: 0 0 100px rgba(255, 107, 53, 0.6),
                    0 0 200px rgba(255, 138, 101, 0.4),
                    0 0 300px rgba(255, 200, 100, 0.2);
    }
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Animation Classes */
.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.animate-fade-in-left {
    animation: fadeInLeft 0.8s ease-out;
}

.animate-fade-in-right {
    animation: fadeInRight 0.8s ease-out;
}

/* Utility Classes */
.d-flex { display: flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.flex-column { flex-direction: column; }
.gap-3 { gap: 15px; }
.gap-4 { gap: 20px; }
.gap-5 { gap: 25px; }
.mt-4 { margin-top: 20px; }
.mt-5 { margin-top: 25px; }
.mb-1 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 20px; }
.mb-5 { margin-bottom: 25px; }
.w-full { width: 100%; }
.w-12 { width: 48px; }
.h-12 { height: 48px; }
.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-gray-600 { color: var(--text-medium); }
.bg-primary { background: var(--gradient-primary); }
.bg-gray-50 { background: var(--white-off); }
.rounded-full { border-radius: 50%; }
.rounded-xl { border-radius: 16px; }
.shadow-lg { box-shadow: var(--glass-shadow); }

/* Video Styling */
video.w-full {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 16px;
}

/* Notification Styles */
.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    pointer-events: none;
}

.notification {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 12px;
    color: #1A1A1A;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    pointer-events: auto;
    max-width: 320px;
}

.notification.show {
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.notification-close {
    background: none;
    border: none;
    color: #4A4A4A;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.notification-close:hover {
    color: #FF6B35;
    background: rgba(255, 107, 53, 0.1);
}

.notification-success {
    border-left: 4px solid #10B981;
}

.notification-error {
    border-left: 4px solid #EF4444;
}

.notification-info {
    border-left: 4px solid #FF6B35;
}

.fade-out {
    transform: translateX(100%);
    opacity: 0;
}

/* Hide interactive elements on mobile */
@media (max-width: 768px) {
    .hero-orb,
    .hero-gradient-overlay,
    .hero-snake,
    .hero-snake-segment,
    .hero-bot-snake,
    .hero-bot-snake-segment,
    .bot-explosion {
        display: none;
    }
}

/* Mobile Base Improvements */
@media (max-width: 768px) {
    body {
        font-size: 15px;
    }
    
    h1, h2, h3, h4, h5, h6 {
        line-height: 1.2;
    }
    
    .btn {
        min-height: 44px; /* Better touch target */
        padding: 12px 24px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar-container {
        padding: 0 12px;
        height: 70px;
        gap: 10px;
        overflow: hidden;
    }
    
    .navbar-logo {
        flex-shrink: 0;
    }
    
    .navbar-logo img {
        height: 40px;
        max-width: 120px;
    }
    
    .navbar-nav {
        display: none;
    }
    
    .navbar-actions {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-shrink: 0;
    }
    
    .navbar-whatsapp {
        padding: 10px 14px;
        font-size: 13px;
        white-space: nowrap;
        flex-shrink: 1;
        min-width: 0;
    }
    
    .navbar-whatsapp svg {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }
    
    .navbar-toggle {
        display: block;
        flex-shrink: 0;
        padding: 6px;
        margin-left: 0;
    }
    
    .hero {
        padding: 90px 15px 50px;
        min-height: 100vh;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
        margin-bottom: 20px;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 3vw, 1.2rem);
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
        padding: 0 15px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .section {
        padding: 60px 15px;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .section-title {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 15px;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Better spacing for about section video */
    .grid-2 video,
    .grid-2 img {
        width: 100%;
        height: auto;
        border-radius: 12px;
    }
    
    .card {
        padding: 30px 20px;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .card-title {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .card-text {
        font-size: 14px;
    }
    
    .stats {
        padding: 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 40px 15px;
    }
    
    .stat-item {
        padding: 15px;
    }
    
    .stat-number {
        font-size: 2.5rem;
        margin-bottom: 8px;
    }
    
    .stat-label {
        font-size: 0.95rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .team-member {
        padding: 30px 20px;
    }
    
    .portfolio-clients {
        margin-bottom: 50px;
    }
    
    .portfolio-subtitle {
        font-size: 1.3rem;
        margin-bottom: 30px;
    }
    
    .client-logos-wrapper {
        padding: 30px 0;
    }
    
    .client-logo-item {
        width: 120px;
        height: 80px;
        padding: 15px;
    }
    
    .portfolio-projects {
        margin-top: 50px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .project-info {
        padding: 24px;
    }
    
    .project-title {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .project-description {
        font-size: 14px;
    }
    
    .team-avatar {
        width: 120px;
        height: 120px;
        margin-bottom: 20px;
    }
    
    .team-name {
        font-size: 1.2rem;
    }
    
    .team-role {
        font-size: 0.95rem;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-label {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .form-input {
        padding: 14px 16px;
        font-size: 15px;
    }
    
    .d-flex.items-center.gap-3 {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .d-flex.items-center.gap-3 .w-12.h-12 {
        width: 40px;
        height: 40px;
    }
    
    .d-flex.items-center.gap-3 h4 {
        font-size: 1.1rem;
    }
    
    .d-flex.items-center.gap-3 .btn {
        width: 100%;
        justify-content: center;
    }
    
    .footer {
        padding: 50px 0 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 35px;
    }
    
    .footer-section h3 {
        font-size: 1.2rem;
        margin-bottom: 18px;
    }
    
    .footer-section p,
    .footer-section ul li a {
        font-size: 14px;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 20px;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
        min-width: 42px;
        min-height: 42px;
    }
    
    .social-link svg {
        width: 18px;
        height: 18px;
    }
    
    .notification-container {
        top: 10px;
        right: 10px;
        left: 10px;
    }
    
    .notification {
        max-width: none;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .navbar-container {
        padding: 0 10px;
        height: 65px;
        gap: 8px;
    }
    
    .navbar-logo {
        flex-shrink: 1;
        min-width: 0;
    }
    
    .navbar-logo img {
        height: 35px;
        max-width: 100px;
    }
    
    .navbar-actions {
        gap: 6px;
    }
    
    .navbar-whatsapp {
        padding: 10px 12px;
        font-size: 12px;
    }
    
    .navbar-whatsapp svg {
        width: 16px;
        height: 16px;
    }
    
    /* Hide WhatsApp text on very small screens, show only icon */
    .navbar-whatsapp {
        font-size: 0; /* Hide text */
        padding: 10px;
        min-width: 40px;
        width: 40px;
    }
    
    .navbar-whatsapp svg {
        font-size: 18px; /* Restore icon visibility */
        width: 18px;
        height: 18px;
        display: inline-block;
    }
    
    .navbar-whatsapp .whatsapp-text {
        display: none;
    }
    
    .navbar-toggle {
        padding: 6px;
        margin-left: 0;
        min-width: 40px;
        width: 40px;
        height: 40px;
    }
    
    .navbar-toggle span {
        width: 22px;
        margin: 4px 0;
    }
    
    .hero {
        padding: 80px 12px 40px;
        min-height: 100vh;
    }
    
    .hero-title {
        font-size: clamp(2rem, 12vw, 3rem);
        line-height: 1.1;
        margin-bottom: 18px;
    }
    
    .hero-subtitle {
        font-size: clamp(0.9rem, 4vw, 1.1rem);
        margin-bottom: 25px;
        padding: 0 5px;
    }
    
    .hero-buttons {
        gap: 12px;
        padding: 0 10px;
    }
    
    .hero-buttons .btn {
        padding: 12px 20px;
        font-size: 13px;
    }
    
    .section {
        padding: 50px 12px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: clamp(1.8rem, 10vw, 2.5rem);
        margin-bottom: 12px;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        padding: 0 5px;
    }
    
    .container {
        padding: 0 12px;
    }
    
    .card {
        padding: 25px 18px;
    }
    
    .card-icon {
        width: 55px;
        height: 55px;
        font-size: 24px;
        margin-bottom: 18px;
    }
    
    .card-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .card-text {
        font-size: 13px;
        line-height: 1.6;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 35px 12px;
    }
    
    .stat-item {
        padding: 12px;
    }
    
    .stat-number {
        font-size: 2.2rem;
        margin-bottom: 6px;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .team-member {
        padding: 25px 18px;
    }
    
    .team-avatar {
        width: 100px;
        height: 100px;
        margin-bottom: 18px;
    }
    
    .team-name {
        font-size: 1.1rem;
        margin-bottom: 6px;
    }
    
    .team-role {
        font-size: 0.9rem;
    }
    
    .portfolio-clients {
        margin-bottom: 40px;
    }
    
    .portfolio-subtitle {
        font-size: 1.2rem;
        margin-bottom: 25px;
    }
    
    .client-logos-wrapper {
        padding: 25px 0;
    }
    
    .client-logo-item {
        width: 100px;
        height: 70px;
        padding: 12px;
    }
    
    .portfolio-projects {
        margin-top: 40px;
    }
    
    .projects-grid {
        gap: 25px;
    }
    
    .project-info {
        padding: 20px;
    }
    
    .project-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .project-description {
        font-size: 13px;
    }
    
    .contact-form {
        padding: 25px 18px;
    }
    
    .form-group {
        margin-bottom: 18px;
    }
    
    .form-label {
        font-size: 13px;
        margin-bottom: 6px;
    }
    
    .form-input {
        padding: 12px 14px;
        font-size: 14px;
    }
    
    .form-textarea {
        min-height: 120px;
    }
    
    .d-flex.items-center.gap-3 {
        gap: 12px;
    }
    
    .d-flex.items-center.gap-3 .w-12.h-12 {
        width: 36px;
        height: 36px;
    }
    
    .d-flex.items-center.gap-3 h4 {
        font-size: 1rem;
        margin-bottom: 4px;
    }
    
    .footer {
        padding: 45px 0 25px;
    }
    
    .footer-content {
        gap: 28px;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .footer-section p,
    .footer-section ul li a {
        font-size: 13px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
    }
    
    .social-link svg {
        width: 18px;
        height: 18px;
    }
    
    .notification-container {
        top: 5px;
        right: 5px;
        left: 5px;
    }
    
    .notification {
        padding: 12px 15px;
        font-size: 13px;
    }
}

