@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;700&family=Syncopate:wght@400;700&display=swap');

:root {
    --gold-foil: linear-gradient(135deg, #FFD700, #FDB931, #9E791E, #FFD700);
    --gold-text: #FDB931;
    --obsidian: #050505;
    --easing: cubic-bezier(0.19, 1, 0.22, 1);
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none !important;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    background-color: var(--obsidian);
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    -webkit-font-smoothing: antialiased;
}

.cursor-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10000;
    mix-blend-mode: exclusion;
}

.cursor-arrow {
    width: 32px;
    height: 32px;
    background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 2L11 28L15 16L27 12L2 2Z' fill='%23FFD700' stroke='black' stroke-width='1'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
}

.cursor-circle {
    width: 50px;
    height: 50px;
    border: 1px solid var(--gold-text);
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    opacity: 0.6;
    transition: width 0.3s, height 0.3s, background 0.3s;
}

body.hovering .cursor-circle {
    width: 80px;
    height: 80px;
    background: rgba(253, 185, 49, 0.15);
    border-color: #FFD700;
}

@media (max-width: 900px) {
    *, *::before, *::after { cursor: auto !important; }
    .cursor-wrapper { display: none !important; }
}

h1, h2, h3, h4 {
    font-family: 'Syncopate', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    line-height: 1;
}

h1 { letter-spacing: -2px; }
h2, h3 { letter-spacing: 1px; }

.gold-text {
    background: var(--gold-foil);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 200% auto;
    animation: shine 3s linear infinite;
}

@keyframes shine {
    to { background-position: 200% center; }
}

.nav-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    transition: all 0.4s var(--easing);
    mix-blend-mode: normal;
}

.nav-fixed.scrolled {
    padding: 15px 40px;
    background: rgba(5,5,5,0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.logo-img {
    height: 75px;
    vertical-align: middle;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-item {
    color: #fff;
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.nav-item:hover, .nav-item.active {
    opacity: 1;
    color: var(--gold-text);
}

.mobile-toggle {
    display: none;
    cursor: pointer;
    z-index: 1001;
    color: #fff;
    font-size: 1.5rem;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000;
    z-index: 900;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-link {
    font-family: 'Syncopate', sans-serif;
    font-size: 1.5rem;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
}

@media (max-width: 900px) {
    .nav-links { display: none; }
    .mobile-toggle { display: block; }
    .nav-fixed { padding: 20px; }
}

.hero-wrapper {
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-title-large {
    font-size: clamp(2.5rem, 8vw, 8rem);
    text-align: center;
    z-index: 2;
    padding: 0 10px;
}

.hero-subtitle {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #888;
    margin-top: 20px;
}

.section-services {
    border-top: 1px solid #222;
    background: #050505;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1px;
    background: #111;
}

.service-card {
    background: #080808;
    padding: 80px 40px;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: background 0.4s;
    text-decoration: none;
}

.service-card:hover {
    background: #0f0f0f;
}

.service-num {
    font-family: 'Syncopate', sans-serif;
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 20px;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.service-desc {
    color: #888;
    line-height: 1.7;
    font-size: 1rem;
    max-width: 350px;
}

.btn-arrow {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: var(--gold-text);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 12px;
    margin-top: 40px;
    transition: gap 0.3s;
}

.btn-arrow:hover {
    gap: 25px;
}

.form-page-container {
    padding-top: 150px;
    padding-bottom: 100px;
    padding-left: 20px;
    padding-right: 20px;
    min-height: 100vh;
}

.form-wrapper-luxury {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.input-group {
    margin-bottom: 50px;
    position: relative;
}

.input-luxury {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #333;
    padding: 15px 0;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 300;
    transition: border-color 0.4s;
    border-radius: 0;
}

.input-luxury:focus {
    outline: none;
    border-color: var(--gold-text);
}

.label-luxury {
    position: absolute;
    top: 15px;
    left: 0;
    font-family: 'Syncopate', sans-serif;
    font-size: 0.7rem;
    color: #666;
    pointer-events: none;
    transition: 0.4s var(--easing);
}

.input-luxury:focus ~ .label-luxury,
.input-luxury:valid ~ .label-luxury {
    top: -20px;
    color: var(--gold-text);
}

.select-luxury {
    width: 100%;
    background: #0a0a0a;
    border: 1px solid #333;
    color: #fff;
    padding: 20px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    cursor: none;
}

.radio-group-luxury {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.radio-option input {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 1px solid #555;
    background: transparent;
    display: grid;
    place-content: center;
    border-radius: 50%;
}

.radio-option input::before {
    content: "";
    width: 10px;
    height: 10px;
    background: var(--gold-text);
    border-radius: 50%;
    transform: scale(0);
    transition: 0.2s;
}

.radio-option input:checked {
    border-color: var(--gold-text);
}

.radio-option input:checked::before {
    transform: scale(1);
}

.file-upload-luxury {
    border: 1px dashed #333;
    background: #080808;
    padding: 40px 20px;
    text-align: center;
    margin-bottom: 20px;
    transition: 0.3s;
    position: relative;
    isolation: isolate;
}

.file-upload-luxury:hover {
    border-color: var(--gold-text);
    background: rgba(253, 185, 49, 0.05);
}

.file-upload-luxury input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 5;
    cursor: pointer;
    display: block !important;
}

.file-list {
    position: relative;
    z-index: 10;
    margin-top: 15px;
    color: #fff;
    font-size: 0.9rem;
    text-align: left;
    pointer-events: none;
}

.file-item {
    pointer-events: auto;
    background: #0a0a0a;
    border: 1px solid #222;
    padding: 10px;
    margin-top: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-submit-luxury {
    width: 100%;
    padding: 30px;
    background: var(--gold-text);
    color: #000;
    font-family: 'Syncopate', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    letter-spacing: 2px;
    margin-top: 50px;
    transition: transform 0.3s;
}

.btn-submit-luxury:hover {
    transform: scale(0.99);
}

.btn-submit-luxury:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

footer {
    padding: 60px 40px;
    border-top: 1px solid #111;
    background: #050505;
}