/* ============================================
   MAKING A MARK - Dedicated Styles
   ============================================ */

/* Hero Section with Background Image */
.mam-hero {
    min-height: 100vh;
    background-image: url('images/iStock-951308880.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 120px 2rem 4rem;
    position: relative;
}

.mam-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
}

.mam-hero-watermark {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 90vw;
    max-width: 1200px;
    opacity: 0.12;
    z-index: 0;
    pointer-events: none;
}

.mam-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding-left: 2rem;
}

.mam-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 2rem;
    text-align: left;
}

.animated-word {
    color: #d4706b;
    font-weight: 900;
    transition: opacity 0.5s ease;
}

.mam-hero .hero-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #d4706b;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.mam-hero .hero-cta:hover {
    background: #c95f5a;
}

/* Blurb Section */
.mam-blurb {
    padding: 5rem 2rem;
    background: var(--white);
    text-align: center;
}

.mam-blurb h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.mam-blurb p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #555;
}

/* Process Section - Light Red Background */
.mam-process {
    padding: 5rem 2rem;
    background: rgba(224, 0, 64, 0.08);
}

.mam-process .section-header h2 {
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--navy);
    margin-bottom: 2rem;
}

.mam-process .process-intro-text {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #555;
}

.mam-process .process-subheader {
    text-align: center;
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 2rem;
}

.mam-process .process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.mam-process .process-box {
    background: var(--white);
    border: 2px solid #d4706b;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mam-process .process-box:nth-child(1) { border-color: #d4706b; }
.mam-process .process-box:nth-child(2) { border-color: #db8a80; }
.mam-process .process-box:nth-child(3) { border-color: #e2a49b; }
.mam-process .process-box:nth-child(4) { border-color: #e9beb7; }

.mam-process .process-box:nth-child(1):hover { background: #d4706b; border-color: #d4706b; }
.mam-process .process-box:nth-child(2):hover { background: #db8a80; border-color: #db8a80; }
.mam-process .process-box:nth-child(3):hover { background: #e2a49b; border-color: #e2a49b; }
.mam-process .process-box:nth-child(4):hover { background: #e9beb7; border-color: #e9beb7; }

.mam-process .process-box:hover h4,
.mam-process .process-box:hover .process-icon {
    opacity: 0;
}

.mam-process .process-box:hover .process-description {
    opacity: 1;
}

.mam-process .process-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    transition: opacity 0.3s ease;
}

.mam-process .process-icon svg {
    width: 100%;
    height: 100%;
    stroke: #d4706b;
    stroke-width: 1.5;
    fill: none;
}

.mam-process .process-box:nth-child(1) .process-icon svg { stroke: #d4706b; }
.mam-process .process-box:nth-child(2) .process-icon svg { stroke: #db8a80; }
.mam-process .process-box:nth-child(3) .process-icon svg { stroke: #e2a49b; }
.mam-process .process-box:nth-child(4) .process-icon svg { stroke: #e9beb7; }

.mam-process .process-box h4 {
    font-size: 1rem;
    color: var(--navy);
    transition: opacity 0.3s ease;
}

.mam-process .process-description {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    opacity: 0;
    color: var(--white);
    font-size: 0.95rem;
    line-height: 1.6;
    transition: opacity 0.3s ease;
}

.mam-process .process-summary {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #555;
}

/* Services Section */
.mam-services-intro {
    padding: 5rem 2rem 3rem;
    background: var(--navy);
}

.mam-services-intro::before {
    display: none;
}

.mam-services-intro .section-header h2 {
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--white);
    margin-bottom: 2rem;
}

.mam-services-intro .services-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--white);
}

.mam-services-accordion {
    padding: 0;
}

/* Services Accordion */
.services-accordion {
    width: 100%;
}

.accordion-item {
    margin-bottom: 0;
}

.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 4rem max(4rem, calc((100vw - 1200px) / 2));
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    gap: 3rem;
}

.accordion-header h3 {
    font-family: 'Creato Display', sans-serif;
    font-size: clamp(3.5rem, 6vw, 5rem);
    font-weight: 700;
    color: white;
    margin: 0;
    white-space: nowrap;
}

.accordion-subtitle {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    flex: 1;
}

.accordion-toggle {
    font-size: 3rem;
    color: white;
    font-weight: 300;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Graduated pastel red/coral/pink colors (mixed with white for lighter feel) */
.accordion-color-1 { background: #d4706b; }
.accordion-color-2 { background: #db8a80; }
.accordion-color-3 { background: #e2a49b; }
.accordion-color-4 { background: #e9beb7; }

.accordion-color-1:hover { background: #c95f5a; }
.accordion-color-2:hover { background: #d07a70; }
.accordion-color-3:hover { background: #d7948b; }
.accordion-color-4:hover { background: #deadaa; }

.accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    background: var(--white);
}

.accordion-item.active .accordion-panel {
    max-height: 3000px;
}

.accordion-content {
    padding: 3rem max(2.5rem, calc((100vw - 1200px) / 2));
    max-width: none;
    margin: 0 auto;
}

.accordion-content-with-svg {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
    margin: 2rem 0;
}

.accordion-svg {
    display: flex;
    justify-content: center;
    margin: 2rem auto;
}

.accordion-svg img {
    width: 100%;
    max-width: 900px;
    height: auto;
}

.accordion-svg-right {
    display: flex;
    justify-content: center;
}

.accordion-svg-center {
    display: flex;
    justify-content: center;
    margin: 2rem auto;
}

.accordion-svg-center img {
    max-width: 900px;
}

.emerge-columns-centered {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.emerge-col h4 {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.emerge-col ul {
    list-style: none;
    padding: 0;
}

.emerge-col li {
    padding: 0.4rem 0;
    color: #666;
    font-size: 0.95rem;
}

.waterfall-intro {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
    max-width: 900px;
}

.waterfall-section h4 {
    font-size: 1.25rem;
    color: var(--navy);
    margin: 2rem 0 1rem;
}

.waterfall-list {
    list-style: none;
    margin-bottom: 2rem;
}

.waterfall-list li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.waterfall-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.9rem;
    width: 6px;
    height: 6px;
    background: var(--red);
    border-radius: 50%;
}

.outcomes-list li {
    background: rgba(224, 0, 64, 0.05);
    padding: 0.75rem 1rem 0.75rem 2rem;
    margin-bottom: 0.5rem;
    border-radius: 4px;
}

.issues-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin: 2rem 0;
}

.issues-column h4 {
    margin-top: 0;
}

.issues-column ul {
    list-style: none;
}

.issues-column li {
    padding: 0.4rem 0;
    color: #666;
}

.emerge-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.emerge-column h4 {
    font-size: 1.1rem;
    margin-top: 0;
    margin-bottom: 1rem;
}

.emerge-column ul {
    list-style: none;
}

.emerge-column li {
    padding: 0.4rem 0;
    padding-left: 1rem;
    position: relative;
    color: #666;
    font-size: 0.95rem;
}

.emerge-column li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 4px;
    height: 4px;
    background: var(--blue);
    border-radius: 50%;
}

.waterfall-note {
    font-style: italic;
    color: #666;
    padding: 1rem;
    background: rgba(60, 145, 230, 0.1);
    border-radius: 4px;
    margin: 2rem 0;
}

.waterfall-closing {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--navy);
    margin: 2rem 0;
    font-weight: 500;
}

.waterfall-cta {
    text-align: center;
    margin-top: 3rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #d4706b;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--navy);
}

/* Podcast Section */
.mam-podcast {
    padding: 5rem 2rem;
    background: var(--white);
}

.mam-podcast .section-header h2 {
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--navy);
    margin-bottom: 1rem;
}

.mam-podcast .podcast-subheader {
    text-align: center;
    font-size: 1.25rem;
    color: var(--blue);
    margin-bottom: 2rem;
}

.mam-podcast .podcast-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.mam-podcast .podcast-video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: var(--black);
    border-radius: 4px;
    overflow: hidden;
}

.mam-podcast .podcast-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.mam-podcast .podcast-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

/* About Section */
.mam-about {
    padding: 5rem 2rem;
    background: var(--off-white);
}

.mam-about .section-header h2 {
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--navy);
    margin-bottom: 3rem;
}

.mam-about .about-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 4rem;
    align-items: start;
}

.mam-about .about-content h3 {
    font-size: 1.75rem;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.mam-about .about-content h4 {
    font-size: 1.25rem;
    color: var(--navy);
    margin: 2rem 0 1rem;
}

.mam-about .about-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

.mam-about .about-content ul {
    list-style: none;
    margin: 1.5rem 0;
}

.mam-about .about-content li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.mam-about .about-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.9rem;
    width: 6px;
    height: 6px;
    background: var(--red);
    border-radius: 50%;
}

.mam-about .benefits-list li {
    background: rgba(224, 0, 64, 0.05);
    padding: 0.75rem 1rem 0.75rem 2rem;
    margin-bottom: 0.5rem;
    border-radius: 4px;
}

.mam-about .source-link {
    font-size: 0.875rem;
    color: #888;
}

.mam-about .source-link a {
    color: var(--blue);
}

.mam-about .about-image {
    position: sticky;
    top: 120px;
}

.mam-about .about-image img {
    width: 100%;
    border-radius: 4px;
}

/* Testimonials Section */
.mam-testimonials {
    padding: 5rem 2rem;
    background: var(--navy);
    color: var(--white);
}

.mam-testimonials .testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mam-testimonials .testimonial {
    display: none;
    animation: fadeIn 0.5s ease;
}

.mam-testimonials .testimonial.active {
    display: block;
}

.mam-testimonials .testimonial-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.mam-testimonials .testimonial-author {
    font-size: 1rem;
    opacity: 0.8;
}

.mam-testimonials .testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.mam-testimonials .testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mam-testimonials .testimonial-dot.active {
    background: var(--white);
}

/* Contact Section */
.mam-contact {
    padding: 5rem 2rem;
    background: var(--white);
}

.mam-contact .contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.mam-contact .contact-info h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.mam-contact .contact-info p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

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

.mam-contact .contact-cta a {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--navy);
    color: var(--navy);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mam-contact .contact-cta a:hover {
    background: var(--navy);
    color: var(--white);
}

.mam-contact .contact-form {
    background: var(--off-white);
    padding: 2.5rem;
    border-radius: 4px;
}

.mam-contact .form-group {
    margin-bottom: 1.5rem;
}

.mam-contact .form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--navy);
}

.mam-contact .form-group input,
.mam-contact .form-group textarea,
.mam-contact .form-group select {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: var(--white);
    font-family: inherit;
    font-size: 1rem;
    color: var(--black);
    transition: border-color 0.3s ease;
}

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

.mam-contact .form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.mam-contact .submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: #d4706b;
    color: var(--white);
    border: none;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease;
}

.mam-contact .submit-btn:hover {
    background: var(--navy);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .mam-process .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .accordion-content-with-svg {
        grid-template-columns: 1fr;
    }

    .emerge-columns-centered {
        grid-template-columns: 1fr;
    }

    .mam-about .about-grid {
        grid-template-columns: 1fr;
    }

    .mam-about .about-image {
        position: static;
        max-width: 300px;
        margin: 0 auto;
        order: -1;
    }

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

@media (max-width: 768px) {
    .mam-hero-content {
        padding-left: 0;
        text-align: center;
    }

    .mam-hero h1 {
        text-align: center;
    }

    .mam-process .process-grid {
        grid-template-columns: 1fr;
    }

    .mam-process .process-box {
        min-height: 180px;
    }

    .accordion-header {
        flex-wrap: wrap;
        padding: 2.5rem 1.5rem;
        gap: 0.75rem;
    }

    .accordion-header h3 {
        font-size: 2.5rem;
    }

    .accordion-subtitle {
        width: 100%;
        font-size: 1.1rem;
    }

    .accordion-content {
        padding: 2rem 1.5rem;
    }

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

    .mam-podcast .podcast-container {
        grid-template-columns: 1fr;
    }

    .mam-contact .contact-container {
        grid-template-columns: 1fr;
    }
}
