/* Oficina Auto Bomba - Premium Design v3 - Polished */

:root {
    --gold: #d4af37;
    --gold-light: #f4c964;
    --gold-dark: #b8960c;
    --black: #0a0a0a;
    --black-light: #121212;
    --black-medium: #1a1a1a;
    --white: #ffffff;
    --gray: #a0a0a0;
    --gray-dark: #666666;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gold,
.gold-text {
    color: var(--gold);
}

.highlight {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Cursor Glow */
.cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
    opacity: 0;
}

body:hover .cursor-glow {
    opacity: 1;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--black);
    border-color: var(--gold);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
}

.btn-white {
    background: var(--white);
    color: var(--black);
}

.btn-dark {
    background: var(--black);
    color: var(--white);
    border: 2px solid var(--black);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

.btn-glow::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, var(--gold), transparent, var(--gold));
    z-index: -1;
    filter: blur(15px);
    opacity: 0;
    transition: var(--transition);
}

.btn-glow:hover::after {
    opacity: 0.6;
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Preloader */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.engine-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    position: relative;
    height: 60px;
}

.gear-1,
.gear-2 {
    color: var(--gold);
    position: absolute;
    animation: spin 2s linear infinite;
}

.gear-1 {
    font-size: 3rem;
    left: 50%;
    transform: translateX(-70%);
}

.gear-2 {
    font-size: 2rem;
    left: 50%;
    transform: translateX(20%);
    top: 15px;
    animation-direction: reverse;
}

.loader-text {
    display: flex;
    justify-content: center;
    gap: 3px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 4px;
}

.loader-text span {
    animation: bounce 0.6s ease infinite;
}

.loader-text span:nth-child(1) {
    animation-delay: 0s;
}

.loader-text span:nth-child(2) {
    animation-delay: 0.1s;
}

.loader-text span:nth-child(3) {
    animation-delay: 0.2s;
}

.loader-text span:nth-child(4) {
    animation-delay: 0.3s;
}

.loader-text span:nth-child(5) {
    animation-delay: 0.4s;
}

.loader-text span:nth-child(6) {
    animation-delay: 0.5s;
}

.loader-text span:nth-child(7) {
    animation-delay: 0.6s;
}

.loader-text span:nth-child(8) {
    animation-delay: 0.7s;
}

.loader-text span:nth-child(9) {
    animation-delay: 0.8s;
}

@keyframes spin {
    to {
        transform: translateX(-70%) rotate(360deg);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Header */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

#header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon-wrapper {
    position: relative;
}

.logo-icon-wrapper img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-ring {
    position: absolute;
    inset: -4px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 2px;
    line-height: 1;
}

.logo-sub {
    font-size: 0.6rem;
    letter-spacing: 3px;
    color: var(--gray);
    text-transform: uppercase;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    position: relative;
}

.nav-link span {
    font-size: 0.7rem;
    color: var(--gold);
    font-weight: 600;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero - Sticky Effect */
.hero {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1;
    overflow: hidden;
}

/* Spacer after hero to allow content to scroll over */
.hero::after {
    content: '';
    display: block;
    height: 0;
}

/* Video Parallax Container */
.hero-video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
    will-change: opacity, transform;
    pointer-events: none;
}

.hero-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) saturate(1.2);
    transition: opacity 0.4s ease;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(10, 10, 10, 0.6) 0%,
            rgba(10, 10, 10, 0.3) 50%,
            rgba(10, 10, 10, 0.8) 100%);
    pointer-events: none;
}

/* When scrolled past hero, hide video */
.hero-video-container.hidden {
    opacity: 0;
    visibility: hidden;
}

/* Car Selector */
.car-selector {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 30px;
    pointer-events: auto;
}

.car-selector-tagline {
    text-align: right;
    max-width: 300px;
}

/* Typewriter Animation */
.typewriter {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1px;
    overflow: hidden;
    border-right: 2px solid var(--gold);
    white-space: nowrap;
    width: 0;
    animation:
        typing 4s steps(40, end) forwards,
        blink-caret 0.75s step-end infinite;
    display: inline-block;
}

@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 300px;
    }
}

@keyframes blink-caret {

    from,
    to {
        border-color: transparent;
    }

    50% {
        border-color: var(--gold);
    }
}

.car-selector-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.car-nav-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    padding: 15px;
    pointer-events: auto;
    z-index: 100;
    position: relative;
}

.car-nav-btn span {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
}

.car-nav-btn i {
    font-size: 0.8rem;
}

.car-nav-btn:hover {
    color: var(--gold);
    transform: scale(1.1);
}

.car-nav-btn.prev {
    flex-direction: column;
}

.car-nav-btn.next {
    flex-direction: column;
}

.car-selector-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.car-number-container {
    position: relative;
}

.car-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    letter-spacing: 5px;
    transition: all 0.5s ease;
}

.car-number.changing {
    transform: scale(1.2);
    -webkit-text-stroke: 1px var(--gold);
}

.car-selector-line {
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, var(--gold), rgba(255, 255, 255, 0.2), var(--gold));
}

.car-total {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 2px;
}

.scroll-indicator {
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.scroll-indicator span {
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

@media (max-width: 768px) {
    .car-selector {
        right: 15px;
        gap: 20px;
    }

    .typewriter {
        font-size: 0.75rem;
    }

    .car-number {
        font-size: 3rem;
    }

    .car-selector-line {
        height: 50px;
    }
}

@media (max-width: 768px) {
    .video-selector {
        top: 80px;
        right: 15px;
    }

    .video-tagline {
        font-size: 0.75rem;
    }

    .video-btn {
        width: 35px;
        height: 35px;
    }
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%), radial-gradient(ellipse at 70% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.hero-glow {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 60%);
    filter: blur(60px);
}

.floating-shapes .shape {
    position: absolute;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -150px;
    animation: float 20s infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    right: -100px;
    animation: float 15s infinite reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 10%;
    animation: float 18s infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

.hero-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.decor-line {
    position: absolute;
    width: 1px;
    height: 200px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

.decor-line.left {
    left: 10%;
    top: 20%;
}

.decor-line.right {
    right: 10%;
    bottom: 20%;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 100px;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 10px 25px;
    border-radius: 50px;
    margin-bottom: 30px;
}

.hero-badge i {
    color: var(--gold);
    font-size: 0.7rem;
}

.hero-badge span {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    margin-bottom: 20px;
}

.title-line {
    display: block;
    font-size: clamp(3rem, 10vw, 7rem);
    letter-spacing: 10px;
    line-height: 0.9;
}

.title-accent {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.outline-text {
    -webkit-text-stroke: 2px var(--gold);
    color: transparent;
}

.hero-tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.tagline-line {
    width: 50px;
    height: 1px;
    background: var(--gold);
}

.hero-tagline p {
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--gold);
    line-height: 1;
}

.stat-number::after {
    content: '+';
}

.stat-label {
    font-size: 0.8rem;
    color: var(--gray);
    line-height: 1.3;
}

.stat-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.hero-scroll a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--gray);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--gold);
    border-radius: 15px;
    position: relative;
}

.scroll-wheel {
    width: 3px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {

    0%,
    100% {
        opacity: 1;
        top: 8px;
    }

    50% {
        opacity: 0;
        top: 20px;
    }
}

.hero-social {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.hero-social a {
    color: var(--gray);
    font-size: 1rem;
    transition: var(--transition);
}

.hero-social a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.social-line {
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.5;
    animation: particle-float 20s infinite;
}

@keyframes particle-float {

    0%,
    100% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.5;
    }

    90% {
        opacity: 0.5;
    }

    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

/* All sections after hero should be above it */
.about,
.services,
.process,
.gallery,
.testimonials,
.location,
.contact,
.cta,
.footer {
    position: relative;
    z-index: 10;
    background: var(--black-light);
}

.services,
.gallery,
.location {
    background: var(--black);
}

/* Section Styles */
.section-label {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.section-label.centered {
    justify-content: center;
}

.label-line {
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.label-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-title.centered {
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* About */
.about {
    padding: 120px 0;
    background: var(--black-light);
    position: relative;
}

.section-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
}

.image-showcase {
    position: relative;
}

.main-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.main-image img {
    width: 100%;
    border-radius: 20px;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, transparent 50%);
}

.experience-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    color: var(--black);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
}

.exp-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    line-height: 1;
}

.exp-number span {
    font-size: 2rem;
}

.exp-text {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--black);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.5rem;
    animation: float 4s ease-in-out infinite;
}

.icon-1 {
    top: 20px;
    right: -30px;
}

.icon-2 {
    bottom: 100px;
    left: -30px;
    animation-delay: 2s;
}

.about-text .lead {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 15px;
}

.about-description p {
    color: var(--gray);
    margin-bottom: 15px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 40px 0;
}

.feature-card {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.feature-content h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.feature-content p {
    font-size: 0.85rem;
    color: var(--gray);
}

/* Services */
.services {
    padding: 120px 0;
    background: var(--black);
}

.section-header {
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    position: relative;
    background: var(--black-light);
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover .card-glow {
    opacity: 1;
}

.service-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
}

.icon-bg {
    position: absolute;
    inset: 0;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 20px;
    transform: rotate(45deg);
}

.service-icon-wrapper i {
    position: relative;
    z-index: 1;
    font-size: 2rem;
    color: var(--gold);
    line-height: 80px;
    width: 100%;
    text-align: center;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-list {
    margin-bottom: 25px;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.service-list i {
    color: var(--gold);
    font-size: 0.8rem;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
}

.service-btn i {
    transition: var(--transition);
}

.service-btn:hover i {
    transform: translateX(5px);
}

.card-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
}

.service-card.featured {
    border-color: rgba(212, 175, 55, 0.3);
}

.service-card.featured .card-glow {
    opacity: 1;
}

/* Process */
.process {
    padding: 100px 0;
    background: var(--black-light);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 60px;
}

.process-line {
    position: absolute;
    top: 50px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: rgba(212, 175, 55, 0.2);
}

.process-step {
    text-align: center;
    position: relative;
    flex: 1;
}

.step-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.step-icon {
    width: 100px;
    height: 100px;
    background: var(--black);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--gold);
    font-size: 2rem;
    transition: var(--transition);
}

.process-step:hover .step-icon {
    background: var(--gold);
    color: var(--black);
}

.process-step h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 0.85rem;
    color: var(--gray);
    padding: 0 20px;
}

/* Gallery - Showcase Style */
.gallery {
    padding: 120px 0;
    background: var(--black);
}

.showcase-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.showcase-item:last-child {
    margin-bottom: 0;
}

.showcase-item.reverse {
    direction: rtl;
}

.showcase-item.reverse>* {
    direction: ltr;
}

.showcase-content {
    position: relative;
}

.showcase-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    color: rgba(212, 175, 55, 0.1);
    position: absolute;
    top: -40px;
    left: -20px;
    line-height: 1;
    z-index: 0;
}

.showcase-content h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.showcase-content>p {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.showcase-features {
    margin-bottom: 30px;
}

.showcase-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--white);
    font-size: 1rem;
}

.showcase-features li i {
    color: var(--gold);
    font-size: 0.9rem;
}

.showcase-image {
    position: relative;
}

.showcase-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s ease;
}

.showcase-item:hover .showcase-image img {
    transform: scale(1.02);
}

/* ============================================================
   3D VIDEO SHOWCASE — Holographic Engine Display
   ============================================================ */
.showcase-video-3d {
    position: relative;
    perspective: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
}

.video-3d-scene {
    position: relative;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    transform-style: preserve-3d;
}

/* Ambient glow behind the video */
.video-3d-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 110%;
    height: 110%;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse at center,
            rgba(212, 175, 55, 0.25) 0%,
            rgba(212, 175, 55, 0.08) 40%,
            transparent 70%);
    filter: blur(40px);
    animation: glowPulse3d 4s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes glowPulse3d {
    0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}

/* Floating particles */
.video-3d-particles {
    position: absolute;
    inset: -30px;
    z-index: 1;
    pointer-events: none;
}

.video-3d-particles span {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(212, 175, 55, 0.8), 0 0 12px rgba(212, 175, 55, 0.4);
    animation: particleFloat3d var(--dur, 6s) var(--delay, 0s) ease-in-out infinite;
    opacity: 0;
}

.video-3d-particles span:nth-child(1)  { left: 5%;  top: 10%; --dur: 5s;  --delay: 0s; }
.video-3d-particles span:nth-child(2)  { left: 15%; top: 80%; --dur: 7s;  --delay: 1s; }
.video-3d-particles span:nth-child(3)  { left: 85%; top: 15%; --dur: 6s;  --delay: 0.5s; }
.video-3d-particles span:nth-child(4)  { left: 90%; top: 75%; --dur: 8s;  --delay: 2s; }
.video-3d-particles span:nth-child(5)  { left: 50%; top: 5%;  --dur: 5.5s; --delay: 0.3s; }
.video-3d-particles span:nth-child(6)  { left: 30%; top: 95%; --dur: 7.5s; --delay: 1.5s; }
.video-3d-particles span:nth-child(7)  { left: 70%; top: 50%; --dur: 6.5s; --delay: 0.8s; }
.video-3d-particles span:nth-child(8)  { left: 10%; top: 50%; --dur: 5s;  --delay: 2.5s; }
.video-3d-particles span:nth-child(9)  { left: 95%; top: 40%; --dur: 7s;  --delay: 1.2s; }
.video-3d-particles span:nth-child(10) { left: 40%; top: 90%; --dur: 6s;  --delay: 0.6s; }
.video-3d-particles span:nth-child(11) { left: 60%; top: 8%;  --dur: 8s;  --delay: 1.8s; }
.video-3d-particles span:nth-child(12) { left: 20%; top: 35%; --dur: 5.5s; --delay: 3s; }

@keyframes particleFloat3d {
    0%   { transform: translateY(0) translateX(0) scale(0); opacity: 0; }
    15%  { opacity: 1; transform: scale(1); }
    50%  { transform: translateY(-25px) translateX(10px) scale(1.2); opacity: 0.8; }
    85%  { opacity: 1; transform: scale(1); }
    100% { transform: translateY(0) translateX(0) scale(0); opacity: 0; }
}

/* The main 3D card */
.video-3d-card {
    position: relative;
    z-index: 2;
    transform-style: preserve-3d;
    transform: rotateY(-6deg) rotateX(3deg);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform;
}

.showcase-item:hover .video-3d-card {
    transform: rotateY(0deg) rotateX(0deg) scale(1.02);
}

/* Video frame with border */
.video-3d-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.35);
    box-shadow:
        0 0 20px rgba(212, 175, 55, 0.15),
        0 0 60px rgba(212, 175, 55, 0.08),
        0 30px 80px rgba(0, 0, 0, 0.6),
        inset 0 0 30px rgba(0, 0, 0, 0.3);
    background: var(--black);
}

.video-3d-player {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    filter: brightness(0.95) contrast(1.1) saturate(1.15);
}

/* HUD overlay — tech corners + scanline */
.video-3d-hud {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 3;
}

.hud-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border-color: var(--gold);
    border-style: solid;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.showcase-item:hover .hud-corner {
    opacity: 1;
}

.hud-tl { top: 8px;  left: 8px;  border-width: 2px 0 0 2px; border-radius: 4px 0 0 0; }
.hud-tr { top: 8px;  right: 8px; border-width: 2px 2px 0 0; border-radius: 0 4px 0 0; }
.hud-bl { bottom: 8px; left: 8px;  border-width: 0 0 2px 2px; border-radius: 0 0 0 4px; }
.hud-br { bottom: 8px; right: 8px; border-width: 0 2px 2px 0; border-radius: 0 0 4px 0; }

/* Scanline sweep */
.hud-scanline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.4) 50%, transparent 100%);
    animation: scanlineSweep 4s linear infinite;
    opacity: 0.5;
}

@keyframes scanlineSweep {
    0%   { top: 0%; }
    100% { top: 100%; }
}

/* Reflection below the card */
.video-3d-reflection {
    position: relative;
    height: 60px;
    margin-top: -2px;
    border-radius: 0 0 16px 16px;
    background: linear-gradient(to bottom,
            rgba(212, 175, 55, 0.08) 0%,
            transparent 100%);
    filter: blur(2px);
    transform: scaleY(-0.3) rotateX(20deg);
    transform-origin: top center;
    opacity: 0.4;
    pointer-events: none;
}

/* Rotating tech ring */
.video-3d-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 115%;
    height: 115%;
    transform: translate(-50%, -50%) rotateX(75deg);
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: 50%;
    animation: ringRotate3d 20s linear infinite;
    z-index: 0;
    pointer-events: none;
}

.video-3d-ring::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 1px dashed rgba(212, 175, 55, 0.08);
    border-radius: 50%;
    animation: ringRotate3d 15s linear infinite reverse;
}

@keyframes ringRotate3d {
    from { transform: translate(-50%, -50%) rotateX(75deg) rotateZ(0deg); }
    to   { transform: translate(-50%, -50%) rotateX(75deg) rotateZ(360deg); }
}

/* Responsive adjustments */
@media (max-width: 968px) {
    .showcase-video-3d {
        min-height: 300px;
    }

    .video-3d-card {
        transform: rotateY(-3deg) rotateX(2deg);
    }

    .video-3d-ring {
        width: 110%;
        height: 110%;
    }
}

@media (max-width: 480px) {
    .showcase-video-3d {
        min-height: 250px;
    }

    .video-3d-card {
        transform: rotateY(-2deg) rotateX(1deg);
    }

    .hud-corner {
        width: 20px;
        height: 20px;
    }

    .video-3d-reflection {
        height: 30px;
    }
}

.image-frame {
    display: none;
}

@media (max-width: 968px) {
    .showcase-item {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .showcase-item.reverse {
        direction: ltr;
    }

    .showcase-content h3 {
        font-size: 1.8rem;
    }

    .showcase-number {
        font-size: 4rem;
    }
}

/* Testimonials */
.testimonials {
    padding: 120px 0;
    background: var(--black-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.testimonial-card {
    background: var(--black);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.client-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 1.5rem;
}

.client-info h4 {
    font-size: 1.1rem;
}

.client-info span {
    font-size: 0.85rem;
    color: var(--gray);
}

.quote-icon {
    margin-left: auto;
    font-size: 2rem;
    color: rgba(212, 175, 55, 0.2);
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: var(--gold);
}

.testimonial-text {
    color: var(--gray);
    font-style: italic;
    line-height: 1.8;
}

/* Location */
.location {
    padding: 120px 0;
    background: var(--black);
}

.location-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 40px 0;
}

.info-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--black-light);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.info-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
}

.info-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
}

.info-content h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.info-content p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.5;
}

.location-map {
    border-radius: 20px;
    overflow: hidden;
}

.map-wrapper {
    width: 100%;
    height: 100%;
    min-height: 450px;
    position: relative;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border-radius: 20px;
}

.map-overlay-gradient {
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: 20px;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
}

/* Contact */
.contact {
    padding: 120px 0;
    background: var(--black-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-description {
    color: var(--gray);
    margin-bottom: 30px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--black);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.contact-method:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateX(10px);
}

.method-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.contact-method.whatsapp .method-icon {
    background: rgba(37, 211, 102, 0.1);
    color: #25d366;
}

.contact-method.phone .method-icon {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
}

.contact-method.email .method-icon {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
}

.method-info {
    flex: 1;
}

.method-info span {
    font-size: 0.8rem;
    color: var(--gray);
}

.method-info strong {
    display: block;
    font-size: 1rem;
}

.contact-method>i {
    color: var(--gray);
}

.social-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-section span {
    color: var(--gray);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--black);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gold);
    color: var(--black);
}

.contact-form {
    background: var(--black);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    background: var(--black-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--white);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group label {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
    transition: var(--transition);
    pointer-events: none;
}

.form-group textarea~label {
    top: 20px;
    transform: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group input:focus~label,
.form-group input:not(:placeholder-shown)~label,
.form-group textarea:focus~label,
.form-group textarea:not(:placeholder-shown)~label,
.form-group select:valid~label {
    top: -10px;
    left: 15px;
    font-size: 0.8rem;
    color: var(--gold);
    background: var(--black);
    padding: 0 5px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
}

.form-group option {
    background: var(--black-light);
}

.focus-border {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.form-group input:focus~.focus-border,
.form-group select:focus~.focus-border,
.form-group textarea:focus~.focus-border {
    width: 100%;
    left: 0;
}

/* CTA */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(0, 0, 0, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-badge {
    display: inline-block;
    background: rgba(0, 0, 0, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 20px;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--black);
    margin-bottom: 15px;
}

.cta-content h2 span {
    display: block;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--black);
}

.footer-top {
    padding: 80px 0 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-logo-text span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    display: block;
}

.footer-logo-text small {
    font-size: 0.7rem;
    color: var(--gray);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-brand p {
    color: var(--gray);
    margin-bottom: 25px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--black-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--black);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul a {
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.footer-links ul a i {
    font-size: 0.7rem;
    color: var(--gold);
}

.footer-links ul a:hover {
    color: var(--gold);
}

.footer-contact ul li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--gray);
    font-size: 0.9rem;
}

.footer-contact ul li i {
    color: var(--gold);
    margin-top: 5px;
}

.footer-bottom {
    padding: 25px 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--gray);
    font-size: 0.9rem;
}

.footer-bottom i {
    color: var(--gold);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 5px 30px rgba(212, 175, 55, 0.4);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    z-index: 999;
    box-shadow: 0 5px 30px rgba(37, 211, 102, 0.5);
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-pulse {
    position: absolute;
    inset: -5px;
    border: 2px solid #25d366;
    border-radius: 50%;
    animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 1024px) {

    .about-content,
    .location-wrapper,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .process-steps {
        flex-wrap: wrap;
        gap: 40px;
    }

    .process-line {
        display: none;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item.large,
    .gallery-item.tall {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--black);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.5s ease;
        z-index: 998;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .nav-link {
        font-size: 1.5rem;
    }

    .hamburger {
        display: flex;
        z-index: 999;
    }

    .nav-actions .btn {
        display: none;
    }

    .hero-social {
        display: none;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
        padding: 30px 20px;
    }

    .stat-divider {
        width: 100%;
        height: 1px;
    }

    .title-accent {
        flex-direction: column;
        gap: 0;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo,
    .footer-social {
        justify-content: center;
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .experience-card {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
    }

    .floating-icon {
        display: none;
    }
}

::selection {
    background: var(--gold);
    color: var(--black);
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--gold), var(--gold-dark));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-light);
}

/* Lazy Loading Animation */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.5s ease;
}

img[loading="lazy"].loaded,
img:not([loading="lazy"]) {
    opacity: 1;
}

/* Focus States for Accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* Smooth Image Loading */
.showcase-image img {
    background: var(--black-light);
}

/* Better Link Underlines */
.footer-links ul a:hover,
.nav-link:hover {
    text-decoration: none;
}

/* Pulse Animation for CTA */
@keyframes pulse-gold {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
    }
}

.btn-gold:hover {
    animation: pulse-gold 1.5s infinite;
}

/* Smooth Section Transitions */
section {
    will-change: transform;
}

/* Better Text Rendering */
h1,
h2,
h3,
h4,
h5,
h6 {
    text-rendering: optimizeLegibility;
}

/* Loading Skeleton */
.skeleton {
    background: linear-gradient(90deg, var(--black-light) 25%, var(--black-medium) 50%, var(--black-light) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* WhatsApp Button */
.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E) !important;
    border: none;
    color: white;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E, #075E54) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

/* Location Section */
.location-section {
    background: var(--black);
    position: relative;
    z-index: 10;
}

.location-wrapper {
    display: flex;
    flex-direction: column;
}

.location-map {
    width: 100%;
    filter: grayscale(80%) contrast(1.1);
    transition: filter 0.3s ease;
}

.location-map:hover {
    filter: grayscale(0%) contrast(1);
}

.location-map iframe {
    display: block;
    width: 100%;
    height: 350px;
}

/* Quick Contact */
.quick-contact {
    background: var(--black-light);
    padding: 40px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.quick-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.quick-contact-item a {
    display: flex;
    align-items: center;
    gap: 15px;
    color: inherit;
    transition: var(--transition);
}

.quick-contact-item a:hover {
    transform: translateX(5px);
}

.quick-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.quick-icon i {
    font-size: 1.2rem;
    color: var(--gold);
}

.quick-icon.whatsapp {
    background: rgba(37, 211, 102, 0.15);
}

.quick-icon.whatsapp i {
    color: #25D366;
}

.quick-info h4 {
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 500;
    margin-bottom: 3px;
}

.quick-info p {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
}

@media (max-width: 1024px) {
    .quick-contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .quick-contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .location-map iframe {
        height: 250px;
    }
}

/* ============================================= */
/* ===== ENHANCED MOBILE OPTIMIZATIONS ===== */
/* ============================================= */

/* Extra small devices (portrait phones, < 480px) */
@media (max-width: 480px) {

    /* Container padding adjustment */
    .container {
        padding: 0 15px;
    }

    /* Hero Section Mobile Fixes */
    .hero-content {
        padding-top: 80px;
        padding-bottom: 20px;
    }

    .title-line {
        font-size: clamp(2rem, 12vw, 4rem);
        letter-spacing: 3px;
    }

    .hero-badge {
        padding: 8px 15px;
        gap: 10px;
        margin-bottom: 20px;
    }

    .hero-badge span {
        font-size: 0.65rem;
        letter-spacing: 1px;
    }

    .hero-badge i {
        font-size: 0.6rem;
    }

    .hero-tagline {
        margin: 20px 0;
        gap: 10px;
    }

    .hero-tagline p {
        font-size: 0.75rem;
        letter-spacing: 1.5px;
    }

    .tagline-line {
        width: 30px;
    }

    .hero-description {
        font-size: 0.9rem;
        padding: 0 10px;
        margin-bottom: 25px;
    }

    .hero-buttons {
        margin-bottom: 40px;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-scroll {
        bottom: 15px;
    }

    .scroll-mouse {
        width: 20px;
        height: 32px;
    }

    .hero-scroll span {
        font-size: 0.65rem;
    }

    /* Sections padding reduction */
    .about,
    .services,
    .gallery,
    .testimonials,
    .process {
        padding: 60px 0;
    }

    /* Section titles */
    .section-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .label-text {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }

    .label-line {
        width: 25px;
    }

    /* About Section */
    .about-content {
        gap: 40px;
    }

    .about-text .lead {
        font-size: 1rem;
    }

    .about-description p {
        font-size: 0.9rem;
    }

    .about-features {
        gap: 15px;
        margin: 30px 0;
    }

    .feature-card {
        padding: 15px;
        gap: 12px;
    }

    .feature-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
    }

    .feature-content h4 {
        font-size: 0.9rem;
    }

    .feature-content p {
        font-size: 0.8rem;
    }

    /* Experience card */
    .experience-card {
        padding: 20px 25px;
        border-radius: 15px;
    }

    .exp-number {
        font-size: 2.8rem;
    }

    .exp-text {
        font-size: 0.75rem;
    }

    /* Services cards */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 25px 20px;
    }

    .service-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .service-icon-wrapper i {
        font-size: 1.5rem;
        line-height: 60px;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }

    .card-number {
        font-size: 3rem;
    }

    /* Process steps */
    .process {
        padding: 50px 0;
    }

    .process-steps {
        gap: 30px;
    }

    .step-icon {
        width: 65px;
        height: 65px;
        font-size: 1.3rem;
    }

    .process-step h4 {
        font-size: 1rem;
    }

    .process-step p {
        font-size: 0.8rem;
        padding: 0 5px;
    }

    .step-number {
        font-size: 0.85rem;
    }

    /* Showcase/Gallery */
    .gallery {
        padding: 60px 0;
    }

    .showcase-item {
        gap: 25px;
        margin-bottom: 50px;
    }

    .showcase-number {
        font-size: 2.5rem;
        top: -20px;
        left: -5px;
    }

    .showcase-content h3 {
        font-size: 1.4rem;
        padding-right: 10px;
    }

    .showcase-content>p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .showcase-features li {
        font-size: 0.9rem;
    }

    .showcase-image img {
        border-radius: 15px;
    }

    /* Testimonials */
    .testimonials {
        padding: 60px 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }

    .testimonial-card {
        padding: 25px 20px;
        border-radius: 15px;
    }

    .client-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .client-info h4 {
        font-size: 1rem;
    }

    .client-info span {
        font-size: 0.8rem;
    }

    .quote-icon {
        font-size: 1.5rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

    /* CTA Section */
    .cta {
        padding: 50px 0;
    }

    .cta-badge {
        font-size: 0.75rem;
        padding: 6px 15px;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }

    .cta-content p {
        font-size: 0.95rem;
    }

    .cta-buttons {
        gap: 12px;
    }

    .cta-buttons .btn {
        width: 100%;
        padding: 14px 20px;
    }

    /* Footer */
    .footer-top {
        padding: 40px 0 30px;
    }

    .footer-grid {
        gap: 30px;
    }

    .footer-brand p {
        font-size: 0.85rem;
    }

    .footer-logo img {
        width: 45px;
        height: 45px;
    }

    .footer-logo-text span {
        font-size: 1.3rem;
    }

    .footer-links h4,
    .footer-contact h4 {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .footer-links ul a {
        font-size: 0.85rem;
    }

    .footer-contact ul li {
        font-size: 0.85rem;
    }

    .footer-social a {
        width: 38px;
        height: 38px;
    }

    .footer-bottom {
        padding: 20px 0;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }

    /* WhatsApp & Back to Top positioning */
    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 15px;
        right: 15px;
        font-size: 1.5rem;
    }

    .whatsapp-pulse {
        inset: -4px;
    }

    .back-to-top {
        width: 42px;
        height: 42px;
        bottom: 80px;
        right: 15px;
    }

    /* Quick contact */
    .quick-contact {
        padding: 20px 0;
    }

    .quick-icon {
        width: 42px;
        height: 42px;
    }

    .quick-icon i {
        font-size: 1rem;
    }

    .quick-info h4 {
        font-size: 0.75rem;
    }

    .quick-info p {
        font-size: 0.85rem;
    }

    /* Buttons */
    .btn {
        padding: 12px 24px;
        font-size: 0.85rem;
    }

    .btn-lg {
        padding: 14px 28px;
    }
}

/* ===== Enhanced 768px breakpoint ===== */
@media (max-width: 768px) {

    /* Menu overlay background */
    .nav-menu.active::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.7);
        z-index: -1;
    }

    /* Better touch targets - minimum 48px */
    .btn {
        min-height: 48px;
    }

    .nav-link {
        padding: 15px 0;
        font-size: 1.3rem;
    }

    .service-btn {
        padding: 12px 0;
        min-height: 44px;
    }

    /* Logo adjustments */
    .logo-main {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }

    .logo-sub {
        font-size: 0.5rem;
        letter-spacing: 2px;
    }

    .logo-icon-wrapper img {
        width: 38px;
        height: 38px;
    }

    .logo-ring {
        inset: -3px;
    }

    /* Better video handling on mobile */
    .hero-video-container {
        display: block;
    }

    .hero-video-container video {
        object-position: center center;
        filter: brightness(0.35) saturate(1.1);
    }

    /* Process steps mobile layout */
    .process-steps {
        flex-direction: column;
        align-items: center;
    }

    .process-step {
        width: 100%;
        max-width: 300px;
    }

    /* Header button show on mobile */
    .nav-actions .btn {
        display: inline-flex;
        padding: 10px 16px;
        font-size: 0.8rem;
    }

    .nav-actions .btn span {
        display: none;
    }

    /* Title accent fix */
    .title-accent {
        flex-direction: column;
        gap: 0;
    }

    .outline-text {
        -webkit-text-stroke: 1.5px var(--gold);
    }

    /* Cards grid fix */
    .services-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    /* Location map fullwidth */
    .location-map {
        margin: 0 -15px;
        border-radius: 0;
    }

    .location-map iframe {
        border-radius: 0;
    }
}

/* ===== Safe area for notched devices (iPhone X+) ===== */
@supports (padding: max(0px)) {
    #header {
        padding-left: max(15px, env(safe-area-inset-left));
        padding-right: max(15px, env(safe-area-inset-right));
    }

    .footer-bottom {
        padding-bottom: max(25px, env(safe-area-inset-bottom));
    }

    .whatsapp-float {
        right: max(15px, env(safe-area-inset-right));
        bottom: max(15px, env(safe-area-inset-bottom));
    }

    .back-to-top {
        right: max(15px, env(safe-area-inset-right));
    }
}

/* ===== Disable hover effects on touch devices ===== */
@media (hover: none) and (pointer: coarse) {

    .service-card:hover,
    .feature-card:hover,
    .testimonial-card:hover,
    .info-card:hover,
    .contact-method:hover {
        transform: none;
    }

    .btn-gold:hover {
        animation: none;
    }

    .service-card:hover .card-glow {
        opacity: 0;
    }

    .service-card.featured .card-glow {
        opacity: 1;
    }

    /* Remove cursor glow on touch */
    .cursor-glow {
        display: none !important;
    }
}

/* ===== Reduce motion for accessibility ===== */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .hero-video-container video {
        display: none;
    }

    .particle {
        display: none;
    }

    .scroll-wheel {
        animation: none;
    }

    .logo-ring {
        animation: none;
    }

    .whatsapp-pulse {
        animation: none;
    }
}

/* ===== Landscape mode adjustments ===== */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        height: auto;
        padding: 100px 0 50px;
    }

    .hero-content {
        padding-top: 20px;
    }

    .hero-scroll {
        display: none;
    }

    .hero-buttons {
        margin-bottom: 20px;
    }
}

/* ===== High DPI screens ===== */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .outline-text {
        -webkit-text-stroke: 1px var(--gold);
    }
}

/* ===== Print styles ===== */
@media print {

    .hero-video-container,
    .whatsapp-float,
    .back-to-top,
    #preloader,
    .cursor-glow {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .hero {
        height: auto;
        min-height: auto;
    }
}

/* ============================================= */
/* ===== APP-LIKE MOBILE EXPERIENCE ===== */
/* ============================================= */

/* Mobile Bottom Navigation Bar */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 8px 0;
    padding-bottom: max(8px, env(safe-area-inset-bottom));
    z-index: 9999;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
        justify-content: space-around;
        align-items: center;
    }

    /* Adjust existing floating buttons */
    .whatsapp-float {
        display: none !important;
    }

    .back-to-top {
        bottom: 90px;
    }

    /* Add padding to body for bottom nav */
    body {
        padding-bottom: 75px;
    }

    /* Footer needs extra padding */
    .footer-bottom {
        padding-bottom: max(90px, calc(env(safe-area-inset-bottom) + 75px));
    }
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px 12px;
    color: var(--gray);
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 12px;
    min-width: 60px;
    position: relative;
    -webkit-tap-highlight-color: transparent;
}

.bottom-nav-item i {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.bottom-nav-item span {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.bottom-nav-item.active,
.bottom-nav-item:active {
    color: var(--gold);
}

.bottom-nav-item.active i {
    transform: scale(1.15);
}

/* Active indicator dot */
.bottom-nav-item.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
}

/* WhatsApp CTA button in nav */
.bottom-nav-cta {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white !important;
    padding: 10px 16px;
    border-radius: 50px;
    margin: -5px 0;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.bottom-nav-cta i {
    font-size: 1.4rem;
}

.bottom-nav-cta span {
    font-size: 0.6rem;
}

.bottom-nav-cta::after {
    display: none;
}

/* Touch feedback ripple effect */
.bottom-nav-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
    opacity: 0;
    transform: scale(0);
    transition: transform 0.4s ease, opacity 0.4s ease;
    border-radius: 12px;
}

.bottom-nav-item:active::before {
    transform: scale(2);
    opacity: 1;
    transition: transform 0s, opacity 0s;
}

/* App-like scroll behavior */
html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* Disable text selection on nav elements (app-like) */
.mobile-bottom-nav,
.hamburger,
.nav-menu {
    -webkit-user-select: none;
    user-select: none;
}

/* Smooth transitions for all interactive elements */
@media (max-width: 768px) {

    a,
    button,
    .btn,
    .service-card,
    .testimonial-card {
        -webkit-tap-highlight-color: transparent;
    }

    /* Momentum scrolling for containers */
    .services-grid,
    .testimonials-grid,
    .showcase-item {
        -webkit-overflow-scrolling: touch;
    }
}

/* Active state visual feedback */
.btn:active,
.service-btn:active,
.footer-social a:active,
.social-links a:active {
    transform: scale(0.95);
    transition: transform 0.1s ease;
}

/* Enhanced header for app-like feel */
@media (max-width: 768px) {
    #header {
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }

    #header.scrolled {
        background: rgba(10, 10, 10, 0.95);
    }
}

/* Full-screen mobile menu with app-like animation */
@media (max-width: 768px) {
    .nav-menu {
        background: linear-gradient(180deg, var(--black) 0%, var(--black-light) 100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
        transform: translateX(100%);
        opacity: 0;
    }

    .nav-menu.active {
        transform: translateX(0);
        opacity: 1;
    }

    .nav-list {
        gap: 15px;
    }

    .nav-link {
        padding: 20px;
        font-size: 1.4rem;
        width: 100%;
        text-align: center;
        border-radius: 15px;
        transition: background 0.3s ease, transform 0.3s ease;
    }

    .nav-link:active {
        background: rgba(212, 175, 55, 0.1);
        transform: scale(0.98);
    }

    .nav-link span {
        display: none;
    }
}

/* Swipe indicator for horizontal scrollable areas */
@media (max-width: 768px) {
    .quick-contact-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
        gap: 15px;
    }

    .quick-contact-item {
        flex: 0 0 auto;
        min-width: 200px;
        scroll-snap-align: start;
    }

    /* Hide scrollbar but keep functionality */
    .quick-contact-grid::-webkit-scrollbar {
        display: none;
    }

    .quick-contact-grid {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
}

/* Improved touch targets */
@media (max-width: 768px) {

    .service-btn,
    .footer-links ul a,
    .footer-contact ul li {
        padding: 12px 0;
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .quick-contact-item a {
        padding: 15px;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 15px;
        width: 100%;
    }
}

/* Loading states (app-like) */
.skeleton-loading {
    background: linear-gradient(90deg,
            var(--black-light) 0%,
            var(--black-medium) 50%,
            var(--black-light) 100%);
    background-size: 200% 100%;
    animation: skeleton-wave 1.5s infinite;
}

@keyframes skeleton-wave {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Haptic-like visual feedback */
@media (max-width: 768px) {

    .btn-gold:active,
    .btn-white:active,
    .btn-dark:active {
        transform: scale(0.97);
        filter: brightness(0.9);
    }
}

/* Sticky header animation (iOS style) */
@media (max-width: 768px) {
    #header {
        transition: transform 0.3s ease, background 0.3s ease, padding 0.3s ease;
    }

    #header.hide-header {
        transform: translateY(-100%);
    }
}