:root {
    /* Color Palette */
    --color-navy: #0F172A;
    --color-navy-light: #1E293B;
    --color-gold: #D4AF37;
    --color-gold-hover: #b8962e;
    --color-white: #FFFFFF;
    --color-slate: #94A3B8;
    --color-slate-light: #CBD5E1;

    /* Spacing & Layout */
    --container-width: 1200px;
    --header-height: 80px;

    /* Animation */
    --transition-fast: 0.3s ease;
    --transition-slow: 0.8s ease-out;
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--color-navy);
    color: var(--color-slate-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    color: var(--color-white);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-start {
    justify-content: flex-start;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.z-0 {
    z-index: 0;
}

.z-10 {
    z-index: 10;
}

.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

.min-h-screen {
    min-height: 100vh;
}

.my-12 {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mt-auto {
    margin-top: auto;
}

.pt-20 {
    padding-top: 5rem;
}

.pb-20 {
    padding-bottom: 5rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* Grid System */
.grid-services {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .grid-services {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-services {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Typography */
.text-gold {
    color: var(--color-gold);
}

.text-xs {
    font-size: 0.75rem;
}

.text-sm {
    font-size: 0.875rem;
}

.text-lg {
    font-size: 1.125rem;
}

.text-xl {
    font-size: 1.25rem;
}

.text-2xl {
    font-size: 1.5rem;
}

.text-5xl {
    font-size: 3rem;
}

.font-light {
    font-weight: 300;
}

.font-bold {
    font-weight: 700;
}

.uppercase {
    text-transform: uppercase;
}

.tracking-widest {
    letter-spacing: 0.2em;
}

.italic {
    font-style: italic;
}

.leading-relaxed {
    line-height: 1.8;
}

/* Components */
.input-field {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-navy-light);
    padding: 1rem 1.5rem;
    color: var(--color-white);
    width: 100%;
    transition: var(--transition-fast);
}

/* Service Unified Container */
.services-unified {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 4px;
}

.service-column {
    margin-bottom: 2rem;
}

.service-column h3 {
    border-bottom: 1px solid var(--color-gold);
    padding-bottom: 0.5rem;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.service-list li {
    list-style: none;
    margin-bottom: 0.75rem;
    padding-left: 1.25rem;
    position: relative;
    font-size: 0.95rem;
    color: var(--color-slate);
}

.service-list li::before {
    content: "•";
    color: var(--color-gold);
    position: absolute;
    left: 0;
}

/* Animations */
.fade-in-up {
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    opacity: 0;
    transform: translateY(30px);
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Specific Section Styles */
.hero-section {
    position: relative;
    min-height: 90vh;
    /* Increased height for impact */
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    object-fit: cover;
    opacity: 0.3;
}

.glass-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--color-gold);
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    margin-bottom: 2rem;
    backdrop-filter: blur(4px);
}

.section-divider {
    width: 100px;
    height: 1px;
    background: var(--color-gold);
    margin: 2rem auto;
    opacity: 0.5;
}

.logo-main {
    max-width: 400px;
    margin: 0 auto;
    filter: brightness(0) invert(1);
    /* Make logo white if it's dark text, adjust if needed */
}