/* Mission Revenue Partners - Website Styles */
/* Brand Colors: Blue #4B769F, Green #708B62, Beige #DCD7C4 */

:root {
    --primary-blue: #4B769F;
    --mission-green: #708B62;
    --amber-gold: #C8892B;
    --background-tan: #DCD7C4;
    --white: #ffffff;
    --dark: #2c3e50;
    --light-gray: #f8f9fa;
    --border-color: #e9ecef;
    
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-rounded: 'Nunito', 'Inter', -apple-system, sans-serif;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
}

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

body {
    font-family: var(--font-family);
    font-weight: var(--font-weight-normal);
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-weight-semibold);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: #666;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 32px;
    font-weight: var(--font-weight-medium);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background-color: #3a5f7f;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.btn-secondary:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

/* Header */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo {
    height: 220px !important;
    width: auto !important;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.10));
    transition: transform 0.2s ease;
}
.nav-logo:hover {
    transform: scale(1.03);
}

.brand-name {
    color: var(--primary-blue);
    font-size: 1.35rem;
    font-weight: var(--font-weight-bold);
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--dark);
    font-weight: var(--font-weight-medium);
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-blue);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(44, 62, 80, 0.6), rgba(44, 62, 80, 0.6)), url('../images/hero-bg-new.png') center calc(40% + 100px)/cover no-repeat;
    padding: 140px 0 100px;
    text-align: center;
    color: var(--white);
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: 120%;
}

/* Mobile-optimized hero */
.hero-mobile-fixed {
    background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url('../images/hero-bg-new.png') center calc(30% + 100px)/cover no-repeat;
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero .hero-title {
    color: var(--white);
}

.hero .hero-subtitle {
    color: rgba(255,255,255,0.85);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-tagline {
    font-family: var(--font-rounded);
    font-size: 2rem;
    font-weight: 700;
    color: var(--amber-gold);
    margin-bottom: 1rem;
    letter-spacing: -0.3px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Services Preview */
.services-preview {
    padding: 80px 0;
    background-color: var(--white);
}

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

.section-header h2 {
    color: var(--dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Value Proposition */
.value-prop {
    padding: 80px 0;
    background-color: var(--light-gray);
}

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

.value-content h2 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.value-content p {
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

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

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 3rem;
    color: var(--mission-green);
    margin-bottom: 0.5rem;
    font-weight: var(--font-weight-bold);
}

.stat p {
    color: #666;
    font-weight: var(--font-weight-medium);
    margin: 0;
}

/* Mission Statement */
.mission-statement {
    padding: 80px 0;
    background-color: var(--primary-blue);
    color: var(--white);
}

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

.mission-statement h2 {
    color: var(--white);
    margin-bottom: 2rem;
}

.mission-text {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--white);
    font-style: italic;
    margin: 0;
}

/* Page Hero (Sub-pages) - Base */
.page-hero {
    padding: 120px 0;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.page-hero .container {
    width: 100%;
}

/* Individual Page Heroes - Same positioning as homepage */
.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url('../images/about-hero.png?v=1779032340') center calc(30% + 100px)/cover no-repeat;
    background-size: 120%;
    padding: 120px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url('../images/services-hero.png?v=1779032340') center calc(30% + 100px)/cover no-repeat;
    background-size: 120%;
    padding: 120px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url('../images/pricing-hero.png?v=1779032340') center calc(30% + 100px)/cover no-repeat;
    background-size: 120%;
    padding: 120px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url('../images/contact-hero.png?v=1779032340') center center/cover no-repeat;
    background-size: 120%;
    padding: 120px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: var(--font-weight-bold);
    color: var(--white);
    margin-bottom: 0.5rem;
}

.page-hero .hero-tagline {
    color: var(--amber-gold);
}

.page-subtitle {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin: 0 auto;
}

/* Our Story */
.our-story {
    padding: 80px 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-content h2 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.story-content p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.placeholder-image {
    background: var(--background-tan);
    border-radius: 12px;
    padding: 60px 40px;
    text-align: center;
    color: #999;
    font-size: 1.1rem;
}

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

.profile-photo {
    width: 100%;
    max-width: 320px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(75, 118, 159, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-photo:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(75, 118, 159, 0.2);
}

/* Values */
.mission-values {
    padding: 80px 0;
    background: var(--light-gray);
}

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

.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    text-align: center;
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
}

/* Why Started */
.why-started {
    padding: 80px 0;
}

.why-content {
    max-width: 800px;
    margin: 0 auto;
}

.why-content h2 {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 2rem;
}

.why-story p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.why-story blockquote {
    border-left: 4px solid var(--mission-green);
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    background: var(--light-gray);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--dark);
}

/* Team */
.team-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    justify-items: center;
}

.team-member {
    text-align: center;
    max-width: 350px;
}

.team-member h3 {
    color: var(--primary-blue);
    margin: 1rem 0 0.25rem;
}

.member-title {
    color: var(--mission-green);
    font-weight: var(--font-weight-medium);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.member-image {
    margin-bottom: 0.5rem;
}

/* Services Detailed */
.services-detailed {
    padding: 80px 0;
}

.service-detailed {
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--border-color);
}

.service-detailed:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.service-icon-large {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.service-content h2 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.service-description {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.service-features {
    margin-bottom: 1.5rem;
}

.service-features h3 {
    color: var(--mission-green);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.service-features ul {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.service-features li::before {
    content: "▸";
    color: var(--primary-blue);
    position: absolute;
    left: 0;
}

.service-benefits {
    background: var(--light-gray);
    padding: 1.5rem 2rem;
    border-radius: 8px;
}

.service-benefits h3 {
    color: var(--mission-green);
    margin-bottom: 0.5rem;
}

.service-benefits p {
    margin: 0;
    line-height: 1.8;
}

/* Process */
.service-process {
    padding: 80px 0;
    background: var(--light-gray);
}

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

.process-step {
    text-align: center;
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    margin: 0 auto 1rem;
}

.process-step h3 {
    color: var(--dark);
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #3a5f7f 100%);
    color: var(--white);
}

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

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.cta-content .btn-primary {
    background: var(--mission-green);
}

.cta-content .btn-primary:hover {
    background: #5a704e;
}

/* Pricing Page */
.pricing-section {
    padding: 80px 0;
}

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

.pricing-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.pricing-card.featured {
    border: 2px solid var(--primary-blue);
    transform: scale(1.02);
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured:hover {
    transform: scale(1.02) translateY(-5px);
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-header h3 {
    color: var(--dark);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pricing-price {
    font-size: 3rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-blue);
    margin-bottom: 0.25rem;
}

.pricing-price span {
    font-size: 1rem;
    color: #999;
    font-weight: var(--font-weight-normal);
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-card li {
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border-color);
}

.pricing-card li:last-child {
    border-bottom: none;
}

/* Contact Page */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

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

.contact-method {
    margin-bottom: 2rem;
}

.contact-method .icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.contact-form-wrapper {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 12px;
}

.contact-form-wrapper h3 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-family);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

/* Footer */
.footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-brand h3 {
    color: var(--background-tan);
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: #ccc;
    font-style: italic;
}

.footer-contact h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-contact p {
    color: #ccc;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: #999;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-tagline {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-mobile-fixed {
        padding: 40px 20px;
        min-height: 100vh;
        background-size: 100%;
        align-items: center;
        background-position: center calc(40%);
    }
    
    .hero-mobile-fixed .hero-content {
    }
    
    /* Page heroes mobile - copy homepage mobile styling exactly */
    .about-hero,
    .services-hero,
    .pricing-hero {
        padding: 40px 20px !important;
        min-height: 100vh !important;
        background-size: 180% !important;
        align-items: center !important;
        background-position: center calc(45%) !important;
    }
    
    .contact-hero {
        padding: 40px 20px !important;
        min-height: 100vh !important;
        background-size: 160% !important;
        align-items: center !important;
        background-position: center center !important;
    }
    
    .page-hero .container {
        padding: 15px !important;
        width: 100% !important;
        margin: 0 auto !important;
    }
    
    .page-hero h1 {
        font-size: 1.6rem !important;
        line-height: 1.3 !important;
        margin-bottom: 1rem !important;
        color: white !important;
    }
    
    .page-hero .hero-tagline {
        font-size: 1.2rem !important;
        margin-bottom: 1rem !important;
        color: var(--amber-gold) !important;
    }
    
    .page-hero .page-subtitle {
        font-size: 1rem !important;
        line-height: 1.4 !important;
        margin-bottom: 1.8rem !important;
        color: rgba(255,255,255,0.85) !important;
    }
    
    .hero-mobile-fixed .hero-title {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .hero-mobile-fixed .hero-tagline {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .value-stats {
        grid-template-columns: 1fr;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-tagline {
        font-size: 1.25rem;
    }
    
    .mission-text {
        font-size: 1rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .hero-mobile-fixed {
        padding: 30px 15px;
        background-size: 100%;
        min-height: 100vh;
        align-items: center;
        background-position: center calc(45%);
    }
    
    .hero-mobile-fixed .hero-content {
    }
    
    /* Page heroes mobile */
    .page-hero {
        padding: 60px 20px;
        min-height: 100vh;
        background-size: 140% !important;
    }
    
    .page-hero .container {
        margin-top: 20vh;
        padding: 15px;
        width: 100%;
        margin-top: 20vh;
    }
    
    .hero-mobile-fixed .hero-title {
        font-size: 1.4rem;
        line-height: 1.3;
        margin-bottom: 0.8rem;
    }
    
    .hero-mobile-fixed .hero-tagline {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-mobile-fixed .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }
    
    .hero-mobile-fixed .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .hero-mobile-fixed .btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.95rem;
    }
}