:root {
    --primary-color: #0A192F;
    /* Navy Blue */
    --accent-color: #D4AF37;
    /* Gold */
    --accent-color-hover: #B5952F;
    --text-dark: #1F2937;
    --text-light: #F3F4F6;
    --bg-light: #FFFFFF;
    --bg-off-white: #F9FAFB;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    line-height: 1.2;
}

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

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

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

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-primary-sm {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--primary-color);
    border: 2px solid var(--accent-color);
}

.btn-primary:hover {
    background-color: var(--accent-color-hover);
    border-color: var(--accent-color-hover);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    margin-left: 15px;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.btn-primary-sm {
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-primary-sm:hover {
    background-color: var(--accent-color-hover);
}

/* Navbar */
.navbar {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links li a {
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition);
}

.nav-links li a:hover {
    color: var(--accent-color);
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding-top: 140px;
    padding-bottom: 80px;
    background-color: var(--bg-off-white);
    overflow: hidden;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-image-wrapper {
    position: relative;
    z-index: 1;
}

.image-accent-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 20px;
    top: 20px;
    right: -20px;
    z-index: -1;
}

.hero-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* About Section */
.about-section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.divider {
    height: 3px;
    width: 60px;
    background-color: var(--accent-color);
    margin: 10px auto 0;
}

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

.highlight-text {
    font-size: 1.3rem;
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 600;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background-color: var(--primary-color);
    color: var(--text-light);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.service-card {
    background-color: var(--bg-light);
    color: var(--text-dark);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
    border: 2px solid var(--accent-color);
}

.service-card h3 {
    margin-bottom: 15px;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.price span {
    font-size: 1rem;
    color: #6B7280;
    font-weight: 400;
}

.offer {
    color: var(--accent-color-hover);
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.features-list {
    text-align: left;
    margin-bottom: 30px;
}

.features-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-list li i {
    color: var(--accent-color);
}

.service-info h2 {
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-info p {
    color: #D1D5DB;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.industry-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
}

.industry-item:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.industry-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 10px;
    display: block;
}

.industry-item span {
    font-size: 0.9rem;
}

/* Book Section */
.book-section {
    padding: 100px 0;
    background-color: var(--bg-off-white);
}

.book-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.book-image img {
    width: 100%;
    max-width: 400px;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
    transition: var(--transition);
}

.book-image img:hover {
    transform: scale(1.02);
}

.tag {
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.book-desc {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.book-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.book-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.availability {
    color: #10B981;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.availability::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background-color: #10B981;
    border-radius: 50%;
}

/* Testimonials */
.testimonials-section {
    padding: 100px 0;
}

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

.testimonial-card {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #E5E7EB;
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-color: var(--accent-color);
}

.stars {
    color: var(--accent-color);
    margin-bottom: 15px;
}

.testimonial-card p {
    font-style: italic;
    color: #4B5563;
    margin-bottom: 20px;
}

.author {
    font-weight: 600;
    color: var(--primary-color);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-image: linear-gradient(rgba(10, 25, 47, 0.9), rgba(10, 25, 47, 0.9)), url('../brain/baf7e530-7569-4e9e-9b02-60003a8b96f0/miguel_portrait_1770491967889.png');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    text-align: center;
    color: var(--text-light);
}

.contact-box {
    max-width: 600px;
    margin: 0 auto;
}

.contact-box h2 {
    color: var(--text-light);
    margin-bottom: 20px;
}

.contact-box p {
    color: #D1D5DB;
    margin-bottom: 40px;
}

.booking-form {
    display: grid;
    gap: 15px;
}

.booking-form input,
.booking-form select {
    width: 100%;
    padding: 15px;
    border-radius: 4px;
    border: none;
    font-family: var(--font-body);
}

.btn-primary.block {
    width: 100%;
}

/* Footer */
footer {
    background-color: #050d1a;
    color: #9CA3AF;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h3 {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.social-links a {
    color: #9CA3AF;
    font-size: 1.5rem;
    margin-left: 20px;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 968px) {
    h1 {
        font-size: 2.5rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-subtitle {
        margin: 0 auto 2.5rem;
    }

    .hero-btns {
        justify-content: center;
    }

    .image-accent-bg {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .book-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .book-meta {
        justify-content: center;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .hero {
        padding-top: 100px;
    }

    .btn-secondary {
        margin-left: 0;
        margin-top: 10px;
        display: block;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
    }
}

/* --- Multi-Page Extension Styles --- */

/* Page Header */
.page-header {
    margin-top: 80px;
    /* Offset fixed nav */
    padding: 60px 0;
    background-color: var(--primary-color);
    color: var(--text-light);
    text-align: center;
}

.page-header h1 {
    color: var(--text-light);
    font-size: 3rem;
    margin-bottom: 10px;
}

.lead {
    font-size: 1.25rem;
    color: var(--accent-color);
    font-weight: 500;
}

/* Section Content Generic */
.section-content {
    padding: 80px 0;
}

/* Content Blocks (About) */
.content-block {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.content-block.reverse {
    flex-direction: row-reverse;
}

.content-block .text-content {
    flex: 1;
}

.content-block .image-content {
    flex: 1;
}

.rounded-img {
    border-radius: 50%;
    width: 300px;
    height: 300px;
    object-fit: cover;
    margin: 0 auto;
    display: block;
    border: 5px solid var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-img {
    width: 100%;
    border-radius: 10px;
}

.shadow {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Mission Statement */
.mission-statement {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-off-white);
    padding: 60px;
    border-radius: 10px;
    border-left: 5px solid var(--accent-color);
}

/* Philosophy Grid (Coaching) */
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.philosophy-card {
    padding: 30px;
    background: var(--bg-light);
    border: 1px solid #eee;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
}

.philosophy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-color: var(--accent-color);
}

.icon-lg {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Pricing Section */
.pricing-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.price-card-lg {
    background: var(--bg-light);
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.price-header {
    background: var(--primary-color);
    color: white;
    padding: 40px;
}

.price-header h3 {
    color: var(--accent-color);
    margin: 0;
}

.price-lg {
    font-size: 4rem;
    font-weight: 700;
}

.price-lg span {
    font-size: 1.2rem;
    font-weight: 400;
}

.price-body {
    padding: 40px;
}

.price-body ul {
    text-align: left;
    max-width: 400px;
    margin: 20px auto;
}

.price-body li {
    margin-bottom: 10px;
}

.price-body li i {
    color: var(--accent-color);
    margin-right: 10px;
}

.special-offer {
    background: #FEF3C7;
    padding: 15px;
    border-radius: 4px;
    margin: 20px 0;
    display: inline-block;
}

.badge {
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-right: 5px;
}

/* Book Layout */
.book-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 80px;
}

.book-visual {
    flex: 1;
    text-align: center;
}

.book-cover-lg {
    width: 100%;
    max-width: 350px;
    margin-bottom: 20px;
}

.book-info {
    flex: 1.5;
}

.themes-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.themes-list li i {
    color: var(--accent-color);
    margin-right: 10px;
    width: 25px;
    text-align: center;
}

/* Stories Cards */
.story-card {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 80px;
    background: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
}

.story-card.reverse {
    flex-direction: row-reverse;
}

.story-image {
    flex: 1;
    height: 400px;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-image i {
    font-size: 5rem;
    color: var(--accent-color);
}

.story-content {
    flex: 1;
    padding: 40px;
}

.story-subtitle {
    font-weight: 600;
    color: var(--accent-color-hover);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Responsive Adjustments for new pages */
@media (max-width: 768px) {

    .content-block,
    .content-block.reverse,
    .story-card,
    .story-card.reverse,
    .book-layout {
        flex-direction: column;
    }

    .story-image {
        height: 250px;
        width: 100%;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
    }
}