:root {
--gold-primary: #D4AF37;
--gold-light: #F3E5AB;
--gold-dim: rgba(212, 175, 55, 0.15);
--obsidian: #050505;
--charcoal: #141414;
--glass: rgba(12, 12, 12, 0.85);
--glass-border: rgba(255, 255, 255, 0.08);
--text-primary: #ffffff;
--text-secondary: #a0a0a0;
--success: #4ade80;
--error: #ef4444;
--warning: #f59e0b;
--radius-lg: 32px;
--radius-md: 20px;
--radius-sm: 12px;
--ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
-webkit-font-smoothing: antialiased;
scrollbar-width: thin;
scrollbar-color: var(--gold-primary) transparent;
}

body {
background-color: var(--obsidian);
color: var(--text-primary);
font-family: 'Inter', sans-serif;
overflow-x: hidden;
min-height: 100vh;
font-size: 16px;
zoom: 1;
cursor: default; /* Ensure default cursor is visible */
}

h1, h2, h3, h4 {
font-family: 'Playfair Display', serif;
font-weight: 600;
}

/* --- Enhanced Background with Noise, Aurora & Light Rays --- */
.ambient-bg {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
z-index: -1;
overflow: hidden;
}

/* Layer 1: Base Image */
.bg-image {
position: absolute;
inset: 0;
background-image: url('https://images.unsplash.com/photo-1502672260266-1c1ef2d93688?q=80&w=2080&auto=format&fit=crop');
background-size: cover;
background-position: center;
opacity: 0.3;
filter: grayscale(30%) contrast(1.1);
transform: scale(1.05);
animation: slowPan 30s infinite alternate ease-in-out;
}

/* Layer 2: Orange/Gold Aurora Blobs */
.aurora-container {
position: absolute;
inset: 0;
mix-blend-mode: screen;
opacity: 0.4;
filter: blur(100px);
pointer-events: none;
}

.aurora-blob {
position: absolute;
border-radius: 50%;
animation: floatBlob 25s infinite ease-in-out;
}

.blob-1 {
top: -15%;
left: -15%;
width: 80vw;
height: 80vw;
background: radial-gradient(circle, rgba(255, 140, 0, 0.25) 0%, transparent 70%);
animation-delay: 0s;
}

.blob-2 {
bottom: -15%;
right: -15%;
width: 70vw;
height: 70vw;
background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
animation-delay: -8s;
}

/* Layer 3: Premium Volumetric Light Rays - ENHANCED */
.light-rays-container {
position: absolute;
inset: 0;
mask-image: linear-gradient(to bottom, black 30%, transparent 95%);
pointer-events: none;
z-index: 1;
}

.light-rays {
position: absolute;
inset: -50%;
width: 200%;
height: 200%;

background: 
    /* Core Glow */
    radial-gradient(circle at 50% 30%, rgba(255, 245, 220, 0.06) 0%, transparent 45%),
    
    /* Ray 1: Champagne Beam */
    linear-gradient(
        115deg, 
        transparent 35%, 
        rgba(255, 223, 128, 0.12) 42%, 
        rgba(255, 223, 128, 0.18) 50%, 
        rgba(255, 223, 128, 0.12) 58%, 
        transparent 65%
    ),
    
    /* Ray 2: Golden Amber */
    linear-gradient(
        140deg, 
        transparent 25%, 
        rgba(212, 175, 55, 0.08) 38%, 
        rgba(212, 175, 55, 0.12) 50%,
        rgba(212, 175, 55, 0.08) 62%,
        transparent 75%
    ),

    /* Ray 3: Warm Orange Highlight */
    linear-gradient(
        125deg, 
        transparent 40%, 
        rgba(255, 140, 0, 0.06) 47%, 
        rgba(255, 140, 0, 0.10) 50%,
        rgba(255, 140, 0, 0.06) 53%,
        transparent 60%
    ),

    /* Ray 4: Subtle White Highlight */
    linear-gradient(
        110deg, 
        transparent 42%, 
        rgba(255, 255, 255, 0.04) 48%, 
        rgba(255, 255, 255, 0.08) 50%,
        rgba(255, 255, 255, 0.04) 52%,
        transparent 58%
    );

/* KEY: Blur creates volumetric light beam effect */
filter: blur(20px);

/* Color-dodge creates vivid highlights */
mix-blend-mode: color-dodge;

background-size: 150% 150%;
animation: premiumLightRaysMove 30s ease-in-out infinite alternate;
opacity: 0.9;
}

/* Layer 4: Noise Texture */
.noise-overlay {
position: absolute;
inset: 0;
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
opacity: 0.1;
mix-blend-mode: overlay;
pointer-events: none;
}

/* Layer 5: Vignette Overlay */
.bg-overlay {
position: absolute;
inset: 0;
background: linear-gradient(to bottom, rgba(5,5,5,0.7), rgba(5,5,5,0.95));
}

@keyframes slowPan {
0% { transform: scale(1.05); }
100% { transform: scale(1.15); }
}

@keyframes floatBlob {
0%, 100% { transform: translate(0, 0); }
33% { transform: translate(40px, 60px); }
66% { transform: translate(-30px, 40px); }
}

@keyframes premiumLightRaysMove {
0% {
    transform: translate(-8%, -10%) rotate(0deg);
    background-position: 0% 0%;
    opacity: 0.75;
}
50% {
    transform: translate(2%, 0%) rotate(2deg);
    background-position: 100% 60%;
    opacity: 0.95;
}
100% {
    transform: translate(-3%, -5%) rotate(-1deg);
    background-position: 50% 100%;
    opacity: 0.8;
}
}

.gold-dust {
position: absolute;
background: radial-gradient(circle, #FFD700 0%, transparent 70%);
border-radius: 50%;
opacity: 0.4;
animation: floatUp linear infinite;
pointer-events: none;
}

@keyframes floatUp {
0% { transform: translateY(100vh) scale(0); opacity: 0; }
50% { opacity: 0.5; }
100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

/* --- Magic Wand Autofill Button --- */
.magic-wand-container {
position: fixed;
bottom: 30px;
right: 30px;
z-index: 999;
display: flex;
align-items: center;
gap: 12px;
}

.magic-wand-tooltip {
background: rgba(0, 0, 0, 0.9);
padding: 8px 16px;
border-radius: 12px;
font-size: 0.85rem;
color: var(--gold-primary);
border: 1px solid rgba(212, 175, 55, 0.3);
animation: bounceHorizontal 2s infinite;
pointer-events: none;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
backdrop-filter: blur(10px);
}

.magic-btn {
width: 60px;
height: 60px;
border-radius: 50%;
background: rgba(20, 20, 20, 0.9);
border: 2px solid rgba(212, 175, 55, 0.3);
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.4s var(--ease-out-expo);
backdrop-filter: blur(15px);
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.magic-btn:hover {
border-color: var(--gold-primary);
transform: rotate(15deg) scale(1.15);
box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
background: rgba(212, 175, 55, 0.1);
}

.magic-btn svg {
width: 28px;
height: 28px;
stroke: var(--gold-primary);
fill: none;
stroke-width: 1.5;
transition: 0.3s;
}

.magic-btn:hover svg {
stroke: var(--gold-light);
filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.6));
}

@keyframes bounceHorizontal {
0%, 100% { transform: translateX(0); }
50% { transform: translateX(-8px); }
}

/* --- Layout --- */
.main-wrapper {
max-width: 1100px;
margin: 0 auto;
padding: 40px 20px 120px;
position: relative;
z-index: 1;
}

/* --- Hero Section --- */
.hero {
min-height: 90vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
margin-bottom: 60px;
position: relative;
}

.brand-badge {
font-size: 0.85rem;
letter-spacing: 0.3em;
text-transform: uppercase;
color: var(--gold-primary);
margin-bottom: 2.5rem;
border: 1px solid rgba(212, 175, 55, 0.3);
padding: 12px 30px;
border-radius: 100px;
background: rgba(0, 0, 0, 0.3);
backdrop-filter: blur(10px);
animation: fadeUp 1s var(--ease-out-expo) forwards 0.1s;
opacity: 0;
}

.hero-headline {
font-size: clamp(3.5rem, 8vw, 6rem);
line-height: 1.15;
margin-bottom: 1.5rem;
padding-bottom: 0.2em;
background: linear-gradient(180deg, #fff 0%, #aaaaaa 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
opacity: 0;
animation: fadeUp 1s var(--ease-out-expo) forwards 0.3s;
text-shadow: 0 10px 30px rgba(0,0,0,0.5);
overflow: visible;
}

.hero-sub {
font-size: 1.2rem;
color: var(--text-secondary);
max-width: 600px;
margin-bottom: 3rem;
line-height: 1.6;
opacity: 0;
animation: fadeUp 1s var(--ease-out-expo) forwards 0.5s;
}

.cta-button {
background: linear-gradient(135deg, var(--gold-primary), #a08528);
color: #000;
font-weight: 600;
padding: 20px 48px;
border-radius: 100px;
border: none;
font-size: 1.1rem;
cursor: pointer;
transition: all 0.4s var(--ease-out-expo);
opacity: 0;
animation: fadeUp 1s var(--ease-out-expo) forwards 0.7s;
box-shadow: 0 10px 40px rgba(212, 175, 55, 0.15);
}

.cta-button:hover {
transform: scale(1.05) translateY(-2px);
box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

/* --- Progress Navigation --- */
.progress-wrapper {
position: sticky;
top: 30px;
z-index: 100;
display: flex;
justify-content: center;
margin-bottom: 60px;
transition: opacity 0.5s ease;
opacity: 0;
pointer-events: none;
}
.progress-wrapper.visible { opacity: 1; pointer-events: auto; }

.progress-pill {
background: rgba(0, 0, 0, 0.8);
backdrop-filter: blur(20px);
padding: 8px 12px;
border-radius: 100px;
border: 1px solid var(--glass-border);
display: flex;
gap: 8px;
box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.step-dot {
width: 40px;
height: 40px;
border-radius: 50%;
background: transparent;
color: #666;
display: flex;
align-items: center;
justify-content: center;
font-size: 0.9rem;
font-weight: 600;
transition: all 0.4s var(--ease-out-expo);
border: 1px solid transparent;
position: relative;
cursor: pointer;
}

.step-dot.active {
background: var(--gold-primary);
color: #000;
transform: scale(1.1);
box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.step-dot.completed {
background: rgba(255,255,255,0.05);
color: var(--gold-primary);
border-color: rgba(212, 175, 55, 0.3);
}

.step-check-icon { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 3; display: none; }
.step-dot.completed .step-check-icon { display: block; }
.step-dot.completed span { display: none; }

/* --- Form Card --- */
.glass-card {
background: var(--glass);
backdrop-filter: blur(50px);
border: 1px solid var(--glass-border);
border-radius: var(--radius-lg);
padding: clamp(30px, 5vw, 60px);
box-shadow: 0 50px 120px -30px rgba(0,0,0,0.9);
opacity: 0;
transform: translateY(60px);
transition: all 0.8s var(--ease-out-expo);
display: none;
position: relative;
overflow: hidden;
}

.glass-card::before {
content: '';
position: absolute;
top: 0; left: 0; right: 0; height: 1px;
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
}

.glass-card.visible {
opacity: 1;
transform: translateY(0);
display: block;
}

/* --- Steps --- */
.step-content {
display: none;
opacity: 0;
transform: translateX(20px);
transition: all 0.5s var(--ease-out-expo);
}
.step-content.active { 
display: block; 
opacity: 1; 
transform: translateX(0); 
}

.step-header { margin-bottom: 50px; text-align: center; }
.step-title { font-size: 2.5rem; color: var(--gold-primary); margin-bottom: 12px; }
.step-desc { color: var(--text-secondary); font-size: 1.1rem; }

/* --- Form Elements --- */
.form-section-title {
font-size: 1rem;
color: #fff;
margin: 40px 0 20px;
padding-bottom: 10px;
border-bottom: 1px solid rgba(255,255,255,0.1);
font-family: 'Inter', sans-serif;
letter-spacing: 1px;
text-transform: uppercase;
opacity: 0.7;
}

.input-group { position: relative; margin-bottom: 28px; }

.input-field {
width: 100%;
background: rgba(255,255,255,0.03);
border: 1px solid rgba(255,255,255,0.1);
padding: 24px 20px 8px;
border-radius: var(--radius-md);
color: #fff;
font-size: 1.1rem;
font-family: 'Inter', sans-serif;
transition: all 0.3s ease;
height: 64px;
}
/* Special styling for select dropdown */
select.input-field {
background: rgba(0, 0, 0, 0.8);
color: var(--gold-primary);
font-weight: 500;
}

select.input-field option {
background: #000;
color: var(--gold-primary);
padding: 10px;
}

.input-field:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.2); }

.input-field:focus {
outline: none;
background: rgba(255,255,255,0.08);
border-color: var(--gold-primary);
box-shadow: 0 0 0 1px var(--gold-primary), 0 10px 30px rgba(0,0,0,0.2);
transform: translateY(-2px);
}

.input-label {
position: absolute;
left: 20px;
top: 22px;
font-size: 1.1rem;
color: #666;
pointer-events: none;
transition: all 0.3s var(--ease-out-expo);
}

.input-field:focus + .input-label,
.input-field:not(:placeholder-shown) + .input-label {
top: 10px;
font-size: 0.8rem;
color: var(--gold-primary);
}

textarea.input-field {
height: auto;
min-height: 140px;
padding-top: 30px;
line-height: 1.6;
resize: vertical;
}

.row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

/* --- Upload Zone --- */
.upload-zone {
border: 2px dashed rgba(255,255,255,0.15);
background: rgba(255,255,255,0.02);
border-radius: var(--radius-md);
padding: 50px;
text-align: center;
transition: all 0.3s ease;
cursor: pointer;
position: relative;
display: flex;
flex-direction: column;
align-items: center;
}

.upload-zone:hover, .upload-zone.dragover {
border-color: var(--gold-primary);
background: rgba(212, 175, 55, 0.05);
transform: scale(1.01);
}

.upload-icon-svg {
width: 48px;
height: 48px;
margin-bottom: 16px;
stroke: var(--gold-primary);
fill: none;
stroke-width: 1.5;
}

.upload-preview {
margin-top: 20px;
max-height: 180px;
max-width: 100%;
border-radius: var(--radius-sm);
display: none;
box-shadow: 0 20px 50px rgba(0,0,0,0.5);
object-fit: contain;
opacity: 0;
transition: opacity 0.3s ease;
background: rgba(255, 255, 255, 0.05);
padding: 10px;
}

.upload-preview[style*="display: block"] {
opacity: 1;
}

/* --- Services Grid --- */
.services-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
gap: 20px;
perspective: 1000px;
}

.service-option { position: relative; transform-style: preserve-3d; }

.service-option input { position: absolute; opacity: 0; cursor: pointer; inset: 0; z-index: 10; }

.service-card {
background: rgba(255,255,255,0.04);
border: 1px solid rgba(255,255,255,0.1);
padding: 24px;
border-radius: var(--radius-md);
transition: all 0.4s var(--ease-out-expo);
height: 100%;
display: flex;
flex-direction: column;
position: relative;
cursor: pointer;
}

.service-option input:checked + .service-card {
background: linear-gradient(145deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.02));
border-color: var(--gold-primary);
box-shadow: 0 20px 40px rgba(0,0,0,0.4);
transform: translateY(-5px);
}

.service-icon-box {
width: 48px;
height: 48px;
border-radius: 12px;
background: rgba(255,255,255,0.05);
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 16px;
transition: 0.3s;
}

.service-svg {
width: 24px;
height: 24px;
stroke: #fff;
stroke-width: 1.5;
fill: none;
transition: 0.3s;
}

.service-option input:checked + .service-card .service-icon-box { background: var(--gold-primary); }
.service-option input:checked + .service-card .service-svg { stroke: #000; }

.service-title { font-weight: 600; margin-bottom: 8px; color: #fff; font-size: 1.05rem; }
.service-desc { font-size: 0.9rem; color: #999; line-height: 1.5; }

/* --- Location Tags --- */
.tag-container {
display: flex;
flex-wrap: wrap;
gap: 10px;
margin-top: 16px;
min-height: 50px;
padding: 10px;
border: 1px dashed rgba(255,255,255,0.1);
border-radius: var(--radius-md);
}

.tag-pill {
background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(160, 133, 40, 0.2));
color: var(--gold-primary);
padding: 8px 16px;
border-radius: 100px;
font-size: 0.95rem;
display: flex;
align-items: center;
gap: 10px;
border: 1px solid rgba(212, 175, 55, 0.3);
animation: popIn 0.3s var(--ease-out-expo);
}

.tag-remove { 
cursor: pointer; 
width: 20px; height: 20px; 
display: flex; align-items: center; justify-content: center;
background: rgba(0,0,0,0.2); border-radius: 50%;
font-size: 12px;
}
.tag-remove:hover { background: rgba(200,0,0,0.5); color: #fff; }

@keyframes popIn { from { transform: scale(0.5); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* --- Dynamic Offers --- */
.offer-card {
background: rgba(255,255,255,0.03);
border: 1px solid rgba(255,255,255,0.1);
border-radius: var(--radius-md);
padding: 30px;
margin-bottom: 24px;
position: relative;
animation: slideInRight 0.5s var(--ease-out-expo);
transition: 0.3s;
}
.offer-card:hover { border-color: var(--gold-primary); }

.offer-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 20px;
padding-bottom: 10px;
border-bottom: 1px solid rgba(255,255,255,0.1);
}

.offer-tag {
font-size: 0.85rem;
color: var(--gold-primary);
border: 1px solid var(--gold-primary);
padding: 6px 14px;
border-radius: 100px;
font-weight: 600;
letter-spacing: 1px;
}

.offer-services-selection {
    background: rgba(0,0,0,0.3);
    border-radius: var(--radius-sm);
    padding: 20px;
    margin-top: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    width: 100%;
    box-sizing: border-box;
}

.offer-checkboxes-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 10px;
    margin-top: 15px;
    width: 100%;
}

.offer-service-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: 0.2s;
    width: 100%;
    box-sizing: border-box;
}
.offer-service-item:hover { background: rgba(255,255,255,0.05); }
.offer-service-item:last-child { margin-bottom: 0; }

.offer-checkbox {
appearance: none;
width: 20px;
height: 20px;
border: 2px solid rgba(255,255,255,0.3);
border-radius: 6px;
cursor: pointer;
position: relative;
transition: 0.2s;
flex-shrink: 0;
}
.offer-checkbox:checked {
background: var(--gold-primary);
border-color: var(--gold-primary);
}
.offer-checkbox:checked::after {
content: '';
position: absolute;
left: 5px; top: 1px;
width: 6px; height: 10px;
border: solid #000;
border-width: 0 2px 2px 0;
transform: rotate(45deg);
}

.offer-service-label { font-size: 0.95rem; color: #ccc; cursor: pointer; }
.offer-checkbox:checked + .offer-service-label { color: #fff; }

.btn-add-offer {
width: 100%;
padding: 24px;
border: 2px dashed rgba(255,255,255,0.15);
background: transparent;
color: var(--text-secondary);
border-radius: var(--radius-md);
cursor: pointer;
transition: 0.3s;
display: flex;
align-items: center;
justify-content: center;
gap: 12px;
font-size: 1.1rem;
}
.btn-add-offer:hover {
border-color: var(--gold-primary);
color: var(--gold-primary);
background: rgba(212, 175, 55, 0.05);
}

/* --- Navigation Buttons --- */
.nav-buttons {
display: flex;
gap: 20px;
margin-top: 60px;
padding-top: 30px;
border-top: 1px solid rgba(255,255,255,0.1);
}

.btn {
flex: 1;
padding: 20px;
border-radius: 16px;
font-weight: 600;
font-size: 1.1rem;
cursor: pointer;
border: none;
transition: all 0.3s ease;
font-family: 'Inter', sans-serif;
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
}

.btn-next {
background: linear-gradient(135deg, var(--gold-primary), #bfa030);
color: #000;
box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}
.btn-next:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(212, 175, 55, 0.4); }

.btn-prev {
background: rgba(255,255,255,0.08);
color: #fff;
border: 1px solid rgba(255,255,255,0.05);
}
.btn-prev:hover { background: rgba(255,255,255,0.12); transform: translateY(-3px); }

/* --- Mobile & Responsiveness --- */
@media (max-width: 768px) {
.row { grid-template-columns: 1fr; }
.hero-headline { font-size: 2.8rem; }
.glass-card { padding: 24px; border-radius: 24px; }
.nav-buttons { flex-direction: column-reverse; }
.progress-pill { display: none; }
.magic-wand-container { bottom: 20px; right: 20px; }
.magic-wand-tooltip { display: none; }
.offer-checkboxes-container {
    grid-template-columns: 1fr;
}
}

/* Helper Classes */
.shake { animation: shake 0.5s ease; }
@keyframes shake { 0%, 100% { transform: translateX(0); } 20%, 60% { transform: translateX(-6px); } 40%, 80% { transform: translateX(6px); } }

@keyframes fadeUp {
from { opacity: 0; transform: translateY(30px); }
to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInRight {
from { opacity: 0; transform: translateX(30px); }
to { opacity: 1; transform: translateX(0); }
}

/* --- Elegant Copyright Footer --- */
.copyright-footer {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
backdrop-filter: blur(20px);
padding: 20px;
text-align: center;
z-index: 50;
border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.copyright-content {
display: flex;
align-items: center;
justify-content: center;
gap: 12px;
font-size: 0.85rem;
color: var(--text-secondary);
font-weight: 300;
letter-spacing: 0.5px;
}

.copyright-divider {
width: 1px;
height: 14px;
background: linear-gradient(to bottom, transparent, var(--gold-primary), transparent);
}

.copyright-brand {
display: inline-flex;
align-items: center;
text-decoration: none;
transition: all 0.3s var(--ease-out-expo);
position: relative;
padding: 4px 8px;
border-radius: 8px;
}

.copyright-brand:hover {
background: rgba(212, 175, 55, 0.1);
transform: translateY(-2px);
}

.copyright-logo {
height: 19.5px;
width: auto;
filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.3));
transition: all 0.3s var(--ease-out-expo);
}

.copyright-brand:hover .copyright-logo {
filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.5));
transform: scale(1.05);
}

.copyright-icon {
width: 16px;
height: 16px;
stroke: var(--gold-primary);
fill: none;
stroke-width: 1.5;
animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
0%, 100% { transform: translateY(0px); }
50% { transform: translateY(-3px); }
}

@media (max-width: 768px) {
.copyright-content {
    flex-direction: column;
    gap: 8px;
    font-size: 0.75rem;
}
.copyright-divider {
    width: 30px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold-primary), transparent);
}
.copyright-logo {
    height: 20px;
}
}