:root {
    /* Ultra Premium Color Palette */
    --primary: #0a0f2b;
    --primary-light: #1a1f3b;
    --secondary: #1e3a8a;
    --accent: #dc2626;
    --accent-light: #ef4444;
    --gold: #d97706;
    --gold-light: #f59e0b;
    --platinum: #e5e7eb;
    --diamond: #f8fafc;
    
    /* Gradients */
    --gradient-hero: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    --gradient-gold: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    --gradient-premium: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
    --shadow-xl: 0 40px 80px rgba(0,0,0,0.2);
    --shadow-glow: 0 0 40px rgba(220, 38, 38, 0.3);
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: var(--platinum);
    background: var(--primary);
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Ultra Premium Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 15, 43, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-mark {
    width: 40px;
    height: 40px;
    background: var(--gradient-accent);
    border-radius: 8px;
    position: relative;
}

.logo-mark::after {
    content: 'S';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: 900;
    font-size: 1.2rem;
}

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

.logo-primary {
    font-size: 1.4rem;
    font-weight: 900;
    color: white;
    letter-spacing: -0.5px;
}

.logo-secondary {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--accent-light);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-cta {
    background: var(--gradient-accent);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Ultra Premium Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    height: 80vw;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    animation: orbit 20s linear infinite;
}

.hero-orbit::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.2);
    margin-bottom: 3rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    /* CHANGED: Solid white color instead of gradient */
    color: #ffffff;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--gold-light);
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-accent);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
}

.btn-light {
    background: white;
    color: var(--primary);
}

.btn-light:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.3);
    margin: 0 auto 0.5rem;
    animation: scrollLine 2s infinite;
}

/* Value Propositions */
.value-props {
    padding: 8rem 0;
    background: var(--primary-light);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.value-card {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.08);
    border-color: var(--accent);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.value-card p {
    color: var(--platinum);
    opacity: 0.8;
    line-height: 1.6;
}

/* Results Dashboard */
.results {
    padding: 8rem 0;
    background: var(--primary);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
}

.section-header p {
    font-size: 1.3rem;
    color: var(--platinum);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.result-card {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
}

.result-metric {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-light);
    margin-bottom: 1rem;
}

.result-description {
    color: var(--platinum);
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Services Excellence */
.services {
    padding: 8rem 0;
    background: var(--primary-light);
}

.services-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.service-showcase-card {
    padding: 3rem;
    border-radius: 24px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

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

.service-showcase-card.accent {
    border-left: 6px solid var(--accent);
}

.service-showcase-card.primary {
    border-left: 6px solid var(--secondary);
}

.service-showcase-card.secondary {
    border-left: 6px solid var(--gold);
}

.service-showcase-card.gold {
    border-left: 6px solid var(--gold-light);
}

.service-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-gold);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon i {
    font-size: 1.8rem;
    color: white;
}

.service-title h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 0.5rem;
}

.service-title p {
    color: var(--platinum);
    opacity: 0.8;
    line-height: 1.6;
}

.service-capabilities {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.capability-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
}

.capability-item i {
    color: var(--accent);
    font-size: 1rem;
}

.capability-item span {
    color: var(--platinum);
    font-weight: 500;
}

/* Process Excellence */
.process {
    padding: 8rem 0;
    background: var(--primary);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.process-phase {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
}

.phase-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 2rem;
}

.phase-content h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
}

.phase-content p {
    color: var(--platinum);
    opacity: 0.8;
    line-height: 1.6;
}

/* Leadership Voices */
.testimonials {
    padding: 8rem 0;
    background: var(--primary-light);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.testimonial-card {
    padding: 3rem;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
}

.quote-mark {
    font-size: 4rem;
    color: var(--accent);
    position: absolute;
    top: 1rem;
    left: 2rem;
    opacity: 0.3;
}

.testimonial-card blockquote {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--platinum);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-card cite {
    color: var(--gold-light);
    font-weight: 600;
    font-style: normal;
}

/* Principles Foundation */
.principles {
    padding: 8rem 0;
    background: var(--primary);
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.principle-card {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.principle-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.principle-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.principle-icon i {
    font-size: 2rem;
    color: white;
}

.principle-card h4 {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 1rem;
}

.principle-card p {
    color: var(--platinum);
    opacity: 0.8;
    line-height: 1.6;
}

/* Enterprise CTA */
.enterprise-cta {
    padding: 8rem 0;
    background: var(--gradient-premium);
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-text h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1.5rem;
}

.cta-text p {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Premium Contact - FIXED ALIGNMENT */
.contact {
    padding: 8rem 0;
    background: var(--primary-light);
}

.contact-grid {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 5rem;
}

.contact-header h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
}

.contact-header p {
    font-size: 1.3rem;
    color: var(--platinum);
    opacity: 0.8;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2.5rem;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    /* FIXED: Ensure proper height and alignment */
    min-height: 180px;
    flex-direction: column;
}

.contact-method:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.method-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon i {
    font-size: 1.5rem;
    color: white;
}

.method-details {
    /* FIXED: Ensure proper spacing and prevent overlap */
    width: 100%;
}

.method-details h4 {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 1rem;
}

.method-details a, .method-details p {
    color: var(--platinum);
    text-decoration: none;
    opacity: 0.8;
    font-size: 1.1rem;
    /* FIXED: Ensure proper line breaks and spacing */
    display: block;
    margin-bottom: 0.5rem;
    word-wrap: break-word;
}

.method-details a:hover {
    color: var(--accent-light);
}

/* Ultra Premium Footer */
.footer {
    background: var(--primary);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

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

.footer-mission {
    margin-top: 1rem;
    color: var(--platinum);
    opacity: 0.8;
    font-style: italic;
}

.enterprise-info {
    text-align: right;
}

.enterprise-info p {
    color: var(--platinum);
    opacity: 0.7;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

/* Animations */
@keyframes orbit {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes scrollLine {
    0%, 100% { height: 40px; opacity: 1; }
    50% { height: 60px; opacity: 0.5; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .hero-actions, .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .services-showcase {
        grid-template-columns: 1fr;
    }
    
    /* FIXED: Better mobile alignment for contact methods */
    .contact-method {
        min-height: auto;
        padding: 2rem;
    }
}

/* Enhanced JavaScript-ready classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
/* Quick Logo Color Fix */
.nav-brand .logo-primary {
    color: #1e3a8a !important; /* Dark blue for visibility */
}

.nav-brand .logo-secondary {
    color: #dc2626 !important; /* Red accent */
}
