/* ===================================
   Fortis Frameworks Website Styles
   Header: WHITE background for logo visibility
   Rest of site: Navy/Gold palette
   =================================== */

/* Root Variables */
:root {
    --navy: #0B1C3E;
    --gold: #D4AF37;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --medium-gray: #6C757D;
    --dark-gray: #343A40;
    --header-height: 80px;
}

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

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
}

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

/* ===================================
   HEADER - WHITE BACKGROUND
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white); /* WHITE background */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}

/* Logo in Header - Black logo on white */
.logo {
    height: 45px;
    width: auto;
    object-fit: contain;
    clip-path: inset(0 0 18% 0); /* Remove strapline */
    transition: height 0.3s ease;
}

@media (max-width: 768px) {
    .logo {
        height: 35px;
    }
}

.logo-link {
    display: flex;
    align-items: center;
}

/* Navigation - Navy links on white background */
.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--navy); /* Navy text on white background */
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link-cta {
    background: var(--navy);
    color: var(--white);
    padding: 0.6rem 1.5rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-link-cta:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-2px);
}

.nav-link-cta::after {
    display: none;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--navy); /* Navy burger menu on white */
    transition: all 0.3s ease;
    border-radius: 3px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 968px) {
    .nav {
        position: fixed;
        top: var(--header-height);
        right: -100%;
        width: 280px;
        height: calc(100vh - var(--header-height));
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        gap: 1rem;
    }

    .nav.active {
        right: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-link {
        font-size: 1.1rem;
        width: 100%;
        padding: 0.5rem 0;
    }

    .nav-link-cta {
        width: 100%;
        text-align: center;
    }
}

/* ===================================
   HERO SECTION - Navy Background
   =================================== */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, #162d52 100%);
    color: var(--white);
    padding: 150px 0 100px;
    margin-top: var(--header-height);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(212,175,55,0.1)"/></svg>');
    opacity: 0.3;
}

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

/* Hero Logo - Prominent display with FRAMEWORKS in outline */
.hero-logo-container {
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
}

.hero-logo {
    height: 240px;
    width: auto;
    object-fit: contain;
    max-width: 95%;
    /* Large, prominent size for strong brand presence */
}

@media (max-width: 768px) {
    .hero-logo {
        height: 160px;
    }
    
    .hero-logo-container {
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        height: 120px;
    }
    
    .hero-logo-container {
        margin-bottom: 2rem;
    }
}

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

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.metric {
    text-align: center;
}

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

.metric-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

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

@media (max-width: 768px) {
    .hero {
        padding: 120px 0 80px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-metrics {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .metric-value {
        font-size: 2rem;
    }
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy);
}

.btn-primary:hover {
    background: #c29b2e;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

/* ===================================
   SECTIONS
   =================================== */
.section {
    padding: 100px 0;
}

.section-light {
    background: var(--light-gray);
}

.section-dark {
    background: var(--navy);
    color: var(--white);
}

.section-navy {
    background: linear-gradient(135deg, var(--navy) 0%, #162d52 100%);
    color: var(--white);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-title {
    color: inherit;
    margin-bottom: 1rem;
}

.section-dark .section-title,
.section-navy .section-title {
    color: var(--gold);
}

.section-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--medium-gray);
}

.section-dark .section-intro,
.section-navy .section-intro {
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
}

/* ===================================
   CARDS
   =================================== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.cards-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 968px) {
    .cards-grid,
    .cards-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .cards-grid,
    .cards-grid-3 {
        grid-template-columns: 1fr;
    }
}

.card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.card-dark {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-dark:hover {
    background: rgba(255, 255, 255, 0.08);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold) 0%, #c29b2e 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--navy);
}

.card-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--navy);
}

.card-dark .card-title {
    color: var(--gold);
}

.card-text {
    color: var(--medium-gray);
    line-height: 1.7;
}

.card-dark .card-text {
    color: rgba(255, 255, 255, 0.8);
}

/* ===================================
   COMPARISON TABLE
   =================================== */
.comparison-table {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 4rem;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid var(--light-gray);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-header {
    background: var(--navy);
    color: var(--white);
}

.comparison-header .comparison-cell {
    font-weight: 700;
    font-size: 1.1rem;
}

.comparison-cell {
    padding: 1.5rem;
    display: flex;
    align-items: center;
}

.comparison-cell:first-child {
    border-right: 1px solid var(--light-gray);
}

.comparison-highlight {
    background: rgba(212, 175, 55, 0.05);
    font-weight: 600;
    color: var(--navy);
}

@media (max-width: 768px) {
    .comparison-row {
        grid-template-columns: 1fr;
    }

    .comparison-cell:first-child {
        border-right: none;
        border-bottom: 1px solid var(--light-gray);
    }
}

/* ===================================
   PHILOSOPHY
   =================================== */
.philosophy {
    margin-top: 4rem;
    text-align: center;
}

.philosophy-title {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 3rem;
}

.philosophy-pillars {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.pillar {
    text-align: center;
    max-width: 200px;
}

.pillar-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.pillar-title {
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.pillar-text {
    color: var(--medium-gray);
    font-style: italic;
}

.pillar-arrow {
    font-size: 2rem;
    color: var(--gold);
    font-weight: 700;
}

@media (max-width: 968px) {
    .pillar-arrow {
        display: none;
    }
}

/* ===================================
   ENGINE PHASES
   =================================== */
.engine-phases {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 968px) {
    .engine-phases {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .engine-phases {
        grid-template-columns: 1fr;
    }
}

.phase {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid var(--gold);
    transition: all 0.3s ease;
}

.phase:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.phase-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 1rem;
}

.phase-title {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.phase-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.phase-outcomes {
    list-style: none;
    padding: 0;
}

.phase-outcomes li {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding-left: 1.5rem;
}

.phase-outcomes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

/* ===================================
   SERVICES
   =================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 968px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

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

.service-featured {
    border: 3px solid var(--gold);
}

.service-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--gold);
    color: var(--navy);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
}

.service-title {
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.service-duration {
    display: inline-block;
    background: rgba(11, 28, 62, 0.1);
    color: var(--navy);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.service-description {
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.service-list li {
    padding: 0.5rem 0;
    color: var(--dark-gray);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.service-list i {
    color: var(--gold);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.service-best {
    font-style: italic;
    color: var(--medium-gray);
    font-size: 0.9rem;
    padding-top: 1rem;
    border-top: 1px solid var(--light-gray);
}

/* ===================================
   PILLARS GRID
   =================================== */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (max-width: 968px) {
    .pillars-grid {
        grid-template-columns: 1fr;
    }
}

.pillar-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.pillar-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.pillar-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold) 0%, #c29b2e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--navy);
}

.pillar-card-title {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.pillar-card-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.pillar-card-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.pillar-card-list {
    list-style: none;
    padding: 0;
}

.pillar-card-list li {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding-left: 1.5rem;
}

.pillar-card-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
    font-size: 1.2rem;
}

/* ===================================
   ICP (Ideal Client Profile)
   =================================== */
.icp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (max-width: 968px) {
    .icp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .icp-grid {
        grid-template-columns: 1fr;
    }
}

.icp-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--gold);
    transition: all 0.3s ease;
}

.icp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.icp-title {
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.icp-profile,
.icp-pain,
.icp-solution {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.icp-profile {
    color: var(--medium-gray);
    font-weight: 600;
}

.icp-pain {
    color: var(--dark-gray);
}

.icp-solution {
    color: var(--gold);
    font-weight: 600;
}

.secondary-targets {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.secondary-title {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

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

.secondary-list li {
    padding: 1rem 0;
    color: var(--dark-gray);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    border-bottom: 1px solid var(--light-gray);
}

.secondary-list li:last-child {
    border-bottom: none;
}

.secondary-list i {
    color: var(--gold);
    font-size: 1.2rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* ===================================
   METRICS & ACHIEVEMENTS
   =================================== */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (max-width: 968px) {
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .metrics-grid {
        grid-template-columns: 1fr;
    }
}

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

.metric-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

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

.metric-card-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.achievements {
    margin-top: 3rem;
}

.achievements-title {
    font-size: 2rem;
    color: var(--gold);
    text-align: center;
    margin-bottom: 3rem;
}

/* Achievement Categories */
.achievement-category {
    margin-bottom: 3rem;
}

.achievement-category:last-child {
    margin-bottom: 0;
}

.achievement-category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gold);
}

.achievement-category-header i {
    font-size: 1.8rem;
    color: var(--gold);
}

.achievement-category-header h4 {
    font-size: 1.5rem;
    color: var(--gold);
    margin: 0;
}

.achievement-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.achievement-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border-left: 3px solid var(--gold);
    transition: all 0.3s ease;
}

.achievement-item:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(5px);
}

.achievement-item i {
    color: var(--gold);
    font-size: 0.6rem;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.achievement-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0;
}

/* Legacy achievement styles (backup) */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (max-width: 768px) {
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .achievement-category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .achievement-item {
        padding: 1rem;
    }
}

.achievement {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.achievement i {
    color: var(--gold);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.achievement p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* ===================================
   FOUNDER PROFILE
   =================================== */
.founder-profile {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 968px) {
    .founder-profile {
        grid-template-columns: 1fr;
    }
}

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

/* Founder silhouette icon */
.founder-silhouette {
    width: 250px;
    height: 250px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy) 0%, #162d52 100%);
    border-radius: 50%;
    border: 5px solid var(--gold);
}

.founder-silhouette i {
    font-size: 140px;
    color: var(--gold);
    opacity: 0.9;
}

.founder-name {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.founder-title {
    font-size: 1.1rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.founder-quote {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--medium-gray);
    border-left: 4px solid var(--gold);
    padding-left: 1.5rem;
    margin: 2rem 0;
}

.founder-highlights h4,
.founder-experience h4,
.founder-education h4 {
    font-size: 1.3rem;
    color: var(--navy);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.founder-highlights ul {
    list-style: none;
    padding: 0;
}

.founder-highlights li {
    padding: 0.5rem 0;
    color: var(--dark-gray);
    position: relative;
    padding-left: 1.5rem;
}

.founder-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

.experience-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--light-gray);
}

.experience-item:last-child {
    border-bottom: none;
}

.experience-year {
    font-weight: 600;
    color: var(--gold);
}

.experience-detail strong {
    color: var(--navy);
    display: block;
    margin-bottom: 0.5rem;
}

.experience-detail p {
    color: var(--medium-gray);
    font-size: 0.95rem;
}

.founder-education p {
    color: var(--dark-gray);
    margin-bottom: 0.75rem;
}

@media (max-width: 768px) {
    .experience-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}

/* ===================================
   CTA SECTION
   =================================== */
.section-cta {
    background: linear-gradient(135deg, var(--navy) 0%, #162d52 100%);
    color: var(--white);
    text-align: center;
    padding: 100px 0;
}

.cta-title {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

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

@media (max-width: 768px) {
    .cta-title {
        font-size: 2rem;
    }

    .cta-text {
        font-size: 1.1rem;
    }
}

/* ===================================
   CONTACT
   =================================== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-option {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold) 0%, #c29b2e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--navy);
}

.contact-option-title {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.contact-option-text {
    color: var(--medium-gray);
    line-height: 1.7;
}

.contact-details {
    text-align: center;
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-details-title {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.contact-details-subtitle {
    font-size: 1.1rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
}

.contact-info i {
    color: var(--gold);
    width: 20px;
}

.contact-info a {
    color: var(--navy);
    text-decoration: none;
    font-weight: 600;
}

.contact-info a:hover {
    color: var(--gold);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--navy);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

.footer-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    clip-path: inset(0 0 18% 0);
    margin-bottom: 1rem;
    filter: brightness(0) invert(1); /* Make logo white in footer */
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    max-width: 400px;
}

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

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* ===================================
   BACK TO TOP BUTTON
   =================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--navy);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top:hover {
    background: #c29b2e;
    transform: translateY(-3px);
}

.back-to-top.visible {
    display: flex;
}

/* ===================================
   ANIMATIONS
   =================================== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   SCROLL OFFSET FOR JUMP LINKS
   =================================== */
section {
    scroll-margin-top: calc(var(--header-height) + 20px);
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
