:root {
    --primary: #cba052;
    --primary-glow: rgba(203, 160, 82, 0.4);
    --bg-dark: #0a0a0c;
    --bg-card: rgba(255, 255, 255, 0.03);
    --text-main: #f4f4f5;
    --text-muted: #a1a1aa;
    --border-color: rgba(203, 160, 82, 0.15);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    selection-background: var(--primary);
    selection-color: var(--bg-dark);
}

::selection {
    background: var(--primary);
    color: var(--bg-dark);
}

/* Background Effects */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: float 20s infinite ease-in-out alternate;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-glow);
    top: -100px;
    right: -100px;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(82, 122, 203, 0.2); /* Subtle blue contrast */
    bottom: -50px;
    left: -100px;
    animation-delay: -5s;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
}

/* Cursor Glow */
.cursor-glow {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 0;
    opacity: 0;
    transition: opacity 0.3s;
}

/* Layout */
.container {
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

/* Header & Logo */
.header {
    width: 100%;
    display: flex;
    justify-content: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    max-width: 350px;
    height: auto;
    max-height: 180px;
    filter: drop-shadow(0 0 15px rgba(203, 160, 82, 0.6));
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.brand:hover .logo {
    transform: scale(1.1) rotate(5deg);
}

.brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-text h1 {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--primary);
    line-height: 1.1;
    margin: 0;
}

.brand-text .sub-brand {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 5px;
    color: var(--text-main);
    margin-top: 2px;
}

/* Main Content */
.main-content {
    width: 100%;
    max-width: 800px;
}

.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.5;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(203, 160, 82, 0.1);
    border: 1px solid var(--border-color);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.highlight {
    background: linear-gradient(90deg, #fff, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-inline: auto;
}

/* Services Ticker */
.services-wrapper {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1rem 0;
    overflow: hidden;
    position: relative;
    display: flex;
}

.services-wrapper::before,
.services-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 50px;
    height: 100%;
    z-index: 2;
}

.services-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg-dark), transparent);
}

.services-wrapper::after {
    right: 0;
    background: linear-gradient(270deg, var(--bg-dark), transparent);
}

.services-track {
    display: flex;
    white-space: nowrap;
    gap: 1rem;
    color: var(--primary);
    font-weight: 500;
    font-size: 0.95rem;
    animation: scroll 20s linear infinite;
}

.services-track span {
    color: var(--text-main);
}

/* Footer */
.footer {
    width: 100%;
    max-width: 800px;
}

.contact-card {
    background: transparent;
    padding: 2rem;
    text-align: center;
}

.contact-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-weight: 600;
}

.contact-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-muted);
    transition: color 0.3s;
}

.contact-item:hover {
    color: var(--text-main);
}

.icon {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.contact-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 0.9rem;
    text-align: left;
    gap: 0.2rem;
}

.link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

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

/* Animations */
@keyframes float {
    0% { transform: translate(0, 0); }
    50% { transform: translate(30px, 20px); }
    100% { transform: translate(-20px, 40px); }
}

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

.animate-item {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUpFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.5s; }

@keyframes slideUpFade {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .glass-card {
        padding: 2rem 1.5rem;
    }
    .contact-grid {
        gap: 1.5rem;
        flex-direction: column;
        align-items: center;
    }
    .contact-item {
        width: 100%;
        justify-content: center;
    }
    .contact-details {
        align-items: center;
        text-align: center;
    }
}
