/* ============================================
   Modern Mint Theme - iamhonor.com
   ============================================ */

/* Color Variables */
:root {
    --bg-charcoal: #121212;
    --accent-gold: #D4AF37;
    --text-silver: #E0E0E0;
    --text-metallic: #C0C0C0;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

/* Typography */
body {
    font-family: 'Lato', sans-serif;
    background-color: var(--bg-charcoal);
    color: var(--text-silver);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--accent-gold);
    font-weight: 600;
}

/* Navigation Bar - Glassmorphism */
#mainNav {
    background: transparent;
    transition: all 0.3s ease;
    padding: 1rem 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

#mainNav.scrolled {
    background: var(--glass-bg);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
}

.navbar-logo {
    height: 35px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
}

.navbar-nav .nav-link {
    color: var(--text-silver) !important;
    font-weight: 400;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-gold) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--accent-gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

.navbar-toggler {
    border: 1px solid var(--glass-border);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28212, 175, 55, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
    padding-top: 100px;
    background: linear-gradient(135deg, var(--bg-charcoal) 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

/* Warp Drive Canvas */
#warp-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Hero Content - Must be above canvas */
.hero-content {
    position: relative;
    z-index: 3;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 2;
    opacity: 0.5;
}

.hero-heading {
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-subtext {
    font-size: 1.3rem;
    color: var(--text-silver);
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
}

/* Buttons */
.btn-gold {
    background-color: var(--accent-gold);
    color: var(--bg-charcoal);
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 0;
}

.btn-gold:hover {
    background-color: #B8941F;
    color: var(--bg-charcoal);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Stats Section */
.stats-section {
    background-color: #1a1a1a;
    padding: 80px 0;
}

.stat-card {
    padding: 2rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-metallic);
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-silver);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 300;
}

/* Philosophy Section */
.philosophy-section {
    padding: 100px 0;
    background-color: var(--bg-charcoal);
}

.section-heading {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 2rem;
}

.philosophy-text {
    font-size: 1.1rem;
    color: var(--text-silver);
    line-height: 1.8;
}

/* Time Visual */
.time-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.time-circle {
    width: 200px;
    height: 200px;
    border: 3px solid var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.time-year {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    font-family: 'Playfair Display', serif;
}

.time-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.time-line {
    position: absolute;
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, var(--accent-gold), transparent);
    top: 50%;
    left: 50%;
    transform-origin: top center;
}

.time-line:nth-child(1) {
    transform: translate(-50%, -50%) rotate(0deg);
}

.time-line:nth-child(2) {
    transform: translate(-50%, -50%) rotate(120deg);
}

.time-line:nth-child(3) {
    transform: translate(-50%, -50%) rotate(240deg);
}

/* Expertise Section */
.expertise-section {
    padding: 100px 0;
    background-color: #1a1a1a;
}

.expertise-card {
    padding: 2.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-align: center;
}

.expertise-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.expertise-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.expertise-title {
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.expertise-text {
    color: var(--text-silver);
    line-height: 1.7;
}

/* Book Section */
.book-section {
    padding: 100px 0;
    background-color: var(--bg-charcoal);
}

.book-cover-wrapper {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.book-cover-img {
    width: 100%;
    height: auto;
    max-width: 400px;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.book-cover-img:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 25px 70px rgba(212, 175, 55, 0.4);
}

.book-description {
    font-size: 1.1rem;
    color: var(--text-silver);
    line-height: 1.8;
}

/* CEO Section */
.ceo-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, var(--bg-charcoal) 100%);
}

.ceo-heading {
    font-size: 3.5rem;
    color: var(--accent-gold);
    font-weight: 700;
    line-height: 1.2;
}

.ceo-text {
    font-size: 1.2rem;
    color: var(--text-silver);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.form-heading {
    color: var(--accent-gold);
    font-size: 2rem;
}

.form-label {
    color: var(--text-silver);
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.form-control {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-silver);
    padding: 0.75rem;
    border-radius: 4px;
}

.form-control:focus {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-gold);
    color: var(--text-silver);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.form-control::placeholder {
    color: var(--text-metallic);
    opacity: 0.6;
}

/* Alert Messages */
.alert {
    border-radius: 4px;
    padding: 1rem;
    margin-top: 1rem;
    border: 1px solid;
}

.alert-success {
    background-color: rgba(40, 167, 69, 0.1);
    border-color: rgba(40, 167, 69, 0.3);
    color: #4ade80;
}

.alert-danger {
    background-color: rgba(220, 53, 69, 0.1);
    border-color: rgba(220, 53, 69, 0.3);
    color: #f87171;
}

/* Footer */
.footer-section {
    background-color: #0a0a0a;
    border-top: 1px solid var(--glass-border);
}

.footer-logo {
    height: 40px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

.footer-heading {
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.footer-text {
    color: var(--text-silver);
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
}

.social-link {
    color: var(--text-silver);
    text-decoration: none;
    transition: color 0.3s ease;
    margin-right: 1rem;
    margin-bottom: 0.5rem;
}

.social-link:hover {
    color: var(--accent-gold);
}

.footer-divider {
    border-color: var(--glass-border);
    opacity: 0.3;
}

.footer-copyright {
    color: var(--text-metallic);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-heading {
        font-size: 2.5rem;
    }
    
    .hero-subtext {
        font-size: 1.1rem;
    }
    
    .section-heading {
        font-size: 2rem;
    }
    
    .ceo-heading {
        font-size: 2.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .time-visual {
        height: 300px;
        margin-top: 2rem;
    }
    
    .time-circle {
        width: 150px;
        height: 150px;
    }
    
    .time-year {
        font-size: 2rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-heading {
        font-size: 2rem;
    }
    
    .btn-gold {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Section Spacing */
section {
    position: relative;
}

/* ============================================
   Philosophy Page Styles
   ============================================ */

/* Philosophy Hero Section */
.philosophy-hero-section {
    padding-top: 100px;
    background: linear-gradient(135deg, var(--bg-charcoal) 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.philosophy-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.philosophy-hero-heading {
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-family: 'Playfair Display', serif;
}

.philosophy-hero-subtext {
    font-size: 1.4rem;
    color: var(--text-silver);
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto;
}

/* Origin Story Section */
.origin-story-section {
    padding: 100px 0;
    background-color: var(--bg-charcoal);
}

.origin-story-text {
    font-size: 1.1rem;
    color: var(--text-silver);
    line-height: 1.8;
}

/* Origin Visual - Fracture Circle */
.origin-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fracture-circle {
    width: 300px;
    height: 300px;
    border: 3px solid var(--accent-gold);
    border-radius: 50%;
    position: relative;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin: 0 auto;
}

.fracture-inner {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fracture-year {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-gold);
    font-family: 'Playfair Display', serif;
    position: relative;
    z-index: 2;
}

.fracture-line {
    position: absolute;
    background: linear-gradient(to bottom, var(--accent-gold), transparent);
    width: 2px;
    height: 120px;
    top: 50%;
    left: 50%;
    transform-origin: top center;
    opacity: 0.6;
}

.fracture-line-1 {
    transform: translate(-50%, -50%) rotate(0deg);
}

.fracture-line-2 {
    transform: translate(-50%, -50%) rotate(120deg);
}

.fracture-line-3 {
    transform: translate(-50%, -50%) rotate(240deg);
}

/* Methodology Section */
.methodology-section {
    padding: 100px 0;
    background-color: #1a1a1a;
}

.methodology-card {
    padding: 2.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
}

.methodology-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.methodology-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent-gold);
    font-family: 'Playfair Display', serif;
    opacity: 0.3;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    line-height: 1;
}

.methodology-title {
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-top: 1rem;
    font-family: 'Playfair Display', serif;
}

.methodology-text {
    color: var(--text-silver);
    line-height: 1.7;
    font-size: 1rem;
}

/* Manifesto Section */
.manifesto-section {
    padding: 100px 0;
    background-color: #1a1a1a;
}

.manifesto-text {
    font-size: 1.2rem;
    color: var(--text-silver);
    line-height: 1.9;
    max-width: 900px;
    margin: 0 auto;
}

/* Philosophy CTA Section */
.philosophy-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-charcoal) 0%, #1a1a1a 100%);
}

.cta-text {
    font-size: 1.3rem;
    color: var(--text-silver);
    font-weight: 300;
}

/* Responsive Design for Philosophy Page */
@media (max-width: 768px) {
    .philosophy-hero-heading {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .philosophy-hero-subtext {
        font-size: 1.1rem;
    }
    
    .fracture-circle {
        width: 250px;
        height: 250px;
    }
    
    .fracture-year {
        font-size: 2.5rem;
    }
    
    .methodology-number {
        font-size: 3rem;
    }
    
    .manifesto-text {
        font-size: 1.1rem;
    }
    
    .cta-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .philosophy-hero-heading {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .fracture-circle {
        width: 200px;
        height: 200px;
    }
    
    .fracture-year {
        font-size: 2rem;
    }
}

/* ============================================
   Expertise Page Styles
   ============================================ */

/* Expertise Hero Section */
.expertise-hero-section {
    padding-top: 100px;
    background: linear-gradient(135deg, var(--bg-charcoal) 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.expertise-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.expertise-hero-heading {
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-family: 'Playfair Display', serif;
}

.expertise-hero-subtext {
    font-size: 1.4rem;
    color: var(--text-silver);
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto;
}

/* Gold Outline Button */
.btn-gold-outline {
    background-color: transparent;
    color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 0;
    text-decoration: none;
    display: inline-block;
}

.btn-gold-outline:hover {
    background-color: var(--accent-gold);
    color: var(--bg-charcoal);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Experience Timeline Section */
.experience-timeline-section {
    padding: 100px 0;
    background-color: var(--bg-charcoal);
    position: relative;
}

.timeline-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent-gold), transparent);
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    display: flex;
    align-items: flex-start;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    width: 20px;
    height: 20px;
    background-color: var(--accent-gold);
    border: 4px solid var(--bg-charcoal);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3);
}

.timeline-content {
    width: 45%;
    padding: 2rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
    margin-left: 0;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    margin-right: 0;
}

.timeline-content:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.role-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    text-align: center;
    opacity: 0.8;
}

.role-icon-teaching {
    /* Teaching/Education icon styling */
}

.role-icon-realestate {
    /* Real Estate icon styling */
}

.role-icon-finance {
    /* Finance/Banking icon styling */
}

.role-icon-operations {
    /* Operations icon styling */
}

.role-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    border-radius: 4px;
}

.role-big-deal {
    background: rgba(212, 175, 55, 0.1);
    border-left: 3px solid var(--accent-gold);
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 4px;
}

.big-deal-label {
    font-size: 0.85rem;
    color: var(--accent-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.big-deal-text {
    color: var(--text-silver);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.role-title {
    font-size: 1.8rem;
    color: var(--accent-gold);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.role-position {
    font-size: 1.1rem;
    color: var(--text-silver);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.role-date {
    font-size: 0.9rem;
    color: var(--text-metallic);
    font-style: italic;
    margin-bottom: 1rem;
}

.role-impact {
    margin-top: 1rem;
}

.impact-text {
    color: var(--text-silver);
    font-size: 1rem;
    line-height: 1.8;
}

.role-metrics {
    margin-top: 1rem;
}

.metric-item {
    color: var(--text-metallic);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.metric-item::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
}

/* Executive Certifications Section */
.certifications-section {
    padding: 100px 0;
    background-color: #1a1a1a;
}

.certification-card {
    padding: 2rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-align: center;
}

.certification-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.certification-card-highlight {
    border: 2px solid var(--accent-gold);
    background: rgba(212, 175, 55, 0.1);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2);
}

.certification-card-highlight:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
    transform: translateY(-10px) scale(1.02);
}

.certification-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.certification-title {
    font-size: 1.1rem;
    color: var(--accent-gold);
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.certification-card-highlight .certification-title {
    color: var(--accent-gold);
    font-weight: 700;
}

.certification-issuer {
    font-size: 0.9rem;
    color: var(--text-metallic);
    font-style: italic;
}

/* My Commitment / Open Letter Section */
.commitment-section {
    padding: 100px 0;
    background-color: var(--bg-charcoal);
}

.commitment-card {
    background-color: #1E1E1E;
    border-left: 4px solid var(--accent-gold);
    padding: 4rem;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
}

.commitment-heading {
    font-size: 2.5rem;
    color: var(--accent-gold);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.commitment-content {
    color: var(--text-silver);
}

.commitment-text {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-silver);
    margin-bottom: 1.5rem;
}

.commitment-text strong {
    color: var(--text-silver);
    font-weight: 700;
}

.commitment-bold {
    font-weight: 600;
    margin-top: 1.5rem;
}

.commitment-highlight {
    color: var(--accent-gold);
    font-weight: 700;
    background: rgba(212, 175, 55, 0.1);
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
}

.commitment-dollar {
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1.15em;
    background: rgba(212, 175, 55, 0.2);
    padding: 0.15rem 0.35rem;
    border-radius: 3px;
    display: inline-block;
}

.commitment-signature {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--accent-gold);
    font-style: italic;
    text-align: right;
    margin-top: 3rem;
    margin-bottom: 0;
    font-weight: 600;
}

/* Book Why Section */
.book-why-section {
    padding: 100px 0;
    background-color: #1a1a1a;
}

.book-why-text {
    font-size: 1.1rem;
    color: var(--text-silver);
    line-height: 1.8;
}

/* Project Spotlight Section */
.project-spotlight-section {
    padding: 100px 0;
    background-color: #1a1a1a;
}

.project-spotlight-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-align: center;
}

.project-icon {
    font-size: 4rem;
    color: var(--text-metallic);
    opacity: 0.8;
}

.project-title {
    font-size: 2.5rem;
    color: var(--accent-gold);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.project-box {
    padding: 2rem;
    border-radius: 8px;
    height: 100%;
    text-align: left;
    transition: all 0.3s ease;
}

.project-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.project-challenge {
    background: rgba(220, 53, 69, 0.05);
    border-left: 3px solid rgba(220, 53, 69, 0.5);
}

.project-solution {
    background: rgba(212, 175, 55, 0.1);
    border-left: 3px solid var(--accent-gold);
}

.project-result {
    background: rgba(40, 167, 69, 0.05);
    border-left: 3px solid rgba(40, 167, 69, 0.5);
}

.project-box-heading {
    font-size: 1.3rem;
    color: var(--accent-gold);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.project-box-text {
    color: var(--text-silver);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* The Reputation (Testimonials) Section */
.reputation-section {
    padding: 100px 0;
    background-color: var(--bg-charcoal);
}

.testimonial-card {
    padding: 2.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.testimonial-quote-icon {
    font-size: 4rem;
    color: var(--accent-gold);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    opacity: 0.3;
    font-style: italic;
}

.testimonial-text {
    color: var(--text-silver);
    font-size: 1rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
    min-height: 120px;
}

.testimonial-author {
    color: var(--accent-gold);
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.25rem;
}

.testimonial-role {
    color: var(--text-metallic);
    font-size: 0.85rem;
    font-style: italic;
    margin: 0;
}

/* Education Section */
.education-section {
    padding: 100px 0;
    background-color: var(--bg-charcoal);
}

.education-card {
    padding: 2.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-align: center;
}

.education-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.education-degree {
    font-size: 1.3rem;
    color: var(--accent-gold);
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.education-certificate {
    color: var(--accent-gold);
    font-size: 1.4rem;
    font-weight: 700;
}

.education-card-highlight {
    border: 2px solid var(--accent-gold);
    background: rgba(212, 175, 55, 0.1);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2);
}

.education-card-highlight:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
    transform: translateY(-10px) scale(1.02);
}

.education-certificate-note {
    font-size: 0.85rem;
    color: var(--accent-gold);
    font-style: italic;
    margin-top: 0.5rem;
    font-weight: 500;
}

.education-school {
    font-size: 1rem;
    color: var(--text-silver);
    font-weight: 400;
}

.education-gpa {
    font-size: 0.9rem;
    color: var(--text-metallic);
    font-style: italic;
}

/* Responsive Design for Expertise Page */
@media (max-width: 768px) {
    .expertise-hero-heading {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .expertise-hero-subtext {
        font-size: 1.1rem;
    }
    
    .timeline-line {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 3rem;
    }
    
    .timeline-marker {
        left: 20px;
    }
    
    .timeline-content {
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .role-title {
        font-size: 1.5rem;
    }
    
    .role-position {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .expertise-hero-heading {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .btn-gold-outline {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .education-card {
        padding: 2rem;
    }
    
    .certification-card {
        padding: 1.5rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .testimonial-text {
        min-height: auto;
    }
    
    .commitment-card {
        padding: 2.5rem;
    }
    
    .commitment-heading {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .commitment-text {
        font-size: 1rem;
    }
    
    .commitment-signature {
        font-size: 1.3rem;
    }
    
    .project-spotlight-card {
        padding: 2rem;
    }
    
    .project-title {
        font-size: 2rem;
    }
    
    .project-box {
        margin-bottom: 1.5rem;
    }
}

/* ============================================
   Contact Page Styles
   ============================================ */

/* Contact Hero Section */
.contact-hero-section {
    padding-top: 100px;
    background: linear-gradient(135deg, var(--bg-charcoal) 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.contact-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.contact-hero-heading {
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-family: 'Playfair Display', serif;
}

.contact-hero-subtext {
    font-size: 1.8rem;
    color: var(--accent-gold);
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.contact-hero-copy {
    font-size: 1.2rem;
    color: var(--text-silver);
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--bg-charcoal);
}

.contact-info-wrapper {
    padding: 2rem 0;
}

.contact-info-heading {
    font-size: 2rem;
    color: var(--accent-gold);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.contact-info-item {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--glass-border);
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-info-label {
    font-size: 0.9rem;
    color: var(--accent-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Playfair Display', serif;
}

.contact-info-link {
    color: var(--text-silver);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.contact-info-link:hover {
    color: var(--accent-gold);
}

.contact-info-text {
    color: var(--text-silver);
    font-size: 1.1rem;
    margin: 0;
}

.contact-social-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-social-link {
    color: var(--text-silver);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.5rem 0;
    border-bottom: 1px solid transparent;
}

.contact-social-link:hover {
    color: var(--accent-gold);
    border-bottom-color: var(--accent-gold);
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.contact-form-heading {
    font-size: 2rem;
    color: var(--accent-gold);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.text-gold {
    color: var(--accent-gold);
}

/* Form Styling */
.contact-form .form-label {
    color: var(--text-silver);
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.contact-form .form-control,
.contact-form .form-select {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-silver);
    padding: 0.75rem;
    border-radius: 4px;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-gold);
    color: var(--text-silver);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
    outline: none;
}

.contact-form .form-control::placeholder {
    color: var(--text-metallic);
    opacity: 0.6;
}

.contact-form .form-select option {
    background-color: var(--bg-charcoal);
    color: var(--text-silver);
}

/* CAPTCHA Styling */
.captcha-wrapper {
    margin: 1.5rem 0;
}

.captcha-question {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    padding: 1rem;
}

.captcha-text {
    color: var(--text-silver);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.captcha-input {
    max-width: 200px;
}

/* Alert Messages */
.alert {
    border-radius: 4px;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid;
}

.alert-success {
    background-color: rgba(40, 167, 69, 0.1);
    border-color: rgba(40, 167, 69, 0.3);
    color: #4ade80;
}

.alert-danger {
    background-color: rgba(220, 53, 69, 0.1);
    border-color: rgba(220, 53, 69, 0.3);
    color: #f87171;
}

.alert .btn-close {
    filter: invert(1);
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-hero-heading {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .contact-hero-subtext {
        font-size: 1.4rem;
    }
    
    .contact-hero-copy {
        font-size: 1.1rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .contact-info-wrapper {
        margin-bottom: 3rem;
    }
}

@media (max-width: 576px) {
    .contact-hero-heading {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .contact-hero-subtext {
        font-size: 1.2rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
}

/* ============================================
   Book Page Styles
   ============================================ */

/* Book Hero Section */
.book-hero-section {
    padding-top: 100px;
    background: linear-gradient(135deg, var(--bg-charcoal) 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.book-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.book-hero-heading {
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Playfair Display', serif;
}

.book-hero-subtext {
    font-size: 1.4rem;
    color: var(--text-silver);
    font-weight: 300;
    line-height: 1.8;
}

.book-hero-cover-wrapper {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.book-hero-cover-img {
    width: 100%;
    height: auto;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.book-hero-cover-img:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 25px 70px rgba(212, 175, 55, 0.4);
}

/* Problem & Solution Section */
.book-problem-section {
    padding: 100px 0;
    background-color: var(--bg-charcoal);
}

.problem-solution-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.problem-box {
    padding: 2rem;
    background: rgba(220, 53, 69, 0.05);
    border-left: 3px solid rgba(220, 53, 69, 0.5);
    border-radius: 4px;
}

.problem-heading {
    font-size: 1.5rem;
    color: #f87171;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.problem-text {
    color: var(--text-silver);
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

.solution-box {
    padding: 2rem;
    background: rgba(212, 175, 55, 0.1);
    border-left: 3px solid var(--accent-gold);
    border-radius: 4px;
}

.solution-heading {
    font-size: 1.5rem;
    color: var(--accent-gold);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.solution-text {
    color: var(--text-silver);
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

/* Workflow Section */
.book-workflow-section {
    padding: 100px 0;
    background-color: #1a1a1a;
}

.workflow-wrapper {
    position: relative;
}

.workflow-step {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    height: 100%;
}

.workflow-step:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.step-number {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-gold);
    font-family: 'Playfair Display', serif;
    opacity: 0.2;
    line-height: 1;
}

.step-icon {
    font-size: 3.5rem;
    margin-top: 1rem;
}

.step-title {
    font-size: 1.5rem;
    color: var(--accent-gold);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-top: 1rem;
}

.step-text {
    color: var(--text-silver);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.workflow-arrow {
    color: var(--accent-gold);
    opacity: 0.6;
}

/* Book Why Section */
.book-why-section {
    padding: 100px 0;
    background-color: var(--bg-charcoal);
}

.book-why-text {
    font-size: 1.2rem;
    color: var(--text-silver);
    line-height: 1.9;
    max-width: 800px;
    margin: 0 auto;
}

/* Book CTA Section */
.book-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, var(--bg-charcoal) 100%);
}

.cta-heading {
    font-size: 2.5rem;
    color: var(--accent-gold);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Silver Outline Button */
.btn-silver-outline {
    background-color: transparent;
    color: var(--text-silver);
    border: 2px solid var(--text-silver);
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 0;
    text-decoration: none;
    display: inline-block;
}

.btn-silver-outline:hover {
    background-color: var(--text-silver);
    color: var(--bg-charcoal);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(224, 224, 224, 0.3);
}

/* Responsive Design for Book Page */
@media (max-width: 768px) {
    .book-hero-heading {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }
    
    .book-hero-subtext {
        font-size: 1.2rem;
    }
    
    .workflow-step {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .workflow-arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }
    
    .cta-heading {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .problem-solution-card {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .book-hero-heading {
        font-size: 2rem;
    }
    
    .step-number {
        font-size: 2.5rem;
    }
    
    .step-icon {
        font-size: 3rem;
    }
}

/* ============================================
   The Fusion Page Styles
   ============================================ */

/* Fusion Hero Section */
.fusion-hero-section {
    padding-top: 100px;
    background: linear-gradient(135deg, var(--bg-charcoal) 0%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

/* Particles.js Container */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    background: transparent;
}

/* Hero Content - Must be above particles */
.fusion-hero-content {
    position: relative;
    z-index: 1;
}

.fusion-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.fusion-hero-heading {
    font-size: 5rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-family: 'Playfair Display', serif;
}

.fusion-hero-subtext {
    font-size: 1.6rem;
    color: var(--text-silver);
    font-weight: 300;
    font-style: italic;
    letter-spacing: 1px;
}

/* Fusion Manifesto Section */
.fusion-manifesto-section {
    padding: 100px 0;
    background-color: var(--bg-charcoal);
}

.fusion-manifesto-text {
    font-size: 1.3rem;
    color: var(--text-silver);
    line-height: 2;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 300;
}

/* Fusion Disciplines Section */
.fusion-disciplines-section {
    padding: 100px 0;
    background-color: #1a1a1a;
    position: relative;
}

.fusion-disciplines-section::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--accent-gold), transparent);
    transform: translateX(-50%);
    opacity: 0.2;
}

.discipline-icon-wrapper {
    padding: 2rem;
}

.discipline-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    display: inline-block;
    transition: transform 0.3s ease;
}

.discipline-icon:hover {
    transform: scale(1.1);
}

.discipline-name {
    font-size: 1.8rem;
    color: var(--accent-gold);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.discipline-translation {
    font-size: 1rem;
    color: var(--text-metallic);
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 300;
}

.discipline-content {
    padding: 2rem;
    background: var(--glass-bg);
    border-left: 3px solid var(--accent-gold);
    border-radius: 4px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.discipline-text {
    font-size: 1.2rem;
    color: var(--text-silver);
    line-height: 1.9;
    margin: 0;
    font-weight: 300;
}

/* Fusion Bottom Line Section */
.fusion-bottom-line-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-charcoal) 0%, #1a1a1a 100%);
}

.fusion-bottom-line-text {
    font-size: 1.3rem;
    color: var(--text-silver);
    line-height: 1.9;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
}

/* Responsive Design for Fusion Page */
@media (max-width: 768px) {
    .fusion-hero-heading {
        font-size: 3rem;
        letter-spacing: 2px;
    }
    
    .fusion-hero-subtext {
        font-size: 1.3rem;
    }
    
    .fusion-manifesto-text {
        font-size: 1.1rem;
    }
    
    .discipline-icon {
        font-size: 4rem;
    }
    
    .discipline-name {
        font-size: 1.5rem;
    }
    
    .discipline-text {
        font-size: 1.1rem;
    }
    
    .fusion-bottom-line-text {
        font-size: 1.1rem;
    }
    
    .fusion-disciplines-section::before {
        display: none;
    }
}

@media (max-width: 576px) {
    .fusion-hero-heading {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }
    
    .discipline-content {
        padding: 1.5rem;
    }
}

