/* ============================================
   IDEA PRODUCCIONES - Design System & Styles
   Premium Event Production Website
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
    /* Colors */
    --primary: #9333ea;
    --primary-light: #a855f7;
    --primary-dark: #7e22ce;
    --accent: #ec4899;
    --accent-light: #f472b6;
    --accent-dark: #db2777;

    /* Backgrounds */
    --bg-dark: #0a0a0f;
    --bg-card: #111118;
    --bg-card-hover: #16161f;
    --bg-surface: #1a1a24;
    --bg-glass: rgba(17, 17, 24, 0.7);
    --bg-glass-light: rgba(255, 255, 255, 0.03);

    /* Text */
    --text-primary: #f1f1f4;
    --text-secondary: #a0a0b8;
    --text-muted: #6b6b82;

    /* Borders */
    --border-color: rgba(255, 255, 255, 0.06);
    --border-glow: rgba(147, 51, 234, 0.3);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #9333ea, #ec4899);
    --gradient-hero: linear-gradient(135deg, #9333ea 0%, #ec4899 50%, #f97316 100%);
    --gradient-dark: linear-gradient(180deg, #0a0a0f 0%, #111118 100%);
    --gradient-radial: radial-gradient(ellipse at 50% 0%, rgba(147, 51, 234, 0.15) 0%, transparent 60%);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px rgba(147, 51, 234, 0.2);
    --shadow-glow-accent: 0 0 30px rgba(236, 72, 153, 0.2);

    /* Spacing */
    --section-padding: 100px 0;
    --container-max: 1200px;
    --container-padding: 0 24px;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Transitions */
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 50%;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    color: var(--primary-light);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--accent-light);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--container-padding);
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-light);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-xl);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(147, 51, 234, 0.4);
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid var(--border-glow);
}

.btn-outline:hover {
    background: rgba(147, 51, 234, 0.1);
    border-color: var(--primary-light);
    color: var(--primary-light);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
}

.btn-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.3);
    color: #fff;
}

/* ---------- Header ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition);
    background: transparent;
}

.site-header.scrolled {
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
}

.logo:hover {
    color: var(--text-primary);
}

.logo-img {
    height: 42px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: all var(--transition);
}

.logo:hover .logo-img,
.footer-logo:hover .logo-img {
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(147, 51, 234, 0.5));
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-link {
    padding: 8px 18px;
    border-radius: var(--radius-xl);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
    background: var(--bg-glass-light);
}

.nav-link.active {
    background: rgba(147, 51, 234, 0.15);
    color: var(--primary-light);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    background: #25D366;
    color: #fff;
    border-radius: var(--radius-xl);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    transition: all var(--transition);
}

.nav-cta:hover {
    background: #20bd5a;
    color: #fff;
    transform: translateY(-1px);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition);
}

.mobile-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(147, 51, 234, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 30%, rgba(236, 72, 153, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(249, 115, 22, 0.1) 0%, transparent 50%);
    animation: heroGlow 8s ease-in-out infinite alternate;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--bg-dark);
    opacity: 0.4;
}

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

    100% {
        transform: scale(1.1);
        opacity: 0.7;
    }
}

/* Animated particles */
.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 6s infinite;
}

/* Size and color variations for particles */
.particle:nth-child(1) {
    left: 5%;
    width: 5px;
    height: 5px;
    background: #a855f7;
    box-shadow: 0 0 10px #a855f7;
    animation-delay: 0s;
    animation-duration: 7s;
}

.particle:nth-child(2) {
    left: 12%;
    width: 3px;
    height: 3px;
    background: #ec4899;
    box-shadow: 0 0 8px #ec4899;
    animation-delay: 0.5s;
    animation-duration: 5s;
}

.particle:nth-child(3) {
    left: 20%;
    width: 7px;
    height: 7px;
    background: #f97316;
    box-shadow: 0 0 14px #f97316;
    animation-delay: 1s;
    animation-duration: 8s;
}

.particle:nth-child(4) {
    left: 28%;
    width: 4px;
    height: 4px;
    background: #a855f7;
    box-shadow: 0 0 10px #a855f7;
    animation-delay: 2s;
    animation-duration: 6s;
}

.particle:nth-child(5) {
    left: 35%;
    width: 6px;
    height: 6px;
    background: #ec4899;
    box-shadow: 0 0 12px #ec4899;
    animation-delay: 0.3s;
    animation-duration: 9s;
}

.particle:nth-child(6) {
    left: 42%;
    width: 3px;
    height: 3px;
    background: #f472b6;
    box-shadow: 0 0 8px #f472b6;
    animation-delay: 1.5s;
    animation-duration: 6s;
}

.particle:nth-child(7) {
    left: 50%;
    width: 8px;
    height: 8px;
    background: #9333ea;
    box-shadow: 0 0 16px #9333ea;
    animation-delay: 2.5s;
    animation-duration: 7s;
}

.particle:nth-child(8) {
    left: 58%;
    width: 4px;
    height: 4px;
    background: #f97316;
    box-shadow: 0 0 10px #f97316;
    animation-delay: 0.8s;
    animation-duration: 8s;
}

.particle:nth-child(9) {
    left: 65%;
    width: 6px;
    height: 6px;
    background: #ec4899;
    box-shadow: 0 0 12px #ec4899;
    animation-delay: 3s;
    animation-duration: 5s;
}

.particle:nth-child(10) {
    left: 72%;
    width: 3px;
    height: 3px;
    background: #a855f7;
    box-shadow: 0 0 8px #a855f7;
    animation-delay: 1.2s;
    animation-duration: 7s;
}

.particle:nth-child(11) {
    left: 78%;
    width: 5px;
    height: 5px;
    background: #f472b6;
    box-shadow: 0 0 10px #f472b6;
    animation-delay: 0.7s;
    animation-duration: 9s;
}

.particle:nth-child(12) {
    left: 85%;
    width: 7px;
    height: 7px;
    background: #9333ea;
    box-shadow: 0 0 14px #9333ea;
    animation-delay: 2.2s;
    animation-duration: 6s;
}

.particle:nth-child(13) {
    left: 90%;
    width: 4px;
    height: 4px;
    background: #ec4899;
    box-shadow: 0 0 10px #ec4899;
    animation-delay: 1.8s;
    animation-duration: 8s;
}

.particle:nth-child(14) {
    left: 95%;
    width: 5px;
    height: 5px;
    background: #f97316;
    box-shadow: 0 0 10px #f97316;
    animation-delay: 0.4s;
    animation-duration: 7s;
}

.particle:nth-child(15) {
    left: 17%;
    width: 6px;
    height: 6px;
    background: #9333ea;
    box-shadow: 0 0 12px #9333ea;
    animation-delay: 3.5s;
    animation-duration: 5s;
}

.particle:nth-child(16) {
    left: 55%;
    width: 3px;
    height: 3px;
    background: #f472b6;
    box-shadow: 0 0 8px #f472b6;
    animation-delay: 2.8s;
    animation-duration: 6s;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    5% {
        opacity: 0.9;
    }

    50% {
        opacity: 1;
    }

    85% {
        opacity: 0.7;
    }

    100% {
        transform: translateY(-20vh) scale(1.2);
        opacity: 0;
    }
}

/* Glowing floating orbs */
.hero-orbs {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.6), transparent 70%);
    top: 10%;
    left: 10%;
    animation: orbFloat1 10s ease-in-out infinite alternate;
}

.orb-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.5), transparent 70%);
    top: 40%;
    right: 5%;
    animation: orbFloat2 12s ease-in-out infinite alternate;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.4), transparent 70%);
    bottom: 10%;
    left: 40%;
    animation: orbFloat3 8s ease-in-out infinite alternate;
}

@keyframes orbFloat1 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(80px, 60px) scale(1.2);
    }
}

@keyframes orbFloat2 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-60px, -80px) scale(1.3);
    }
}

@keyframes orbFloat3 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(40px, -50px) scale(1.15);
    }
}

/* Two-column hero layout */
.hero-layout {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.hero-image {
    flex: 0 0 42%;
    position: relative;
}

.hero-singer {
    width: 100%;
    max-height: 75vh;
    object-fit: contain;
    object-position: bottom center;
    filter: drop-shadow(0 0 40px rgba(147, 51, 234, 0.3)) drop-shadow(0 0 80px rgba(236, 72, 153, 0.15));
    animation: singerFloat 6s ease-in-out infinite alternate;
}

@keyframes singerFloat {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-12px);
    }
}

.hero-content {
    flex: 1;
    position: relative;
    z-index: 2;
    max-width: 620px;
    text-align: left;
}

/* Mic icon above title */
.hero-icon-drop {
    margin-bottom: 14px;
    animation: dropFromTop 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s both;
}

.hero-mic-icon {
    height: 45px;
    width: auto;
    filter: brightness(0) invert(1) drop-shadow(0 0 20px rgba(147, 51, 234, 0.6));
}

/* Hero label */
.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(147, 51, 234, 0.15);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: var(--radius-xl);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-light);
    margin-bottom: 24px;
}

/* Dramatic title composition */
.hero-title {
    margin-bottom: 28px;
    line-height: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hero-title-small {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-weight: 400;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.hero-title-large {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    font-weight: 900;
    line-height: 0.9;
    color: var(--text-primary);
    text-shadow: 0 4px 60px rgba(0, 0, 0, 0.3);
}

.hero-title-accent {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 900;
    line-height: 1;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: -4px;
}

/* Drop-from-top animation */
.hero-anim {
    opacity: 0;
    transform: translateY(-60px);
    animation: dropFromTop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.hero-anim-1 {
    animation-delay: 0.3s;
}

.hero-anim-2 {
    animation-delay: 0.5s;
}

.hero-anim-3 {
    animation-delay: 0.7s;
}

.hero-anim-4 {
    animation-delay: 0.9s;
}

.hero-anim-5 {
    animation-delay: 1.1s;
}

.hero-anim-6 {
    animation-delay: 1.3s;
}

@keyframes dropFromTop {
    0% {
        opacity: 0;
        transform: translateY(-60px) scale(0.95);
    }

    60% {
        opacity: 1;
        transform: translateY(5px) scale(1.01);
    }

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

.hero-text {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Page slide transition */
.page-transition {
    animation: pageSlideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.page-transition-out {
    animation: pageSlideOut 0.35s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes pageSlideIn {
    0% {
        opacity: 0;
        transform: translateX(60px);
    }

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

@keyframes pageSlideOut {
    0% {
        opacity: 1;
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-60px);
    }
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 64px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
    animation: fadeInUp 0.8s ease 0.8s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

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

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

/* ---------- Apple-Style Scroll Showcase ---------- */
.scroll-showcase {
    position: relative;
    height: 400vh;
    /* 4 slides × 100vh each */
}

.scroll-showcase-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.showcase-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.showcase-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.showcase-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-slide.active .showcase-image img {
    transform: scale(1);
}

.showcase-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to right,
            rgba(10, 10, 15, 0.92) 0%,
            rgba(10, 10, 15, 0.75) 35%,
            rgba(10, 10, 15, 0.4) 60%,
            rgba(10, 10, 15, 0.2) 100%);
}

.showcase-content {
    position: relative;
    z-index: 2;
    padding: 0 80px;
    max-width: 650px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.15s;
}

.showcase-slide.active .showcase-content {
    transform: translateY(0);
    opacity: 1;
}

.showcase-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent);
}

.showcase-title {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.08;
    margin-bottom: 24px;
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.5);
}

.showcase-text {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    max-width: 480px;
    text-shadow: 0 1px 20px rgba(0, 0, 0, 0.3);
}

/* Scroll Progress Dots */
.showcase-progress {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.progress-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
}

.progress-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid transparent;
    transition: all 0.4s ease;
}

.progress-dot.active {
    background: var(--accent);
    border-color: var(--accent-light);
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.5);
}

.progress-dot.active::after {
    border-color: rgba(236, 72, 153, 0.3);
}

/* Scroll indicator at bottom of showcase */
.scroll-showcase-sticky::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent, var(--bg-dark));
    z-index: 4;
    pointer-events: none;
}

/* ---------- Services Section ---------- */
.services-section {
    padding: var(--section-padding);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-glow), transparent);
}

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

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-glow);
    box-shadow: var(--shadow-glow);
    background: var(--bg-card-hover);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: rgba(147, 51, 234, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary-light);
    margin-bottom: 20px;
    transition: all var(--transition);
}

.service-card:hover .service-icon {
    background: var(--gradient-primary);
    color: #fff;
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

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

/* ---------- About / Feature Section ---------- */
.about-section {
    padding: var(--section-padding);
    position: relative;
}

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

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
}

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

.about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.3), rgba(236, 72, 153, 0.2));
    mix-blend-mode: overlay;
}

.about-image .experience-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-md);
    padding: 16px 24px;
    text-align: center;
    z-index: 2;
}

.experience-badge .number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.experience-badge .label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content .section-label {
    text-align: left;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.about-content .about-text {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 32px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 36px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
}

.about-feature i {
    color: var(--primary-light);
    font-size: 1.1rem;
}

.about-feature span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* ---------- Packages Section ---------- */
.packages-section {
    padding: var(--section-padding);
    background: var(--gradient-radial), var(--bg-dark);
    position: relative;
}

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

.package-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    position: relative;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
    border-color: var(--border-glow);
}

.package-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.package-card.featured::before {
    content: 'Popular';
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gradient-primary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: var(--radius-xl);
    z-index: 2;
}

.package-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.package-card:hover .package-image {
    transform: scale(1.05);
}

.package-image-wrap {
    overflow: hidden;
    position: relative;
}

.package-image-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, var(--bg-card), transparent);
}

.package-body {
    padding: 24px 28px 28px;
}

.package-title {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.package-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.package-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ---------- CTA Section ---------- */
.cta-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 60px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.08) 0%, transparent 60%);
    animation: ctaGlow 6s ease-in-out infinite alternate;
}

@keyframes ctaGlow {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(30px, -30px);
    }
}

.cta-box h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cta-box p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 36px;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* ---------- Clients Section ---------- */
.clients-section {
    padding: 60px 0 80px;
    position: relative;
}

.clients-track {
    display: flex;
    gap: 40px;
    align-items: center;
    animation: scrollClients 20s linear infinite;
    width: max-content;
}

.clients-track:hover {
    animation-play-state: paused;
}

.client-logo {
    height: 50px;
    opacity: 0.4;
    filter: grayscale(100%) brightness(2);
    transition: all var(--transition);
    flex-shrink: 0;
}

.client-logo:hover {
    opacity: 0.8;
    filter: grayscale(0%) brightness(1);
}

@keyframes scrollClients {
    0% {
        transform: translateX(0);
    }

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

.clients-wrapper {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

/* ---------- Contact Section ---------- */
.contact-section {
    padding: var(--section-padding);
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.contact-info-card:hover {
    border-color: var(--border-glow);
    transform: translateX(4px);
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: rgba(147, 51, 234, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--primary-light);
    flex-shrink: 0;
}

.contact-info-card h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.contact-info-card p,
.contact-info-card a {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(147, 51, 234, 0.15);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23a0a0b8' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-submit {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 16px;
}

.form-message {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    margin-bottom: 16px;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.3);
    color: #25D366;
}

.form-message.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

/* ---------- Page Hero (Inner Pages) ---------- */
.page-hero {
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--gradient-radial);
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 30%, rgba(147, 51, 234, 0.15) 0%, transparent 70%);
}

.page-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.page-hero p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
    font-size: 0.85rem;
    position: relative;
    z-index: 1;
}

.breadcrumb a {
    color: var(--text-muted);
}

.breadcrumb span {
    color: var(--text-muted);
}

.breadcrumb .current {
    color: var(--primary-light);
}

/* ---------- Services Detail Section ---------- */
.service-detail {
    padding: var(--section-padding);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.service-detail-grid:nth-child(even) {
    direction: rtl;
}

.service-detail-grid:nth-child(even)>* {
    direction: ltr;
}

.service-detail-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 16/10;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.service-detail-image:hover img {
    transform: scale(1.05);
}

.service-detail-content h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.service-detail-content p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.service-detail-content ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-detail-content ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.service-detail-content ul li i {
    color: var(--primary-light);
    font-size: 0.8rem;
}

/* ---------- About Page Sections ---------- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.value-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: all var(--transition);
}

.value-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-glow);
    box-shadow: var(--shadow-glow);
}

.value-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    border-radius: var(--radius-full);
    background: rgba(147, 51, 234, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary-light);
    transition: all var(--transition);
}

.value-card:hover .value-icon {
    background: var(--gradient-primary);
    color: #fff;
    transform: scale(1.1);
}

.value-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.value-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Tech section */
.tech-section {
    padding: var(--section-padding);
    background: var(--gradient-radial);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.tech-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.tech-item:hover {
    border-color: var(--border-glow);
    transform: translateY(-4px);
}

.tech-item i {
    font-size: 2rem;
    color: var(--primary-light);
    margin-bottom: 12px;
}

.tech-item h4 {
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.tech-item p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ---------- Footer ---------- */
.site-footer {
    padding: 80px 0 0;
    position: relative;
    border-top: 1px solid var(--border-color);
}

.footer-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 200px;
    background: radial-gradient(ellipse, rgba(147, 51, 234, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.footer-logo:hover {
    color: var(--text-primary);
}

.footer-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all var(--transition);
}

.footer-social a:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: #fff;
    transform: translateY(-2px);
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: all var(--transition);
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 4px;
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.footer-contact li i {
    color: var(--primary-light);
    font-size: 0.85rem;
    width: 16px;
}

.footer-contact li a {
    color: var(--text-secondary);
}

.footer-contact li a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ---------- WhatsApp Float ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all var(--transition);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
    color: #fff;
}

.whatsapp-tooltip {
    position: absolute;
    right: 72px;
    background: #111;
    color: #fff;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

@keyframes whatsappPulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6);
    }
}

/* ---------- Scroll Reveal ---------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-detail-grid:nth-child(even) {
        direction: ltr;
    }

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

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

    .cta-box {
        padding: 40px;
    }

    .showcase-content {
        padding: 0 48px;
    }

    .showcase-title {
        font-size: clamp(2rem, 4vw, 3.2rem);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    /* Mobile Nav */
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: rgba(10, 10, 15, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 100px 32px 40px;
        transition: right var(--transition);
        z-index: 1000;
        border-left: 1px solid var(--border-color);
    }

    .main-nav.open {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 4px;
    }

    .nav-link {
        display: block;
        padding: 14px 18px;
        font-size: 1.05rem;
        width: 100%;
    }

    .nav-cta {
        margin-top: 12px;
        justify-content: center;
        width: 100%;
    }

    .mobile-toggle {
        display: flex;
    }

    /* Mobile overlay */
    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .nav-overlay.active {
        display: block;
    }

    /* Others */
    .services-grid {
        grid-template-columns: 1fr;
    }

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

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-stats {
        gap: 24px;
        flex-wrap: wrap;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

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

    .cta-box {
        padding: 32px 24px;
    }

    .hero-buttons {
        flex-direction: column;
    }

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

    /* Mobile centering */
    .hero {
        text-align: center;
    }

    .hero-layout {
        flex-direction: column-reverse;
        gap: 20px;
    }

    .hero-image {
        flex: none;
        width: 60%;
        max-width: 280px;
        margin: 0 auto;
    }

    .hero-singer {
        max-height: 40vh;
    }

    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-text {
        text-align: center;
    }

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

    .hero-title {
        text-align: center;
        align-items: center;
    }

    .hero-title-large {
        font-size: clamp(3rem, 12vw, 5rem);
    }

    .hero-title-accent {
        font-size: clamp(2.4rem, 9vw, 4rem);
    }

    .hero-mic-icon {
        height: 50px;
    }

    .showcase-content {
        padding: 0 24px;
        max-width: 100%;
        text-align: center;
    }

    .showcase-slide {
        justify-content: center;
    }

    .showcase-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }

    .showcase-text {
        font-size: 1rem;
        margin: 0 auto;
    }

    .showcase-label {
        text-align: center;
    }

    .showcase-overlay {
        background: linear-gradient(to bottom,
                rgba(10, 10, 15, 0.4) 0%,
                rgba(10, 10, 15, 0.85) 40%,
                rgba(10, 10, 15, 0.92) 100%);
    }

    .showcase-progress {
        right: 16px;
    }

    .progress-dot {
        width: 10px;
        height: 10px;
    }

    .logo-img {
        height: 34px;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        gap: 16px;
    }

    .stat-item {
        flex: 1;
    }

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

/* ========================================
   PAGE HERO (Internal Pages)
======================================== */
.page-hero {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, var(--bg-primary) 0%, rgba(147, 51, 234, 0.08) 50%, var(--bg-primary) 100%);
    border-bottom: 1px solid var(--border-color);
}

.page-hero-breadcrumb {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.page-hero-breadcrumb a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.page-hero-breadcrumb a:hover {
    color: var(--accent-primary);
}

/* ========================================
   SERVICE DETAIL PAGES
======================================== */
.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
}

.service-detail-text h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.service-detail-text h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 32px;
    margin-bottom: 12px;
}

.service-detail-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.service-features-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 32px;
}

.service-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-secondary);
    line-height: 1.6;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.service-features-list li i {
    color: var(--accent-primary);
    margin-top: 4px;
    flex-shrink: 0;
}

/* Sidebar */
.service-detail-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-cta {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    margin-bottom: 24px;
}

.sidebar-cta h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.sidebar-cta p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.sidebar-cta .btn {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    text-align: center;
}

.sidebar-services {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
}

.sidebar-services h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.sidebar-services ul {
    list-style: none;
    padding: 0;
}

.sidebar-services ul li a {
    display: block;
    padding: 10px 0;
    color: var(--text-secondary);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: color 0.3s, padding-left 0.3s;
}

.sidebar-services ul li a:hover {
    color: var(--accent-primary);
    padding-left: 8px;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.12) 0%, rgba(79, 70, 229, 0.08) 100%);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 20px;
    padding: 48px;
    text-align: center;
}

.cta-box h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.cta-box p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   FAQ SECTION
======================================== */
.faq-section {
    background: rgba(147, 51, 234, 0.03);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 28px;
    transition: border-color 0.3s, transform 0.3s;
}

.faq-item:hover {
    border-color: rgba(147, 51, 234, 0.3);
    transform: translateY(-2px);
}

.faq-question {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.faq-answer {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.92rem;
}

/* ========================================
   BLOG
======================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s;
}

.blog-card:hover {
    transform: translateY(-6px);
    border-color: rgba(147, 51, 234, 0.4);
    box-shadow: 0 20px 40px rgba(147, 51, 234, 0.1);
}

.blog-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--accent-primary);
    color: white;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card-body {
    padding: 24px;
}

.blog-date {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    display: block;
}

.blog-card-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.4;
    margin-bottom: 10px;
}

.blog-card-excerpt {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-read-more {
    color: var(--accent-primary);
    font-size: 0.88rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s;
}

.blog-card:hover .blog-read-more {
    gap: 10px;
}

/* ========================================
   BLOG ARTICLE
======================================== */
.blog-article {
    max-width: 760px;
}

.article-content {
    line-height: 1.9;
}

.article-intro {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.article-content h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 40px;
    margin-bottom: 16px;
}

.article-content h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 28px;
    margin-bottom: 12px;
}

.article-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.8;
}

.article-content ul {
    color: var(--text-secondary);
    margin: 16px 0 24px 20px;
    line-height: 1.8;
}

.article-content ul li {
    margin-bottom: 8px;
}

.article-content a {
    color: var(--accent-primary);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.article-content a:hover {
    border-bottom-color: var(--accent-primary);
}

.article-cta {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

/* ========================================
   RESPONSIVE (New Pages)
======================================== */
@media (max-width: 1024px) {
    .service-detail-content {
        grid-template-columns: 1fr;
    }

    .service-detail-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

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

@media (max-width: 768px) {
    .page-hero {
        padding: 120px 0 40px;
    }

    .service-detail-sidebar {
        grid-template-columns: 1fr;
    }

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

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

    .cta-box {
        padding: 32px 20px;
    }

    .cta-box h2 {
        font-size: 1.5rem;
    }
}