:root {
    --bg-color: #0d0d0d;
    --gold: #d4af37;
    --gold-light: #e6c863;
    --gold-dark: #aa8a26;
    --text-white: #ffffff;
    --text-gray: #b0b0b0;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    position: relative;
}

/* Background Animation */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, rgba(13,13,13,0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.wave {
    position: absolute;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    animation: ripple 12s infinite linear;
}

.wave1 { width: 50vw; height: 50vw; top: 50%; left: 100%; transform: translate(-50%, -50%); animation-delay: 0s; }
.wave2 { width: 75vw; height: 75vw; top: 50%; left: 100%; transform: translate(-50%, -50%); animation-delay: 4s; }
.wave3 { width: 100vw; height: 100vw; top: 50%; left: 100%; transform: translate(-50%, -50%); animation-delay: 8s; }

@keyframes ripple {
    0% { transform: translate(-50%, -50%) scale(0.5); opacity: 0; border-width: 1px; }
    50% { opacity: 1; border-width: 2px; }
    100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; border-width: 1px; }
}

.container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 1rem 2rem;
}

/* Header & Logo */
.header {
    padding-top: 1rem;
    display: flex;
    justify-content: center;
    animation: fadeInDown 1s ease-out;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.logo-img {
    height: 4.5rem; /* Roughly matches the height of the previous text */
    width: auto;
    object-fit: contain;
}



.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-text h1 {
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 1;
    color: var(--text-white);
}

.logo-sub {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 7.5px;
    color: var(--gold);
    position: relative;
    padding-top: 0.3rem;
    width: 100%;
    text-align: justify;
    text-align-last: justify;
}

.logo-sub::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--gold);
}

/* Main Content */
.main-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-grow: 1;
    padding: 2rem 0;
}

.slogan {
    font-size: clamp(3.5rem, 6vw, 6rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--gold);
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Features */
.features {
    display: flex;
    justify-content: center;
    gap: 4rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.feature-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--gold);
}

.feature-item span {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--text-white);
    line-height: 1.4;
}

/* Services Marquee */
.services-marquee {
    width: 100vw;
    margin-left: -2rem; /* Compensate for container padding */
    padding: 1.5rem 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    background: linear-gradient(90deg, var(--bg-color) 0%, rgba(212,175,55,0.05) 50%, var(--bg-color) 100%);
    overflow: hidden;
    position: relative;
    animation: fadeIn 1s ease-out 0.8s both;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.marquee-content span {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 2px;
    padding: 0 1.5rem;
    color: var(--text-gray);
}

.marquee-content .dot {
    color: var(--gold);
    font-size: 1.2rem;
    padding: 0;
}

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

/* CTA Group */
.cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.2rem;
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 50px;
    color: var(--text-white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 400;
    transition: all 0.3s ease;
    background: rgba(13, 13, 13, 0.8);
    backdrop-filter: blur(5px);
}

.contact-btn i {
    color: var(--gold);
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.contact-btn:hover i {
    transform: scale(1.1);
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive */
@media (max-width: 992px) {
    .features { gap: 2rem; }
    .slogan { margin-top: 2rem; }
}

@media (max-width: 768px) {
    .header { justify-content: center; margin-bottom: 2rem; }
    .main-content { text-align: center; padding: 2rem 0; }
    .features { 
        justify-content: center;
        flex-wrap: wrap;
    }
    .feature-item { align-items: center; }
    
    
    .contact-btn {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container { padding: 1.5rem; }
    .logo-icon { font-size: 3rem; }
    .logo-text h1 { font-size: 1.8rem; }
    .slogan { font-size: 2.8rem; }
    .features { flex-direction: column; gap: 2.5rem; }
    .services-marquee { margin-left: -1.5rem; width: 100vw; }
}
