
/* Professional Fortune 100-Level CSS Styling */
/* McKinsey-class color scheme and typography */

:root {
    /* McKinsey-Class Navy/Gold Palette - Phase 2 Enhancement */
    --primary-navy: #00214d;
    --accent-gold: #c9a33e;
    --secondary-navy: #1e3a5f;
    --light-gold: #f4e8c1;
    --charcoal: #2c3e50;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --dark-gray: #495057;
    --white: #ffffff;
    --success-green: #27ae60;
    --executive-blue: #0066cc;
    
    /* Professional Typography Stack */
    --professional-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --heading-font: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --accent-font: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    
    /* Executive Spacing & Sizing */
    --container-max: 1200px;
    --section-padding: 4rem 0;
    --element-spacing: 2rem;
    --border-radius: 12px;
    --shadow-subtle: 0 2px 12px rgba(0, 33, 77, 0.08);
    --shadow-elevated: 0 8px 32px rgba(0, 33, 77, 0.12);
}

/* Global Professional Styling */
body {
    font-family: var(--professional-font);
    line-height: 1.6;
    color: var(--charcoal);
    background-color: var(--white);
    margin: 0;
    padding: 0;
}

/* Remove any WordPress admin bar spacing */
html {
    margin-top: 0 !important;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Homepage Professional Hero */
.homepage-hero {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--charcoal) 100%);
    color: var(--white);
    padding: 5rem 2rem;
    text-align: center;
    margin-bottom: 4rem;
}

.homepage-hero h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.homepage-hero .subtitle {
    font-size: 1.5rem;
    opacity: 0.9;
    font-weight: 300;
    margin-bottom: 2rem;
}

.homepage-hero .cta-primary {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--white);
    padding: 1.25rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.homepage-hero .cta-primary:hover {
    background: #b8941f;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* About Page Professional Styling */
.about-hero {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--charcoal) 100%);
    color: var(--white);
    padding: 4rem 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

.about-hero h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.executive-profile {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.profile-sidebar {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-gold);
}

.credentials-list {
    list-style: none;
    padding: 0;
}

.credentials-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
    position: relative;
    padding-left: 1.5rem;
}

.credentials-list li:before {
    content: "★";
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
}

.methodology-section {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Services Page Professional Styling */
.services-hero {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--charcoal) 100%);
    color: var(--white);
    padding: 4rem 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

.services-hero h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    font-weight: 300;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.service-card {
    background: var(--white);
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-gold);
}

.service-card.popular {
    border-color: var(--accent-gold);
    border-width: 3px;
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent-gold);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.service-card h3 {
    color: var(--primary-navy);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.service-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f1f3f4;
    position: relative;
    padding-left: 1.5rem;
}

.service-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: bold;
}

.roi-metric {
    background: #e8f5e8;
    color: var(--success-green);
    padding: 0.75rem;
    border-radius: 6px;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.qualification {
    background: #f8f9fa;
    color: var(--charcoal);
    padding: 0.75rem;
    border-radius: 6px;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    text-align: center;
    font-style: italic;
}

.cta-button {
    display: block;
    width: 100%;
    background: var(--primary-navy);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-button:hover {
    background: var(--charcoal);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Contact Page Professional Styling */
.contact-hero {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--charcoal) 100%);
    color: var(--white);
    padding: 3rem 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

.contact-hero h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-form-section h2 {
    color: var(--primary-navy);
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.executive-contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-navy);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 1rem;
    font-family: var(--professional-font);
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.submit-button {
    background: var(--accent-gold);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: #b8941f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.contact-sidebar {
    padding-left: 1rem;
}

.credentials-box {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--accent-gold);
}

.credentials-box h3 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.metrics {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.metric {
    text-align: center;
    padding: 1rem;
    background: var(--white);
    border-radius: 8px;
}

.metric .number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.metric .label {
    font-size: 0.875rem;
    color: var(--charcoal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Testimonials Professional Styling */
.testimonials-section {
    background: var(--light-gray);
    padding: 4rem 2rem;
    margin: 3rem 0;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--accent-gold);
}

.testimonial-quote {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--charcoal);
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.testimonial-title {
    font-size: 0.9rem;
    color: var(--charcoal);
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .executive-profile {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .homepage-hero h1,
    .services-hero h1,
    .contact-hero h1,
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .service-card,
    .executive-contact-form {
        padding: 1.5rem;
    }
}

/* Professional Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    animation: fadeInUp 0.6s ease-out;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

/* Print Styles for Professional Documents */
@media print {
    .homepage-hero,
    .services-hero,
    .contact-hero,
    .about-hero {
        background: var(--primary-navy) !important;
        -webkit-print-color-adjust: exact;
    }
    
    .service-card {
        break-inside: avoid;
        margin-bottom: 1rem;
    }
}
