/* Genius Consultants - Custom Styles */
/* Color Scheme: Black (#000000) and Gold (#d4af37) */

:root {
    --gold: #d4af37;
    --gold-hover: #c49d2f;
    --black: #000000;
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
}

/* Global Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--black);
    color: #ffffff;
    margin: 0;
    padding: 0;
}

/* Header Styles */
.site-header {
    background-color: var(--black);
    border-bottom: 1px solid var(--gray-800);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.logo-img {
    height: 48px;
    width: auto;
}

.navbar-dark .navbar-nav .nav-link {
    color: #ffffff !important;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--gold) !important;
}

.dropdown-menu {
    background-color: #ffffff;
    border: 1px solid var(--gray-200);
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}

.dropdown-item {
    color: var(--gray-800);
    padding: 0.625rem 1rem;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: var(--gold);
    color: #ffffff;
}

.btn-gold {
    background-color: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 0.5rem 1.5rem;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-gold:hover {
    background-color: var(--gold);
    color: var(--black);
}

.btn-primary-gold {
    background-color: var(--gold);
    border: 2px solid var(--gold);
    color: var(--black);
    padding: 0.75rem 2rem;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-primary-gold:hover {
    background-color: var(--gold-hover);
    border-color: var(--gold-hover);
    color: var(--black);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(to bottom right, var(--black), var(--gray-900));
    padding: 5rem 0;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.hero-section p {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--gray-300);
}

/* Globe SVG */
.globe-container {
    max-width: 400px;
    margin: 0 auto;
}

/* Services Section */
.services-section {
    background-color: var(--gray-900);
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 4rem;
}

.service-card {
    background-color: var(--black);
    border: 1px solid var(--gray-800);
    border-radius: 0.5rem;
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
    text-decoration: none;
    display: block;
}

.service-card:hover {
    border-color: var(--gold);
    box-shadow: 0 20px 25px -5px rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

.service-icon {
    color: var(--gold);
    font-size: 3rem;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h3 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 0;
}

/* About Section */
.about-section {
    background-color: var(--black);
    padding: 5rem 0;
}

.stat-card {
    background-color: var(--gray-900);
    border: 1px solid var(--gray-800);
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #ffffff;
    font-size: 1rem;
}

.mission-card {
    background-color: var(--gray-900);
    border: 1px solid var(--gray-800);
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
}

.mission-icon-wrapper {
    width: 64px;
    height: 64px;
    background-color: rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.mission-icon {
    color: var(--gold);
    font-size: 2rem;
}

/* Contact Section */
.contact-section {
    background-color: var(--black);
    padding: 5rem 0;
}

.contact-form-wrapper {
    background-color: var(--gray-900);
    border: 1px solid var(--gray-800);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.form-control {
    background-color: var(--black);
    border: 1px solid var(--gray-700);
    color: #ffffff;
}

.form-control:focus {
    background-color: var(--black);
    border-color: var(--gold);
    color: #ffffff;
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.form-label {
    color: var(--gray-300);
    margin-bottom: 0.5rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-icon-wrapper {
    width: 48px;
    height: 48px;
    background-color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 1rem;
}

.contact-icon {
    color: #ffffff;
    font-size: 1.5rem;
}

.office-hours-box {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-top: 3rem;
}

/* Footer */
.site-footer {
    background-color: var(--black);
    color: #ffffff;
    padding: 3rem 0 0;
}

.footer-logo {
    height: 64px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-heading {
    color: var(--gold);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--gold);
}

.social-icon:hover {
    background-color: var(--gold);
    color: var(--black);
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding: 2rem 0;
    margin-top: 2rem;
    text-align: center;
    color: var(--gray-400);
}

/* Page Hero Banner */
.page-hero {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.page-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.6));
}

.page-hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    z-index: 10;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 1rem;
}

.page-hero .subtitle {
    color: var(--gold);
    font-size: 1.125rem;
}

/* Wave Decorator */
.wave-decorator {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
}

/* Feature Box */
.feature-box {
    background-color: var(--gray-900);
    border: 1px solid var(--gray-800);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-box-gold {
    background-color: var(--gold);
    color: var(--black);
    border: none;
}

.feature-box h3 {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

/* Process Steps */
.process-step {
    background-color: var(--black);
    border: 1px solid var(--gray-800);
    border-radius: 0.5rem;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.step-number-bg {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 120px;
    line-height: 1;
    color: var(--gold);
    opacity: 0.1;
    padding-right: 1rem;
}

.step-number {
    color: var(--gold);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

/* Benefit List */
.benefit-item {
    display: flex;
    align-items: flex-start;
    background-color: var(--gray-900);
    border: 1px solid var(--gray-800);
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1rem;
}

.benefit-icon {
    color: var(--gold);
    flex-shrink: 0;
    margin-right: 0.75rem;
    margin-top: 0.125rem;
}

/* Job Cards */
.job-card {
    background-color: var(--gray-900);
    border: 1px solid var(--gray-800);
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.job-card:hover {
    border-color: var(--gold);
}

.job-card h3 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.job-card:hover h3 {
    color: var(--gold);
}

.job-detail {
    color: var(--gray-400);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.job-detail i {
    margin-right: 0.5rem;
}

.badge-gold {
    background-color: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
}

/* Industry Card */
.industry-card {
    background-color: var(--black);
    border: 1px solid var(--gray-800);
    border-radius: 0.5rem;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.industry-card:hover {
    border-color: var(--gold);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(to bottom right, var(--black), var(--gray-900), var(--black));
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    width: 384px;
    height: 384px;
    background-color: var(--gold);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.1;
}

.cta-glow-top {
    top: 0;
    left: 0;
}

.cta-glow-bottom {
    bottom: 0;
    right: 0;
}

.cta-badge {
    background-color: rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(10px);
    color: var(--gold);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-block;
    margin-bottom: 1rem;
}

/* Gold Banner */
.gold-banner {
    background-color: var(--gold);
    padding: 1rem 0;
}

.gold-banner p {
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
    font-weight: 500;
}

.gold-banner a {
    color: var(--black);
    transition: color 0.3s ease;
}

.gold-banner a:hover {
    color: var(--gray-800);
}

/* Stats Row */
.stats-row {
    text-align: center;
    padding: 2rem 0;
}

.stat-item {
    margin-bottom: 1rem;
}

.stat-divider {
    width: 1px;
    height: 48px;
    background-color: var(--gray-700);
    margin: 0 auto;
}

/* Responsive */
@media (min-width: 992px) {
    .page-hero {
        height: 500px;
    }
    
    .hero-section h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .section-heading {
        font-size: 2rem;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .stat-divider {
        display: none;
    }
}

/* Utility Classes */
.text-gold {
    color: var(--gold) !important;
}

.text-gray-300 {
    color: var(--gray-300) !important;
}

.text-gray-400 {
    color: var(--gray-400) !important;
}

.bg-black {
    background-color: var(--black) !important;
}

.bg-gray-900 {
    background-color: var(--gray-900) !important;
}

.bg-gray-800 {
    background-color: var(--gray-800) !important;
}
