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

html {
    scroll-behavior: smooth;
}


body {
    font-family: 'Open Sans', serif;
    background: #030303;
    color: #ffffff;
    overflow-x: hidden;
}

/* Smooth Scroll Container */
.smooth-scroll {
    will-change: transform;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: #080808;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #ffd040, #ffffff);
    border-radius: 2px;
}

/* Cursor glow – brand yellow highlight under mouse (V2 style) */
.cursor-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle,
    rgba(212, 168, 75, 0.14) 0%,
    rgba(212, 168, 75, 0.04) 40%,
    transparent 70%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    z-index: 5;
    left: 0;
    top: 0;
}

.cursor-glow.hidden {
    opacity: 0;
}

.cursor-glow.visible {
    opacity: 1;
}

/* Noise Overlay */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;

    inset: 0;

    /* ключевые строки */
    contain: strict;
    clip-path: inset(0);
    pointer-events: none;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
    will-change: transform;
}

.gradient-orb-1 {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 168, 75, 0.25), transparent 60%);
    top: -300px;
    right: -200px;
    animation: orb-float-1 25s infinite ease-in-out;
}

.gradient-orb-2 {
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15), transparent 60%);
    bottom: -400px;
    left: -300px;
    animation: orb-float-2 30s infinite ease-in-out;
}

.gradient-orb-3 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.1), transparent 60%);
    top: 40%;
    left: 30%;
    animation: orb-float-3 20s infinite ease-in-out;
}

@keyframes orb-float-1 {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
    33% { transform: translate(100px, 50px) scale(1.1) rotate(120deg); }
    66% { transform: translate(-50px, -80px) scale(0.9) rotate(240deg); }
}

@keyframes orb-float-2 {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
    33% { transform: translate(-80px, -60px) scale(1.15) rotate(-120deg); }
    66% { transform: translate(60px, 40px) scale(0.85) rotate(-240deg); }
}

@keyframes orb-float-3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(80px, -60px) scale(1.2); }
}

/* Floating Particles */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    background: rgba(212, 168, 75, 0.6);
    border-radius: 50%;
    animation: particle-rise linear infinite;
}

@keyframes particle-rise {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 1; transform: translateY(90vh) scale(1); }
    90% { opacity: 1; }
    100% { transform: translateY(-10vh) scale(0); opacity: 0; }
}

/* Grid Lines Background */
.grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.03;
    background-image:
        linear-gradient(90deg, rgba(212, 168, 75, 0.5) 1px, transparent 1px),
        linear-gradient(rgba(212, 168, 75, 0.5) 1px, transparent 1px);
    background-size: 80px 80px;
}

/* Navigation */
.nav-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-container.scrolled {
    background: rgba(3, 3, 3, 0.9);
    backdrop-filter: blur(30px);
    padding: 1rem;
    border-bottom: 1px solid rgba(212, 168, 75, 0.1);
}

.nav-link {
    position: relative;
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Montserrat', serif;
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: all 0.4s ease;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, #ffd040, #ffffff);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: #ffffff;
}

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

.nav-link.active {
    color: #ffd040;
}

.nav-link.active::before {
    transform: scaleX(1);
}

/* Logo */
.logo {
    font-family: 'Bodoni Moda', serif;
    font-weight: 500;
    font-size: 1.8rem;
    letter-spacing: 0.4em;
    background: linear-gradient(135deg, #ffd040 0%, #ffffff 50%, #ffd040 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: logo-shimmer 3s linear infinite;
}

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(3, 3, 3, 0.98);
    backdrop-filter: blur(30px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-link {
    font-size: clamp(2rem, 8vw, 4rem);
    font-family: 'Bodoni Moda', serif;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.3);
    margin: 0.5rem 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(50px);
    opacity: 0;
}

.mobile-menu.open .mobile-menu-link {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu-link:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu-link:nth-child(5) { transition-delay: 0.3s; }

.mobile-menu-link:hover {
    color: #ffd040;
    transform: translateX(20px);
}
.mobile-menu-link.active {
    color: #ffd040;
}
/* Hamburger */
.hamburger {
    width: 32px;
    height: 24px;
    position: relative;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    position: absolute;
    width: 100%;
    height: 2px;
    background: #ffffff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger span:nth-child(3) { bottom: 0; }

.hamburger.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    transform: translateY(-50%) scaleX(0);
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* Buttons */
.btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 1rem;
    background: transparent;
    color: #ffd040;
    font-family: 'Montserrat', serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.8rem;
    border: 1px solid rgba(212, 168, 75, 0.5);
    cursor: pointer;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 400px;
    width: 100%;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffd040, #b8922a);
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.btn-primary:hover {
    color: #030303;
    border-color: #ffd040;
    box-shadow: 0 20px 40px rgba(212, 168, 75, 0.3);
}

.btn-primary:hover::before {
    transform: translateY(0);
}

.btn-secondary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 1rem;
    background: linear-gradient(135deg, #ffd040, #b8922a);
    color: #030303;
    font-family: 'Montserrat', serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.8rem;
    border: none;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 280px;
    width: 100%;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-secondary:hover {
    box-shadow: 0 20px 40px rgba(212, 168, 75, 0.4);
    transform: translateY(-3px);
}

.btn-secondary:hover::before {
    width: 300px;
    height: 300px;
}

/* Text Animations */
.split-text {
    overflow: hidden;
}

.split-text .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.split-text.animate .char {
    opacity: 1;
    transform: translateY(0);
}

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

.hero-title {
    font-family: 'Bodoni Moda', serif;
    font-size: clamp(3rem, 15vw, 12rem);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: -0.02em;
}

.hero-title .line {
    display: block;
    overflow: hidden;
}

.hero-title .line-inner {
    display: block;
    transform: translateY(110%);
    animation: text-reveal 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hero-title .line:nth-child(2) .line-inner {
    animation-delay: 0.15s;
}

@keyframes text-reveal {
    to { transform: translateY(0); }
}

.hero-subtitle {
    opacity: 0;
    transform: translateY(30px);
    animation: fade-up 1s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.6s;
}

.hero-buttons {
    opacity: 0;
    transform: translateY(30px);
    animation: fade-up 1s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.8s;
}

@keyframes fade-up {
    to { opacity: 1; transform: translateY(0); }
}

.hero-image-container {
    position: relative;
    opacity: 0;
    transform: scale(0.9) translateX(50px);
    animation: hero-image-reveal 1.4s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.4s;
}

@keyframes hero-image-reveal {
    to { opacity: 1; transform: scale(1) translateX(0); }
}

.hero-image-frame {
    position: relative;
    overflow: hidden;
}

.hero-image-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 168, 75, 0.2), transparent);
    z-index: 1;
}

.hero-image-frame img {
    transition: transform 8s ease;
}

.hero-image-frame:hover img {
    transform: scale(1.1);
}

/* Floating Elements */
.floating-element {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%) !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    animation: fade-up 1s cubic-bezier(0.4, 0, 0.2, 1) forwards 1.2s;
}

.scroll-indicator .mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(212, 168, 75, 0.5);
    border-radius: 13px;
    position: relative;
}

.scroll-indicator .mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    width: 4px;
    height: 8px;
    background: #ffd040;
    border-radius: 2px;
    transform: translateX(-50%);
    animation: scroll-wheel 2s ease-in-out infinite;
}

@keyframes scroll-wheel {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.3; transform: translateX(-50%) translateY(12px); }
}

/* Section Animations */
.reveal-section {
    opacity: 0;
    transform: translateY(80px);
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(80px);
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

.reveal-rotate {
    opacity: 0;
    transform: perspective(1000px) rotateX(10deg) translateY(50px);
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-rotate.visible {
    opacity: 1;
    transform: perspective(1000px) rotateX(0deg) translateY(0);
}

/* Stagger Children */
.stagger-children > * {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.5s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.6s; }

.stagger-children.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* Marquee */
.marquee {
    overflow: hidden;
    white-space: nowrap;
    padding: 2rem 0;
}

.marquee-track {
    display: inline-flex;
    animation: marquee 40s linear infinite;
}

.marquee-track span {
    font-family: 'Bodoni Moda', serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 400;
    color: transparent;
    -webkit-text-stroke: 1px rgba(212, 168, 75, 0.15);
    padding: 0 3rem;
    text-transform: uppercase;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Horizontal Scroll */
.horizontal-scroll-section {
    position: relative;
    height: 400vh;
    -webkit-backface-visibility: hidden;
}

.horizontal-scroll-container {
    position: sticky;
    top: 0;
    height: 100vh;
    height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 1;
}

.horizontal-scroll-track {
    display: flex;
    gap: 5vw;
    padding: 0 10vw;
    transition: transform 0.05s linear;
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    perspective: 1000;
    -webkit-perspective: 1000;
}

.horizontal-scroll-item {
    flex-shrink: 0;
    /*width: 45vw;*/
    max-width: 600px;
    width: 100%;
    position: relative;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

@media (max-width: 768px) {
    .horizontal-scroll-item {
        width: 80vw;
    }
}

.horizontal-scroll-item-image {
    aspect-ratio: 3/4;
    overflow: hidden;
    max-height: 80vh;
    width: 100%;
    position: relative;
}

.horizontal-scroll-item-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(3, 3, 3, 0.8) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.horizontal-scroll-item:hover .horizontal-scroll-item-image::before {
    opacity: 1;
}

.horizontal-scroll-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.horizontal-scroll-item:hover img {
    transform: scale(1.1);
}

.horizontal-scroll-number {
    position: absolute;
    top: -3rem;
    right: 0;
    font-family: 'Bodoni Moda', serif;
    font-size: clamp(6rem, 12vw, 10rem);
    font-weight: 400;
    color: transparent;
    -webkit-text-stroke: 1px rgba(212, 168, 75, 0.2);
    line-height: 1;
    z-index: -1;
    pointer-events: none;
}

/* Cards */
.glass-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    /*transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);*/
    position: relative;
    overflow: hidden;
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffd040, transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 168, 75, 0.3);
    /*transform: translateY(-10px);*/
    transform: scale(1.15);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(212, 168, 75, 0.1);
}

.glass-card:hover::before {
    transform: translateX(100%);
}

/* Project Cards */
.project-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.project-card-image {
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.project-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, transparent 40%, rgba(3, 3, 3, 0.95) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.project-card:hover .project-card-overlay {
    opacity: 1;
}

.project-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover .project-card-content {
    transform: translateY(0);
    opacity: 1;
}

/* Value Keywords (Featured Projects) */
.value-keywords {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.value-keyword {
    font-family: 'Bodoni Moda', serif;
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #fff;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.value-keyword.visible {
    opacity: 1;
    transform: translateY(0);
}

.value-keyword::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffd040;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.15s;
}

.value-keyword.visible::after {
    width: 100%;
}

.value-connector {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: rgba(255, 255, 255, 0.4);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    align-self: center;
}

.value-connector.visible {
    opacity: 1;
    transform: scale(1);
}

@media (max-width: 480px) {
    .value-keywords {
        flex-direction: column;
        gap: 1.5rem;
    }
    .value-connector {
        display: none;
    }
}

/* Process Section (Our Process - V2 style) */
.process-container {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    gap: 0;
}

.process-header {
    grid-column: 1 / -1;
}

.process-timeline {
    grid-column: 2;
    grid-row: 2;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-timeline .process-timeline-line,
.process-timeline .timeline-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
}

.process-timeline .timeline-progress {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 0%;
    background: linear-gradient(to bottom, #ffd040, transparent);
    transition: height 0.1s linear;
}

.process-steps {
    grid-column: 1 / -1;
    grid-row: 2;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.process-step {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    align-items: center;
    position: relative;
}

.process-step:nth-child(odd) .step-content {
    grid-column: 1;
    text-align: right;
    padding-right: 3rem;
}

.process-step:nth-child(even) .step-content {
    grid-column: 3;
    text-align: left;
    padding-left: 3rem;
}

.step-marker {
    grid-column: 2;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #030303;
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 10;
    justify-self: center;
    transition: all 0.4s ease;
}

.process-step.active .step-marker {
    border-color: #ffd040;
    background: #ffd040;
    box-shadow: 0 0 20px rgba(212, 168, 75, 0.4);
}

.process-step .step-number {
    display: block;
    margin-bottom: 0.5rem;
}

.process-step.active .step-number {
    color: #ffd040;
}

.process-step .step-title {
    opacity: 0.5;
    transition: opacity 0.4s ease;
}

.process-step.active .step-title {
    opacity: 1;
}

.process-step .step-description {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.process-step.active .step-description {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .process-container {
        grid-template-columns: 40px 1fr;
    }

    .process-timeline {
        grid-column: 1;
    }

    .process-timeline .process-timeline-line,
    .process-timeline .timeline-line {
        left: 20px;
    }

    .process-timeline .timeline-progress {
        left: 20px;
    }

    .process-steps {
        grid-column: 1 / -1;
    }

    .process-step {
        grid-template-columns: 40px 1fr;
    }

    .process-step:nth-child(odd) .step-content,
    .process-step:nth-child(even) .step-content {
        grid-column: 2;
        text-align: left;
        padding-left: 2rem;
        padding-right: 0;
    }

    .step-marker {
        grid-column: 1;
    }
}

/* Process Timeline (legacy / other uses) */
.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(212, 168, 75, 0.3), transparent);
    transform: translateX(-50%);
}

@media (max-width: 768px) {
    .timeline-line {
        left: 20px;
    }
}

.timeline-dot {
    position: absolute;
    left: 50%;
    width: 16px;
    height: 16px;
    background: #030303;
    border: 2px solid #ffd040;
    border-radius: 50%;
    transform: translateX(-50%);
    transition: all 0.4s ease;
}

.timeline-dot::before {
    content: '';
    position: absolute;
    inset: 3px;
    background: #ffd040;
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.4s ease;
}

.timeline-item:hover .timeline-dot::before {
    transform: scale(1);
}

.timeline-item:hover .timeline-dot {
    box-shadow: 0 0 30px rgba(212, 168, 75, 0.5);
}

@media (max-width: 768px) {
    .timeline-dot {
        left: 20px;
    }
}

/* Counter Animation */
.counter-value {
    font-family: 'Bodoni Moda', serif;
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 400;
    /*background: linear-gradient(135deg, #ffd040, #f0d078);*/
    background: #ffffff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Testimonial Card */
.testimonial-card {
    position: relative;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), transparent);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.6s ease;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1.5rem;
    left: 2rem;
    font-size: 8rem;
    font-family: 'Bodoni Moda', serif;
    color: rgba(212, 168, 75, 0.1);
    line-height: 1;
}

.testimonial-card:hover {
    border-color: rgba(212, 168, 75, 0.3);
    transform: translateY(-5px);
}

/* Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffd040, #ffffff);
    z-index: 10000;
    transform-origin: left;
    transform: scaleX(0);
}

/* Contact Modal */
.contact-modal {
    position: fixed;
    inset: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-modal.open {
    opacity: 1;
    visibility: visible;
}

.contact-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3, 3, 3, 0.95);
    backdrop-filter: blur(30px);
}

.contact-modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    overflow-y: auto;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.98), rgba(8, 8, 8, 0.98));
    border: 1px solid rgba(212, 168, 75, 0.2);
    transform: scale(0.9) translateY(50px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-modal.open .contact-modal-content {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.contact-modal-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    z-index: 10;
}

.contact-modal-close:hover {
    border-color: #ffd040;
    transform: rotate(90deg);
    background: rgba(212, 168, 75, 0.1);
}

.contact-modal-close svg {
    width: 18px;
    height: 18px;
    stroke: rgba(255, 255, 255, 0.6);
    transition: stroke 0.3s ease;
}

.contact-modal-close:hover svg {
    stroke: #ffd040;
}

/* Form Styles */
.form-group {
    position: relative;
    margin-bottom: 2.5rem;
}

.form-input {
    width: 100%;
    padding: 1.5rem 0 0.75rem;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-family: 'Open Sans', serif;
    font-size: 1rem;
    transition: all 0.4s ease;
    outline: none;
}

.form-input:focus {
    /*border-color: #ffd040;*/
    border-color: #ffffff;
}

.form-label {
    position: absolute;
    top: 1.5rem;
    left: 0;
    font-family: 'Montserrat', serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.4);
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.form-input:focus + .form-label,
.form-input:not(:placeholder-shown) + .form-label {
    top: 0;
    font-size: 0.7rem;
    /*color: #ffd040;*/
    color: #ffffff;
}

.form-input::placeholder {
    color: transparent;
}

/* Contact Form Success/Error Messages */
.contact-success-message,
.contact-error-message {
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    animation: fadeInUp 0.5s ease-out;
}

.contact-success-message {
    background: rgba(212, 168, 75, 0.1);
    border: 1px solid rgba(212, 168, 75, 0.3);
}

.contact-error-message {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.contact-success-icon,
.contact-error-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-success-icon {
    background: rgba(212, 168, 75, 0.2);
    color: #ffd040;
}

.contact-success-icon svg {
    width: 24px;
    height: 24px;
    stroke: #ffd040;
}

.contact-error-icon {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.contact-error-icon svg {
    width: 24px;
    height: 24px;
    stroke: #ef4444;
}

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

/* Parallax Image */
.parallax-image {
    transition: transform 0.1s ease-out;
    will-change: transform;
}

/* Glow Text */
.glow-text {
    text-shadow: 0 0 60px rgba(212, 168, 75, 0.5);
}

/* Year Badge */
.year-badge {
    position: relative;
}

.year-badge-number {
    font-family: 'Bodoni Moda', serif;
    font-size: clamp(5rem, 12vw, 8rem);
    font-weight: 400;
    line-height: 1;
    background: #ffffff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Divider */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 168, 75, 0.3), transparent);
}

/* Image Reveal */
.image-reveal {
    position: relative;
    overflow: hidden;
}

.image-reveal::after {
    content: '';
    position: absolute;
    inset: 0;
    /*background: #ffd040;*/
    background: #ffffff;
    transform-origin: right;
    transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
}

.image-reveal.revealed::after {
    transform: scaleX(0);
}

/* Page */
.page {
    display: none;
    opacity: 0;
}

.page.active {
    display: block;
    opacity: 1;
}

/* Contact Info Item */
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

.contact-info-item:hover {
    padding-left: 1rem;
    border-color: rgba(212, 168, 75, 0.3);
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    inset: 0;
    background: #030303;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 3rem;
    z-index: 100000;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.loading-logo {
    font-family: 'Bodoni Moda', serif;
    font-size: 3rem;
    letter-spacing: 0.5em;
    color: #ffd040;
    animation: loading-fade 1.5s ease-in-out infinite;
}

@keyframes loading-fade {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.loading-bar {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1px;
    overflow: hidden;
}

.loading-bar-inner {
    height: 100%;
    background: linear-gradient(90deg, #ffd040 0%, #ffffff 100%);
    /*background: linear-gradient(90deg, #ffd040, #ffffff);*/
    animation: loading-progress 2s ease-in-out forwards;
}

@keyframes loading-progress {
    0% { width: 0; }
    100% { width: 100%; }
}

/* Service Hero */
.service-hero {
    min-height: 60vh;
    display: flex;
    align-items: flex-end;
    padding-bottom: 4rem;
}



.heart {
    display: inline-block;
    margin: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #ffd040;
    height: 10px;
    width: 10px;
    transform: rotate(-45deg);
    animation-name: beat;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}

.heart:after {
    background-color: #ffd040;
    content: "";
    border-radius: 50%;
    position: absolute;
    width: 10px;
    height: 10px;
    top: 0px;
    left: 5px;
}

.heart:before {
    background-color: #ffd040;
    content: "";
    border-radius: 50%;
    position: absolute;
    width: 10px;
    height: 10px;
    top: -5px;
    left: 0px;
}

@keyframes beat {
    0% {
        transform: scale(1) rotate(-45deg);
    }
    50% {
        transform: scale(0.6) rotate(-45deg);
    }
}

.header-logo{
    height: 60px;
}

@media (max-width: 1024px) {
    .hero-title {
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .header-logo{
        height: 50px;
    }
}

@media (max-width: 768px) {
    .reveal-right { transform: translateX(0); }
    .reveal-left { transform: translateX(0); }
}
