/* ==========================================================================
   DESIGN SYSTEM & CUSTOM PROPERTIES
   ========================================================================== */
:root {
    /* Colors */
    --color-bg-pure: #050505;
    --color-bg-dark: #0c0c0e;
    --color-bg-alt: #131317;
    --color-card-bg: rgba(18, 18, 22, 0.7);
    --color-card-border: rgba(255, 94, 0, 0.1);
    
    --color-primary: #ff5e00;
    --color-primary-glow: rgba(255, 94, 0, 0.35);
    --color-primary-hover: #ff7a29;
    
    --color-text-white: #ffffff;
    --color-text-muted: #9fa0a6;
    --color-text-dim: #606168;
    
    --color-success: #10b981;
    --color-success-glow: rgba(16, 185, 129, 0.2);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Layout & Spacing */
    --container-max-width: 1200px;
    --header-height: 80px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    background-color: var(--color-bg-pure);
    color: var(--color-text-white);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    background: none;
    border: none;
    outline: none;
    color: inherit;
}

button {
    cursor: pointer;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg-pure);
}
::-webkit-scrollbar-thumb {
    background: #222;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}

/* ==========================================================================
   REUSABLE UTILITIES & COMPONENTS
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
    position: relative;
}

.bg-alt {
    background-color: var(--color-bg-alt);
}

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

.text-gradient {
    background: linear-gradient(135deg, #ff5e00 0%, #ffaa00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.hide {
    display: none !important;
}

.mt-3 {
    margin-top: 24px;
}

/* Section Header */
.section-header {
    margin-bottom: 60px;
    max-width: 700px;
}
.section-header.text-center {
    margin-left: auto;
    margin-right: auto;
}
.section-tagline {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-primary);
    display: block;
    margin-bottom: 12px;
}
.section-title {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 16px;
}
.section-subtitle {
    font-size: 16px;
    color: var(--color-text-muted);
}

/* Glassmorphism Card */
.glass-card {
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: var(--border-radius-md);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: border-color var(--transition-normal), box-shadow var(--transition-normal), transform var(--transition-normal);
}
.glass-card:hover {
    border-color: rgba(255, 94, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 94, 0, 0.05);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 13px;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
    border-radius: var(--border-radius-md);
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-text-white);
    box-shadow: 0 4px 20px var(--color-primary-glow);
}
.btn-primary:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 94, 0, 0.5);
}
.btn-primary:active {
    transform: translateY(0);
}

.btn-outline {
    border: 1px solid var(--color-primary);
    color: var(--color-text-white);
}
.btn-outline:hover {
    background-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--color-primary-glow);
}
.btn-outline:active {
    transform: translateY(0);
}

.btn-success {
    background-color: var(--color-success);
    color: var(--color-text-white);
    box-shadow: 0 4px 15px var(--color-success-glow);
}
.btn-success:hover {
    background-color: #059669;
    transform: translateY(-2px);
}

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

.mini-icon {
    width: 16px;
    height: 16px;
    stroke-width: 2.5px;
}

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
.header {
    height: var(--header-height);
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transition: var(--transition-normal);
    background: transparent;
    display: flex;
    align-items: center;
}

.header.scrolled {
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    height: 70px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: var(--color-text-white);
}

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

.nav-link {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-muted);
    letter-spacing: 0.5px;
    position: relative;
    padding: 8px 0;
}
.nav-link:hover, .nav-link.active {
    color: var(--color-text-white);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition-normal);
}
.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Mobile Nav Toggle Button */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    z-index: 110;
}
.mobile-nav-toggle .bar {
    height: 2px;
    width: 100%;
    background-color: var(--color-text-white);
    border-radius: 2px;
    transition: var(--transition-normal);
}
.mobile-nav-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.mobile-nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}
.mobile-nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--color-bg-dark);
    z-index: 99;
    padding: 100px 40px 40px;
    transition: var(--transition-normal);
    border-left: 1px solid rgba(255, 94, 0, 0.1);
    box-shadow: -10px 0 40px rgba(0,0,0,0.8);
}
.mobile-drawer.active {
    right: 0;
}
.mobile-nav-menu {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text-muted);
}
.mobile-nav-link:hover {
    color: var(--color-primary);
    padding-left: 8px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding: 120px 0 160px;
    background-color: var(--color-bg-pure);
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: 10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 94, 0, 0.12) 0%, rgba(255, 94, 0, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    z-index: 2;
}

.badge-glow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 94, 0, 0.08);
    border: 1px solid rgba(255, 94, 0, 0.25);
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    color: var(--color-primary);
    margin-bottom: 24px;
}
.badge-icon {
    width: 14px;
    height: 14px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 60px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 18px;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero Image Wrapper */
.hero-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1.3;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: hidden;
    border-radius: 24px;
    background-color: #0b0b0d;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.hero-photo-ring {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 1px dashed rgba(255, 94, 0, 0.3);
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotateRing 60s linear infinite;
    pointer-events: none;
}
.hero-photo-glow {
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--color-primary-glow) 0%, rgba(255, 94, 0, 0) 75%);
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(10px);
    pointer-events: none;
}

.hero-photo {
    width: 100%;
    height: 100%;
    z-index: 3;
    object-fit: cover;
    border-radius: 0;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.7)) brightness(0.95) contrast(1.05);
}

.rec-dot-wrapper {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.rec-dot {
    width: 8px;
    height: 8px;
    background-color: #ef4444;
    border-radius: 50%;
    /* animation: flashRec 1s steps(2, start) infinite; */
}
.rec-text {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,255,255,0.7);
    letter-spacing: 1px;
}

/* Stats Bar */
.logo-marquee {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-bg-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 16px 0;
    z-index: 10;
    overflow: hidden;
}
.logo-marquee-track {
    display: flex;
    align-items: center;
    gap: 60px;
    animation: marquee-scroll 30s linear infinite;
    width: max-content;
}
.logo-marquee-item {
    height: 36px;
    width: auto;
    object-fit: contain;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    filter: brightness(0) invert(1);
}
.logo-marquee-lg {
    height: 72px;
}
.logo-marquee-md {
    height: 52px;
}
.logo-marquee-item:hover {
    opacity: 1;
}
@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==========================================================================
   NICHES BAR (styled like stats bar)
   ========================================================================== */
.niches-bar {
    background-color: var(--color-bg-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px 0;
}
.niches-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
}
.niche-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    justify-content: center;
    cursor: pointer;
    padding: 12px 20px;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-normal);
    position: relative;
}
.niche-item i[data-lucide="car"],
.niche-item i[data-lucide="home"],
.niche-item i[data-lucide="briefcase"] {
    width: 24px;
    height: 24px;
    color: var(--color-text-muted);
    transition: var(--transition-normal);
}
.niche-name {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-normal);
}
.niche-check {
    width: 18px;
    height: 18px;
    color: transparent;
    transition: var(--transition-normal);
}
.niche-item.active .niche-check,
.niche-item:hover .niche-check {
    color: var(--color-primary);
}
.niche-item.active i[data-lucide="car"],
.niche-item.active i[data-lucide="home"],
.niche-item.active i[data-lucide="briefcase"],
.niche-item:hover i[data-lucide="car"],
.niche-item:hover i[data-lucide="home"],
.niche-item:hover i[data-lucide="briefcase"] {
    color: var(--color-primary);
}
.niche-item.active .niche-name,
.niche-item:hover .niche-name {
    color: var(--color-text-white);
}
.niche-item.active {
    background-color: rgba(255, 94, 0, 0.08);
}

/* ==========================================================================
   PILLARS SECTION (Nichos)
   ========================================================================== */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.pillar-card {
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: var(--border-radius-md);
    padding: 40px;
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: transparent;
    transition: var(--transition-fast);
}

.pillar-card.active, .pillar-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 94, 0, 0.35);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 94, 0, 0.08);
}
.pillar-card.active::before {
    background-color: var(--color-primary);
}

.pillar-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background-color: rgba(255, 94, 0, 0.05);
    border: 1px solid rgba(255, 94, 0, 0.15);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition-normal);
}
.pillar-card.active .pillar-icon-box, .pillar-card:hover .pillar-icon-box {
    background-color: var(--color-primary);
    color: var(--color-text-white);
    transform: scale(1.1);
    box-shadow: 0 8px 20px var(--color-primary-glow);
}
.pillar-icon-box i {
    width: 28px;
    height: 28px;
}

.pillar-badge {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-primary);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.pillar-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.pillar-card p {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.pillar-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}
.pillar-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--color-text-white);
}
.pillar-features li i {
    width: 16px;
    height: 16px;
}

/* Dynamic Showcase Container */
.showcase-container {
    padding: 50px;
    border-radius: var(--border-radius-lg);
    background-color: var(--color-bg-alt);
    margin-top: 40px;
}
.showcase-content-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.showcase-text-col h4 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
}
.showcase-text-col p {
    color: var(--color-text-muted);
    margin-bottom: 30px;
}
.showcase-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}
.showcase-point {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.showcase-point h5 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--color-text-white);
}
.showcase-point p {
    font-size: 13px;
    color: var(--color-text-dim);
    margin-bottom: 0;
}

/* Mock Showcase Video Layout */
.showcase-video-col {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    aspect-ratio: 16 / 9;
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.05);
}
.showcase-video-col img,
.showcase-video-col video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.showcase-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    cursor: pointer;
}
.showcase-video-overlay:hover .play-btn-glow {
    transform: scale(1.1);
    background-color: var(--color-primary);
    box-shadow: 0 0 25px var(--color-primary-glow);
}
.showcase-video-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    margin-top: 12px;
}
.showcase-video-client {
    font-size: 12px;
    color: var(--color-text-muted);
}

/* ==========================================================================
   PORTFOLIO GALLERY
   ========================================================================== */
.portfolio-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    max-width: none;
    width: 100%;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.portfolio-item {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.portfolio-item:hover {
    transform: translateY(-5px);
}

.portfolio-thumb-wrapper {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    cursor: pointer;
}

.portfolio-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}
.portfolio-item:hover .portfolio-thumb {
    transform: scale(1.08);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 5, 5, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}
.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.play-btn-glow {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: rgba(12, 12, 14, 0.85);
    border: 1.5px solid var(--color-primary);
    color: var(--color-text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}
.play-btn-glow i {
    width: 22px;
    height: 22px;
    fill: currentColor;
    margin-left: 2px;
}



/* ==========================================================================
   PRODUCTION PROCESS
   ========================================================================== */
.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 60px auto 0;
}
.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 40px;
    width: 2px;
    background: linear-gradient(180deg, var(--color-primary) 0%, rgba(255, 94, 0, 0.05) 100%);
    transform-origin: top;
    transform: scaleY(var(--line-progress, 0));
    transition: transform 0.1s linear;
}
.process-timeline.animate-line::before {
    transform: scaleY(1);
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}
.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-number {
    position: absolute;
    left: 0;
    top: 4px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--color-bg-pure);
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    box-shadow: 0 0 15px var(--color-primary-glow);
}

.timeline-content {
    padding: 30px;
}
.timeline-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background-color: rgba(255, 94, 0, 0.08);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.timeline-icon i {
    width: 20px;
    height: 20px;
}

.timeline-content h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}
.timeline-content p {
    font-size: 14px;
    color: var(--color-text-muted);
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1.25;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--color-primary-glow) 0%, rgba(255, 94, 0, 0) 70%);
    bottom: 10%;
    left: -10%;
    filter: blur(20px);
    pointer-events: none;
}

.about-frame {
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius-lg);
    background-color: var(--color-bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.03);
    overflow: hidden;
    position: relative;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    filter: brightness(0.9) contrast(1.05);
}

.about-content {
    display: flex;
    flex-direction: column;
}

.about-bio {
    font-size: 16px;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.about-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 36px;
}
.detail-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.detail-item i {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}
.detail-item strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}
.detail-item span {
    font-size: 14px;
    color: var(--color-text-muted);
}

.about-gear-box {
    padding: 24px;
}
.about-gear-box h4 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.gear-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.gear-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    font-size: 12px;
    font-weight: 500;
    color: var(--color-text-muted);
}
.gear-tag i {
    width: 14px;
    height: 14px;
    color: var(--color-primary);
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-section {
    background-color: var(--color-bg-pure);
    position: relative;
    overflow: hidden;
}

.contact-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}
.glow-point {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}
.glow-point.gp-1 {
    width: 300px;
    height: 300px;
    background-color: rgba(255, 94, 0, 0.06);
    bottom: -100px;
    left: -100px;
}
.glow-point.gp-2 {
    width: 400px;
    height: 400px;
    background-color: rgba(255, 94, 0, 0.04);
    top: -200px;
    right: -200px;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.contact-desc {
    color: var(--color-text-muted);
    margin-bottom: 40px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    display: flex;
    gap: 20px;
    padding: 24px;
    align-items: center;
}
.contact-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-white);
    flex-shrink: 0;
}
.cc-wa { background-color: #25d366; }
.cc-mail { background-color: rgba(255, 94, 0, 0.1); color: var(--color-primary); }
.cc-loc { background-color: rgba(255, 255, 255, 0.03); color: var(--color-text-muted); }

.contact-card-icon i {
    width: 24px;
    height: 24px;
}

.contact-card h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}
.contact-card p {
    font-size: 13px;
    color: var(--color-text-muted);
}
.contact-link-text {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    color: #25d366;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 6px;
}

/* Contact Form Box */
.contact-form-box {
    padding: 40px;
}
.contact-form-box h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
}
.contact-form-box > p {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 30px;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}
.form-row {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 20px;
}

label {
    display: block;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    color: var(--color-text-muted);
}

input, select, textarea {
    width: 100%;
    padding: 12px 16px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-sm);
    color: var(--color-text-white);
    font-size: 14px;
    transition: var(--transition-fast);
}

input:focus, select:focus, textarea:focus {
    border-color: var(--color-primary);
    background-color: rgba(255, 94, 0, 0.03);
    box-shadow: 0 0 10px rgba(255, 94, 0, 0.1);
}

select option {
    background-color: var(--color-bg-dark);
    color: var(--color-text-white);
}

textarea {
    resize: none;
}

/* Form Success state */
.form-success-alert {
    text-align: center;
    padding: 20px 0;
}
.success-icon {
    width: 56px;
    height: 56px;
    color: var(--color-success);
    margin-bottom: 16px;
}
.form-success-alert h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
}
.form-success-alert p {
    font-size: 14px;
    color: var(--color-text-muted);
}

/* Custom Animation Border Glow */
@keyframes borderGlow {
    0%, 100% { border-color: rgba(255, 94, 0, 0.1); }
    50% { border-color: rgba(255, 94, 0, 0.35); }
}
.animate-glow-border {
    animation: borderGlow 4s ease-in-out infinite;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background-color: var(--color-bg-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
}
.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-copy {
    font-size: 13px;
    color: var(--color-text-dim);
}
.footer-socials {
    display: flex;
    gap: 16px;
}
.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.03);
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}
.social-link:hover {
    background-color: var(--color-primary);
    color: var(--color-text-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px var(--color-primary-glow);
}
.social-link i {
    width: 18px;
    height: 18px;
}

/* ==========================================================================
   VIDEO LIGHTBOX MODAL (Custom Simulated Player)
   ========================================================================== */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 150;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.video-modal.active {
    display: flex;
}

.video-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.video-modal-container {
    width: 100%;
    max-width: 1200px;
    position: relative;
    z-index: 10;
}

.video-modal-close {
    position: absolute;
    top: -48px;
    right: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    color: var(--color-text-white);
}
.video-modal-close:hover {
    background-color: var(--color-primary);
    transform: scale(1.1);
}
.video-modal-close i {
    width: 20px;
    height: 20px;
}

.video-modal-body {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    background-color: #000;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(255, 94, 0, 0.2);
}

/* Custom Video Wrapper Styles */
.custom-video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #000;
    overflow: hidden;
}
.custom-video-wrapper video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

/* Overlay controls */
.video-custom-controls {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    opacity: 0;
    transition: opacity var(--transition-fast);
    z-index: 5;
    background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0) 70%, rgba(0,0,0,0.85) 100%);
}
.custom-video-wrapper:hover .video-custom-controls,
.custom-video-wrapper.paused .video-custom-controls {
    opacity: 1;
}

/* Center play button */
.video-center-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-color: rgba(255, 94, 0, 0.9);
    color: var(--color-text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: 0 0 30px var(--color-primary-glow);
}
.video-center-play:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: var(--color-primary-hover);
}
.video-center-play i {
    width: 32px;
    height: 32px;
    fill: currentColor;
    margin-left: 4px;
}

/* Control Bar Bottom */
.video-control-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Progress bar */
.video-progress-container {
    height: 6px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    transition: height var(--transition-fast);
}
.video-progress-container:hover {
    height: 8px;
}
.video-progress-bar {
    height: 100%;
    background-color: var(--color-primary);
    border-radius: 3px;
    width: 0;
    position: relative;
}

.video-controls-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.video-controls-left, .video-controls-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.v-btn {
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}
.v-btn:hover {
    color: var(--color-primary);
}
.v-btn i {
    width: 20px;
    height: 20px;
}
.video-time {
    font-family: var(--font-heading);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes rotateRing {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}
/* @keyframes flashRec {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
} */

/* Entry Animations */
.animate-fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-fade-in-delayed {
    opacity: 0;
    animation: fadeIn 1.2s 0.3s forwards cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 1s forwards cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-slide-up-delayed {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 1.2s 0.2s forwards cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-slide-up-delayed-more {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 1.2s 0.4s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeIn {
    to { opacity: 1; }
}
@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
    .hero {
        padding-bottom: 80px;
    }
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
        padding-bottom: 40px;
    }
    .badge-glow {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-image-wrapper {
        max-width: 480px;
        margin: 0 auto;
    }
    .logo-marquee {
        position: relative;
        margin-top: 50px;
        border-bottom: 0;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .showcase-content-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-image-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
    
    .mobile-nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero {
        padding-bottom: 60px;
    }
    .hero-title {
        font-size: 40px;
    }
    
    .logo-marquee-track {
        gap: 40px;
    }
    .logo-marquee-item {
        height: 28px;
    }
    
    .niches-container {
        flex-direction: column;
        gap: 8px;
    }
    .niches-container .stat-divider {
        display: none;
    }
    .niche-item {
        width: 100%;
        justify-content: center;
    }
    
    .portfolio-section .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .showcase-content-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .process-timeline::before {
        left: 20px;
    }
    .timeline-item {
        padding-left: 50px;
    }
    .timeline-number {
        width: 32px;
        height: 32px;
        font-size: 13px;
        left: 4px;
        top: 8px;
    }
    .timeline-content {
        padding: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form-box {
        padding: 24px;
    }
}
