/* ==========================================================================
   Elevate Technologie - Cyber-Glass Animation Agency Style Sheet
   ========================================================================== */

/* 1. Design Tokens & Variables */
:root {
    --bg-color: #080810;
    --bg-darker: #040408;
    --primary-gradient: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
    --accent-gradient: linear-gradient(135deg, #b155ff 0%, #ff4fa8 100%);
    --cyan-glow: rgba(0, 242, 254, 0.15);
    --purple-glow: rgba(177, 85, 255, 0.15);
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.08);
    --card-border-focus: rgba(0, 242, 254, 0.4);
    
    --text-main: #f0f2f5;
    --text-muted: #8e9bb0;
    --text-dark: #0f172a;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-elastic: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    position: relative;
    background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1.5px, transparent 1.5px);
    background-size: 32px 32px;
}

body.nav-open {
    overflow: hidden;
}

.mobile-copy,
.mobile-showcase-hint {
    display: none;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 242, 254, 0.4);
}

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

.custom-cursor-follower {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(0, 242, 254, 0.3);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.1s ease-out, width 0.3s, height 0.3s, border-color 0.3s;
}

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

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 40px rgba(0, 242, 254, 0.05);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-elastic);
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--text-dark);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 242, 254, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 242, 254, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-main);
    border: 1px solid var(--card-border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 1px solid rgba(0, 242, 254, 0.4);
}

.btn-outline:hover {
    background: rgba(0, 242, 254, 0.08);
    border-color: rgba(0, 242, 254, 0.8);
    transform: translateY(-2px);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* Badges */
.badge-container {
    margin-bottom: 24px;
}

.badge {
    background: rgba(0, 242, 254, 0.1);
    color: #00f2fe;
    border: 1px solid rgba(0, 242, 254, 0.2);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.badge i {
    margin-right: 6px;
}

/* Section Common Styles */
section {
    padding: 70px 0;
    position: relative;
}

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

.section-tag {
    font-family: var(--font-heading);
    color: #4facfe;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* ==========================================================================
   3. Component Layouts
   ========================================================================== */

/* Scroll Progress Indicator */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #00f2fe 0%, #b155ff 100%);
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.5);
    z-index: 2000;
    transition: width 0.1s ease;
}

.floating-contact {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1200;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 54px;
    padding: 10px 16px 10px 10px;
    border-radius: 999px;
    background: rgba(8, 8, 16, 0.82);
    border: 1px solid rgba(0, 242, 254, 0.32);
    color: var(--text-main);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 700;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.36), 0 0 20px rgba(0, 242, 254, 0.12);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.floating-contact:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 242, 254, 0.7);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.44), 0 0 28px rgba(0, 242, 254, 0.22);
}

.floating-contact.is-hidden {
    opacity: 0;
    transform: translateY(18px);
    pointer-events: none;
}

.floating-contact-icon {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: var(--text-dark);
    box-shadow: 0 0 18px rgba(0, 242, 254, 0.28);
}

.floating-contact-text {
    font-size: 0.92rem;
}

/* Header / Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 48px;
    background: rgba(8, 8, 16, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 1px;
    cursor: pointer;
}

.logo-dot {
    color: #00f2fe;
}

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

.nav-link {
    font-family: var(--font-heading);
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-smooth);
    position: relative;
    padding: 6px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--primary-gradient);
    transition: var(--transition-smooth);
}

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

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

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    width: 24px;
}

.mobile-nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-main);
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.45;
    mix-blend-mode: screen;
}

.orb-1 {
    top: 20%;
    left: 15%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #00f2fe 0%, transparent 70%);
    animation: orbFloat 25s infinite alternate ease-in-out;
}

.orb-2 {
    bottom: 15%;
    right: 15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #b155ff 0%, transparent 70%);
    animation: orbFloat 30s infinite alternate-reverse ease-in-out;
}

.hero-container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 850px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.hero-subtitle {
    color: var(--text-muted);
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.7;
}

.mouse-icon {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    position: relative;
}

.mouse-wheel {
    width: 4px;
    height: 8px;
    background-color: var(--text-muted);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: wheelScroll 1.5s infinite ease-in-out;
}

.scroll-text {
    font-size: 0.75rem;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Services Section */
.services {
    background-color: var(--bg-darker);
}

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

.service-card {
    padding: 48px 36px;
    border-radius: 24px;
    text-align: left;
    height: 100%;
}

.service-icon {
    font-size: 2.2rem;
    margin-bottom: 24px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
}

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

/* Interactive Playground Section */
.playground-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.play-card {
    position: relative;
    padding: 40px;
    border-radius: 24px;
    overflow: hidden;
    height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: grab;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.play-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(0, 242, 254, 0.12) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.play-card-content {
    position: relative;
    z-index: 2;
    transform: translateZ(30px);
}

.card-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    opacity: 0.1;
    display: block;
    margin-bottom: 12px;
}

.play-card h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 16px;
}

.play-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.play-indicator {
    font-size: 0.8rem;
    font-family: var(--font-heading);
    color: #00f2fe;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Specific Card Rules */
.reveal-card {
    position: relative;
}

.glow-tracker-dot {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(177, 85, 255, 0.25) 0%, transparent 70%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    left: var(--mouse-px, -999px);
    top: var(--mouse-py, -999px);
    z-index: 1;
    transition: opacity 0.3s;
}

/* Portfolio Section */
.portfolio {
    background-color: var(--bg-darker);
}

.showcase-split {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: stretch;
    margin-top: 30px;
}

@media (max-width: 991px) {
    .showcase-split {
        grid-template-columns: 1fr;
    }
}

.showcase-media-side {
    position: relative;
    display: flex;
    flex-direction: column;
}

.showcase-player {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    height: 480px;
    background: #06060c;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .showcase-player {
        height: 300px;
    }
}

.showcase-player video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    transition: opacity 0.5s ease;
}

.showcase-swipe-cue {
    position: absolute;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    display: none;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(4, 4, 8, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(240, 242, 245, 0.86);
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    pointer-events: none;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.showcase-media-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    color: #00f2fe;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.showcase-media-loader.active {
    opacity: 1;
}

.showcase-menu-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.showcase-menu {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-height: 480px;
    overflow-y: auto;
    padding-right: 10px;
}

/* Custom scrollbar for menu side */
.showcase-menu::-webkit-scrollbar {
    width: 6px;
}

.showcase-menu::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
}

.showcase-menu::-webkit-scrollbar-thumb {
    background: rgba(0, 242, 254, 0.2);
    border-radius: 10px;
}

.showcase-menu::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 242, 254, 0.5);
}

.showcase-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px 24px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.03);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 242, 254, 0.2);
    transform: translateX(5px);
}

.showcase-item.active {
    background: rgba(0, 242, 254, 0.06);
    border-color: rgba(0, 242, 254, 0.4);
    box-shadow: 0 4px 20px rgba(0, 242, 254, 0.1);
}

.item-num {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-muted);
    opacity: 0.5;
    transition: all 0.4s ease;
}

.showcase-item.active .item-num {
    color: #00f2fe;
    opacity: 1;
}

.item-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.item-meta h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: all 0.4s ease;
}

.showcase-item.active .item-meta h3 {
    color: var(--text-main);
}

.item-tag-pill {
    font-size: 0.75rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
    padding: 2px 8px;
    border-radius: 12px;
    align-self: flex-start;
    transition: all 0.4s ease;
}

.showcase-item.active .item-tag-pill {
    color: #00f2fe;
    background: rgba(0, 242, 254, 0.1);
}

.showcase-bottom-info {
    margin-top: 30px;
    padding: 30px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(13, 13, 22, 0.4);
    transition: all 0.5s ease;
}

.info-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.info-tag-main {
    font-size: 0.75rem;
    color: #00f2fe;
    background: rgba(0, 242, 254, 0.08);
    border: 1px solid rgba(0, 242, 254, 0.15);
    padding: 2px 10px;
    border-radius: 12px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.showcase-bottom-info h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
}

.showcase-bottom-info p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Pricing Estimator Section */
.estimator-wrapper {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 242, 254, 0.03);
}

.estimator-controls {
    padding: 48px;
    border-right: 1px solid var(--card-border);
}

.control-group {
    margin-bottom: 40px;
}

.control-group:last-child {
    margin-bottom: 0;
}

.control-label {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    display: block;
    margin-bottom: 16px;
}

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

.option-grid-two {
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 576px) {
    .option-grid-two {
        grid-template-columns: 1fr;
    }
}

.option-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.option-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}

.option-card.active {
    background: rgba(0, 242, 254, 0.05);
    border-color: #00f2fe;
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.15);
}

.option-icon {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.option-card.active .option-icon {
    color: #00f2fe;
}

.option-card h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.option-card p {
    color: var(--text-muted);
    font-size: 0.75rem;
    line-height: 1.3;
}

/* Slider Controls */
.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.slider-value {
    color: #00f2fe;
    font-weight: 700;
    font-family: var(--font-heading);
}

.slider-input {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
}

.slider-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #00f2fe;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.5);
    transition: transform 0.1s;
}

.slider-input::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Estimator Result Box */
.estimator-result {
    padding: 48px;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 36px;
}

.result-box {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 24px;
}

.result-box:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.result-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    display: block;
    margin-bottom: 8px;
}

.result-value {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.timeline-bar-bg {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    margin-top: 12px;
    overflow: hidden;
}

.timeline-bar-fill {
    height: 100%;
    background: var(--primary-gradient);
    border-radius: 2px;
    transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.estimator-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 6px;
}

/* Contact Section */
.contact {
    overflow: hidden;
}

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

.contact-info h2 {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 20px 0 24px 0;
    letter-spacing: -1px;
}

.contact-info p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

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

.detail-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.detail-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(0, 242, 254, 0.06);
    border: 1px solid rgba(0, 242, 254, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #00f2fe;
}

.detail-item h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.detail-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Contact Form */
.contact-form-container {
    padding: 48px;
    position: relative;
    border-radius: 28px;
}

.contact-form {
    transition: var(--transition-smooth);
}

.form-honey {
    display: none;
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1.5px solid var(--card-border);
    padding: 12px 0;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-main);
    outline: none;
    transition: var(--transition-smooth);
}

.form-textarea {
    height: 100px;
    resize: none;
}

.form-label {
    position: absolute;
    left: 0;
    top: 12px;
    color: var(--text-muted);
    font-size: 1rem;
    pointer-events: none;
    transition: var(--transition-smooth);
}

/* Interactive Floating Labels */
.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
    top: -12px;
    font-size: 0.8rem;
    color: #00f2fe;
}

.form-input:focus {
    border-bottom-color: #00f2fe;
}

/* Form Success State */
.form-success-msg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
    border-radius: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    opacity: 0;
    pointer-events: none;
    z-index: 10;
    transition: var(--transition-smooth);
}

.form-success-msg.active {
    opacity: 1;
    pointer-events: all;
}

.form-success-msg.error .success-icon {
    color: #f87171;
}

.form-success-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.form-success-close:hover {
    border-color: rgba(0, 242, 254, 0.45);
    color: #00f2fe;
    transform: scale(1.06);
}

.success-icon {
    font-size: 3.5rem;
    color: #10b981;
    margin-bottom: 20px;
    animation: successPulse 1.5s infinite;
}

.form-success-msg h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.form-success-msg p {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 320px;
    line-height: 1.5;
}

/* Footer Section */
.footer {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background-color: var(--bg-darker);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: #00f2fe;
}

/* ==========================================================================
   4. Animations
   ========================================================================== */

@keyframes orbFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(60px, -40px) scale(1.1);
    }
    100% {
        transform: translate(-30px, 50px) scale(0.95);
    }
}

@keyframes wheelScroll {
    0% {
        top: 6px;
        opacity: 1;
    }
    50% {
        top: 22px;
        opacity: 0.3;
    }
    100% {
        top: 6px;
        opacity: 1;
    }
}

@keyframes successPulse {
    0% {
        transform: scale(0.95);
        text-shadow: 0 0 0 rgba(16, 185, 129, 0.4);
    }
    70% {
        transform: scale(1.05);
        text-shadow: 0 0 15px rgba(16, 185, 129, 0.2);
    }
    100% {
        transform: scale(0.95);
        text-shadow: 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* ==========================================================================
   5. Responsive Styles
   ========================================================================== */

@media (max-width: 991px) {
    .header {
        padding: 20px 24px;
    }
    
    .hero-title {
        font-size: 3.2rem;
    }
    
    .estimator-wrapper {
        grid-template-columns: 1fr;
    }
    
    .estimator-controls {
        border-right: none;
        border-bottom: 1px solid var(--card-border);
        padding: 32px;
    }
    
    .estimator-result {
        padding: 32px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 767px) {
    .header {
        padding: 16px 20px;
    }

    .desktop-copy {
        display: none;
    }

    .mobile-copy {
        display: inline;
    }
    
    .mobile-nav-toggle {
        display: flex;
        z-index: 1001;
        height: 28px;
        justify-content: center;
    }
    
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(8, 8, 16, 0.94);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        padding: 40px;
        transform: translateX(100%);
        transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1000;
        overflow-y: auto;
    }
    
    .nav.active {
        transform: translateX(0);
    }
    
    /* Staggered slide-in menu animation */
    .nav .nav-link, .nav .nav-cta {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        text-align: center;
        font-size: 1.5rem;
    }
    
    .nav.active .nav-link, .nav.active .nav-cta {
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav.active .nav-link:nth-child(1) { transition-delay: 0.1s; }
    .nav.active .nav-link:nth-child(2) { transition-delay: 0.18s; }
    .nav.active .nav-link:nth-child(3) { transition-delay: 0.26s; }
    .nav.active .nav-link:nth-child(4) { transition-delay: 0.34s; }
    .nav.active .nav-cta { 
        transition-delay: 0.42s;
        margin-top: 15px;
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav-cta {
        width: 100%;
        max-width: 260px;
    }
    
    .hero {
        min-height: 100svh;
        height: auto;
        padding-top: 92px;
        padding-bottom: 110px;
        align-items: flex-start;
    }

    .hero-container {
        margin-top: 44px;
    }

    .badge-container {
        margin-bottom: 18px;
    }

    .hero-title {
        line-height: 1.12;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        margin-bottom: 28px;
    }

    .hero-actions .btn {
        min-height: 50px;
        opacity: 1 !important;
        transform: none !important;
    }

    .hero-scroll-indicator {
        bottom: 24px;
    }

    .play-card {
        height: auto;
        min-height: 300px;
        padding: 34px;
        touch-action: pan-y;
    }

    .play-card p {
        margin-bottom: 18px;
    }

    .mobile-showcase-hint {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        margin: -6px 2px 8px;
        color: #00f2fe;
        font-family: var(--font-heading);
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .showcase-split {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .showcase-player {
        height: clamp(260px, 76vw, 330px);
        border-radius: 22px;
        touch-action: pan-y;
    }

    .showcase-swipe-cue {
        display: flex;
    }
    
    .showcase-menu {
        flex-direction: row !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        max-height: none !important;
        padding: 8px 2px 14px !important;
        gap: 12px !important;
        scroll-snap-type: x mandatory;
        scroll-padding: 2px;
        -webkit-overflow-scrolling: touch;
        mask-image: linear-gradient(90deg, #000 0%, #000 86%, transparent 100%);
    }
    
    /* Custom scrollbar for horizontal swipe menu */
    .showcase-menu::-webkit-scrollbar {
        height: 4px;
    }
    .showcase-menu::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.02);
    }
    .showcase-menu::-webkit-scrollbar-thumb {
        background: rgba(0, 242, 254, 0.3);
        border-radius: 10px;
    }
    
    .showcase-item {
        flex: 0 0 min(292px, 86vw);
        scroll-snap-align: start;
        padding: 16px 18px !important;
        min-height: 104px;
        border-radius: 18px;
        transform: none !important;
    }
    
    .showcase-item:hover {
        transform: none !important;
    }
    
    .item-num {
        font-size: 1.25rem !important;
    }
    
    .item-meta h3 {
        font-size: 1rem !important;
        line-height: 1.25;
    }

    .item-tag-pill {
        font-size: 0.68rem;
    }

    .showcase-bottom-info {
        margin-top: 22px;
        padding: 24px;
        border-radius: 20px;
    }

    .info-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .showcase-bottom-info h4 {
        font-size: 1.35rem;
    }

    .showcase-bottom-info p {
        font-size: 0.98rem;
    }

    .estimator-controls,
    .estimator-result {
        padding: 24px;
    }

    .estimator-wrapper {
        border-radius: 24px;
    }

    .control-group {
        margin-bottom: 26px;
    }

    .option-grid-two {
        gap: 12px;
    }

    .option-card {
        padding: 18px 14px;
    }

    .option-icon {
        font-size: 1.35rem;
        margin-bottom: 8px;
    }

    .slider-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .estimator-result {
        gap: 22px;
    }

    .result-box {
        padding-bottom: 18px;
    }

    .result-value {
        font-size: 1.9rem;
    }

    .btn-cta-estimator {
        min-height: 50px;
    }

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

    .form-input {
        background: rgba(255, 255, 255, 0.035);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 12px;
        padding: 16px 14px;
    }

    .form-label {
        left: 14px;
        top: 16px;
    }

    .form-input:focus ~ .form-label,
    .form-input:not(:placeholder-shown) ~ .form-label {
        top: -10px;
        left: 10px;
        padding: 0 6px;
        background: var(--bg-color);
    }

    .form-input:focus {
        border-color: #00f2fe;
        box-shadow: 0 0 0 3px rgba(0, 242, 254, 0.08);
    }

    .floating-contact {
        right: 16px;
        bottom: 18px;
        min-height: 52px;
        width: 52px;
        padding: 8px;
        justify-content: center;
    }

    .floating-contact-text {
        position: absolute;
        right: 58px;
        width: max-content;
        max-width: 132px;
        padding: 9px 11px;
        border-radius: 999px;
        background: rgba(8, 8, 16, 0.82);
        border: 1px solid rgba(0, 242, 254, 0.18);
        font-size: 0.78rem;
        opacity: 0;
        transform: translateX(8px);
        pointer-events: none;
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .floating-contact:hover .floating-contact-text,
    .floating-contact:focus-visible .floating-contact-text {
        opacity: 1;
        transform: translateX(0);
    }

    .service-card,
    .play-card,
    .estimator-wrapper {
        animation-delay: 0s !important;
    }
    
    /* Touch tap scaling active feedbacks */
    .option-card:active, 
    .playground-card:active,
    .showcase-item:active,
    .btn:active {
        transform: scale(0.96) !important;
        border-color: rgba(0, 242, 254, 0.6) !important;
        box-shadow: 0 0 15px rgba(0, 242, 254, 0.3) !important;
        transition: transform 0.1s ease, border-color 0.1s ease !important;
    }
    
    /* Continuous floating backdrop glow animations for mobile */
    .orb-1 {
        animation: orbFloatMobile 12s infinite alternate ease-in-out !important;
        opacity: 0.55 !important;
        width: 260px !important;
        height: 260px !important;
    }
    
    .orb-2 {
        animation: orbFloatMobileReverse 15s infinite alternate ease-in-out !important;
        opacity: 0.55 !important;
        width: 300px !important;
        height: 300px !important;
    }
}

@keyframes orbFloatMobile {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, 30px) scale(1.15); }
    100% { transform: translate(-30px, -20px) scale(0.9); }
}

@keyframes orbFloatMobileReverse {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, -40px) scale(1.15); }
    100% { transform: translate(40px, 20px) scale(0.85); }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .option-grid {
        grid-template-columns: 1fr;
    }

    .option-grid.option-grid-two {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .contact-info h2 {
        font-size: 2.2rem;
    }
    
    .contact-form-container {
        padding: 32px 20px;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ==========================================================================
   6. Native CSS Entrance Animations (Fallback and Performance optimization)
   ========================================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card, .play-card, .portfolio-card, .estimator-wrapper {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Services stagger */
.services-grid .service-card:nth-child(1) { animation-delay: 0.3s; }
.services-grid .service-card:nth-child(2) { animation-delay: 0.45s; }
.services-grid .service-card:nth-child(3) { animation-delay: 0.6s; }

/* Playground stagger */
.playground-grid .play-card:nth-child(1) { animation-delay: 0.7s; }
.playground-grid .play-card:nth-child(2) { animation-delay: 0.85s; }
.playground-grid .play-card:nth-child(3) { animation-delay: 1.0s; }

/* Portfolio Grid stagger */
.portfolio-grid .portfolio-card:nth-child(1) { animation-delay: 1.1s; }
.portfolio-grid .portfolio-card:nth-child(2) { animation-delay: 1.2s; }
.portfolio-grid .portfolio-card:nth-child(3) { animation-delay: 1.3s; }
.portfolio-grid .portfolio-card:nth-child(4) { animation-delay: 1.4s; }
.portfolio-grid .portfolio-card:nth-child(5) { animation-delay: 1.5s; }
.portfolio-grid .portfolio-card:nth-child(6) { animation-delay: 1.6s; }
.portfolio-grid .portfolio-card:nth-child(7) { animation-delay: 1.7s; }

/* Estimator stagger */
.estimator-wrapper { animation-delay: 1.8s; }

/* ==========================================================================
   7. Glassmorphic Lightbox Modal
   ========================================================================== */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 4, 8, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 20px;
}

.lightbox-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    position: relative;
    width: 100%;
    max-width: 960px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(13, 13, 22, 0.75);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    transform: scale(0.95) translateY(20px);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-modal.active .lightbox-content {
    transform: scale(1) translateY(0);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-main);
    font-size: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.1);
}

.lightbox-body {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    min-height: 480px;
}

@media (max-width: 768px) {
    .lightbox-body {
        grid-template-columns: 1fr;
        max-height: 80vh;
        overflow-y: auto;
    }
}

.lightbox-media {
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.lightbox-media video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
}

.lightbox-details {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    background: rgba(13, 13, 22, 0.5);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
    .lightbox-details {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        padding: 30px;
    }
}

.lightbox-tag {
    align-self: flex-start;
    font-size: 0.8rem;
    color: #00f2fe;
    background: rgba(0, 242, 254, 0.08);
    border: 1px solid rgba(0, 242, 254, 0.15);
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.lightbox-details h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-main);
    background: linear-gradient(135deg, #fff 30%, var(--text-muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lightbox-details p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* ==========================================================================
   8. Testimonials / Customer Reviews
   ========================================================================== */
.testimonials {
    background-color: var(--bg-darker);
    padding: 100px 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    padding: 40px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 242, 254, 0.3);
    box-shadow: 0 12px 30px rgba(0, 242, 254, 0.05);
}

.testimonial-quote {
    font-size: 2rem;
    color: rgba(0, 242, 254, 0.2);
    margin-bottom: 20px;
}

.testimonial-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

.author-meta h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 4px;
}

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