/* Modern Executive Consulting Design System */
:root {
    --primary: #0F172A;
    /* Deep Slate/Navy */
    --accent: #C5A059;
    /* Sophisticated Gold */
    --accent-hover: #b38f4d;
    --background: #FFFFFF;
    --background-alt: #F8FAFC;
    --text-primary: #1E293B;
    --text-secondary: #64748B;
    --border-color: #E2E8F0;
    --surface: #FFFFFF;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

body {
    background-color: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--primary);
    font-weight: 700;
    letter-spacing: -0.025em;
}

.section-padding {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.container-xl {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* Hero Section Styles */
.hero-consulting {
    position: relative;
    padding: 10rem 0;
    background-color: var(--primary);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #FFFFFF;
}

/* Component Styles */
.btn-primary {
    background-color: var(--accent);
    color: #FFFFFF;
    padding: 0.75rem 2rem;
    border-radius: 0.375rem;
    font-weight: 600;
    transition: all 0.2s;
    border: 1px solid var(--accent);
    display: inline-block;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: transparent;
    color: #FFFFFF;
    padding: 0.75rem 2rem;
    border-radius: 0.375rem;
    font-weight: 600;
    transition: all 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: inline-block;
}

.btn-secondary:hover {
    border-color: #FFFFFF;
    background-color: rgba(255, 255, 255, 0.05);
}

.service-card {
    background-color: var(--surface);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 0.75rem;
    transition: all 0.3s;
    height: 100%;
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
    transform: translateY(-4px);
}

.navbar-consulting {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
}

/* Utilities */
.text-accent {
    color: var(--accent);
}

.bg-alt {
    background-color: var(--background-alt);
}

/* Sophisticated Moving Background */
@keyframes mesh-drift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.sophisticated-bg {
    background: linear-gradient(-45deg, #f8fafc, #f1f5f9, #ffffff, #f1f5f9);
    background-size: 400% 400%;
    animation: mesh-drift 15s ease infinite;
    position: relative;
    overflow: hidden;
}

.sophisticated-bg-dark {
    background: linear-gradient(-45deg, #020617, #0f172a, #1e293b, #0f172a);
    background-size: 400% 400%;
    animation: mesh-drift 15s ease infinite;
    position: relative;
    overflow: hidden;
}

/* Glassmorphism Refinement */
.glass-panel {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 10px 40px -10px rgba(15, 23, 42, 0.05);
}

/* Contact Form Styles - Revamped */
.contact-section {
    position: relative;
    padding: 10rem 0;
    background-color: #0f172a;
    /* Matching standard consulting navy */
    overflow: hidden;
}

.contact-glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.7);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.contact-glass:hover {
    transform: translateY(-5px);
    border-color: rgba(197, 160, 89, 0.3);
}

.input-fancy {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    padding: 1.25rem;
    width: 100%;
    transition: all 0.3s ease;
    border-radius: 4px;
    font-size: 0.95rem;
}

.input-fancy:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: #C5A059;
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.15);
    outline: none;
}

.input-fancy::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.label-fancy {
    color: #C5A059;
    /* Use gold for labels for better visibility */
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
    display: block;
}

.submit-btn-fancy {
    background: linear-gradient(135deg, #C5A059 0%, #b38f4d 100%);
    color: white;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    padding: 1.5rem 2rem;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    width: 100%;
    box-shadow: 0 10px 20px -5px rgba(197, 160, 89, 0.3);
}

.submit-btn-fancy:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 40px -10px rgba(197, 160, 89, 0.5);
}

.submit-btn-fancy:active {
    transform: translateY(-1px) scale(1);
}

/* Add a shimmering effect to the button */
.submit-btn-fancy::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 200%;
    }
}