/* ===== CSS Variables ===== */
:root {
    /* Colors - Dark Theme */
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-tertiary: #1a1a25;
    --bg-card: #15151f;

    /* Accent Colors */
    --accent-primary: #6366f1;
    --accent-secondary: #8b5cf6;
    --accent-gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    --accent-glow: rgba(99, 102, 241, 0.3);

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;

    /* Borders */
    --border-color: rgba(255, 255, 255, 0.1);
    --border-glow: rgba(99, 102, 241, 0.5);

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px rgba(99, 102, 241, 0.2);

    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 24px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 50%;

    /* Fonts */
    --font-ar: 'Cairo', sans-serif;
    --font-en: 'Inter', sans-serif;
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-ar);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

body.lang-en {
    font-family: var(--font-en);
    direction: ltr;
}

body.lang-ar {
    font-family: var(--font-ar);
    direction: rtl;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* ===== Language Switcher ===== */
.lang-switcher {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1001;
    display: flex;
    gap: 5px;
    background: var(--bg-card);
    padding: 5px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.lang-btn {
    padding: 8px 16px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
}

.lang-btn:hover {
    color: var(--text-primary);
}

.lang-btn.active {
    background: var(--accent-gradient);
    color: var(--text-primary);
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: var(--transition-normal);
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.hamburger {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-normal);
}

.nav-toggle::before,
.nav-toggle::after {
    content: '';
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-normal);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 100%, rgba(168, 85, 247, 0.1) 0%, transparent 50%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: particleFloat 20s linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50px);
    }
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
}

.hero-greeting {
    display: inline-block;
    font-size: 1.25rem;
    color: var(--accent-primary);
    margin-bottom: 10px;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(90deg,
            #6366f1 0%,
            #8b5cf6 25%,
            #a855f7 50%,
            #ec4899 75%,
            #6366f1 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease 0.1s forwards, gradientFlow 3s linear infinite;
    opacity: 0;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.3s forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn {
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.btn-primary {
    background: var(--accent-gradient);
    color: var(--text-primary);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-glow);
}

.btn-secondary:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: var(--accent-primary);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid var(--border-glow);
    border-radius: 25px;
    display: flex;
    justify-content: center;
    padding-top: 10px;
}

.scroll-indicator span {
    width: 6px;
    height: 10px;
    background: var(--accent-primary);
    border-radius: 3px;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(15px);
    }

    60% {
        transform: translateY(10px);
    }
}

/* ===== Section Styles ===== */
.section {
    padding: var(--section-padding);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    background: linear-gradient(90deg,
            var(--text-primary) 0%,
            var(--text-primary) 40%,
            var(--accent-primary) 50%,
            var(--text-primary) 60%,
            var(--text-primary) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShimmer 3s ease-in-out infinite;
}

@keyframes textShimmer {
    0% {
        background-position: 200% center;
    }

    100% {
        background-position: -200% center;
    }
}

.section-description {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* ===== About Section ===== */
.about-section {
    background: var(--bg-secondary);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.about-image {
    position: sticky;
    top: 120px;
}

.image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: var(--transition-slow);
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.image-border {
    position: absolute;
    inset: -4px;
    border: 2px solid transparent;
    border-radius: var(--radius-lg);
    background: var(--accent-gradient);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    z-index: -1;
    opacity: 0.5;
}

.about-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    justify-content: center;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-intro p {
    font-size: 1.125rem;
    line-height: 1.9;
    color: var(--text-secondary);
}

.skills-section h3,
.vision-section h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--text-primary);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.skill-card {
    padding: 25px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.skill-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.skill-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.skill-card h4 {
    font-size: 1.125rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.skill-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.vision-timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.timeline-item:hover {
    border-color: var(--accent-primary);
}

.timeline-marker {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gradient);
    border-radius: var(--radius-full);
    font-weight: 700;
}

.timeline-item p {
    color: var(--text-secondary);
}

.vision-quote,
.studio-quote {
    padding: 30px;
    background: var(--bg-card);
    border-right: 4px solid var(--accent-primary);
    border-radius: var(--radius-md);
    font-style: italic;
}

body.lang-en .vision-quote,
body.lang-en .studio-quote {
    border-right: none;
    border-left: 4px solid var(--accent-primary);
}

.vision-quote p,
.studio-quote p {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

/* ===== Studio Section ===== */
.studio-section {
    background: var(--bg-primary);
}

.studio-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.studio-logo {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid var(--border-color);
    transition: var(--transition-normal);
}

.studio-logo:hover {
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-glow);
}

.studio-logo img {
    width: 100%;
    height: auto;
}

.studio-intro {
    font-size: 1.25rem;
    line-height: 1.9;
    color: var(--text-secondary);
}

.studio-phases {
    margin-bottom: 60px;
}

.phases-title {
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: 40px;
}

.phases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.phase-card {
    padding: 35px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.phase-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-gradient);
    opacity: 0;
    transition: var(--transition-normal);
}

.phase-card:hover,
.phase-card.active {
    border-color: var(--accent-primary);
    transform: translateY(-5px);
}

.phase-card:hover::before,
.phase-card.active::before {
    opacity: 1;
}

.phase-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    opacity: 0.5;
}

.phase-card h4 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.phase-card>p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.8;
}

.phase-points {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.phase-points li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.phase-points li::before {
    content: '✓';
    color: var(--accent-primary);
    font-weight: 700;
}

.studio-vision {
    text-align: center;
}

.studio-vision h3 {
    font-size: 1.75rem;
    margin-bottom: 20px;
}

.studio-vision>p {
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.studio-quote {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    border-right: none;
    border-top: 4px solid var(--accent-primary);
}

body.lang-en .studio-vision .studio-quote {
    border-left: none;
    border-top: 4px solid var(--accent-primary);
}

/* ===== Partners Section ===== */
.partners-section {
    background: var(--bg-secondary);
}

.partners-category {
    margin-bottom: 60px;
}

.category-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.category-icon {
    font-size: 1.75rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 25px;
}

.partner-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    transition: var(--transition-normal);
}

.partner-card:hover {
    border-color: var(--accent-primary);
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

.partner-card img {
    max-height: 80px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition-normal);
}

.partner-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.thanks-message {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.thanks-message p {
    font-size: 1.25rem;
    color: var(--accent-primary);
    font-weight: 600;
}

/* ===== FAQ Section ===== */
.faq-section {
    background: var(--bg-primary);
}

.faq-category {
    margin-bottom: 50px;
}

.faq-category-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.faq-icon {
    font-size: 1.5rem;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-item:hover,
.faq-item.active {
    border-color: var(--accent-primary);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: right;
    transition: var(--transition-normal);
}

body.lang-en .faq-question {
    text-align: left;
}

.faq-question:hover {
    color: var(--accent-primary);
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--accent-primary);
    transition: var(--transition-normal);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 20px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ===== Contact Section ===== */
.contact-section {
    background: var(--bg-secondary);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.social-links h3,
.email-contact h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.social-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.social-card:hover {
    transform: translateX(-5px);
    border-color: var(--accent-primary);
}

body.lang-en .social-card:hover {
    transform: translateX(5px);
}

.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.social-icon svg {
    width: 28px;
    height: 28px;
}

.social-card.instagram .social-icon {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
}

.social-card.tiktok .social-icon {
    background: #000;
    color: white;
}

.social-card.github .social-icon {
    background: #333;
    color: white;
}

.social-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
}

.social-handle {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-right: auto;
}

body.lang-en .social-handle {
    margin-right: 0;
    margin-left: auto;
}

.email-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.email-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 40px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
    width: 100%;
}

.email-link:hover {
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-glow);
}

.email-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gradient);
    border-radius: var(--radius-full);
}

.email-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.email-address {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent-primary);
}

.email-note {
    margin-top: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===== Footer ===== */
.footer {
    background: var(--bg-primary);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 1.5rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.footer-brand p {
    color: var(--text-secondary);
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--text-secondary);
}

.footer-links a:hover {
    color: var(--accent-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        position: static;
        max-width: 400px;
        margin: 0 auto;
    }

    .studio-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .studio-logo {
        max-width: 250px;
        margin: 0 auto;
    }

    .phases-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .lang-switcher {
        top: 15px;
        left: 15px;
    }

    .lang-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--bg-secondary);
        flex-direction: column;
        padding: 100px 40px;
        gap: 30px;
        transition: var(--transition-normal);
        border-left: 1px solid var(--border-color);
    }

    body.lang-en .nav-menu {
        right: auto;
        left: -100%;
        border-left: none;
        border-right: 1px solid var(--border-color);
    }

    .nav-menu.active {
        right: 0;
    }

    body.lang-en .nav-menu.active {
        right: auto;
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .skills-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 60px 0;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }

    .btn {
        width: 100%;
    }

    .about-stats {
        flex-direction: column;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== Animations ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-secondary);
}

/* ===== Advanced Text Effects ===== */

/* Glowing Neon Text Effect */
.glow-text {
    text-shadow:
        0 0 5px var(--accent-primary),
        0 0 10px var(--accent-primary),
        0 0 20px var(--accent-primary),
        0 0 40px var(--accent-secondary);
    animation: neonPulse 2s ease-in-out infinite;
}

@keyframes neonPulse {

    0%,
    100% {
        text-shadow:
            0 0 5px var(--accent-primary),
            0 0 10px var(--accent-primary),
            0 0 20px var(--accent-primary),
            0 0 40px var(--accent-secondary);
    }

    50% {
        text-shadow:
            0 0 10px var(--accent-primary),
            0 0 20px var(--accent-primary),
            0 0 40px var(--accent-primary),
            0 0 80px var(--accent-secondary);
    }
}

/* Typewriter Cursor Effect */
.typewriter-text {
    overflow: hidden;
    border-left: 3px solid var(--accent-primary);
    white-space: nowrap;
    animation: typing 3.5s steps(40, end), blinkCursor 0.75s step-end infinite;
}

body.lang-en .typewriter-text {
    border-left: none;
    border-right: 3px solid var(--accent-primary);
}

@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes blinkCursor {

    from,
    to {
        border-color: transparent;
    }

    50% {
        border-color: var(--accent-primary);
    }
}

/* Text Hover Reveal Effect */
.reveal-text {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.reveal-text::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-gradient);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

body.lang-en .reveal-text::before {
    right: auto;
    left: 0;
    transform: translateX(100%);
}

.reveal-text:hover::before {
    transform: translateX(100%);
}

body.lang-en .reveal-text:hover::before {
    transform: translateX(-100%);
}

/* Floating Text Animation */
.float-text {
    animation: floatUpDown 3s ease-in-out infinite;
}

@keyframes floatUpDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Text Gradient Hover */
.gradient-hover {
    transition: all 0.3s ease;
}

.gradient-hover:hover {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Letter Spacing Animation on Hover */
.letter-space-hover {
    transition: letter-spacing 0.3s ease;
}

.letter-space-hover:hover {
    letter-spacing: 3px;
}

/* Text Underline Animation */
.underline-slide {
    position: relative;
    display: inline-block;
}

.underline-slide::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: width 0.4s ease;
}

body.lang-en .underline-slide::after {
    right: auto;
    left: 0;
}

.underline-slide:hover::after {
    width: 100%;
}

/* Split Text Color Effect */
.split-color {
    background: linear-gradient(90deg, var(--accent-primary) 50%, var(--text-primary) 50%);
    background-size: 200% 100%;
    background-position: 100% 0;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: background-position 0.5s ease;
}

.split-color:hover {
    background-position: 0 0;
}

/* 3D Text Effect */
.text-3d {
    text-shadow:
        1px 1px 0 var(--bg-tertiary),
        2px 2px 0 var(--bg-tertiary),
        3px 3px 0 var(--bg-tertiary),
        4px 4px 0 var(--accent-primary);
    transition: all 0.3s ease;
}

.text-3d:hover {
    text-shadow:
        1px 1px 0 var(--bg-tertiary),
        2px 2px 0 var(--bg-tertiary),
        3px 3px 0 var(--bg-tertiary),
        4px 4px 0 var(--bg-tertiary),
        5px 5px 0 var(--bg-tertiary),
        6px 6px 0 var(--accent-primary);
    transform: translate(-2px, -2px);
}

/* Wave Text Animation - Applied to hero subtitle */
.hero-subtitle span {
    display: inline-block;
    animation: wave 1s ease-in-out infinite;
}

.hero-subtitle span:nth-child(2) {
    animation-delay: 0.1s;
}

.hero-subtitle span:nth-child(3) {
    animation-delay: 0.2s;
}

.hero-subtitle span:nth-child(4) {
    animation-delay: 0.3s;
}

.hero-subtitle span:nth-child(5) {
    animation-delay: 0.4s;
}

@keyframes wave {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* Glitch Effect */
.glitch-text {
    position: relative;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.glitch-text::before {
    color: #ff00ff;
    animation: glitch-1 0.5s infinite;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
}

.glitch-text::after {
    color: #00ffff;
    animation: glitch-2 0.5s infinite;
    clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
}

@keyframes glitch-1 {
    0% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(-3px);
    }

    40% {
        transform: translateX(3px);
    }

    60% {
        transform: translateX(-3px);
    }

    80% {
        transform: translateX(3px);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes glitch-2 {
    0% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(3px);
    }

    40% {
        transform: translateX(-3px);
    }

    60% {
        transform: translateX(3px);
    }

    80% {
        transform: translateX(-3px);
    }

    100% {
        transform: translateX(0);
    }
}

/* Logo Text Animation */
.logo-text {
    animation: logoShine 4s ease-in-out infinite;
}

@keyframes logoShine {

    0%,
    100% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(1.3);
    }
}

/* ===== ENHANCED SECTION EFFECTS ===== */

/* === Navigation Effects === */
.nav-link {
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
    border-radius: 50%;
    z-index: -1;
}

.nav-link:hover::before {
    width: 200px;
    height: 200px;
}

/* === Hero Section Enhanced === */
.hero-greeting {
    position: relative;
    display: inline-block;
}

.hero-greeting::after {
    content: '👋';
    position: absolute;
    right: -35px;
    animation: waveHand 1s ease-in-out infinite;
}

body.lang-en .hero-greeting::after {
    right: auto;
    left: -35px;
}

@keyframes waveHand {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(20deg);
    }

    75% {
        transform: rotate(-20deg);
    }
}

/* Buttons Ripple Effect */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:active::after {
    width: 300px;
    height: 300px;
    opacity: 0;
}

/* === About Section Effects === */

/* Profile Image Glow */
.image-wrapper {
    position: relative;
}

.image-wrapper::before {
    content: '';
    position: absolute;
    inset: -10px;
    background: var(--accent-gradient);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0;
    filter: blur(20px);
    transition: opacity 0.5s ease;
}

.image-wrapper:hover::before {
    opacity: 0.5;
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

/* Stat Items Counter Effect */
.stat-item {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 30%,
            rgba(99, 102, 241, 0.1) 50%,
            transparent 70%);
    transform: rotate(45deg) translateX(-100%);
    transition: transform 0.6s ease;
}

.stat-item:hover::before {
    transform: rotate(45deg) translateX(100%);
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.3);
}

/* Skill Cards 3D Tilt Effect */
.skill-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.skill-card:hover {
    animation: tiltCard 0.5s ease forwards;
}

@keyframes tiltCard {
    0% {
        transform: rotateY(0) rotateX(0);
    }

    50% {
        transform: rotateY(5deg) rotateX(5deg);
    }

    100% {
        transform: rotateY(0) rotateX(0) translateY(-10px);
    }
}

/* Skill Icon Bounce */
.skill-icon {
    display: inline-block;
    transition: transform 0.3s ease;
}

.skill-card:hover .skill-icon {
    animation: bounceIcon 0.6s ease;
}

@keyframes bounceIcon {

    0%,
    100% {
        transform: translateY(0);
    }

    25% {
        transform: translateY(-15px);
    }

    50% {
        transform: translateY(-5px);
    }

    75% {
        transform: translateY(-10px);
    }
}

/* Timeline Items Slide In */
.timeline-item {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 0.6s ease forwards;
}

body.lang-en .timeline-item {
    transform: translateX(-50px);
    animation: slideInLeft 0.6s ease forwards;
}

.timeline-item:nth-child(1) {
    animation-delay: 0.1s;
}

.timeline-item:nth-child(2) {
    animation-delay: 0.2s;
}

.timeline-item:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Timeline Marker Pulse */
.timeline-marker {
    position: relative;
}

.timeline-marker::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: var(--accent-gradient);
    opacity: 0;
    z-index: -1;
    animation: markerPulse 2s ease-in-out infinite;
}

@keyframes markerPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.3;
    }
}

/* Quote Typewriter Border */
.vision-quote,
.studio-quote {
    position: relative;
    overflow: hidden;
}

.vision-quote::after,
.studio-quote::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 3px;
    height: 0;
    background: var(--accent-primary);
    animation: quoteBorder 3s ease forwards;
}

@keyframes quoteBorder {
    to {
        height: 100%;
    }
}

/* === Studio Section Effects === */

/* Studio Logo Rotate on Hover */
.studio-logo img {
    transition: transform 0.8s ease;
}

.studio-logo:hover img {
    transform: rotateY(360deg);
}

/* Phase Cards Shine Effect */
.phase-card {
    position: relative;
    overflow: hidden;
}

.phase-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 40%,
            rgba(255, 255, 255, 0.05) 50%,
            transparent 60%);
    transform: rotate(45deg) translateX(-100%);
    transition: transform 0.8s ease;
}

.phase-card:hover::after {
    transform: rotate(45deg) translateX(100%);
}

/* Phase Number Counting Effect */
.phase-number {
    position: relative;
    display: inline-block;
}

.phase-card:hover .phase-number {
    animation: countPulse 0.5s ease;
}

@keyframes countPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

/* Phase Points Stagger Animation */
.phase-points li {
    opacity: 0;
    transform: translateX(20px);
}

.phase-card:hover .phase-points li {
    animation: fadeInStagger 0.4s ease forwards;
}

.phase-card:hover .phase-points li:nth-child(1) {
    animation-delay: 0.1s;
}

.phase-card:hover .phase-points li:nth-child(2) {
    animation-delay: 0.2s;
}

.phase-card:hover .phase-points li:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes fadeInStagger {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Phase Points Default State */
.phase-card .phase-points li {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.3s ease;
}

/* === Partners Section Effects === */

/* Category Title Icon Spin */
.category-icon {
    display: inline-block;
    transition: transform 0.5s ease;
}

.category-title:hover .category-icon {
    animation: spinIcon 0.8s ease;
}

@keyframes spinIcon {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.3);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}

/* Partner Cards Float Effect */
.partner-card {
    animation: floatPartner 3s ease-in-out infinite;
}

.partner-card:nth-child(2) {
    animation-delay: 0.2s;
}

.partner-card:nth-child(3) {
    animation-delay: 0.4s;
}

.partner-card:nth-child(4) {
    animation-delay: 0.6s;
}

.partner-card:nth-child(5) {
    animation-delay: 0.8s;
}

.partner-card:nth-child(6) {
    animation-delay: 1s;
}

.partner-card:nth-child(7) {
    animation-delay: 1.2s;
}

.partner-card:nth-child(8) {
    animation-delay: 1.4s;
}

@keyframes floatPartner {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Partner Card Glow on Hover */
.partner-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent-gradient);
    opacity: 0;
    border-radius: var(--radius-md);
    z-index: -1;
    transition: opacity 0.3s ease;
}

.partner-card:hover::before {
    opacity: 0.1;
}

/* Thanks Message Typing Effect */
.thanks-message p {
    position: relative;
    display: inline-block;
}

.thanks-message p::after {
    content: '❤️';
    position: absolute;
    right: -30px;
    animation: heartBeat 1s ease-in-out infinite;
}

@keyframes heartBeat {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }
}

/* === FAQ Section Effects === */

/* FAQ Question Hover */
.faq-question {
    position: relative;
    overflow: hidden;
}

.faq-question::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
    transition: right 0.5s ease;
}

.faq-question:hover::before {
    right: 100%;
}

/* FAQ Toggle Rotation */
.faq-toggle {
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: var(--accent-secondary);
}

/* FAQ Answer Slide */
.faq-answer {
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
}

/* FAQ Icon Bounce */
.faq-icon {
    display: inline-block;
    transition: transform 0.3s ease;
}

.faq-category-title:hover .faq-icon {
    animation: bounceIcon 0.6s ease;
}

/* === Contact Section Effects === */

/* Social Cards Gradient Border */
.social-card {
    position: relative;
    background: var(--bg-card);
    z-index: 1;
}

.social-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--accent-gradient);
    border-radius: calc(var(--radius-md) + 2px);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-card:hover::before {
    opacity: 1;
}

/* Social Icon Pulse */
.social-icon {
    transition: transform 0.3s ease;
}

.social-card:hover .social-icon {
    animation: iconPulse 0.6s ease;
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

/* Instagram Rainbow Animation */
.social-card.instagram:hover .social-icon {
    animation: instagramGlow 0.8s ease infinite;
}

@keyframes instagramGlow {

    0%,
    100% {
        box-shadow: 0 0 10px #f09433;
    }

    33% {
        box-shadow: 0 0 10px #dc2743;
    }

    66% {
        box-shadow: 0 0 10px #bc1888;
    }
}

/* Email Icon Float */
.email-icon {
    animation: emailFloat 3s ease-in-out infinite;
}

@keyframes emailFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Email Link Glow */
.email-link {
    position: relative;
}

.email-link::before {
    content: '';
    position: absolute;
    inset: -5px;
    background: var(--accent-gradient);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0;
    filter: blur(15px);
    transition: opacity 0.4s ease;
}

.email-link:hover::before {
    opacity: 0.4;
}

/* Email Address Typing Effect */
.email-address {
    position: relative;
}

.email-address::after {
    content: '|';
    animation: blinkCursor 0.8s step-end infinite;
    color: var(--accent-primary);
    margin-right: 5px;
}

/* === Footer Effects === */

/* Footer Brand Glow */
.footer-brand h3 {
    position: relative;
    display: inline-block;
}

.footer-brand h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: width 0.5s ease;
}

.footer-brand:hover h3::after {
    width: 100%;
}

/* Footer Links Hover Effect */
.footer-links a {
    position: relative;
    overflow: hidden;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.footer-links a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* === Scroll Reveal Animations === */
.section-header,
.about-content,
.studio-content,
.studio-phases,
.studio-vision,
.partners-category,
.faq-category,
.contact-content {
    opacity: 0;
    transform: translateY(50px);
    animation: revealSection 0.8s ease forwards;
}

@keyframes revealSection {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered Section Animations */
.section:nth-of-type(1) .section-header {
    animation-delay: 0.1s;
}

.section:nth-of-type(2) .section-header {
    animation-delay: 0.2s;
}

.section:nth-of-type(3) .section-header {
    animation-delay: 0.3s;
}

.section:nth-of-type(4) .section-header {
    animation-delay: 0.4s;
}

.section:nth-of-type(5) .section-header {
    animation-delay: 0.5s;
}

/* === Mouse Follow Glow (Enhanced) === */
.hero {
    position: relative;
}

.hero::before {
    content: '';
    position: fixed;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
    transform: translate(-50%, -50%);
    animation: glowMove 10s ease-in-out infinite;
}

@keyframes glowMove {

    0%,
    100% {
        top: 30%;
        left: 30%;
    }

    25% {
        top: 50%;
        left: 70%;
    }

    50% {
        top: 70%;
        left: 50%;
    }

    75% {
        top: 40%;
        left: 40%;
    }
}

/* === Loading Animation for Images === */
.partner-card img,
.image-wrapper img,
.studio-logo img {
    opacity: 0;
    animation: fadeInImage 0.8s ease forwards;
}

@keyframes fadeInImage {
    to {
        opacity: 1;
    }
}

.partner-card:nth-child(1) img {
    animation-delay: 0.1s;
}

.partner-card:nth-child(2) img {
    animation-delay: 0.15s;
}

.partner-card:nth-child(3) img {
    animation-delay: 0.2s;
}

.partner-card:nth-child(4) img {
    animation-delay: 0.25s;
}

.partner-card:nth-child(5) img {
    animation-delay: 0.3s;
}

.partner-card:nth-child(6) img {
    animation-delay: 0.35s;
}

.partner-card:nth-child(7) img {
    animation-delay: 0.4s;
}

.partner-card:nth-child(8) img {
    animation-delay: 0.45s;
}

/* === Parallax Background Effect === */
.hero-bg {
    transition: transform 0.1s ease-out;
}

/* === Magnetic Button Effect === */
.btn-primary {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
}

.btn-secondary:hover {
    transform: translateY(-5px) scale(1.02);
}

/* === Text Selection Style === */
::selection {
    background: var(--accent-primary);
    color: white;
}

::-moz-selection {
    background: var(--accent-primary);
    color: white;
}

/* === Focus Styles for Accessibility === */
.btn:focus,
.nav-link:focus,
.social-card:focus,
.faq-question:focus {
    outline: 2px solid var(--accent-primary);
    outline-offset: 3px;
}

/* === Print Styles === */
@media print {

    .hero-bg,
    .scroll-indicator,
    .nav-toggle,
    .back-to-top {
        display: none !important;
    }
}

/* ===== Music Player ===== */
.music-player {
    position: fixed;
    bottom: 30px;
    z-index: 1001;
}

body.lang-ar .music-player {
    right: 30px;
    left: auto;
}

body.lang-en .music-player {
    left: 30px;
    right: auto;
}

.music-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(21, 21, 31, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    color: var(--text-primary);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.music-btn:hover {
    background: rgba(99, 102, 241, 0.2);
    border-color: var(--accent-primary);
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-glow);
}

.music-icon-wrapper {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gradient);
    border-radius: var(--radius-full);
    color: white;
}

.music-icon-wrapper svg {
    width: 18px;
    height: 18px;
}

.music-text {
    font-size: 0.9rem;
    font-weight: 600;
}

.hidden {
    display: none !important;
}

/* Music Playing Animation */
.music-playing .music-icon-wrapper {
    animation: music-pulse 2s infinite;
}

@keyframes music-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(99, 102, 241, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(99, 102, 241, 0);
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .music-player {
        bottom: 20px;
    }

    body.lang-ar .music-player {
        right: 20px;
    }

    body.lang-en .music-player {
        left: 20px;
    }

    .music-text {
        display: none;
    }

    .music-btn {
        padding: 10px;
    }
}