:root {
    /* Millionaire Palette */
    --color-bg: #050505;
    --color-bg-alt: #0a0a0a;
    --color-text: #f0f0f0;
    --color-text-muted: #a0a0a0;
    --color-primary: #D4AF37;
    /* Metallic Gold */
    --color-primary-light: #F4C430;
    --color-secondary: #C0C0C0;
    /* Silver */
    --color-accent: #E5E4E2;
    /* Platinum */

    --color-card-bg: rgba(20, 20, 20, 0.6);
    --color-card-border: rgba(212, 175, 55, 0.2);
    /* Gold tint border */

    --font-heading: 'Syne', sans-serif;
    --font-body: 'Manrope', sans-serif;

    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F4C430 50%, #D4AF37 100%);
    --gradient-dark: linear-gradient(to bottom, #050505, #0f0f0f);

    --shadow-gold: 0 10px 30px -10px rgba(212, 175, 55, 0.3);
}

/* Reset & Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
    background-image: var(--gradient-dark);
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.4s ease;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #fff;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 4rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    color: var(--color-text-muted);
    font-size: 1rem;
}

/* Layout */
.client-logo {
    height: 60px;
    width: auto;
    opacity: 0.5;
    transition: all 0.4s ease;
    cursor: pointer;
    filter: grayscale(100%);
}

.client-logo:hover {
    opacity: 1;
    transform: scale(1.1);
    filter: grayscale(0%) drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

.container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.site-header {
    padding: 2rem 0;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(5, 5, 5, 0.8), transparent);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.01em;
}

.site-navigation {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.site-navigation a:not(.btn) {
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text);
    opacity: 0.8;
    position: relative;
}

.site-navigation a:not(.btn):after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 1px;
    background: var(--color-primary);
    transition: width 0.3s ease;
}

.site-navigation a:not(.btn):hover:after {
    width: 100%;
}

.site-navigation a:not(.btn):hover {
    opacity: 1;
    color: var(--color-primary);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 2px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
    transition: all 0.4s ease;
}

.btn-primary {
    background: var(--gradient-gold);
    color: #000;
    border: 1px solid var(--color-primary);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px -10px rgba(212, 175, 55, 0.5);
    background-position: right center;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    border-color: var(--color-primary);
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-primary);
}

.btn-lg {
    padding: 1.2rem 3rem;
    font-size: 1rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    opacity: 0;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.delay-400 {
    animation-delay: 0.4s;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
}

.hero-title {
    margin-bottom: 2rem;
    font-size: 5rem;
}

.gradient-text {
    display: block;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
    padding-bottom: 0.2em;
    /* Prevent clip on italics */
}

.hero-subtitle {
    font-size: 1.4rem;
    opacity: 0.9;
    margin-bottom: 3.5rem;
    max-width: 650px;
    font-weight: 300;
}

.hero-stats {
    display: flex;
    gap: 5rem;
    margin-bottom: 4rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    justify-content: center;
}

.stat-item {
    display: flex;
    flex-direction: column;

}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary);
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
}

/* Hero Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    filter: blur(80px);
}

/* Expertise Section */
.expertise-section {
    padding: 10rem 0;
    position: relative;
    z-index: 10;
    background: #050505;
}

.section-header {
    text-align: center;
    margin-bottom: 6rem;
}

.section-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.section-desc {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    max-width: 700px;
    margin: 0 auto;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.expertise-card {
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    padding: 3rem;
    border-radius: 4px;
    /* Sharper corners for luxury */
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 0%;
    background: var(--color-primary);
    transition: height 0.4s ease;
}

.expertise-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--color-primary);
    box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.5);
}

.expertise-card:hover::before {
    height: 100%;
}

.card-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 2rem;
    transition: transform 0.4s ease;
}

.expertise-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.expertise-card h3 {
    margin-bottom: 1rem;
    color: #fff;
}

/* Clients Section */
.clients-section {
    padding: 6rem 0;
    position: relative;
    background: #080808;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.clients-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 4rem;
    margin-top: 3rem;
}

/* Contact Section */
.contact-section {
    padding: 8rem 0;
    text-align: center;
    background: linear-gradient(to bottom, #050505, #080808);
}

.contact-wrapper {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.8), rgba(10, 10, 10, 0.9));
    border: 1px solid var(--color-card-border);
    border-radius: 4px;
    padding: 6rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.contact-wrapper::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 4px;
    padding: 1px;
    background: linear-gradient(45deg, transparent, var(--color-primary), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
    pointer-events: none;
}

/* Footer */
.site-footer {
    padding: 6rem 0 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: #020202;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 5rem;
}

.footer-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-links {
    display: flex;
    gap: 2.5rem;
}

.footer-links a {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-links a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
        border-top: none;
        border-bottom: none;
    }

    .footer-content {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
        align-items: center;
    }

    .site-navigation {
        display: none;
        /* Mobile Menu to be added later */
    }

    .container {
        width: 95%;
    }
}