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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #1e293b;
    background-color: #ffffff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.5em;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.4rem;
}

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

a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2563eb;
}

/* Section Spacing */
section {
    padding: 5rem 0;
}

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

.section-header h2 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Header Styles */
/* Force sticky header across the site */
.header {
  position: sticky !important;
  top: 0;
  z-index: 10000; /* above any banners */
  margin-bottom: 0;
}

.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #111827;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-brand h1 {
    font-size: 1.5rem;
    color: #ffffff;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #ffffff;
}

.nav-cta {
    background: #3b82f6;
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.nav-cta:hover {
    background: #2563eb !important;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, rgba(219, 234, 254, 0.55) 0%, rgba(191, 219, 254, 0.50) 50%, rgba(147, 197, 253, 0.45) 100%);
    margin-top: 0;
    position: relative;
}

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

.hero-text h1 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.hero-text h2 {
    color: #3b82f6;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.2rem;
    color: #475569;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}
/* Hide hero stats section per request */
.hero-stats {
    display: none !important;
}


.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #3b82f6;
}

.stat-label {
    font-size: 0.9rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-image {
    justify-content: center;
    align-items: center;
}

/* Headshot styling */
.hero-photo {
    max-width: 340px;
    width: 100%;
    padding: 0;
    border-radius: 18px;
    background: transparent;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.2);
    margin-left: auto;
    margin-right: 0;
}

.profile-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 14px;
    background: #fff;
    outline: 5px solid #ffffff;
    outline-offset: -5px;
}

@media (max-width: 768px) {
  .hero-photo {
    max-width: 300px;
    padding: 0;
    border-radius: 16px;
    margin-left: auto;
    margin-right: auto;
  }
  .profile-image {
    border-radius: 12px;
    outline-width: 4px;
  }
}
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-placeholder {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: rotate(2deg);
    transition: transform 0.3s ease;
}

.hero-placeholder:hover {
    transform: rotate(0deg) scale(1.05);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #3b82f6;
    color: white;
}

.btn-primary:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #3b82f6;
    border: 2px solid #3b82f6;
}

.btn-secondary:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.2);
}
/* Ensure button text stays visible on hover (override global a:hover) */
.btn.btn-primary:hover,
.btn.btn-primary:focus {
    color: #ffffff !important;
}

.btn.btn-secondary:hover,
.btn.btn-secondary:focus {
    color: #ffffff !important;
}

.btn:hover,
.btn:focus {
    text-decoration: none;
}


/* About Section */
.about {
    background: #ffffff;
}

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

.about-highlight {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    padding: 3rem;
    border-radius: 16px;
    margin-bottom: 3rem;
    text-align: center;
}

.about-highlight h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about-highlight p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.about-book {
    margin-bottom: 3rem;
}

.book-showcase {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border: 2px solid #cbd5e1;
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.book-showcase::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(59, 130, 246, 0.05), transparent);
    transform: rotate(45deg);
    pointer-events: none;
}

.book-info h4 {
    color: #1e293b;
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.book-info h5 {
    color: #3b82f6;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Crimson Text', serif;
    font-style: italic;
}

.book-info p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.book-link {
    font-weight: 600;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.book-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.book-link::after {
    content: "→";
    transition: transform 0.3s ease;
}

.book-link:hover::after {
    transform: translateX(4px);
}

.about-experience, .about-mission {
    margin-bottom: 2.5rem;
}

.about-experience h4, .about-mission h4 {
    color: #1e293b;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.about-experience ul {
    list-style: none;
    padding-left: 0;
}

.about-experience li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    color: #475569;
}

.about-experience li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Services Section */
.services {
    background: #f8fafc;
}

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

.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    border-top: 4px solid #3b82f6;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

.service-card h3 {
    color: #1e293b;
    margin-bottom: 1rem;
}

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

.delivery-options {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    border: 2px solid #e0f2fe;
}

.delivery-options h3 {
    color: #1e293b;
    margin-bottom: 2rem;
}

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

.option h4 {
    color: #3b82f6;
    margin-bottom: 0.5rem;
}

.option p {
    color: #64748b;
}

/* Approach Section */
.approach {
    background: #ffffff;
}

.approach-content {
    max-width: 1000px;
    margin: 0 auto;
}

.approach-philosophy {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.approach-philosophy h3 {
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.approach-philosophy p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #475569;
}

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

.feature {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.1);
}

.feature h4 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.feature p {
    color: #64748b;
    line-height: 1.6;
}

.methodology {
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    padding: 3rem;
    border-radius: 16px;
}

.methodology h3 {
    text-align: center;
    color: #1e293b;
    margin-bottom: 2.5rem;
    font-size: 2rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.step h4 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.step p {
    color: #64748b;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    background: #f8fafc;
}

.testimonials-placeholder {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.testimonial-card {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    max-width: 600px;
    text-align: center;
}

.testimonial-content p {
    font-size: 1.2rem;
    color: #475569;
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.testimonial-author h4 {
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.testimonial-author p {
    color: #64748b;
    font-size: 0.9rem;
}

.testimonials-note {
    text-align: center;
}

.testimonials-note p {
    color: #64748b;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #1e293b, #334155);
    color: white;
}

.contact .section-header h2 {
    color: white;
}

.contact .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    color: white;
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item h4 {
    color: #60a5fa;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item a {
    color: #60a5fa;
}

.contact-item a:hover {
    color: #93c5fd;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.contact-cta {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    color: #1e293b;
}

.contact-cta h3 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.contact-cta p {
    color: #475569;
    margin-bottom: 2rem;
}

.calendly-placeholder {
    margin-bottom: 2rem;
}

.calendly-box {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border: 2px dashed #cbd5e1;
    text-align: center;
}

.calendly-box h4 {
    color: #475569;
    margin-bottom: 1rem;
}

.calendly-box p {
    color: #64748b;
    margin-bottom: 1rem;
}

.calendly-box ol {
    text-align: left;
    color: #64748b;
    padding-left: 1.5rem;
}

.calendly-box li {
    margin-bottom: 0.5rem;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #0f172a;
    color: white;
    padding: 3rem 0 2rem;
}

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

.footer-main h3 {
    color: white;
    margin-bottom: 1rem;
}

.footer-main p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-contact h4,
.footer-services h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.footer-contact a {
    color: #60a5fa;
}

.footer-services ul {
    list-style: none;
}

.footer-services li {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
}