/* ==========================================
   RESET & BASE STYLES
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #d97706;
    --secondary-color: #ea580c;
    --accent-color: #dc2626;
    --dark-bg: #1c1917;
    --light-bg: #fef3c7;
    --text-dark: #1c1917;
    --text-light: #78716c;
    --white: #ffffff;
    --cream: #fffbeb;
    --warm-accent: #fb923c;
    --gradient: linear-gradient(135deg, #d97706 0%, #ea580c 50%, #dc2626 100%);
    --shadow: 0 10px 40px rgba(217, 119, 6, 0.15);
    --shadow-lg: 0 20px 60px rgba(217, 119, 6, 0.25);
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.5);
}

html {
    scroll-behavior: smooth;
    overflow-y: overlay;
    /* Allows content to show underneath the scrollbar */
}

body {
    font-family: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

/* Custom Scrollbar (The "Tone") */
::-webkit-scrollbar {
    width: 12px;
    background-color: transparent;
}

::-webkit-scrollbar-track {
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--gradient);
    border-radius: 6px;
    border: 3px solid var(--white);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

body.loaded {
    animation: fadeIn 0.5s ease-in;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================
   UTILITIES
   ========================================== */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 rgba(217, 119, 6, 0.1);
}

.gradient-text {
    background: var(--gradient);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(217, 119, 6, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes float {

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

    50% {
        transform: translateY(-20px) rotate(1deg);
    }
}

@keyframes musicalFloat {

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

    50% {
        transform: translateY(-25px) rotate(-10deg);
        opacity: 0.6;
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 200%;
    }
}

/* ==========================================
   LOADING SCREEN
   ========================================== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 50px;
    height: 50px;
    border: 5px solid #f1f5f9;
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loader-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.loader-text {
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 2px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* ==========================================
   SCROLL PROGRESS
   ========================================== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--gradient);
    z-index: 10000;
    transition: width 0.1s ease;
}

/* ==========================================
   NAVIGATION
   ========================================== */
.navbar {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    z-index: 1000;
    padding: 1rem 2rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    top: 1rem;
    width: 95%;
    padding: 0.75rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 20px 40px rgba(217, 119, 6, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.nav-brand h2 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-dark);
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-brand .highlight {
    color: var(--primary-color);
    background: rgba(217, 119, 6, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 8px;
    font-size: 0.7rem;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
    transition: color 0.3s ease;
}

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

.btn-nav {
    background: var(--gradient);
    color: var(--white) !important;
    padding: 0.6rem 1.25rem;
    border-radius: 14px;
    box-shadow: 0 5px 15px rgba(217, 119, 6, 0.2);
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.btn-nav:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(217, 119, 6, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: 0.3s;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at top right, #fff7ed, #fffbeb);
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.hero-bg-accent {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 60%;
    height: 120%;
    background: linear-gradient(135deg, rgba(254, 215, 170, 0.4) 0%, rgba(255, 251, 235, 0) 100%);
    filter: blur(100px);
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: var(--white);
    border: 1px solid #fed7aa;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.1);
    animation: fadeInUp 0.6s ease-out;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-family: 'Outfit', sans-serif;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 600px;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(217, 119, 6, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(217, 119, 6, 0.5);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid #fed7aa;
}

.btn-secondary:hover {
    background: #fff7ed;
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 4rem;
    animation: fadeInUp 0.8s ease-out 0.8s backwards;
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat p {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Floating Cards */
.hero-image {
    position: relative;
    height: 600px;
    animation: fadeIn 1s ease-out 0.5s backwards;
}

.floating-card {
    position: absolute;
    width: 260px;
    border-radius: 32px;
    overflow: hidden;
    animation: float 6s ease-in-out infinite;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-1 {
    top: 0;
    left: 0;
    animation-delay: 0s;
}

.card-2 {
    top: 25%;
    right: 0;
    animation-delay: -2s;
}

.card-3 {
    bottom: 5%;
    left: 15%;
    animation-delay: -4s;
}

.card-image-wrapper {
    height: 160px;
    position: relative;
    overflow: hidden;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(217, 119, 6, 0.2));
}

.floating-card .card-content {
    padding: 1.5rem;
    background: var(--white);
    text-align: center;
}

.card-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.floating-card h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.floating-card p {
    font-size: 0.85rem;
    color: var(--text-light);
}

.music-note {
    position: absolute;
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.2;
    animation: musicalFloat 5s ease-in-out infinite;
    z-index: -1;
}

.note-1 {
    top: 10%;
    right: 20%;
    animation-delay: 0s;
}

.note-2 {
    top: 40%;
    left: -5%;
    animation-delay: -2.5s;
}

.note-3 {
    bottom: 10%;
    right: 5%;
    animation-delay: -1.2s;
}

/* ==========================================
   BRAND PULSE SECTION
   ========================================== */
.brand-pulse {
    padding: 6rem 0;
    background: var(--white);
    overflow: hidden;
    position: relative;
    text-align: center;
}

.pulse-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-container {
    position: relative;
    z-index: 10;
    width: 140px;
    height: 140px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(217, 119, 6, 0.15);
    transition: transform 0.3s ease;
}

.pulse-logo {
    width: 90px;
    height: auto;
    animation: gentlePulse 3s ease-in-out infinite;
}

.pulse-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    opacity: 0;
    width: 100%;
    height: 100%;
}

.ring-1 {
    animation: pulseRing 3s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.ring-2 {
    animation: pulseRing 3s cubic-bezier(0.215, 0.61, 0.355, 1) infinite 0.6s;
}

.ring-3 {
    animation: pulseRing 3s cubic-bezier(0.215, 0.61, 0.355, 1) infinite 1.2s;
}

.pulse-text h3 {
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.5px;
}

@keyframes pulseRing {
    0% {
        width: 140px;
        height: 140px;
        opacity: 0.5;
        border-width: 3px;
    }

    100% {
        width: 350px;
        height: 350px;
        opacity: 0;
        border-width: 0px;
    }
}

@keyframes gentlePulse {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 5px 15px rgba(217, 119, 6, 0.2));
    }

    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 8px 25px rgba(217, 119, 6, 0.4));
    }
}

/* ==========================================
   BRAND MEANING SECTION (Story)
   ========================================== */
.brand-meaning {
    padding: 8rem 0;
    background: radial-gradient(circle at center left, #fff7ed 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

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

.meaning-visual {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 2rem;
}

/* The "Video" Animation Effect on the Logo */
.meaning-visual img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
    animation: logoFloat 6s ease-in-out infinite, logoFlash 8s infinite;
    transform-origin: center;
    transition: filter 0.3s ease, transform 0.3s ease;
}

.meaning-visual img:hover {
    filter: drop-shadow(0 0 40px rgba(217, 119, 6, 0.8)) brightness(1.2) !important;
    transform: scale(1.05);
    cursor: pointer;
    animation-play-state: paused;
}

.meaning-visual::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(217, 119, 6, 0.1) 0%, transparent 70%);
    animation: gentlePulse 4s ease-in-out infinite alternate;
    z-index: -1;
}

.meaning-text h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.2;
    font-family: 'Outfit', sans-serif;
}

.meaning-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.meaning-item {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(254, 215, 170, 0.5);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.meaning-item:hover {
    transform: translateY(-5px);
    background: #fff;
    box-shadow: 0 10px 30px rgba(217, 119, 6, 0.1);
}

.meaning-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.meaning-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.meaning-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
}

.meaning-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

@keyframes logoFloat {

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

    50% {
        transform: translateY(-15px) rotate(1deg);
    }
}

@keyframes logoFlash {

    0%,
    45%,
    55%,
    100% {
        filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1)) brightness(1);
    }

    50% {
        filter: drop-shadow(0 0 30px rgba(217, 119, 6, 0.4)) brightness(1.1);
    }
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services {
    padding: 8rem 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

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

.service-card {
    padding: 3rem 2.5rem;
    border-radius: 32px;
    transition: all 0.4s ease;
    border: 1px solid #f3f4f6;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #fed7aa;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: #fff7ed;
    color: var(--primary-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    background: var(--gradient);
    color: var(--white);
    transform: rotate(-10deg) scale(1.1);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    font-family: 'Outfit', sans-serif;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* ==========================================
   PROCESS SECTION
   ========================================== */
.process {
    padding: 8rem 0;
    background: var(--cream);
}

.process-timeline {
    max-width: 900px;
    margin: 4rem auto 0;
    position: relative;
}

.process-step {
    display: flex;
    gap: 3rem;
    margin-bottom: 4.5rem;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(217, 119, 6, 0.3);
    position: relative;
    z-index: 2;
    font-family: 'Outfit', sans-serif;
}

.step-number-line {
    position: absolute;
    top: 80px;
    left: 40px;
    width: 2px;
    height: calc(100% + 4.5rem - 80px);
    background: linear-gradient(to bottom, var(--primary-color), transparent);
    z-index: 1;
}

.process-step:last-child .step-number-line {
    display: none;
}

.step-content h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    font-family: 'Outfit', sans-serif;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.step-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about {
    padding: 8rem 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-text h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    font-family: 'Outfit', sans-serif;
}

.about-text>p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.feature-item h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: #fff7ed;
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    margin-bottom: 1rem;
}

.tech-stack {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.tech-item {
    padding: 2rem 1rem;
    text-align: center;
    border-radius: 24px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.4s ease;
}

.tech-item:hover {
    transform: translateY(-5px);
    background: var(--gradient);
    color: var(--white);
    border-color: transparent;
}

/* ==========================================
   PROJECTS SECTION
   ========================================== */
.projects {
    padding: 8rem 0;
    background: var(--cream);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
}

.project-card {
    border-radius: 40px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(217, 119, 6, 0.15);
}

.project-image {
    height: 300px;
    position: relative;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.project-info {
    padding: 3rem;
}

.project-tagline {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}

.project-info h3 {
    font-size: 2rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 1.5rem;
}

.project-description {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.project-tags {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.tag {
    background: #f3f4f6;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-light);
}

.project-link {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.project-link:hover {
    gap: 1rem;
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */
.testimonials {
    padding: 8rem 0;
    background: var(--white);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    padding: 4rem;
    border-radius: 40px;
}

.testimonial-quote {
    font-size: 1.25rem;
    font-style: italic;
    margin-bottom: 3rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.testimonial-author img {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    object-fit: cover;
}

.testimonial-author h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.testimonial-author p {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
}

/* ==========================================
   FAQ SECTION
   ========================================== */
.faq {
    padding: 8rem 0;
    background: var(--cream);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.25rem;
    border-radius: 24px;
    overflow: hidden;
}

.faq-question {
    padding: 1.75rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: var(--white);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #fff7ed;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 700;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.4s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    background: var(--white);
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 2.5rem;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 2.5rem 2rem;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact {
    padding: 8rem 0;
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 6rem;
}

.contact-info h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-family: 'Outfit', sans-serif;
}

.contact-info>p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 4rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    padding: 2rem;
    border-radius: 24px;
}

.contact-icon {
    font-size: 1.75rem;
    width: 60px;
    height: 60px;
    background: #fff7ed;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: var(--text-light);
    font-weight: 600;
}

.contact-form {
    padding: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    border-radius: 40px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1.25rem;
    border: 2px solid #f3f4f6;
    border-radius: 16px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
}

.btn-submit {
    grid-column: 1 / -1;
    margin-top: 1rem;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 6rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

.footer-brand h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-family: 'Outfit', sans-serif;
}

.footer-brand p {
    color: #94a3b8;
    max-width: 400px;
}

.footer-links {
    display: flex;
    gap: 5rem;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column a {
    color: #94a3b8;
    text-decoration: none;
    line-height: 2.5;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2.5rem;
    text-align: center;
}

.footer-bottom p {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 600;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }

    .hero-title {
        font-size: 3.8rem;
    }

    .meaning-wrapper {
        gap: 3rem;
    }
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.2rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-description {
        margin: 0 auto 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
        gap: 3rem;
    }

    .hero-image {
        display: none;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .meaning-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .meaning-header {
        justify-content: center;
    }

    .meaning-text h2 {
        font-size: 2.5rem;
    }

    .features-list {
        grid-template-columns: 1fr 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .footer-brand p {
        margin: 0 auto;
    }

    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 25px;
    }

    .navbar {
        top: 0;
        width: 100%;
        padding: 1rem 1.5rem;
        border-radius: 0;
        background: rgba(255, 255, 255, 0.95);
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        border-radius: 0;
        transition: right 0.4s ease;
        box-shadow: none;
    }

    .nav-menu.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .features-list {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.8em;
    }

    .meaning-visual {
        padding: 0;
    }

    .meaning-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .process-timeline {
        padding-left: 0;
    }

    .process-step {
        gap: 1.5rem;
        flex-direction: column;
        padding: 2rem;
    }

    .step-number-line {
        display: none;
    }

    .step-number {
        margin: 0 auto;
    }

    .video-logo {
        max-width: 80% !important;
        /* Reduce logo size on mobile */
        margin: 0 auto;
        display: block;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .meaning-text h2 {
        font-size: 2rem;
    }

    .service-card,
    .project-info,
    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
}

/* ==========================================
   MUSIC PLAYER
   ========================================== */
.music-player-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    font-family: 'Outfit', sans-serif;
}

.music-toggle-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(217, 119, 6, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.music-toggle-btn:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 35px rgba(217, 119, 6, 0.5);
}

.music-toggle-btn.playing {
    animation: pulse 2s infinite;
}

.music-icon {
    font-size: 1.5rem;
}

.music-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: var(--white);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.music-toggle-btn:hover .music-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

.music-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

.music-waves span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--secondary-color);
    opacity: 0;
}

.music-toggle-btn.playing .music-waves span {
    animation: wave 2s infinite linear;
}

.music-toggle-btn.playing .music-waves span:nth-child(1) {
    animation-delay: 0s;
}

.music-toggle-btn.playing .music-waves span:nth-child(2) {
    animation-delay: 0.6s;
}

.music-toggle-btn.playing .music-waves span:nth-child(3) {
    animation-delay: 1.2s;
}

.music-panel {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 300px;
    padding: 1.5rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: bottom right;
    pointer-events: none;
    /* Prevent clicks when hidden */
}

.music-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

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

.music-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: var(--text-dark);
}

.music-info p {
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.music-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: color 0.3s ease;
}

.music-close:hover {
    color: var(--accent-color);
}

.music-visualizer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    height: 40px;
    margin-bottom: 1.5rem;
}

.bar {
    width: 6px;
    background: var(--gradient);
    border-radius: 4px;
    height: 10%;
    transition: height 0.1s ease;
}

.playing .bar {
    animation: equalize 1s ease-in-out infinite alternate;
}

.playing .bar:nth-child(1) {
    animation-delay: -0.2s;
    height: 60%;
}

.playing .bar:nth-child(2) {
    animation-delay: -0.4s;
    height: 80%;
}

.playing .bar:nth-child(3) {
    animation-delay: -0.6s;
    height: 100%;
}

.playing .bar:nth-child(4) {
    animation-delay: -0.4s;
    height: 70%;
}

.playing .bar:nth-child(5) {
    animation-delay: -0.2s;
    height: 50%;
}

.music-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.control-btn {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.play-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(217, 119, 6, 0.25);
}

.play-btn:hover {
    transform: scale(1.1);
    color: var(--white);
    box-shadow: 0 12px 25px rgba(217, 119, 6, 0.35);
}

.music-progress {
    width: 100%;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: #e5e5e5;
    border-radius: 4px;
    margin-bottom: 0.5rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--gradient);
    border-radius: 4px;
    transition: width 0.1s linear;
}

.time-display {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
}

.hidden {
    display: none !important;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(217, 119, 6, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(217, 119, 6, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(217, 119, 6, 0);
    }
}

@keyframes wave {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(3);
        opacity: 0;
    }
}

@keyframes equalize {
    0% {
        height: 10%;
    }

    100% {
        height: 100%;
    }
}

@media (max-width: 768px) {
    .music-player-container {
        bottom: 2rem;
        right: 1.5rem;
        z-index: 10000;
        /* Ensure it's above everything */
        -webkit-transform: translateZ(0);
        /* Force GPU */
    }

    .music-toggle-btn {
        width: 50px;
        height: 50px;
    }

    .music-icon {
        font-size: 1.2rem;
    }

    .music-panel {
        width: 280px;
        right: 0;
        bottom: 70px;
        /* Prevent overlap */
        transform-origin: bottom right;
    }
}