/* ============================================
   AHMAD PHOENIX AGENCY - GLASSMORPHISM DESIGN
   ============================================ */

:root {
    --primary: #ff6b35;
    --primary-dark: #e85a2b;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    --text-dark: #212529;
    --text-muted: #6c757d;
    --gradient-1: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    --gradient-hero: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    --gradient-programming: linear-gradient(135deg, #0d1b2a 0%, #1b263b 50%, #415a77 100%);
    --gradient-videos: linear-gradient(135deg, #1a0a2e 0%, #2d1b4e 50%, #0f0c29 100%);
    --gradient-design: linear-gradient(135deg, #1a1a3e 0%, #2d3561 50%, #667eea 100%);
    --gradient-marketing: linear-gradient(135deg, #0a2e1a 0%, #1b4d3e 50%, #11998e 100%);
    --gradient-contact: linear-gradient(135deg, #1e3a5f 0%, #2c5364 50%, #203a43 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    color: white;
    overflow: hidden;
    line-height: 1.6;
    background: #0a0a1a;
}

/* Scroll Snap Container */
.snap-container {
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
}

/* Each Section - Full Screen */
.snap-section {
    height: 100vh;
    min-height: 100vh;
    width: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

/* Scroll Progress */
.scroll-progress {
    position: fixed;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-1);
    z-index: 10000;
    transform-origin: top;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

/* RTL Support */
body.rtl {
    font-family: 'Noto Sans Arabic', 'Space Grotesk', sans-serif;
}

body.rtl .nav {
    flex-direction: row-reverse;
}

body.rtl .nav-links {
    flex-direction: row-reverse;
}

body.rtl .nav-logo {
    order: 2;
}

body.rtl .nav-links {
    order: 3;
}

body.rtl .lang-switcher {
    order: 1;
}

body.rtl .service-tags {
    flex-direction: row-reverse;
}

body.rtl .social-links {
    flex-direction: row-reverse;
}

body.rtl .section-title,
body.rtl .hero-title,
body.rtl .section-description {
    text-align: center;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.lang-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.lang-separator {
    color: rgba(255, 255, 255, 0.3);
}

.lang-current {
    color: var(--primary);
    font-weight: 600;
}

/* Navigation - Glass Effect */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.2rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.nav-logo {
    font-family: 'Syncopate', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 2px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
    transition: all 0.3s ease;
}

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

/* Flying Phoenix - Smooth Animation */
.flying-phoenix {
    position: fixed;
    width: 280px;
    height: 280px;
    z-index: 100;
    pointer-events: none;
    opacity: 0;
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.flying-phoenix .phoenix-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 60px rgba(255, 107, 53, 0.6));
    animation: phoenixFloat 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

/* Phoenix Trail Effect - Behind phoenix, aligned with tail */
.phoenix-trail {
    position: absolute;
    bottom: 20%;
    left: 45%;
    transform: translateX(-50%);
    width: 100px;
    height: 60px;
    pointer-events: none;
    z-index: 1;
}

.trail-particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: trailFade 1.2s ease-out forwards;
}

.trail-fire {
    background: radial-gradient(circle, rgba(255, 150, 80, 0.9) 0%, rgba(255, 107, 53, 0.6) 30%, rgba(255, 69, 0, 0.3) 60%, transparent 100%);
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.8), 0 0 60px rgba(255, 69, 0, 0.4);
}

.trail-code {
    font-family: 'Courier New', monospace;
    font-size: 14px;
    font-weight: bold;
    color: rgba(100, 255, 150, 0.8);
    text-shadow: 0 0 10px rgba(100, 255, 150, 0.5);
    background: none;
    white-space: nowrap;
}

@keyframes trailFade {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1) rotate(0deg);
    }

    100% {
        opacity: 0;
        transform: translateY(80px) scale(0.2) rotate(180deg);
    }
}

@keyframes phoenixFloat {

    0%,
    100% {
        transform: translateY(0) rotate(-3deg);
    }

    50% {
        transform: translateY(-25px) rotate(3deg);
    }
}

/* Phoenix is positioned by JavaScript - no CSS position classes needed */

/* ============================================
   SECTION BACKGROUNDS
   ============================================ */
.section-hero {
    background: var(--gradient-hero);
}

.section-programming {
    background: var(--gradient-programming);
}

.section-videos {
    background: var(--gradient-videos);
}

.section-design {
    background: var(--gradient-design);
}

.section-marketing {
    background: var(--gradient-marketing);
}

.section-contact {
    background: var(--gradient-contact);
}

/* Glass Card - Common Style */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--glass-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    max-width: 700px;
    width: 90%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.glass-card:hover::before {
    opacity: 1;
}

/* Hero Section */
.section-hero {
    background: var(--gradient-hero);
    position: relative;
}

/* Big semi-transparent phoenix in hero background */
.section-hero::before {
    content: '';
    position: absolute;
    top: 75%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300vw;
    height: 300vh;
    background-image: url('/assets/hero_version_logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    padding: 0 0.5rem;
    top: 5%;
}

/* Static Phoenix in Hero - inside the glass card */
.hero-phoenix-static {
    width: 400px;
    height: 400px;
    margin: 0 auto;
    pointer-events: none;
}

.hero-phoenix-static img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(255, 107, 53, 0.5));
    /* No animation - completely static */
}

.hero-title {
    font-family: 'Syncopate', sans-serif;
    font-size: clamp(1.5rem, 6vw, 2.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
}

.title-line.different {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 40px rgba(255, 107, 53, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.agency-name {
    font-family: 'Syncopate', sans-serif;
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 700;
    letter-spacing: 3px;
    color: #87CEEB;
    text-transform: uppercase;
    margin-bottom: 3rem;
}

.scroll-hint {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: bounce 2s infinite;
}

.scroll-hint span {
    font-size: 0.85rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 500;
}

.arrow-up {
    font-size: 2rem;
    color: var(--primary);
    animation: pulseArrow 2s infinite;
}

@keyframes pulseArrow {

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

    50% {
        transform: translateY(-10px);
        opacity: 0.7;
    }
}

/* Service Sections */
.section-content {
    composes: glass-card;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.4);
    position: relative;
}

.service-icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 23px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
    z-index: -1;
}

.service-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.section-title {
    font-family: 'Syncopate', sans-serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-description {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    line-height: 1.9;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.75);
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
}

.service-tags span {
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid rgba(255, 107, 53, 0.3);
    color: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-tags span:hover {
    background: rgba(255, 107, 53, 0.3);
    transform: translateY(-2px);
}

/* Contact Form - Balanced size, positioned lower, fixed labels */
.contact-content {
    composes: glass-card;
    max-width: 400px;
    padding: 1.8rem;
    margin-top: 12vh;
}

.contact-content .section-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.contact-subtitle {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
}

.form-group {
    position: relative;
    margin-bottom: 1.2rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    outline: none;
}

.form-group textarea {
    min-height: 70px;
    padding-top: 1rem;
}

/* Textarea placeholder - same color as other inputs */
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group select:valid {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

/* Dropdown list styling */
.form-group select {
    /* Ensure dropdown has rounded corners */
    border-radius: 8px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2rem;
    padding-right: 2.5rem;
}

/* Custom Select Dropdown with Rounded Corners */
.custom-select-group {
    position: relative;
}

.custom-select {
    position: relative;
    width: 100%;
}

.select-trigger {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.custom-select.active .select-trigger,
.select-trigger:hover {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

.select-arrow {
    width: 1.2rem;
    height: 1.2rem;
    transition: transform 0.3s ease;
}

.custom-select.active .select-arrow {
    transform: rotate(180deg);
}

/* Dropdown options container - WITH ROUNDED CORNERS */
.select-options {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    background: #1a1a3e;
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 14px;
    /* ROUNDED CORNERS - like your example */
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
    max-height: 200px;
    overflow-y: auto;
}

.custom-select.active .select-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Individual option */
.option {
    padding: 0.75rem 1rem;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.option:last-child {
    border-bottom: none;
}

.option:hover,
.option.selected {
    background: var(--primary);
    color: white;
}

/* When custom select has value or is active (open), show label */
.custom-select.has-value~label,
.custom-select.active~label {
    opacity: 1;
    top: -0.6rem;
    font-size: 0.7rem;
    color: var(--primary);
    background: rgba(26, 26, 46, 0.9);
    padding: 0 0.3rem;
    border-radius: 4px;
}

/* Selected value styling */
.custom-select.has-value .select-text {
    color: white;
}

.form-group label {
    position: absolute;
    left: 1rem;
    top: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    pointer-events: none;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    background: transparent;
}

/* Hide select, custom select, and textarea labels by default (prevents overlapping with placeholder) */
.form-group select+label,
.form-group textarea+label,
.custom-select-group>label {
    opacity: 0;
}

/* Show select and textarea labels only when focused or has valid value */
.form-group select:focus+label,
.form-group select:valid+label,
.form-group textarea:focus+label,
.form-group textarea:valid+label,
.custom-select.has-value~label,
.custom-select.active~label {
    opacity: 1;
    top: -0.6rem;
    font-size: 0.7rem;
    color: var(--primary);
    background: rgba(26, 26, 46, 0.9);
    padding: 0 0.3rem;
    border-radius: 4px;
}

/* Label moves up when input is focused or has value (excluding select which is handled above) */
.form-group input:focus+label,
.form-group input:not(:placeholder-shown)+label {
    top: -0.6rem;
    font-size: 0.7rem;
    color: var(--primary);
    background: rgba(26, 26, 46, 0.9);
    padding: 0 0.3rem;
    border-radius: 4px;
}


.submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    padding: 0.6rem 1rem;
    background: var(--gradient-1);
    border: none;
    border-radius: 8px;
    color: white;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.2rem;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
}

.contact-info {
    margin-top: 1.5rem;
}

.contact-link {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.75rem;
    transition: all 0.3s ease;
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    border: 1px solid transparent;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
}

.contact-info {
    margin-top: 2rem;
}

.contact-link {
    color: var(--primary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    position: relative;
    z-index: 2;
}

.social-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 1px solid transparent;
    cursor: pointer;
    position: relative;
    z-index: 3;
}

.social-link:hover {
    color: white;
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.social-link img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    display: block;
    pointer-events: none;
}

/* Floating Elements Background */
.floating-code,
.floating-video,
.floating-shapes,
.floating-graphs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

/* Code Snippets - More Visible */
.code-snippet {
    position: absolute;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: rgba(100, 255, 150, 0.35);
    white-space: pre;
    animation: floatUp 20s linear infinite;
    text-shadow: 0 0 15px rgba(100, 255, 150, 0.4), 0 0 30px rgba(100, 255, 150, 0.2);
    font-weight: 500;
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    5% {
        opacity: 0.4;
    }

    95% {
        opacity: 0.4;
    }

    100% {
        transform: translateY(-100vh) rotate(10deg);
        opacity: 0;
    }
}

/* Video Elements */
.video-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 107, 53, 0.25);
    border-radius: 12px;
    background: rgba(255, 107, 53, 0.05);
    animation: floatVideo 18s ease-in-out infinite;
}

.video-icon::before {
    content: '▶';
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    color: rgba(255, 107, 53, 0.4);
}

.film-strip {
    position: absolute;
    width: 80px;
    height: 60px;
    border: 2px dashed rgba(255, 107, 53, 0.25);
    background: repeating-linear-gradient(90deg, rgba(255, 107, 53, 0.05) 0px, rgba(255, 107, 53, 0.05) 6px, transparent 6px, transparent 12px);
    animation: floatFilm 22s ease-in-out infinite;
}

@keyframes floatFilm {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.2;
    }

    50% {
        transform: translate(40px, -40px) rotate(8deg);
        opacity: 0.5;
    }
}

@keyframes floatVideo {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(25px, -25px) rotate(4deg);
    }

    50% {
        transform: translate(-15px, -40px) rotate(-4deg);
    }

    75% {
        transform: translate(-30px, -15px) rotate(2deg);
    }
}

/* Design Shapes */
.shape {
    position: absolute;
    animation: floatShape 15s ease-in-out infinite;
    opacity: 0.4;
}

.shape-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.shape-square {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 107, 53, 0.05));
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 8px;
}

.shape-triangle {
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 45px solid rgba(255, 255, 255, 0.08);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
}

.shape-hexagon {
    width: 50px;
    height: 28px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.12), rgba(255, 107, 53, 0.05));
    position: relative;
    border: 1px solid rgba(255, 107, 53, 0.15);
}

.shape-hexagon::before,
.shape-hexagon::after {
    content: "";
    position: absolute;
    width: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
}

.shape-hexagon::before {
    bottom: 100%;
    border-bottom: 14px solid rgba(255, 107, 53, 0.12);
}

.shape-hexagon::after {
    top: 100%;
    border-top: 14px solid rgba(255, 107, 53, 0.12);
}

@keyframes floatShape {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(40px, -25px) rotate(120deg);
    }

    66% {
        transform: translate(-25px, -50px) rotate(240deg);
    }
}

/* Marketing Graphs */
.graph-bar {
    position: absolute;
    bottom: 25%;
    width: 35px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    border-radius: 6px 6px 0 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: growBar 4s ease-in-out infinite alternate;
}

@keyframes growBar {
    0% {
        height: 50px;
    }

    100% {
        height: 140px;
    }
}

.graph-line {
    position: absolute;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    animation: moveLine 10s linear infinite;
}

.growth-percentage {
    position: absolute;
    font-family: 'Syncopate', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.35);
    animation: floatPercentage 6s ease-in-out infinite;
}

@keyframes floatPercentage {

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

    50% {
        transform: translateY(-15px) scale(1.05);
        opacity: 0.6;
    }
}

@keyframes moveLine {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* Animations */
@keyframes bounce {

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

    40% {
        transform: translateY(-8px);
    }

    60% {
        transform: translateY(-4px);
    }
}

@keyframes gentleFloat {

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

    50% {
        transform: translateY(-12px) rotate(2deg);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .nav {
        padding: 1rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.8rem;
    }

    .flying-phoenix {
        width: 150px;
        height: 150px;
    }

    .glass-card {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }

    .section-content {
        padding: 80px 1rem 1rem;
    }

    .service-icon {
        width: 55px;
        height: 55px;
    }

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

    .hero-phoenix-static {
        width: 220px;
        height: 220px;
        margin: 0 auto;
    }

    .hero-content {
        top: 2%;
    }
}