/* ===== VARIABLES ===== */
:root {
    --black: #0a0a0a;
    --black-light: #0f0f0f;
    --black-warm: #0d0c0b;
    --charcoal: #161616;
    --charcoal-light: #1c1c1c;

    --gold: #d4af37;
    --gold-soft: #e8c547;
    --gold-muted: #b8976b;
    --gold-pale: #f0e6c8;
    --gold-dark: #9a8530;

    --white: #ffffff;
    --white-soft: #f8f8f8;
    --silver: #c8c8c8;
    --silver-light: #e0e0e0;
    --silver-dark: #909090;
    --silver-muted: #606060;
}

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

html {
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: linear-gradient(180deg, var(--black) 0%, #0d0d0d 50%, var(--black) 100%);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--gold-dark), var(--gold), var(--gold-dark));
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--gold), var(--gold-soft), var(--gold));
}

/* ===== BASE ===== */
body {
    font-family: 'Montserrat', sans-serif;
    background:
        /* Textura de puntos */
        radial-gradient(circle at center, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        /* Líneas diagonales doradas */
        repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(212, 175, 55, 0.025) 60px, rgba(212, 175, 55, 0.025) 61px),
        repeating-linear-gradient(-45deg, transparent, transparent 60px, rgba(212, 175, 55, 0.025) 60px, rgba(212, 175, 55, 0.025) 61px),
        /* Gradientes de luz dorada */
        radial-gradient(ellipse at 15% 5%, rgba(212, 175, 55, 0.06) 0%, transparent 40%),
        radial-gradient(ellipse at 90% 10%, rgba(180, 150, 80, 0.04) 0%, transparent 35%),
        radial-gradient(ellipse at 70% 60%, rgba(212, 175, 55, 0.03) 0%, transparent 45%),
        radial-gradient(ellipse at 20% 90%, rgba(200, 165, 60, 0.04) 0%, transparent 40%),
        /* Viñeta */
        radial-gradient(circle at 50% 50%, transparent 0%, rgba(10, 10, 10, 0.5) 100%),
        /* Fondo base */
        linear-gradient(170deg, #0c0c0c 0%, #080808 30%, #0a0a0a 70%, #0b0b0b 100%);
    background-size: 3px 3px, auto, auto, auto, auto, auto, auto, auto, auto;
    background-color: #0a0a0a;
    background-attachment: fixed;
    color: var(--silver);
    line-height: 1.8;
    font-weight: 300;
    font-size: 14px;
    letter-spacing: 0.03em;
    opacity: 0;
    transition: opacity 0.6s ease;
}

body.loaded {
    opacity: 1;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.5s ease;
}

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

/* ===== HEADER ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 32px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 60px;
    right: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.15), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

header.scrolled {
    background: linear-gradient(180deg, rgba(10,10,10,0.98) 0%, rgba(10,10,10,0.95) 100%);
    padding: 18px 60px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

header.scrolled::before {
    opacity: 1;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    letter-spacing: 0.18em;
    color: var(--white);
    text-transform: uppercase;
    transition: all 0.4s ease;
}

.logo-text span {
    color: var(--gold);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 44px;
}

nav a {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--silver);
    position: relative;
    padding: 10px 0;
    transition: all 0.4s ease;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transition: width 0.4s ease;
}

nav a:hover,
nav a.active {
    color: var(--white);
}

nav a:hover::after,
nav a.active::after {
    width: 120%;
}

.header-cta {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(212, 175, 55, 0.5);
    padding: 14px 28px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.header-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.header-cta:hover {
    border-color: var(--gold);
    color: var(--black);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.25);
}

.header-cta:hover::before {
    opacity: 1;
}

/* ===== HEADER ACTIONS ===== */
.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.lang-selector {
    position: relative;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: var(--silver);
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    cursor: pointer;
    padding: 8px 12px;
    transition: all 0.3s ease;
}

.lang-current:hover {
    color: var(--gold);
}

.lang-current .chevron {
    transition: transform 0.3s ease;
}

.lang-selector:hover .lang-current .chevron {
    transform: rotate(180deg);
}

.flag-icon {
    display: flex;
    align-items: center;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.flag-icon svg {
    display: block;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: rgba(15, 15, 15, 0.98);
    border: 1px solid rgba(212, 175, 55, 0.15);
    backdrop-filter: blur(20px);
    min-width: 120px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.lang-selector:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-form {
    display: block;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    font-size: 11px;
    letter-spacing: 0.08em;
    color: var(--silver-dark);
    transition: all 0.3s ease;
    background: transparent;
    border: none;
    width: 100%;
    cursor: pointer;
    font-family: inherit;
}

.lang-option:hover {
    color: var(--white);
    background: rgba(212, 175, 55, 0.08);
}

.lang-option.active {
    color: var(--gold);
}

/* ===== SECTIONS ===== */
section {
    padding: 160px 60px;
    position: relative;
    overflow: hidden;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    opacity: 0.4;
}

/* Separador elegante entre secciones */
.section-divider {
    position: relative;
    height: 100px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.section-divider::before {
    content: '';
    position: absolute;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(212, 175, 55, 0.1) 20%,
        rgba(212, 175, 55, 0.4) 50%,
        rgba(212, 175, 55, 0.1) 80%,
        transparent 100%
    );
}

.section-divider::after {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--gold);
    transform: rotate(45deg);
    box-shadow:
        0 0 10px rgba(212, 175, 55, 0.5),
        0 0 20px rgba(212, 175, 55, 0.3);
    animation: dividerPulse 2s ease-in-out infinite;
}

@keyframes dividerPulse {
    0%, 100% {
        opacity: 0.6;
        transform: rotate(45deg) scale(1);
    }
    50% {
        opacity: 1;
        transform: rotate(45deg) scale(1.2);
    }
}

.section-dark {
    background:
        /* Orbes de luz dorada */
        radial-gradient(ellipse 600px 600px at 85% 15%, rgba(212, 175, 55, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 500px 500px at 15% 85%, rgba(212, 175, 55, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse 300px 300px at 50% 50%, rgba(212, 175, 55, 0.02) 0%, transparent 50%),
        /* Textura de ruido sutil */
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E"),
        /* Degradado base */
        linear-gradient(175deg, #1a1a1a 0%, #0f0f0f 25%, #0a0a0a 50%, #0d0d0d 75%, var(--black) 100%);
    position: relative;
}

.section-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.03) 0%, transparent 100%);
    pointer-events: none;
}

.section-gradient {
    background:
        /* Orbes de luz animados */
        radial-gradient(ellipse 700px 700px at 25% 20%, rgba(212, 175, 55, 0.07) 0%, transparent 50%),
        radial-gradient(ellipse 500px 500px at 75% 70%, rgba(180, 150, 80, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse 400px 400px at 90% 30%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse 350px 350px at 10% 60%, rgba(200, 165, 60, 0.04) 0%, transparent 50%),
        /* Lineas diagonales muy sutiles */
        repeating-linear-gradient(
            135deg,
            transparent,
            transparent 100px,
            rgba(212, 175, 55, 0.008) 100px,
            rgba(212, 175, 55, 0.008) 101px
        ),
        /* Degradado base con mas profundidad */
        linear-gradient(180deg, #0a0a0a 0%, #0e0e0e 30%, #111111 50%, #0d0d0d 70%, var(--black-warm) 100%);
    position: relative;
}

.section-gradient::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(0deg, rgba(10, 10, 10, 0.8) 0%, transparent 100%);
    pointer-events: none;
}

/* Nueva clase para secciones con efecto especial */
.section-glow {
    background:
        radial-gradient(ellipse 800px 600px at 50% 0%, rgba(212, 175, 55, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 600px 600px at 0% 50%, rgba(212, 175, 55, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse 600px 600px at 100% 50%, rgba(212, 175, 55, 0.04) 0%, transparent 50%),
        linear-gradient(180deg, var(--black) 0%, #0c0c0c 50%, var(--black) 100%);
    position: relative;
}

/* Seccion con efecto de luz central */
.section-spotlight {
    background:
        radial-gradient(ellipse 1000px 800px at 50% 30%, rgba(212, 175, 55, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 400px 400px at 20% 80%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse 400px 400px at 80% 80%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        linear-gradient(180deg, #0d0d0d 0%, var(--black) 50%, #0a0a0a 100%);
}

.section-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    letter-spacing: 0.04em;
    line-height: 1.25;
    margin-bottom: 24px;
    color: var(--white);
    position: relative;
}

.section-title em {
    font-style: italic;
    color: var(--gold);
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.2);
    position: relative;
    display: inline-block;
}

.section-title em::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

.section-title:hover em::after {
    transform: scaleX(1);
}

.section-desc {
    font-size: 16px;
    color: var(--silver-light);
    max-width: 520px;
    line-height: 1.9;
    font-weight: 300;
}

/* ===== PAGE HEADER ===== */
.page-header {
    padding: 220px 60px 120px;
    text-align: center;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 40%),
        radial-gradient(ellipse at 80% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 40%),
        linear-gradient(180deg, var(--black) 0%, var(--charcoal) 100%);
    position: relative;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

.page-header .section-title {
    font-size: clamp(40px, 6vw, 64px);
    margin-bottom: 28px;
}

.page-header .section-desc {
    max-width: 640px;
    margin: 0 auto;
    font-size: 17px;
}

/* ===== HERO ===== */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background:
        /* Multiples orbes de luz */
        radial-gradient(ellipse 800px 800px at 20% 80%, rgba(212, 175, 55, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 600px 600px at 80% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse 1000px 1000px at 50% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 60%),
        radial-gradient(ellipse 400px 400px at 90% 70%, rgba(180, 150, 80, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse 400px 400px at 10% 30%, rgba(200, 165, 60, 0.04) 0%, transparent 50%),
        /* Base */
        radial-gradient(ellipse at 50% 50%, rgba(22, 22, 22, 1) 0%, var(--black) 100%);
}

/* Orbe principal animado */
.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    background:
        radial-gradient(circle, rgba(212, 175, 55, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 70% 70%, rgba(180, 150, 80, 0.03) 0%, transparent 40%);
    animation: heroGlow 10s ease-in-out infinite;
    pointer-events: none;
}

/* Segundo orbe con animacion diferente */
.hero::after {
    content: '';
    position: absolute;
    top: 30%;
    right: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
    animation: heroGlow2 12s ease-in-out infinite;
    pointer-events: none;
}

@keyframes heroGlow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 1;
    }
}

@keyframes heroGlow2 {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.4;
    }
    50% {
        transform: scale(1.2) rotate(10deg);
        opacity: 0.7;
    }
}

.hero-bg {
    position: absolute;
    inset: 0;
    opacity: 0.35;
    transform: translateY(var(--parallax-bg-y, 0)) scale(var(--parallax-bg-scale, 1));
    will-change: transform;
}

.hero-bg img {
    filter: grayscale(40%) brightness(0.5);
    animation: slowZoom 30s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, var(--black) 0%, transparent 25%, transparent 75%, var(--black) 100%),
        linear-gradient(90deg, var(--black) 0%, transparent 35%, transparent 65%, var(--black) 100%);
}

/* Lineas decorativas en hero */
.hero-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.15), transparent);
    height: 1px;
    width: 200px;
    animation: lineMove 12s linear infinite;
}

.hero-line:nth-child(1) { top: 20%; animation-delay: 0s; }
.hero-line:nth-child(2) { top: 40%; animation-delay: 3s; }
.hero-line:nth-child(3) { top: 60%; animation-delay: 6s; }
.hero-line:nth-child(4) { top: 80%; animation-delay: 9s; }

@keyframes lineMove {
    0% {
        left: -200px;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 950px;
    padding: 0 40px;
    transform: translateY(var(--parallax-y, 0));
    opacity: var(--parallax-opacity, 1);
    will-change: transform, opacity;
}

.hero-label {
    font-size: 10px;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease 0.3s forwards;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    position: relative;
}

.hero-label::before,
.hero-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}

.hero-label::before {
    right: calc(100% + 20px);
    background: linear-gradient(90deg, transparent, var(--gold));
}

.hero-label::after {
    left: calc(100% + 20px);
    background: linear-gradient(90deg, var(--gold), transparent);
}

.hero h1 {
    font-size: clamp(40px, 5.5vw, 68px);
    font-weight: 400;
    letter-spacing: 0.06em;
    line-height: 1.15;
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1.2s ease 0.5s forwards;
}

.hero h1 em {
    font-style: italic;
    color: var(--gold-soft);
    position: relative;
    display: inline-block;
}

.hero h1 em::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.5;
    animation: underlineGlow 3s ease-in-out infinite;
}

@keyframes underlineGlow {
    0%, 100% {
        opacity: 0.3;
        transform: scaleX(0.8);
    }
    50% {
        opacity: 0.7;
        transform: scaleX(1);
    }
}

.hero-desc {
    font-size: 16px;
    color: var(--silver-light);
    max-width: 580px;
    margin: 0 auto 48px;
    line-height: 2;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease 0.7s forwards;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease 0.9s forwards;
}

.hero-scroll {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0;
    animation: fadeUp 1s ease 1.2s forwards;
}

.hero-scroll span {
    font-size: 9px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--silver-muted);
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(180deg, var(--gold), transparent);
    animation: scrollPulse 2s ease infinite;
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--black);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
    padding: 18px 44px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    z-index: 1;
    isolation: isolate;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.7s ease;
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold-soft) 0%, var(--gold) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow:
        0 15px 40px rgba(212, 175, 55, 0.35),
        0 5px 15px rgba(212, 175, 55, 0.2),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.btn-primary:hover::after {
    opacity: 0;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:active {
    transform: translateY(-1px);
}

/* Efecto pulso sutil en reposo */
.btn-primary {
    animation: btnPulse 3s ease-in-out infinite;
}

@keyframes btnPulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
    }
    50% {
        box-shadow: 0 4px 25px rgba(212, 175, 55, 0.35);
    }
}

.btn-outline {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--white);
    border: 1px solid var(--silver-dark);
    padding: 17px 44px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    background: transparent;
    cursor: pointer;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.btn-outline:hover::before {
    width: 100%;
}

.btn-outline:active {
    transform: translateY(-1px);
}

/* ===== STATS BAR ===== */
.stats-bar {
    background:
        radial-gradient(ellipse 800px 400px at 50% 0%, rgba(212, 175, 55, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 600px 300px at 50% 100%, rgba(212, 175, 55, 0.04) 0%, transparent 50%),
        linear-gradient(180deg, #181818 0%, #141414 50%, #101010 100%);
    padding: 100px 60px;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    position: relative;
    overflow: hidden;
}

.stats-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.stats-bar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.stat-item {
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, transparent, var(--gold-dark), transparent);
}

.stat-item:last-child::after {
    display: none;
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 400;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-pale) 50%, var(--gold) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
    transition: transform 0.4s ease;
}

.stat-item:hover .stat-num {
    transform: scale(1.1);
}

.stat-label {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--silver);
    transition: all 0.4s ease;
}

.stat-item:hover .stat-label {
    color: var(--gold);
    letter-spacing: 0.25em;
}

/* ===== GRID LAYOUTS ===== */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: center;
}

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

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

/* ===== CARDS ===== */
.card {
    background:
        radial-gradient(ellipse 300px 200px at 50% 0%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        linear-gradient(180deg, #1a1a1a 0%, #151515 50%, #121212 100%);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 48px 40px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

/* Efecto de luz que sigue el mouse */
.card::after {
    content: '';
    position: absolute;
    top: var(--mouse-y, 50%);
    left: var(--mouse-x, 50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, rgba(212, 175, 55, 0.04) 30%, transparent 70%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

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

.card:hover::after {
    opacity: 1;
}

.card:hover {
    background:
        radial-gradient(ellipse 400px 300px at 50% 0%, rgba(212, 175, 55, 0.06) 0%, transparent 50%),
        linear-gradient(180deg, #1e1e1e 0%, #181818 50%, #141414 100%);
    border-color: rgba(212, 175, 55, 0.25);
    transform: translateY(-12px);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(212, 175, 55, 0.08);
}

.card-icon {
    width: 48px;
    height: 48px;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: all 0.5s ease;
    position: relative;
}

.card-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border: 1px solid transparent;
    transition: all 0.5s ease;
}

.card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(201, 162, 39, 0.1);
}

.card:hover .card-icon::before {
    border-color: rgba(201, 162, 39, 0.3);
}

.card-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
    transition: all 0.5s ease;
}

.card:hover .card-icon svg {
    transform: scale(1.1);
}

.card-num {
    font-family: 'Playfair Display', serif;
    font-size: 11px;
    color: var(--gold-muted);
    letter-spacing: 0.2em;
    margin-bottom: 20px;
}

.card h3 {
    font-size: 22px;
    letter-spacing: 0.04em;
    margin-bottom: 16px;
}

.card p {
    font-size: 14px;
    color: var(--silver);
    line-height: 1.9;
    margin-bottom: 24px;
}

.card-link {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.card-link::after {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.card-link:hover {
    color: var(--gold);
}

.card-link:hover::after {
    width: 40px;
}

/* ===== IMAGE CARDS ===== */
.img-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.img-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid transparent;
    z-index: 2;
    pointer-events: none;
    transition: all 0.5s ease;
}

/* Efecto de brillo en esquina */
.img-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0) 40%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0) 60%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(45deg) translateY(100%);
    transition: transform 0.8s ease;
    z-index: 3;
    pointer-events: none;
}

.img-card:hover::before {
    border-color: var(--gold);
    inset: 12px;
}

.img-card:hover::after {
    transform: rotate(45deg) translateY(-100%);
}

.img-card img {
    transition: transform 1.2s ease, filter 0.6s ease;
    filter: grayscale(40%) brightness(0.6);
}

.img-card:hover img {
    transform: scale(1.1);
    filter: grayscale(0%) brightness(0.75);
}

.img-card-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 30%, rgba(10,10,10,0.4) 60%, rgba(10,10,10,0.95) 100%),
        radial-gradient(ellipse at 50% 100%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 36px;
    transition: all 0.6s ease;
}

.img-card:hover .img-card-overlay {
    background:
        linear-gradient(180deg, rgba(212, 175, 55, 0.03) 0%, rgba(10,10,10,0.5) 40%, rgba(10,10,10,0.98) 100%),
        radial-gradient(ellipse at 50% 100%, rgba(212, 175, 55, 0.1) 0%, transparent 60%);
}

.img-card h4 {
    font-size: 20px;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
    transform: translateY(10px);
    transition: transform 0.5s ease;
}

.img-card:hover h4 {
    transform: translateY(0);
}

.img-card span {
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    transform: translateY(10px);
    opacity: 0.7;
    transition: all 0.5s ease 0.1s;
}

.img-card:hover span {
    transform: translateY(0);
    opacity: 1;
}

/* ===== PORTFOLIO GRID ===== */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.portfolio-item {
    aspect-ratio: 4/3;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item .img-card {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.portfolio-item .img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-item.hidden {
    display: none;
}

.portfolio-item:hover img {
    transform: scale(1.06);
    filter: grayscale(0%);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10,10,10,0.9) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h5 {
    font-size: 18px;
    letter-spacing: 0.04em;
    margin-bottom: 6px;
}

.portfolio-overlay span {
    font-size: 9px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
}

/* ===== FEATURES LIST ===== */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
    letter-spacing: 0.05em;
    color: var(--silver-light);
}

.feature-item::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--gold);
}

/* ===== FOOTER ===== */
footer {
    padding: 120px 60px 60px;
    background:
        /* Orbes de luz */
        radial-gradient(ellipse 600px 400px at 20% 10%, rgba(212, 175, 55, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 500px 400px at 80% 90%, rgba(212, 175, 55, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse 400px 300px at 50% 50%, rgba(212, 175, 55, 0.02) 0%, transparent 50%),
        /* Textura */
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 80px,
            rgba(212, 175, 55, 0.005) 80px,
            rgba(212, 175, 55, 0.005) 81px
        ),
        /* Base */
        linear-gradient(180deg, #161616 0%, #111111 30%, #0d0d0d 60%, var(--black) 100%);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
}

footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
    position: relative;
}

.footer-brand {
    padding-right: 40px;
}

.footer-brand .logo {
    display: inline-block;
    margin-bottom: 8px;
}

.footer-brand .logo-text {
    font-size: 26px;
    letter-spacing: 0.15em;
}

.footer-brand p {
    font-size: 14px;
    color: var(--silver);
    margin-top: 24px;
    line-height: 2;
    max-width: 320px;
}

.footer-contact {
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--silver-light);
    margin-bottom: 12px;
    transition: all 0.4s ease;
    position: relative;
    padding-left: 0;
}

.footer-contact a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s ease;
}

.footer-contact a:hover {
    color: var(--gold);
    padding-left: 8px;
}

.footer-contact a:hover::before {
    width: 20px;
}

.footer-col h6 {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 32px;
    position: relative;
    display: inline-block;
}

.footer-col h6::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 24px;
    height: 1px;
    background: var(--gold-dark);
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-col li {
    position: relative;
}

.footer-col a {
    font-size: 14px;
    color: var(--silver);
    display: inline-block;
    transition: all 0.4s ease;
    position: relative;
}

.footer-col a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s ease;
}

.footer-col a:hover {
    color: var(--white);
    transform: translateX(8px);
}

.footer-col a:hover::after {
    width: 100%;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 48px;
    border-top: 1px solid rgba(255,255,255,0.06);
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: var(--gold-dark);
}

.footer-bottom p {
    font-size: 12px;
    color: var(--silver-dark);
    letter-spacing: 0.1em;
}

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

.footer-social a {
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--silver-dark);
    padding: 12px 20px;
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.footer-social a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.footer-social a:hover {
    color: var(--black);
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.footer-social a:hover::before {
    opacity: 1;
}

/* ===== FORMS ===== */
.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--silver-dark);
    margin-bottom: 12px;
}

.form-input,
.form-textarea {
    width: 100%;
    background: var(--charcoal);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 16px 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: var(--white);
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--gold);
}

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

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes borderGlow {
    0%, 100% { border-color: rgba(201, 162, 39, 0.3); }
    50% { border-color: rgba(201, 162, 39, 0.8); }
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

/* ===== CURSOR GLOW ===== */
.cursor-glow {
    position: fixed;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, rgba(212, 175, 55, 0.02) 40%, transparent 70%);
    pointer-events: none;
    z-index: 9998;
    mix-blend-mode: screen;
    filter: blur(1px);
    --cursor-x: 0px;
    --cursor-y: 0px;
    left: var(--cursor-x);
    top: var(--cursor-y);
    transform: translate(-50%, -50%);
}

/* Cursor personalizado tipo camara */
.cursor-camera {
    position: fixed;
    width: 40px;
    height: 40px;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
    --cursor-x: 0px;
    --cursor-y: 0px;
    left: var(--cursor-x);
    top: var(--cursor-y);
    transform: translate(-50%, -50%);
}

.cursor-camera.active {
    opacity: 1;
}

.cursor-camera::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid var(--gold);
    border-radius: 50%;
    animation: cursorPulse 1.5s ease-in-out infinite;
}

.cursor-camera::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
}

/* Crosshairs del cursor */
.cursor-crosshair {
    position: absolute;
    background: var(--gold);
}

.cursor-crosshair--h {
    width: 12px;
    height: 1px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cursor-crosshair--v {
    width: 1px;
    height: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes cursorPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

/* Ocultar cursor por defecto en elementos interactivos */
.img-card:hover,
.portfolio-item:hover {
    cursor: none;
}

/* ===== FLOATING PARTICLES ===== */
.particles-container {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: radial-gradient(circle, var(--gold) 0%, rgba(212, 175, 55, 0.3) 50%, transparent 100%);
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 6px rgba(212, 175, 55, 0.4);
}

.particle:nth-child(1) { left: 10%; animation: particleFloat 18s infinite 0s; }
.particle:nth-child(2) { left: 20%; animation: particleFloat2 22s infinite 2s; }
.particle:nth-child(3) { left: 30%; animation: particleFloat 20s infinite 4s; }
.particle:nth-child(4) { left: 40%; animation: particleFloat2 16s infinite 1s; }
.particle:nth-child(5) { left: 50%; animation: particleFloat 24s infinite 3s; }
.particle:nth-child(6) { left: 60%; animation: particleFloat2 19s infinite 5s; }
.particle:nth-child(7) { left: 70%; animation: particleFloat 21s infinite 2.5s; }
.particle:nth-child(8) { left: 80%; animation: particleFloat2 17s infinite 4.5s; }
.particle:nth-child(9) { left: 90%; animation: particleFloat 23s infinite 1.5s; }
.particle:nth-child(10) { left: 15%; animation: particleFloat2 20s infinite 3.5s; }
.particle:nth-child(11) { left: 25%; animation: particleFloat 25s infinite 6s; }
.particle:nth-child(12) { left: 45%; animation: particleFloat2 18s infinite 7s; }
.particle:nth-child(13) { left: 65%; animation: particleFloat 22s infinite 8s; }
.particle:nth-child(14) { left: 85%; animation: particleFloat2 19s infinite 9s; }
.particle:nth-child(15) { left: 5%; animation: particleFloat 21s infinite 10s; }

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0) scale(0);
        opacity: 0;
    }
    5% {
        opacity: 0.8;
        transform: translateY(90vh) translateX(10px) scale(1);
    }
    50% {
        transform: translateY(50vh) translateX(-20px) scale(1.2);
        opacity: 0.6;
    }
    95% {
        opacity: 0.8;
        transform: translateY(10vh) translateX(15px) scale(1);
    }
    100% {
        transform: translateY(-50px) translateX(0) scale(0);
        opacity: 0;
    }
}

@keyframes particleFloat2 {
    0% {
        transform: translateY(100vh) translateX(0) scale(0);
        opacity: 0;
    }
    5% {
        opacity: 0.7;
        transform: translateY(90vh) translateX(-15px) scale(0.8);
    }
    50% {
        transform: translateY(50vh) translateX(25px) scale(1);
        opacity: 0.5;
    }
    95% {
        opacity: 0.7;
        transform: translateY(10vh) translateX(-10px) scale(0.8);
    }
    100% {
        transform: translateY(-50px) translateX(0) scale(0);
        opacity: 0;
    }
}

/* ===== AMBIENT LIGHT ORBS ===== */
.ambient-orbs {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

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

.ambient-orb:nth-child(1) {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation: orbFloat 20s ease-in-out infinite;
}

.ambient-orb:nth-child(2) {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(180, 150, 80, 0.06) 0%, transparent 70%);
    bottom: -150px;
    left: -100px;
    animation: orbFloat 25s ease-in-out infinite reverse;
}

.ambient-orb:nth-child(3) {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: orbPulse 15s ease-in-out infinite;
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -20px) scale(1.05);
    }
    50% {
        transform: translate(-20px, 30px) scale(0.95);
    }
    75% {
        transform: translate(20px, 20px) scale(1.02);
    }
}

@keyframes orbPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.5;
    }
}

/* ===== PHOTOGRAPHY/360 THEMED ELEMENTS ===== */

/* Efecto de visor de camara en el hero */
.camera-viewfinder {
    position: absolute;
    inset: 40px;
    pointer-events: none;
    z-index: 5;
}

/* Esquinas del visor */
.viewfinder-corner {
    position: absolute;
    width: 60px;
    height: 60px;
    opacity: 0.3;
    transition: opacity 0.5s ease;
}

.viewfinder-corner::before,
.viewfinder-corner::after {
    content: '';
    position: absolute;
    background: var(--gold);
}

.viewfinder-corner--tl {
    top: 0;
    left: 0;
}
.viewfinder-corner--tl::before {
    top: 0;
    left: 0;
    width: 30px;
    height: 1px;
}
.viewfinder-corner--tl::after {
    top: 0;
    left: 0;
    width: 1px;
    height: 30px;
}

.viewfinder-corner--tr {
    top: 0;
    right: 0;
}
.viewfinder-corner--tr::before {
    top: 0;
    right: 0;
    width: 30px;
    height: 1px;
}
.viewfinder-corner--tr::after {
    top: 0;
    right: 0;
    width: 1px;
    height: 30px;
}

.viewfinder-corner--bl {
    bottom: 0;
    left: 0;
}
.viewfinder-corner--bl::before {
    bottom: 0;
    left: 0;
    width: 30px;
    height: 1px;
}
.viewfinder-corner--bl::after {
    bottom: 0;
    left: 0;
    width: 1px;
    height: 30px;
}

.viewfinder-corner--br {
    bottom: 0;
    right: 0;
}
.viewfinder-corner--br::before {
    bottom: 0;
    right: 0;
    width: 30px;
    height: 1px;
}
.viewfinder-corner--br::after {
    bottom: 0;
    right: 0;
    width: 1px;
    height: 30px;
}

.hero:hover .viewfinder-corner {
    opacity: 0.6;
}

/* Indicador 360 giratorio */
.rotation-indicator {
    position: absolute;
    bottom: 120px;
    right: 60px;
    width: 50px;
    height: 50px;
    pointer-events: none;
    z-index: 10;
    opacity: 0.4;
}

.rotation-indicator svg {
    width: 100%;
    height: 100%;
    animation: rotate360 20s linear infinite;
}

.rotation-indicator circle {
    fill: none;
    stroke: var(--gold);
    stroke-width: 0.5;
    stroke-dasharray: 4 4;
}

.rotation-indicator .arrow {
    fill: var(--gold);
}

@keyframes rotate360 {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Grid de enfoque sutil */
.focus-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero:hover .focus-grid {
    opacity: 0.15;
}

.focus-grid::before {
    content: '';
    position: absolute;
    top: 33.33%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.focus-grid::after {
    content: '';
    position: absolute;
    top: 66.66%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Lineas verticales del grid */
.focus-grid-line {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, transparent, var(--gold), transparent);
}

.focus-grid-line--v1 {
    left: 33.33%;
}

.focus-grid-line--v2 {
    left: 66.66%;
}

/* Punto central de enfoque */
.focus-point {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    pointer-events: none;
    z-index: 4;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero:hover .focus-point {
    opacity: 0.4;
}

.focus-point::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid var(--gold);
    border-radius: 50%;
    animation: focusPulse 2s ease-in-out infinite;
}

.focus-point::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
}

@keyframes focusPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

/* Efecto de lente flare */
.lens-flare {
    position: absolute;
    width: 200px;
    height: 200px;
    pointer-events: none;
    z-index: 6;
    opacity: 0;
    transition: opacity 0.8s ease;
    --flare-x: 50%;
    --flare-y: 20%;
    left: calc(var(--flare-x) - 100px);
    top: calc(var(--flare-y) - 100px);
}

.lens-flare.active {
    opacity: 0.6;
}

.lens-flare::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle,
        rgba(212, 175, 55, 0.3) 0%,
        rgba(212, 175, 55, 0.1) 30%,
        transparent 70%
    );
    filter: blur(2px);
}

.lens-flare::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 2px;
    background: linear-gradient(90deg,
        transparent,
        rgba(212, 175, 55, 0.2),
        rgba(255, 255, 255, 0.3),
        rgba(212, 175, 55, 0.2),
        transparent
    );
}

/* Indicador de angulo de vision */
.fov-indicator {
    position: absolute;
    bottom: 60px;
    left: 60px;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0.4;
    pointer-events: none;
    z-index: 10;
}

.fov-indicator span {
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    letter-spacing: 0.2em;
    color: var(--gold);
    text-transform: uppercase;
}

.fov-arc {
    width: 40px;
    height: 20px;
    border: 1px solid var(--gold);
    border-bottom: none;
    border-radius: 40px 40px 0 0;
    position: relative;
}

.fov-arc::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
}

/* Efecto de flash/captura */
.capture-flash {
    position: fixed;
    inset: 0;
    background: white;
    pointer-events: none;
    z-index: 10000;
    opacity: 0;
}

.capture-flash.active {
    animation: flashCapture 0.3s ease-out;
}

@keyframes flashCapture {
    0% {
        opacity: 0.8;
    }
    100% {
        opacity: 0;
    }
}

/* Icono de 360 en portfolio items */
.portfolio-360-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    opacity: 0;
    transform: scale(0.8) rotate(-180deg);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(4px);
}

.portfolio-360-badge svg {
    width: 18px;
    height: 18px;
    animation: rotate360 8s linear infinite;
}

.portfolio-360-badge circle {
    fill: none;
    stroke: var(--gold);
    stroke-width: 1;
}

.portfolio-360-badge path {
    fill: var(--gold);
}

.portfolio-item:hover .portfolio-360-badge {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

/* Indicador de interactividad */
.interactive-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 12px;
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(4px);
    z-index: 5;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s ease;
}

.interactive-badge span {
    font-size: 8px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
}

.img-card:hover .interactive-badge {
    opacity: 1;
    transform: translateY(0);
}

/* Efecto de escaneo en imagenes */
.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        transparent,
        rgba(212, 175, 55, 0.5),
        rgba(255, 255, 255, 0.8),
        rgba(212, 175, 55, 0.5),
        transparent
    );
    opacity: 0;
    pointer-events: none;
    z-index: 10;
}

.img-card:hover .scan-line {
    opacity: 1;
    animation: scanMove 2s ease-in-out infinite;
}

@keyframes scanMove {
    0% {
        top: 0;
    }
    50% {
        top: 100%;
    }
    100% {
        top: 0;
    }
}

/* Marcadores de esquina en cards */
.corner-marks {
    position: absolute;
    inset: 12px;
    pointer-events: none;
    z-index: 4;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.corner-marks::before,
.corner-marks::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
}

.corner-marks::before {
    top: 0;
    left: 0;
    border-top: 1px solid var(--gold);
    border-left: 1px solid var(--gold);
}

.corner-marks::after {
    bottom: 0;
    right: 0;
    border-bottom: 1px solid var(--gold);
    border-right: 1px solid var(--gold);
}

.card:hover .corner-marks {
    opacity: 0.5;
}

/* Data overlay estilo HUD */
.hud-data {
    position: absolute;
    bottom: 12px;
    left: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 8px;
    letter-spacing: 0.1em;
    color: var(--gold);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 5;
}

.hud-data::before {
    content: 'REC';
    display: inline-block;
    margin-right: 8px;
    padding: 2px 6px;
    background: rgba(212, 175, 55, 0.2);
    animation: recBlink 1s ease-in-out infinite;
}

@keyframes recBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.img-card:hover .hud-data {
    opacity: 0.6;
}

/* Lineas de perspectiva */
.perspective-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.5s ease;
    overflow: hidden;
}

.perspective-lines::before,
.perspective-lines::after {
    content: '';
    position: absolute;
    background: linear-gradient(var(--gold), transparent);
    width: 1px;
    height: 100%;
    opacity: 0.15;
}

.perspective-lines::before {
    left: 25%;
    transform: skewX(-15deg);
}

.perspective-lines::after {
    right: 25%;
    transform: skewX(15deg);
}

.hero:hover .perspective-lines {
    opacity: 1;
}

/* ===== RESPONSIVE PARA ELEMENTOS DE FOTOGRAFIA/360 ===== */

@media (max-width: 1200px) {
    .camera-viewfinder {
        inset: 30px;
    }

    .viewfinder-corner::before,
    .viewfinder-corner::after {
        width: 20px;
        height: 20px;
    }

    .rotation-indicator {
        width: 40px;
        height: 40px;
        bottom: 100px;
        right: 40px;
    }

    .fov-indicator {
        bottom: 40px;
        left: 40px;
    }
}

@media (max-width: 768px) {
    /* Ocultar elementos de cursor en móvil */
    .cursor-glow,
    .cursor-camera {
        display: none;
    }

    /* Simplificar viewfinder */
    .camera-viewfinder {
        inset: 20px;
    }

    .viewfinder-corner {
        width: 40px;
        height: 40px;
    }

    .viewfinder-corner::before {
        width: 20px !important;
    }

    .viewfinder-corner::after {
        height: 20px !important;
    }

    /* Ocultar elementos complejos en móvil */
    .focus-grid,
    .focus-point,
    .lens-flare,
    .perspective-lines {
        display: none;
    }

    /* Ajustar indicadores */
    .rotation-indicator {
        width: 35px;
        height: 35px;
        bottom: 80px;
        right: 20px;
    }

    .fov-indicator {
        bottom: 20px;
        left: 20px;
        gap: 8px;
    }

    .fov-indicator span {
        font-size: 8px;
    }

    .fov-arc {
        width: 30px;
        height: 15px;
    }

    /* Portfolio badges */
    .portfolio-360-badge {
        width: 30px;
        height: 30px;
        top: 12px;
        right: 12px;
    }

    .portfolio-360-badge svg {
        width: 14px;
        height: 14px;
    }

    /* Scan line y HUD */
    .scan-line {
        height: 1px;
    }

    .hud-data {
        font-size: 7px;
        bottom: 8px;
        left: 8px;
    }

    /* Corner marks en cards */
    .corner-marks {
        inset: 8px;
    }

    .corner-marks::before,
    .corner-marks::after {
        width: 15px;
        height: 15px;
    }

    /* Interactive badge */
    .interactive-badge {
        padding: 4px 8px;
        top: 12px;
        left: 12px;
    }

    .interactive-badge span {
        font-size: 7px;
    }

    /* Hero lines simplificadas */
    .hero-lines .hero-line {
        width: 100px;
    }

    /* Particles reducidas */
    .particle:nth-child(n+8) {
        display: none;
    }

    /* Ambient orbs reducidos */
    .ambient-orb:nth-child(3) {
        display: none;
    }

    .ambient-orb:nth-child(1) {
        width: 300px;
        height: 300px;
    }

    .ambient-orb:nth-child(2) {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 480px) {
    /* Ocultar más elementos en pantallas muy pequeñas */
    .camera-viewfinder,
    .rotation-indicator,
    .fov-indicator,
    .hero-lines,
    .ambient-orbs {
        display: none;
    }

    .portfolio-360-badge {
        width: 26px;
        height: 26px;
        top: 8px;
        right: 8px;
    }

    .scan-line,
    .hud-data,
    .corner-marks,
    .interactive-badge {
        display: none;
    }

    /* Reducir particles al mínimo */
    .particle:nth-child(n+5) {
        display: none;
    }
}

/* ===== HOVER GLOW EFFECT ===== */
.card,
.faq-item,
.process-step {
    transition: all 0.5s ease, box-shadow 0.5s ease;
}

.card:hover {
    box-shadow: 0 20px 60px rgba(201, 162, 39, 0.1);
}

.faq-item:hover {
    box-shadow: 0 10px 40px rgba(201, 162, 39, 0.08);
    transform: translateY(-5px);
}

/* ===== SECTION LABEL HOVER ===== */
.section-label {
    cursor: default;
    transition: all 0.3s ease;
}

.section-label:hover {
    color: var(--gold-soft);
    letter-spacing: 0.5em;
}

/* ===== PORTFOLIO ITEM TRANSITIONS ===== */
.portfolio-item {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item.filtered-in {
    opacity: 1;
    transform: scale(1);
}

.portfolio-item.filtered-out {
    opacity: 0;
    transform: scale(0.95);
}

.portfolio-item.delay-0 { transition-delay: 0s; }
.portfolio-item.delay-1 { transition-delay: 0.08s; }
.portfolio-item.delay-2 { transition-delay: 0.16s; }
.portfolio-item.delay-3 { transition-delay: 0.24s; }
.portfolio-item.delay-4 { transition-delay: 0.32s; }
.portfolio-item.delay-5 { transition-delay: 0.4s; }

/* ===== MAGNETIC BUTTONS ===== */
.magnetic-btn {
    --magnetic-x: 0px;
    --magnetic-y: 0px;
    transition: transform 0.2s ease;
}

.magnetic-btn.magnetic-active {
    transform: translate(var(--magnetic-x), var(--magnetic-y));
}

/* ===== TILT CARDS ===== */
.tilt-card {
    --tilt-x: 0deg;
    --tilt-y: 0deg;
    --mouse-x: 50%;
    --mouse-y: 50%;
    transition: transform 0.1s ease;
}

.tilt-card.tilt-active {
    transform: perspective(1000px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(-8px);
}

/* ===== LAZY LOAD IMAGES ===== */
.lazy-image {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.lazy-image.lazy-loaded {
    opacity: 1;
}

/* ===== STAGGER ANIMATIONS ===== */
.stagger-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stagger-item.stagger-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== FOOTER LINK ANIMATED ===== */
.footer-link-animated {
    transition: padding-left 0.3s ease, color 0.3s ease;
}

.footer-link-animated:hover {
    padding-left: 8px;
}

/* ===== RIPPLE EFFECT ===== */
.ripple {
    --ripple-x: 50%;
    --ripple-y: 50%;
    position: absolute;
    left: var(--ripple-x);
    top: var(--ripple-y);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0) translate(-50%, -50%);
    animation: rippleEffect 0.6s linear;
    pointer-events: none;
}

@keyframes rippleEffect {
    to {
        transform: scale(4) translate(-50%, -50%);
        opacity: 0;
    }
}

/* ===== FEATURE ITEM ANIMATION ===== */
.feature-item {
    transition: all 0.3s ease;
}

.feature-item:hover {
    padding-left: 10px;
    color: var(--white);
}

.feature-item:hover::before {
    width: 48px;
    background: var(--gold-soft);
}

/* ===== NAV LINK ANIMATION ===== */
nav a {
    position: relative;
}

nav a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

nav a:hover::before,
nav a.active::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* ===== LOGO ANIMATION ===== */
.logo-text {
    transition: all 0.4s ease;
}

.logo:hover .logo-text {
    letter-spacing: 0.25em;
}

.logo:hover .logo-text span {
    color: var(--gold-soft);
}

/* ===== PORTFOLIO FILTERS ===== */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 60px;
}

.portfolio-filter {
    background: none;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--silver-muted);
    cursor: pointer;
    padding: 12px 0;
    position: relative;
    transition: all 0.4s ease;
}

.portfolio-filter::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s ease;
}

.portfolio-filter:hover,
.portfolio-filter.active {
    color: var(--white);
}

.portfolio-filter.active::after {
    width: 100%;
}

/* ===== PROCESS STEPS ===== */
.process-step {
    text-align: center;
    padding: 40px 24px;
    position: relative;
    transition: all 0.5s ease;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 0;
    background: linear-gradient(180deg, var(--gold), transparent);
    transition: height 0.5s ease;
}

.process-step:hover::before {
    height: 30px;
}

.process-num {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 24px;
    opacity: 0.5;
    transition: all 0.5s ease;
    position: relative;
    display: inline-block;
}

.process-num::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 40px;
    height: 1px;
    background: var(--gold);
    transition: transform 0.5s ease;
}

.process-step:hover .process-num {
    opacity: 1;
    transform: scale(1.1);
}

.process-step:hover .process-num::after {
    transform: translateX(-50%) scaleX(1);
}

.process-step h4 {
    font-size: 18px;
    letter-spacing: 0.04em;
    margin-bottom: 16px;
    transition: color 0.4s ease;
}

.process-step:hover h4 {
    color: var(--gold);
}

.process-step p {
    font-size: 14px;
    color: var(--silver);
    line-height: 1.9;
}

/* ===== CONTACT FORM ===== */
.contact-form {
    background:
        radial-gradient(ellipse at 100% 0%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        var(--charcoal);
    padding: 56px;
    border: 1px solid rgba(255,255,255,0.06);
    position: relative;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 40px;
    right: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
}

.contact-form label {
    display: block;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--silver);
    margin-bottom: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    background: var(--black);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 18px 22px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: var(--white);
    transition: all 0.4s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--silver-dark);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
    background: rgba(22, 22, 22, 1);
}

.contact-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23c9a227' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.contact-form select option {
    background: var(--black);
    color: var(--white);
}

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

/* ===== CONTACT INFO ===== */
.contact-info {
    padding-left: 40px;
}

.contact-block {
    margin-bottom: 32px;
}

.contact-block h3 {
    font-size: 24px;
    letter-spacing: 0.04em;
    margin-bottom: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.contact-icon {
    width: 52px;
    height: 52px;
    border: 1px solid var(--gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
    position: relative;
}

.contact-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border: 1px solid transparent;
    transition: all 0.4s ease;
}

.contact-item:hover .contact-icon {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.15);
}

.contact-item:hover .contact-icon::before {
    border-color: rgba(212, 175, 55, 0.3);
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
    transition: transform 0.4s ease;
}

.contact-item:hover .contact-icon svg {
    transform: scale(1.1);
}

.contact-item .contact-label {
    display: block;
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--silver-muted);
    margin-bottom: 4px;
}

.contact-item a,
.contact-item span {
    font-size: 15px;
    color: var(--silver-light);
}

.contact-item a:hover {
    color: var(--gold);
}

.contact-item a {
    position: relative;
}

.contact-item a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s ease;
}

.contact-item a:hover::after {
    width: 100%;
}

/* ===== SOCIAL LINKS ===== */
.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 44px;
    height: 44px;
    border: 1px solid var(--silver-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.social-link svg {
    width: 18px;
    height: 18px;
    stroke: var(--silver);
    fill: none;
    stroke-width: 1.5;
    transition: all 0.4s ease;
}

.social-link:hover {
    border-color: var(--gold);
    background: rgba(201, 162, 39, 0.1);
}

.social-link:hover svg {
    stroke: var(--gold);
}

/* ===== FAQ GRID ===== */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.faq-item {
    background: var(--charcoal);
    padding: 36px;
    border: 1px solid rgba(255,255,255,0.04);
    transition: all 0.4s ease;
}

.faq-item:hover {
    border-color: rgba(201, 162, 39, 0.2);
}

.faq-item h4 {
    font-size: 16px;
    letter-spacing: 0.03em;
    margin-bottom: 16px;
    line-height: 1.4;
}

.faq-item p {
    font-size: 14px;
    color: var(--silver);
    line-height: 1.9;
}

/* ===== SILVER LIGHT ===== */
.silver-light {
    color: var(--silver);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .stat-item:nth-child(2)::after {
        display: none;
    }

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

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

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

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

    .contact-info {
        padding-left: 0;
    }
}

/* ===== MOBILE MENU STYLES ===== */

/* Hamburger Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.25);
    cursor: pointer;
    padding: 12px;
    gap: 6px;
    z-index: 10000;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.mobile-menu-btn::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3) 0%, transparent 50%, rgba(212, 175, 55, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.mobile-menu-btn:hover::before,
.mobile-menu-btn.active::before {
    opacity: 1;
}

.mobile-menu-btn:hover {
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

.hamburger-line {
    display: block;
    width: 22px;
    height: 1.5px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    border-radius: 1px;
}

.mobile-menu-btn:hover .hamburger-line {
    background: linear-gradient(90deg, var(--gold), var(--gold-soft), var(--gold));
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

/* Hamburger animation when active */
.mobile-menu-btn.active {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

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

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

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

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 0%, rgba(212, 175, 55, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(212, 175, 55, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(15, 15, 15, 0.95) 0%, #0a0a0a 100%),
        #0a0a0a;
    z-index: 9999;
    display: none;
    flex-direction: column;
    padding: 100px 40px 40px;
    overflow-y: auto;
}

.mobile-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
    opacity: 0.3;
}

.mobile-menu.active {
    display: flex;
}

/* Mobile Navigation */
.mobile-nav {
    width: 100%;
    margin-bottom: 40px;
    position: relative;
}

.mobile-nav::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.5;
}

.mobile-nav ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: block !important;
}

.mobile-nav li {
    display: block !important;
    margin: 0 !important;
    text-align: center;
    overflow: hidden;
}

.mobile-nav a {
    display: block !important;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 400;
    color: var(--white);
    padding: 16px 0;
    letter-spacing: 0.06em;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav a::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transition: width 0.4s ease;
}

.mobile-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
}

.mobile-nav li:last-child a::after {
    display: none;
}

.mobile-nav a:hover,
.mobile-nav a:active {
    color: var(--gold);
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.mobile-nav a:hover::before {
    width: 60px;
}

/* Mobile Menu Bottom Section */
.mobile-menu-bottom {
    margin-top: auto;
    text-align: center;
    position: relative;
}

.mobile-menu-bottom::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    transform: translateX(-50%) rotate(45deg);
}

/* Mobile CTA Button */
.mobile-cta {
    display: inline-block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--black);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 50%, var(--gold) 100%);
    background-size: 200% 200%;
    padding: 16px 36px;
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
}

.mobile-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.mobile-cta:hover {
    background-position: 100% 100%;
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.35);
    transform: translateY(-2px);
}

.mobile-cta:hover::before {
    left: 100%;
}

/* Mobile Language Selector */
.mobile-lang {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 28px;
    padding: 0 20px;
    max-width: 100%;
}

.mobile-lang-form {
    display: inline-block;
}

.mobile-lang button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    font-size: 0;
    color: var(--silver);
    padding: 8px 10px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    background: rgba(212, 175, 55, 0.02);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    font-family: inherit;
    border-radius: 4px;
}

.mobile-lang button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-lang button:hover::before,
.mobile-lang button.active::before {
    opacity: 1;
}

.mobile-lang button:hover,
.mobile-lang button.active {
    color: var(--gold);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 2px 15px rgba(212, 175, 55, 0.1);
}

.mobile-lang button svg {
    flex-shrink: 0;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

/* Mobile Menu Footer */
.mobile-menu-footer {
    text-align: center;
    padding-top: 24px;
    position: relative;
}

.mobile-menu-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

.mobile-menu-footer p {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    letter-spacing: 0.2em;
    color: var(--silver);
    margin: 0 0 6px 0;
}

.mobile-menu-footer p span {
    color: var(--gold);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.mobile-menu-footer > span {
    font-size: 8px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--silver-dark);
    display: block;
    opacity: 0.7;
}

/* Body lock when menu is open */
body.menu-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    header {
        padding: 24px;
    }

    header.scrolled {
        padding: 16px 24px;
    }

    header nav, .header-cta, .lang-selector {
        display: none;
    }

    .header-actions {
        gap: 0;
    }

    .mobile-menu-btn {
        display: flex;
    }

    section {
        padding: 100px 24px;
    }

    .container {
        padding: 0 24px;
    }

    .page-header {
        padding: 160px 24px 80px;
    }

    .stats-bar {
        padding: 60px 24px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .stat-item::after {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 16px;
    }

    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

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

    .portfolio-item.tall {
        grid-row: span 1;
    }

    footer {
        padding: 80px 24px 40px;
    }

    footer::before {
        left: 5%;
        right: 5%;
    }

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

    .footer-brand {
        padding-right: 0;
        text-align: center;
    }

    .footer-brand p {
        max-width: 100%;
        margin: 24px auto 0;
    }

    .footer-brand .logo {
        display: block;
        text-align: center;
    }

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

    .footer-col h6 {
        display: block;
    }

    .footer-col h6::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-col a:hover {
        transform: translateX(0);
    }

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

    .footer-contact a {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }

    .footer-social {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-social a {
        padding: 10px 16px;
        font-size: 9px;
    }

    .portfolio-filters {
        flex-wrap: wrap;
        gap: 16px;
    }

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

    .contact-form {
        padding: 32px 24px;
    }

    .process-num {
        font-size: 36px;
    }
}

/* ===== SUBTLE PROFESSIONAL DETAILS ===== */

/* Línea decorativa dorada sutil en secciones */
section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
    opacity: 0.3;
}

section:last-of-type::after {
    display: none;
}


/* Glow sutil en cards al hover */
.card:hover,
.img-card:hover {
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(212, 175, 55, 0.05);
}

/* Animación suave de entrada para elementos */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal.visible {
    animation: fadeInUp 0.6s ease forwards;
}

/* Línea dorada sutil en el header al hacer scroll */
header.scrolled::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
}

/* Mejora del footer - línea superior elegante */
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.4;
}

/* Efecto shimmer sutil en el logo */
.logo-text {
    position: relative;
}

.logo-text::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.8s ease;
}

.logo:hover .logo-text::after {
    left: 100%;
}

/* Transición suave en todos los elementos interactivos */
a, button, input, textarea {
    transition: all 0.3s ease;
}

/* Mejora visual del scrollbar */
::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* ===== ADDITIONAL ENHANCEMENTS ===== */

/* Glow effect on focus for accessibility */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
}

/* Subtle text selection styling */
::selection {
    background: rgba(212, 175, 55, 0.3);
    color: var(--white);
}

::-moz-selection {
    background: rgba(212, 175, 55, 0.3);
    color: var(--white);
}

/* Loading skeleton animation */
@keyframes skeletonLoading {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.skeleton {
    background: linear-gradient(90deg, var(--charcoal) 25%, var(--charcoal-light) 50%, var(--charcoal) 75%);
    background-size: 200% 100%;
    animation: skeletonLoading 1.5s ease infinite;
}

/* Enhanced link hover with underline animation */
.content-link {
    position: relative;
    display: inline-block;
}

.content-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s ease;
}

.content-link:hover::after {
    width: 100%;
}

/* Breathing animation for important elements */
@keyframes breathe {
    0%, 100% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
}

.hero-scroll {
    animation: breathe 3s ease-in-out infinite;
}

/* Testimonial quote mark enhancement */
.testimonial-quote {
    position: relative;
}

.testimonial-quote::after {
    content: '"';
    position: absolute;
    bottom: -20px;
    right: 0;
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    color: rgba(212, 175, 55, 0.1);
    line-height: 1;
    pointer-events: none;
}

/* Service card number glow on hover */
.card-num {
    transition: all 0.4s ease;
}

.card:hover .card-num {
    color: var(--gold);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

/* Stats bar divider animation */
.stat-item::after {
    transition: all 0.5s ease;
}

.stat-item:hover::after {
    background: linear-gradient(180deg, transparent, var(--gold), transparent);
    height: 80px;
}

/* Ripple effect on buttons - styles defined in RIPPLE EFFECT section */
.btn-primary,
.btn-outline {
    position: relative;
    overflow: hidden;
}

/* Enhanced portfolio overlay */
.portfolio-overlay h5 {
    transform: translateY(10px);
    transition: all 0.4s ease 0.1s;
}

.portfolio-overlay span {
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.4s ease 0.2s;
}

.portfolio-item:hover .portfolio-overlay h5 {
    transform: translateY(0);
}

.portfolio-item:hover .portfolio-overlay span {
    transform: translateY(0);
    opacity: 1;
}

/* Corner accents on hover */
.img-card-overlay::before,
.img-card-overlay::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border: 1px solid var(--gold);
    opacity: 0;
    transition: all 0.5s ease;
}

.img-card-overlay::before {
    top: 20px;
    left: 20px;
    border-right: none;
    border-bottom: none;
}

.img-card-overlay::after {
    bottom: 20px;
    right: 20px;
    border-left: none;
    border-top: none;
}

.img-card:hover .img-card-overlay::before,
.img-card:hover .img-card-overlay::after {
    opacity: 0.5;
}

/* Animated border for active nav link */
nav a.active {
    color: var(--gold);
}

/* Enhanced footer brand */
.footer-brand .logo-text {
    transition: all 0.4s ease;
}

.footer-brand:hover .logo-text {
    letter-spacing: 0.2em;
}

.footer-brand:hover .logo-text span {
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

/* Smooth background transition for sections */
section {
    background-attachment: fixed;
}

/* Icon rotation on card hover */
.card-icon svg {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover .card-icon svg {
    transform: rotate(10deg) scale(1.1);
}

/* Contact icon pulse */
.contact-icon {
    position: relative;
}

.contact-icon::after {
    content: '';
    position: absolute;
    inset: -8px;
    border: 1px solid var(--gold);
    opacity: 0;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(0.9);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
}

/* 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;
    }

    .particles-container,
    .hero-lines,
    .cursor-glow {
        display: none;
    }
}

/* ===== UTILITY CLASSES (CSP Compliant) ===== */

/* Grid gaps */
.gap-80 { gap: 80px; }
.gap-60 { gap: 60px; }
.gap-40 { gap: 40px; }

/* Margins */
.mb-40 { margin-bottom: 40px; }
.mb-25 { margin-bottom: 25px; }
.mb-16 { margin-bottom: 16px; }
.mt-48 { margin-top: 48px; }
.mt-40 { margin-top: 40px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.m-auto-80 { margin: 0 auto 80px; }

/* Padding */
.p-alert { padding: 18px 24px; }
.p-cta { padding: 160px 60px; }

/* Text */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-silver-light { color: var(--silver-light); }
.lh-18 { line-height: 1.8; }

/* Width */
.w-100 { width: 100%; }
.max-w-600 { max-width: 600px; }
.max-w-500 { max-width: 500px; }

/* Font sizes */
.fs-cta { font-size: clamp(32px, 4vw, 48px); }

/* Border radius */
.rounded-6 { border-radius: 6px; }

/* Alerts */
.alert {
    margin-bottom: 25px;
    padding: 18px 24px;
    border-radius: 6px;
}

.alert-success {
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold-soft);
}

.alert-error {
    background: rgba(220, 53, 69, 0.15);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #f5a5a5;
}

/* Contact block titles */
.contact-block-title {
    color: var(--gold);
    margin-bottom: 16px;
}

/* Contact schedule text */
.contact-schedule {
    color: var(--silver-light);
    line-height: 1.8;
}

/* FAQ header container */
.faq-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 80px;
}

/* CTA section */
.cta-section {
    text-align: center;
    padding: 160px 60px;
}

.cta-title {
    font-size: clamp(32px, 4vw, 48px);
}

.cta-desc {
    max-width: 500px;
    margin: 0 auto 40px;
}

/* Services intro */
.services-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 100px;
}

/* Feature card styling */
.feature-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: var(--gold);
    opacity: 0.15;
}

/* Experience cards */
.exp-card-number {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    color: var(--gold);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 20px;
}

/* Portfolio section */
.portfolio-header {
    text-align: center;
    margin-bottom: 80px;
}

/* Solutions pricing */
.pricing-featured {
    transform: scale(1.05);
    border-color: var(--gold);
}

/* Hero section variants */
.hero-height-80 {
    min-height: 80vh;
}

.hero-height-70 {
    min-height: 70vh;
}

/* About section image container */
.about-image-container {
    position: relative;
    aspect-ratio: 4/5;
}

.about-image-container img {
    filter: grayscale(20%);
}

.about-image-border {
    position: absolute;
    top: 24px;
    left: 24px;
    right: -24px;
    bottom: -24px;
    border: 1px solid var(--gold);
    opacity: 0.25;
    z-index: -1;
}

/* Section header centered */
.section-header-center {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 80px;
}

/* Margin bottom variations */
.mb-32 { margin-bottom: 32px; }

/* Order utilities for grid */
.order-1 { order: 1; }
.order-2 { order: 2; }

/* Image card with aspect ratio */
.img-card-43 {
    aspect-ratio: 4/3;
}

.img-card-34 {
    aspect-ratio: 3/4;
}

/* Padding utilities */
.pt-0 { padding-top: 0; }

/* Success message after form submission */
.success-message {
    text-align: center;
    padding: 60px 40px;
    background: rgba(22, 22, 22, 0.8);
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.success-message h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 20px;
}

.success-message p {
    color: var(--silver-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.success-message .btn-primary {
    margin-top: 30px;
}

/* Responsive adjustments for utility classes */
@media (max-width: 768px) {
    .gap-80 { gap: 40px; }
    .p-cta { padding: 80px 30px; }
    .cta-section { padding: 80px 30px; }
}
