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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2E4A42;
    background-color: #E8E0D5;
    overflow-x: hidden;
    cursor: none;
}

/* Custom Cursor */
.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: #C3A059;
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transition: opacity 0.3s ease;
}

.cursor-outline {
    width: 30px;
    height: 30px;
    border: 2px solid rgba(195, 160, 89, 0.3);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    transition: all 0.15s ease;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    line-height: 1.2;
    color: #2E4A42;
}

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

/* Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #e8e0d5;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(195, 160, 89, 0.1);
    transition: all 0.3s ease;
}

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

.nav-brand .brand-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-logo {
    height: 75px;
    width: auto;
}

.brand-text-container {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.brand-text {
    font-family: 'Merriweather', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #2E4A42;
}

.brand-accent {
    font-family: 'Elegant Serif', serif;
    font-size: 1.75rem;
    font-weight: 400;
    color: #C3A059;
    font-style: italic;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    position: relative;
    text-decoration: none;
    color: #2E4A42;
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #C3A059, #A08851);
    transition: width 0.3s ease;
}

.nav-link:hover::before {
    width: 100%;
}

.nav-link:hover {
    color: #C3A059;
}

.cta-link {
    background: linear-gradient(135deg, #C3A059, #A08851);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-link::before {
    display: none;
}

.cta-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    color: white !important;
}

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

.toggle-line {
    width: 25px;
    height: 2px;
    background: #2E4A42;
    transition: all 0.3s ease;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #C3A059, #A08851);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    background: transparent;
    color: #C3A059;
    border: 2px solid #C3A059;
    font-weight: 400;
}

.btn-outline:hover {
    background: #C3A059;
    color: white;
    transform: translateY(-2px);
}

.btn-text {
    background: transparent;
    color: #2E4A42;
    padding: 1rem 0;
    position: relative;
}

.btn-text::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 0;
    width: 0;
    height: 1px;
    background: #C3A059;
    transition: width 0.3s ease;
}

.btn-text:hover::after {
    width: 100%;
}

.full-width {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    position: relative;
    background: #E8E0D5;
    padding: 120px 0 80px;
    justify-content: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.decorative-star {
    font-size: 1.5rem;
    color: #C3A059;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.hero-title .live-skillfully {
    font-family: 'Merriweather', serif;
    font-weight: 700;
}

.hero-title .live-skillfully em {
    font-family: 'Elegant Serif', serif;
    color: #C3A059;
    font-style: italic;
    font-weight: 400;
    font-size: 1.1em;
}

.hero-title .thrive-wholly {
    font-family: 'Merriweather', serif;
    font-weight: 700;
}

.hero-title .thrive-wholly em {
    font-family: 'Elegant Serif', serif;
    color: #C3A059;
    font-style: italic;
    font-weight: 400;
    font-size: 1.1em;
}

.hero-tagline {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.5;
    max-width: 500px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

.hero-primary-cta {
    margin-bottom: 2rem;
}

.primary-cta-flow {
    text-align: center;
}

.hero-divider {
    text-align: center;
    margin: 2rem 0;
    position: relative;
}

.hero-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(195, 160, 89, 0.3);
    z-index: 1;
}

.hero-divider span {
    background: #E8E0D5;
    padding: 0 1rem;
    color: #999;
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #B6B1A9;
    margin-bottom: 3rem;
    line-height: 1.5;
    max-width: 450px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

.hero-transformation {
    margin: 0.75rem 0;
    padding: 1rem;
    max-width: 460px;
    background: rgba(195, 160, 89, 0.05);
    border-radius: 10px;
    border-left: 4px solid #C3A059;
    backdrop-filter: blur(10px);
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.7s forwards;
}

.transformation-text {
    font-size: 1rem;
    color: #2E4A42;
    font-weight: 500;
}

.transformation-line {
    line-height: 1.3;
    margin-bottom: 0.15rem;
}

.highlight {
    font-weight: 700;
    color: #C3A059;
}

.from-state {
    font-style: italic;
    font-weight: 400;
}

.to-state {
    font-weight: 700;
}

.outcome {
    font-weight: 600;
}

.hero-actions {
    display: flex;
    gap: 1.25rem;
    margin-top: 1.25rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.9s forwards;
}

.hero-visual {
    position: relative;
    opacity: 0;
    animation: fadeInUp 0.8s ease 1s forwards;
}

.hero-image {
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/5;
}

.hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #B6B1A9 0%, #A8A399 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F4F0EB;
    position: relative;
}

.image-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.3rem;
    text-align: center;
}

.hero-form-below-image {
  margin-top: 2rem;
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Styles */
section {
    padding: 6rem 0;
}

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

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

.blog .section-header.centered {
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.blog .section-eyebrow {
    display: block;
    margin-bottom: 1rem;
}

.blog .section-title {
    margin-bottom: 1.5rem;
}

.blog .section-subtitle {
    margin: 0 auto;
}

.section-eyebrow {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #C3A059;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    width: 100%;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    display: block;
    width: 100%;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #B6B1A9;
    line-height: 1.6;
    max-width: 600px;
}

.centered .section-subtitle {
    margin: 0 auto;
}

/* About Me Section */
.about-me {
    background: #E8E0D5;
}

.about-me-section {
    background: #E8E0D5;
    padding: 6rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: start;
}

.bio-credentials {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(195, 160, 89, 0.05);
    border-radius: 12px;
    border-left: 3px solid #C3A059;
}

.bio-credentials p {
    font-size: 1rem;
    color: #2E4A42;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.bio-credentials p:last-child {
    margin-bottom: 0;
}

.text-block {
    margin-bottom: 2rem;
}

.lead-text {
    font-size: 1.3rem;
    font-weight: 400;
    color: #2E4A42;
    line-height: 1.6;
}

.text-block p {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.credentials {
    margin-top: 3rem;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.credential-icon {
    color: #C3A059;
    font-size: 1.2rem;
}

.credential-text {
    color: #2E4A42;
    font-weight: 500;
}

.about-visual {
    position: relative;
}

.about-image-container {
    position: relative;
}

.about-photo {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
}

.about-image-placeholder {
    background: linear-gradient(135deg, #e8f4f8 0%, #d1ecf1 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    color: #7fb3d3;
    font-size: 1.1rem;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.visual-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border: 3px solid #C3A059;
    border-radius: 50%;
    opacity: 0.3;
}

.about-expand {
    margin: 2rem 0;
}

.expand-btn {
    background: transparent;
    border: 2px solid #C3A059;
    color: #C3A059;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.expand-btn:hover {
    background: #C3A059;
    color: white;
    transform: translateY(-2px);
}

.expanded-content {
    overflow: hidden;
    transition: all 0.5s ease;
}

.expanded-content.show {
    display: block !important;
    animation: fadeInUp 0.6s ease forwards;
}

.about-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: #2E4A42;
    line-height: 1.6;
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-left: 3px solid #C3A059;
    padding-left: 1.5rem;
    max-width: 500px;
}

/* Life Coaching Section */
.coaching-workflow {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.coaching-workflow::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 50px;
    bottom: 100px;
    width: 3px;
    background: linear-gradient(to bottom, #C3A059, rgba(195, 160, 89, 0.3));
    border-radius: 2px;
    z-index: 1;
}

.workflow-step {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin-bottom: 4rem;
    position: relative;
}

.workflow-step:nth-child(even) .step-content {
    background: linear-gradient(135deg, #2E4A42 0%, #3A5A50 100%);
    color: white;
}

.workflow-step:nth-child(even) .step-title {
    color: #C3A059;
}

.workflow-step:nth-child(even) .step-description {
    color: rgba(255, 255, 255, 0.85);
}

.workflow-step:nth-child(odd) .step-content {
    background: linear-gradient(135deg, #C3A059 0%, #D4B366 100%);
    color: white;
}

.workflow-step:nth-child(odd) .step-title {
    color: white;
}

.workflow-step:nth-child(odd) .step-description {
    color: rgba(255, 255, 255, 0.9);
}

.step-number {
    background: white;
    color: #2E4A42;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.5rem;
    flex-shrink: 0;
    position: relative;
    z-index: 3;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 4px solid #C3A059;
}

.step-content {
    flex: 1;
    padding: 2rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    transform: translateY(10px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.step-content:hover {
    transform: translateY(0);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.step-content::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 15px solid;
    border-right-color: inherit;
}

.workflow-step:nth-child(even) .step-content::before {
    border-right-color: #2E4A42;
}

.workflow-step:nth-child(odd) .step-content::before {
    border-right-color: #C3A059;
}

.step-icon {
    font-size: 2.5rem;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    flex-shrink: 0;
}

.step-text {
    flex: 1;
}

.step-title {
    font-family: 'Merriweather', serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.step-description {
    line-height: 1.7;
    margin: 0;
    font-size: 1.05rem;
    font-weight: 400;
}

.workflow-details {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(195, 160, 89, 0.2);
}

.workflow-description {
    font-size: 1.1rem;
    color: #2E4A42;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-style: italic;
}

.workflow-cta {
    margin-top: 2rem;
}

.workflow-expand-section {
    text-align: center;
}

.workflow-expand-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: rgba(195, 160, 89, 0.1);
    border: 2px solid #C3A059;
    color: #C3A059;
    padding: 1rem 2rem;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 500;
    margin: 0 auto 2rem;
    backdrop-filter: blur(10px);
}

.workflow-expand-toggle:hover {
    background: rgba(195, 160, 89, 0.15);
    transform: translateY(-2px);
}

.workflow-expand-toggle.expanded {
    background: #C3A059;
    color: white;
}

.workflow-expand-toggle.expanded:hover {
    background: #A08851;
}

.toggle-icon {
    color: #C3A059;
    font-size: 1.2rem;
}

.workflow-expand-toggle.expanded .toggle-icon {
    color: white;
}

.toggle-arrow {
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

.workflow-expand-toggle.expanded .toggle-arrow {
    transform: rotate(90deg);
}

.coaching-workflow.show {
    display: block !important;
    animation: fadeInUp 0.6s ease forwards;
}

/* Coaching Style Section */
.coaching-style {
    background: #E8E0D5;
}

.style-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.approach-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2.5rem;
    justify-content: center;
    text-align: center;
}

.approach-icon {
    font-size: 2rem;
    line-height: 1;
    margin-top: 0.25rem;
}

.approach-titles {
    flex: 1;
}

.approach-content {
    text-align: center;
}

.approach-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #2E4A42;
}

.approach-intro {
    font-style: italic;
    color: #B6B1A9 !important;
    font-size: 1.2rem !important;
    margin-bottom: 2rem !important;
}

.approach-description {
    color: #2E4A42;
}

.approach-outcome {
    color: #2E4A42 !important;
    font-size: 1.15rem !important;
    margin-top: 2rem !important;
}

.pillar-text-right {
    text-align: left !important;
}

.style-visual {
    position: relative;
}

.style-photo {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
}

.style-image-placeholder {
    background: linear-gradient(135deg, #f8e8e8 0%, #f0d0d0 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    color: #c49999;
    font-size: 1.1rem;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.style-accent-shape {
    position: absolute;
    bottom: -15px;
    left: -15px;
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

/* Methodology Section */
.methodology {
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    padding: 6rem 0;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.pillar-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(195, 160, 89, 0.1);
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.pillar-image {
    height: 200px;
    overflow: hidden;
}

.pillar-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.pillar-card:hover .pillar-photo {
    transform: scale(1.05);
}

.pillar-content {
    padding: 2rem;
}

.pillar-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #2E4A42;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.pillar-preview {
    margin-bottom: 1.5rem;
}

.pillar-preview p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.pillar-details {
    margin-bottom: 1.5rem;
}

.pillar-details p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.pillar-details p:last-child {
    margin-bottom: 0;
}

.pillar-toggle {
    background: transparent;
    color: #C3A059;
    border: 2px solid rgba(195, 160, 89, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.pillar-toggle:hover {
    background: #C3A059;
    color: white;
    transform: translateY(-1px);
}

.pillar-toggle.expanded {
    background: #C3A059;
    color: white;
}

@media (max-width: 1024px) {
    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 600px;
        margin: 4rem auto 0;
    }
    
    .pillar-image {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .methodology {
        padding: 4rem 0;
    }
    
    .pillars-grid {
        margin-top: 3rem;
        gap: 1.5rem;
    }
    
    .pillar-content {
        padding: 1.5rem;
    }
    
    .pillar-title {
        font-size: 1.3rem;
    }
}

/* Booking Section */
.book-session {
    background: linear-gradient(135deg, #2E4A42 0%, #2E4A42 100%);
    color: white;
}

.booking-form-section {
    text-align: center;
}

.booking-form-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: rgba(195, 160, 89, 0.1);
    border: 2px solid #C3A059;
    color: #C3A059;
    padding: 1rem 2rem;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 500;
    margin: 0 auto 2rem;
    backdrop-filter: blur(10px);
}

.booking-form-toggle:hover {
    background: rgba(195, 160, 89, 0.15);
    transform: translateY(-2px);
}

.booking-form-toggle.expanded {
    background: #C3A059;
    color: white;
}

.booking-form-toggle.expanded:hover {
    background: #A08851;
}

.booking-form-toggle .toggle-icon {
    color: #C3A059;
    font-size: 1.2rem;
}

.booking-form-toggle.expanded .toggle-icon {
    color: white;
}

.booking-form-toggle .toggle-arrow {
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

.booking-form-toggle.expanded .toggle-arrow {
    transform: rotate(90deg);
}

.book-session .section-eyebrow {
    color: #C3A059;
}

.book-session .section-title {
    color: white;
}

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

.booking-description {
    color: #bdc3c7;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.session-details {
    margin-top: 2rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #ecf0f1;
}

.detail-icon {
    font-size: 1.2rem;
}

.journey-section {
    margin-top: 3rem;
}

.journey-toggle {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-align: left;
    font-size: 1rem;
    backdrop-filter: blur(10px);
}

.journey-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.journey-icon {
    color: #C3A059;
    font-size: 1.2rem;
}

.journey-text {
    flex: 1;
    font-weight: 500;
}

.toggle-arrow {
    transition: transform 0.3s ease;
    font-size: 1.2rem;
    color: #C3A059;
}

.journey-toggle.expanded .toggle-arrow {
    transform: rotate(90deg);
}

.journey-content {
    margin-top: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.journey-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.journey-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    background: #C3A059;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.step-meta {
    font-weight: 400;
    color: #C3A059;
    font-size: 0.9rem;
}

.step-description {
    color: #ecf0f1;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.step-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-details li {
    color: #bdc3c7;
    line-height: 1.5;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.step-details li::before {
    content: '•';
    color: #C3A059;
    position: absolute;
    left: 0;
}

.stay-connected-option {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
    margin-bottom: 2rem;
}

.booking-option {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.booking-option:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.booking-option.featured {
    background: rgba(195, 160, 89, 0.1);
    border-color: rgba(195, 160, 89, 0.3);
}

.booking-option.featured:hover {
    background: rgba(195, 160, 89, 0.15);
}

.option-title {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.option-description {
    color: #ecf0f1;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.booking-form-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    margin-top: 2rem;
}

.booking-form h3 {
    color: #2E4A42;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid #e8f4f8;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #C3A059;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 60px;
}

.form-label {
    display: block;
    font-weight: 600;
    color: #2E4A42;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    line-height: 1.4;
}

.form-helper {
    display: block;
    font-size: 0.9rem;
    color: #B6B1A9;
    margin-bottom: 0.75rem;
    font-style: italic;
    line-height: 1.3;
}

/* Pricing Section */
.pricing {
    background: #E8E0D5;
}

.pricing-overview {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.pricing-card-simple {
    background: white;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(195, 160, 89, 0.1);
    max-width: 500px;
    width: 100%;
}

.pricing-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.pricing-details {
    text-align: left;
}

.pricing-description {
    font-size: 1.1rem;
    color: #2E4A42;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.pricing-note {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.pricing-discount {
    font-size: 1rem;
    color: #C3A059;
    line-height: 1.6;
    font-style: italic;
    background: rgba(195, 160, 89, 0.05);
    padding: 1rem;
    border-radius: 10px;
    border-left: 3px solid #C3A059;
}

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

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.pricing-card.featured {
    transform: scale(1.05);
    border-color: #C3A059;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #C3A059;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pricing-subtitle {
    color: #B6B1A9;
    font-size: 0.95rem;
}

.pricing-amount {
    margin-bottom: 2rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.currency {
    font-size: 1.5rem;
    color: #C3A059;
    font-weight: 600;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #2E4A42;
}

.period {
    font-size: 1rem;
    color: #B6B1A9;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2.5rem;
    text-align: left;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: #5a6c7d;
    position: relative;
    padding-left: 1.5rem;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #C3A059;
    font-weight: bold;
}

.pricing-note-card {
    background: rgba(195, 160, 89, 0.1);
    color: #C3A059;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 1.5rem;
    text-align: center;
    border: 1px solid rgba(195, 160, 89, 0.2);
}

.pricing-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(195, 160, 89, 0.2);
}

.pricing-discount-note {
    margin-bottom: 2rem;
}

.pricing-discount-note p {
    font-size: 1rem;
    color: #C3A059;
    line-height: 1.6;
    font-style: italic;
    background: rgba(195, 160, 89, 0.05);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    border-left: 3px solid #C3A059;
    max-width: 600px;
    margin: 0 auto;
}

/* Testimonials Section */
.testimonials {
    background: #E8E0D5;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, rgba(232, 224, 213, 0) 0%, rgba(232, 224, 213, 0.1) 100%);
    pointer-events: none;
}

.testimonials-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(195, 160, 89, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #C3A059, #D4B366);
}

.testimonial-card.featured {
    transform: scale(1.02);
    border-color: #C3A059;
    box-shadow: 0 10px 40px rgba(195, 160, 89, 0.15);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-card.featured:hover {
    transform: scale(1.02) translateY(-8px);
}

.testimonial-content {
    position: relative;
}

.quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: rgba(195, 160, 89, 0.2);
    position: absolute;
    top: -1rem;
    left: -0.5rem;
    line-height: 1;
    pointer-events: none;
}

.testimonial-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #2E4A42;
    font-style: italic;
    margin: 1.5rem 0 2rem;
    border: none;
    padding: 0;
    position: relative;
    z-index: 2;
}

.testimonial-attribution {
    margin-top: 2rem;
}

.client-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.client-name {
    font-weight: 600;
    color: #2E4A42;
    font-size: 1rem;
}

.client-title {
    color: #B6B1A9;
    font-size: 0.9rem;
}

.stars {
    display: flex;
    gap: 0.2rem;
}

.star {
    color: #C3A059;
    font-size: 1.1rem;
}

.testimonial-carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 4rem auto;
    padding: 4rem 2rem;
    perspective: 1200px;
    height: 700px;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-card {
    position: absolute;
    width: 480px;
    height: 600px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 2rem 2rem;
    text-align: center;
    box-sizing: border-box;
    display: flex;
    align-items: stretch;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(195, 160, 89, 0.1);
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform-style: preserve-3d;
    cursor: pointer;
    overflow: hidden;
}

/* Card positioning and 3D effects */
.testimonial-card.active {
    transform: translateX(0) translateY(0) rotateY(0deg) scale(1);
    z-index: 10;
    opacity: 1;
}

.testimonial-card.prev {
    transform: translateX(-220px) translateY(30px) rotateY(25deg) scale(0.8);
    z-index: 5;
    opacity: 0.7;
}

.testimonial-card.next {
    transform: translateX(220px) translateY(30px) rotateY(-25deg) scale(0.8);
    z-index: 5;
    opacity: 0.7;
}

.testimonial-card.hidden {
    transform: translateX(0) translateY(80px) rotateY(0deg) scale(0.5);
    z-index: 1;
    opacity: 0.3;
}

.testimonial-card:hover:not(.active) {
    transform: translateX(-220px) translateY(15px) rotateY(20deg) scale(0.85);
    opacity: 0.85;
}

.testimonial-card.next:hover {
    transform: translateX(220px) translateY(15px) rotateY(-20deg) scale(0.85);
    opacity: 0.85;
}

.testimonial-content {
    max-width: 420px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    padding: 0.3rem 0;
}

.stars {
    color: #FFD700;
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    flex-shrink: 0;
    text-align: center;
}

.testimonial-text {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #4A4A4A;
    font-style: italic;
    font-family: 'Inter', sans-serif;
    flex-grow: 1;
    text-align: center;
    display: flex;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
    align-items: center;
    justify-content: center;
    padding: 0 0.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
}

.testimonial-author {
    padding-top: 0.8rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    text-align: center;
    margin-top: auto;
}

.author-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2C2C2C;
    margin: 0 0 0.2rem 0;
    font-family: 'Inter', sans-serif;
}

.author-role {
    font-size: 0.75rem;
    color: #888;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(195, 160, 89, 0.2);
    border-radius: 50%;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C3A059;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 15;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.carousel-nav:hover {
    background: #C3A059;
    color: white;
    border-color: #C3A059;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 35px rgba(195, 160, 89, 0.3);
}

.prev-btn {
    left: 80px;
}

.next-btn {
    right: 80px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #C3A059;
    transform: scale(1.25);
}

.dot:hover {
    background: #C3A059;
    opacity: 0.7;
}

.testimonials-footer {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(195, 160, 89, 0.2);
}

.testimonials-note {
    font-size: 0.9rem;
    color: #B6B1A9;
    font-style: italic;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-cta {
    margin-top: 1.5rem;
}

/* Blog Section */
.blog .section-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 3rem;
}

.view-all-link {
    color: #C3A059;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.view-all-link:hover {
    color: #A08851;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.blog-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.blog-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.blog-image-placeholder {
    background: linear-gradient(135deg, #f1f2f6 0%, #dfe4ea 100%);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8395a7;
    position: relative;
}

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(212, 175, 55, 0.9);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.blog-content {
    padding: 2rem;
}

.blog-date {
    color: #B6B1A9;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.75rem;
}

.blog-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-excerpt {
    color: #B6B1A9;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-link {
    color: #C3A059;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.blog-link:hover {
    color: #A08851;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(195, 160, 89, 0.1);
}

.read-time {
    font-size: 0.85rem;
    color: #B6B1A9;
}

.blog-placeholder-card {
    background: rgba(195, 160, 89, 0.05);
    border-radius: 20px;
    border: 2px dashed rgba(195, 160, 89, 0.2);
    transition: all 0.3s ease;
}

.blog-placeholder-card:hover {
    border-color: rgba(195, 160, 89, 0.4);
    background: rgba(195, 160, 89, 0.08);
}

.blog-placeholder-content {
    padding: 2rem;
    text-align: center;
}

.placeholder-image {
    margin-bottom: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    height: 150px;
    background: linear-gradient(135deg, rgba(195, 160, 89, 0.1) 0%, rgba(195, 160, 89, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #2E4A42;
    margin-bottom: 1rem;
}

.placeholder-description {
    color: #B6B1A9;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Coming Soon Section */
.coming-soon-visual {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.coming-soon-card {
    background: white;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(195, 160, 89, 0.1);
    max-width: 500px;
    width: 100%;
}

.coming-soon-card .decorative-element {
    font-size: 2rem;
    color: #C3A059;
    margin-bottom: 1.5rem;
    display: block;
}

.coming-soon-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2E4A42;
    margin-bottom: 1rem;
}

.coming-soon-text {
    color: #B6B1A9;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.coming-soon-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.topic-tag {
    background: rgba(195, 160, 89, 0.1);
    color: #C3A059;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(195, 160, 89, 0.2);
}

/* ==========================================
   COACHING INVITATION SECTION
   ========================================== */

.coaching-invitation {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 4rem 0;
    border-top: 1px solid rgba(195, 160, 89, 0.1);
}

.invitation-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.invitation-text {
    flex: 1;
    text-align: center;
}

.invitation-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #2E4A42;
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.invitation-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin: 0 0 2rem 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.invitation-cta {
    display: flex;
    justify-content: center;
}

.invitation-visual {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.invitation-accent {
    font-size: 4rem;
    color: #C3A059;
    opacity: 0.3;
    animation: float 3s ease-in-out infinite;
}

@media (max-width: 768px) {
    .coaching-invitation {
        padding: 3rem 0;
    }

    .invitation-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

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

    .invitation-description {
        font-size: 1rem;
    }

    .invitation-visual {
        order: -1;
    }

    .invitation-accent {
        font-size: 3rem;
    }
}

/* ==========================================
   COACHING PAGE STYLES
   ========================================== */

.coaching-hero {
    background: linear-gradient(135deg, #2E4A42 0%, #344A3E 100%);
    color: white;
    padding: 8rem 0 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.coaching-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="white" opacity="0.1"/><circle cx="80" cy="40" r="1" fill="white" opacity="0.1"/><circle cx="40" cy="80" r="1.5" fill="white" opacity="0.1"/></svg>');
    opacity: 0.3;
}

.coaching-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.coaching-hero .decorative-star {
    font-size: 3rem;
    color: #C3A059;
    margin-bottom: 1rem;
    display: block;
}

.coaching-hero .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.coaching-hero .hero-subtitle {
    font-size: 1.3rem;
    margin: 0 0 2rem 0;
    color: #C3A059;
    font-weight: 500;
}

.coaching-hero .hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

.coaching-hero .hero-description p {
    margin: 0 0 1.5rem 0;
}

.coaching-hero .hero-description p:last-child {
    margin-bottom: 0;
}

.coaching-packages {
    padding: 6rem 0;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

.packages-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.package-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(195, 160, 89, 0.15);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.package-card.featured {
    border: 2px solid #C3A059;
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(195, 160, 89, 0.15);
}

.package-card.featured:hover {
    transform: scale(1.02) translateY(-8px);
    box-shadow: 0 20px 56px rgba(195, 160, 89, 0.2);
}

.package-header {
    background: linear-gradient(135deg, #2E4A42 0%, #344A3E 100%);
    color: white;
    padding: 3rem 3rem 2rem 3rem;
    text-align: center;
    position: relative;
}

.package-card.featured .package-header {
    background: linear-gradient(135deg, #C3A059 0%, #D4B366 100%);
}

.package-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 2rem;
    background: linear-gradient(135deg, #C3A059 0%, #D4B366 100%);
    color: #2E4A42;
    padding: 0.6rem 1.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 4px 12px rgba(195, 160, 89, 0.3);
    border: 2px solid white;
    transform: rotate(-2deg);
    animation: pulse 2s ease-in-out infinite;
}

.popular-badge::before {
    content: '✨';
    margin-right: 0.3rem;
    font-size: 0.9rem;
}

@keyframes pulse {
    0%, 100% {
        transform: rotate(-2deg) scale(1);
        box-shadow: 0 4px 12px rgba(195, 160, 89, 0.3);
    }
    50% {
        transform: rotate(-2deg) scale(1.05);
        box-shadow: 0 6px 16px rgba(195, 160, 89, 0.4);
    }
}

.package-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    line-height: 1.2;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: block;
    visibility: visible;
}

.package-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
    line-height: 1.4;
}

.package-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Accordion Styles */
.accordion-item {
    border-bottom: 1px solid rgba(195, 160, 89, 0.1);
    margin-bottom: 0.5rem;
}

.accordion-item:last-of-type {
    border-bottom: none;
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.accordion-header:hover {
    background: rgba(195, 160, 89, 0.05);
    border-radius: 12px;
    padding-left: 1rem;
    padding-right: 1rem;
}

.accordion-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #2E4A42;
}

.accordion-icon {
    font-size: 1.5rem;
    color: #C3A059;
    font-weight: bold;
    transition: transform 0.3s ease;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(195, 160, 89, 0.1);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    padding: 0 1rem;
}

.accordion-item.active .accordion-content {
    padding-bottom: 1.5rem;
}

.package-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

.package-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #555;
}

.package-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #C3A059;
    font-weight: bold;
    font-size: 1.1rem;
}

.package-pricing {
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f0f0 100%);
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    margin: 0;
    border: 1px solid rgba(195, 160, 89, 0.1);
}

.package-pricing-display {
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f0f0 100%);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    margin: 2rem 0;
    border: 1px solid rgba(195, 160, 89, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.pricing-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #2E4A42;
    margin: 0 0 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #C3A059;
    display: inline-block;
}

.price-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
}

.price-range {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2E4A42;
    font-family: 'Playfair Display', serif;
}

.price-subtitle {
    font-size: 1rem;
    color: #888;
    margin-top: 0.5rem;
}

.price-note {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

.package-cta {
    text-align: center;
    margin-top: auto;
    padding-top: 2rem;
}

.cta-link {
    color: #C3A059;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.cta-link:hover {
    color: #2E4A42;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.coaching-cta {
    background: linear-gradient(135deg, #E8E0D5 0%, #F2ECE4 100%);
    padding: 6rem 0;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #2E4A42;
    margin: 0 0 2rem 0;
    line-height: 1.3;
}

.cta-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #2E4A42;
    margin: 0 0 1.5rem 0;
}

.cta-button {
    margin: 2rem 0 1rem 0;
}

.cta-note {
    font-size: 0.9rem;
    color: #2E4A42;
    margin: 0;
}

@media (max-width: 768px) {
    .coaching-hero {
        padding: 6rem 0 4rem 0;
    }

    .coaching-hero .hero-title {
        font-size: 2.5rem;
    }

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

    .coaching-hero .hero-description {
        font-size: 1rem;
    }

    .coaching-packages {
        padding: 4rem 0;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .package-card {
        margin-bottom: 0;
    }

    .package-card.featured {
        transform: none;
    }

    .package-card.featured:hover {
        transform: translateY(-5px);
    }

    .package-header {
        padding: 2rem 2rem 1.5rem 2rem;
    }

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

    .package-content {
        padding: 1.5rem;
    }

    .accordion-header {
        padding: 1rem 0;
    }

    .accordion-title {
        font-size: 1.1rem;
    }

    .accordion-content {
        padding: 0 0.5rem;
    }

    .price-range {
        font-size: 2rem;
    }

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

    .cta-description {
        font-size: 1rem;
    }
}

.about-link {
    color: #C3A059;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s ease;
}

.about-link:hover {
    color: #2E4A42;
}

/* ==========================================
   HERO LEAD MAGNET STYLES
   ========================================== */

s
.hero-lead-magnet {
    max-width: 460px;
    backdrop-filter: blur(10px);
    opacity: 0;
    margin: 0.75rem 0px;
    padding: 1rem;
    background: rgba(195, 160, 89, 0.05);
    border-radius: 10px;
    border-left: 4px solid rgb(195, 160, 89);
    animation: 0.8s ease 0.7s 1 normal forwards running fadeInUp;
}

.lead-magnet-flow {
    text-align: center;
    margin-bottom: 2.5rem;
    padding: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    background: rgba(195, 160, 89, 0.05);
    border-radius: 15px;
    border-left: 4px solid #C3A059;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(195, 160, 89, 0.1);
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.7s forwards;
    color: #2E4A42;
}

.flow-line {
    font-size: 1.2rem;
    line-height: 1.5;
    margin: 0.3rem 0;
    color: #555;
    font-weight: 400;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.flow-line.hook-line {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 500;
    color: #C3A059;
    margin-bottom: 1.2rem;
    text-align: center;
    letter-spacing: 0.02em;
    animation-delay: 0.2s;
    font-style: italic;
}

.flow-line.from-state {
    color:  #555 !important;
    font-style: italic;
}

.flow-line.to-state {
    color: #555 !important;
    font-weight: 500;
}

.flow-line em {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 600;
}

.flow-line:nth-child(1) { animation-delay: 0.9s; }
.flow-line:nth-child(3) { animation-delay: 1.0s; }
.flow-line:nth-child(4) { animation-delay: 1.1s; }
.flow-line:nth-child(5) { animation-delay: 1.2s; }
.flow-line:nth-child(7) { animation-delay: 1.3s; }
.flow-line:nth-child(8) { animation-delay: 1.4s; }
.flow-line:nth-child(9) { animation-delay: 1.5s; }
.flow-line:nth-child(11) { animation-delay: 1.6s; }
.flow-line:nth-child(12) { animation-delay: 1.7s; }
.flow-line:nth-child(13) { animation-delay: 1.8s; }

.hero-form-below-image {
    max-width: 600px;
    margin: 3rem auto 2rem auto;
    padding: 0 2rem;
}

.hero-form-elegant {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(195, 160, 89, 0.2);
    backdrop-filter: blur(10px);
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease 2.0s forwards;
    max-width: 100%;
    box-sizing: border-box;
}

.form-row-elegant {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.form-input-elegant {
    flex: 1;
    padding: 1rem;
    border: 2px solid rgba(195, 160, 89, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    box-sizing: border-box;
    min-width: 0;
}

.form-input-elegant:focus {
    outline: none;
    border-color: #C3A059;
    background: white;
    box-shadow: 0 0 0 3px rgba(195, 160, 89, 0.1);
}

.btn-elegant {
    padding: 1.1rem 2.8rem;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(195, 160, 89, 0.3);
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.btn-elegant.bouncy {
  animation: bounce 1.2s ease-in-out infinite;
}

.btn-elegant:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(195, 160, 89, 0.4);
}

.form-note-elegant {
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
    max-width: 450px;
    margin: 0 auto;
    opacity: 0.8;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero-lead-magnet {
        padding: 1.5rem 0;
        margin: 1.5rem 0;
    }

    .flow-line {
        font-size: 1.1rem;
    }

    .flow-line.hook-line {
        font-size: 1.5rem;
    }

    .hero-form-below-image {
        margin: 2rem auto 1.5rem auto;
        padding: 0 1rem;
    }

    .hero-form-elegant {
        padding: 2rem;
    }

    .form-row-elegant {
        flex-direction: column;
        gap: 0.8rem;
    }

    .form-input-elegant {
        padding: 0.9rem;
    }

    .btn-elegant {
        padding: 1rem 2rem;
    }
}

/* Contact Section */
.contact {
    background: #E8E0D5;
}

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

.contact-description {
    color: #B6B1A9;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.contact-info {
    margin-top: 2rem;
}

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

.contact-label {
    display: block;
    font-weight: 600;
    color: #2E4A42;
    margin-bottom: 0.25rem;
}

.contact-link {
    color: #C3A059;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #A08851;
}

.contact-detail {
    color: #B6B1A9;
}

.contact-form-container {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

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

.footer-content {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.footer-brand .brand-text {
    font-family: 'Merriweather', serif;
    font-weight: 700;
    color: white;
}

.footer-brand .brand-accent {
    font-family: 'Elegant Serif', serif;
    font-weight: 400;
    font-style: italic;
    color: #C3A059;
}

.footer-tagline {
    color: #bdc3c7;
    font-style: italic;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(189, 195, 199, 0.2);
    color: #95a5a6;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        height: calc(100vh - 100px);
        background: rgba(232, 224, 213, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        transition: transform 0.3s ease;
        border-top: 1px solid rgba(195, 160, 89, 0.1);
        transform: translateY(100%);
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .nav-toggle {
        display: flex;
    }

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

    .nav-toggle.active .toggle-line:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .toggle-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-text {
        order: 1;
    }
    
    .hero-visual {
        order: 2;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .about-content,
    .style-content,
    .booking-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .booking-content {
        display: flex;
        flex-direction: column;
    }

    .booking-text {
        order: 2;
    }

    .booking-form-section {
        order: 1;
    }

    .testimonial-carousel {
        margin: 0 1rem 3rem 1rem;
        padding: 2rem 1rem;
        height: 550px;
        perspective: 900px;
    }
    
    .carousel-nav {
        display: none;
    }
    
    .testimonial-card {
        width: 360px;
        height: 480px;
        padding: 1.5rem 1.5rem;
        align-items: stretch;
    }
    
    .testimonial-card.active {
        transform: translateX(0) translateY(0) rotateY(0deg) scale(1);
    }
    
    .testimonial-card.prev {
        transform: translateX(-140px) translateY(40px) rotateY(30deg) scale(0.7);
    }
    
    .testimonial-card.next {
        transform: translateX(140px) translateY(40px) rotateY(-30deg) scale(0.7);
    }
    
    .testimonial-card.hidden {
        transform: translateX(0) translateY(100px) rotateY(0deg) scale(0.4);
        opacity: 0.2;
    }
    
    .testimonial-content {
        max-width: 320px;
        padding: 0.2rem 0;
    }
    
    .testimonial-text {
        font-size: 0.72rem;
        line-height: 1.3;
        text-align: center;
        padding: 0 0.3rem;
        overflow-wrap: break-word;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .stars {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
    }
    
    .testimonial-author {
        padding-top: 0.6rem;
        margin-top: auto;
    }
    
    .carousel-dots {
        margin-top: 2rem;
        position: relative;
        z-index: 20;
    }
}

    .testimonial-card.featured {
        transform: none;
    }

    .testimonial-card.featured:hover {
        transform: translateY(-8px);
    }

    .workflow-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }
    
    .step-content {
        width: 100%;
    }
    
    .workflow-arrow {
        position: static;
        margin: 1rem 0;
    }

    .blog .section-header {
        flex-direction: column;
        align-items: start;
        gap: 1rem;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }


@media (max-width: 640px) {
    .container {
        padding: 0 1rem;
    }

    .nav {
        padding: 1rem;
    }

    .hero {
        padding-top: 2rem;
    }

    section {
        padding: 4rem 0;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }

    .pricing-grid,
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .booking-option {
        padding: 1.5rem;
        max-width: 100%;
    }

    .booking-form-container,
    .contact-form-container {
        padding: 1.5rem;
    }
}

/* Article Page Styles */
.article-main {
    padding-top: 120px;
    min-height: 100vh;
}

.article-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 4rem;
    align-items: start;
}

.article-content {
    max-width: none;
}

.article-header {
    margin-bottom: 3rem;
}

.article-breadcrumb {
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.breadcrumb-link {
    color: #C3A059;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: #A08851;
}

.breadcrumb-separator {
    color: #B6B1A9;
    margin: 0 0.5rem;
}

.breadcrumb-current {
    color: #2E4A42;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.article-category {
    background: #C3A059;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.article-date,
.article-reading-time {
    color: #B6B1A9;
    font-size: 0.9rem;
}

.article-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 500;
    line-height: 1.2;
    color: #2E4A42;
    margin-bottom: 1.5rem;
}

.article-subtitle {
    font-size: 1.3rem;
    color: #B6B1A9;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.article-hero-image {
    margin-bottom: 3rem;
    border-radius: 20px;
    overflow: hidden;
}

.article-image {
    width: 100%;
    height: auto;
    display: block;
}

.article-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2E4A42;
}

.lead-paragraph {
    font-size: 1.25rem;
    font-weight: 400;
    color: #2E4A42;
    margin-bottom: 2rem;
}

.article-body p {
    margin-bottom: 1.5rem;
}

.article-body h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: #2E4A42;
    margin: 3rem 0 1.5rem;
    line-height: 1.3;
}

.article-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: #2E4A42;
    margin: 2.5rem 0 1rem;
}

.article-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-style: italic;
    color: #2E4A42;
    margin: 2.5rem 0;
    padding: 2rem;
    background: rgba(195, 160, 89, 0.05);
    border-left: 4px solid #C3A059;
    border-radius: 0 10px 10px 0;
    position: relative;
}

.article-quote::before {
    content: '"';
    font-size: 4rem;
    color: rgba(195, 160, 89, 0.3);
    position: absolute;
    top: -0.5rem;
    left: 1rem;
    font-family: 'Playfair Display', serif;
}

.article-image-section {
    margin: 3rem 0;
    text-align: center;
}

.article-image-section .article-image {
    border-radius: 15px;
    margin-bottom: 1rem;
}

.image-caption {
    font-size: 0.9rem;
    color: #B6B1A9;
    font-style: italic;
}

.article-list {
    margin: 2rem 0;
    padding-left: 0;
    list-style: none;
}

.article-list li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.article-list li::before {
    content: '•';
    color: #C3A059;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.article-reflection {
    background: linear-gradient(135deg, rgba(195, 160, 89, 0.08) 0%, rgba(195, 160, 89, 0.05) 100%);
    border-radius: 15px;
    padding: 2rem;
    margin: 3rem 0;
    border: 1px solid rgba(195, 160, 89, 0.1);
}

.article-divider {
    text-align: center;
    color: #C3A059;
    margin: 3rem 0;
    font-size: 1.2rem;
    letter-spacing: 0.2rem;
}

.article-link {
    color: #C3A059;
    text-decoration: none;
    border-bottom: 1px solid rgba(195, 160, 89, 0.3);
    transition: all 0.3s ease;
}

.article-link:hover {
    color: #A08851;
    border-bottom-color: #A08851;
}

.reflection-content h3 {
    color: #C3A059;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    margin-top: 0;
}

.article-footer {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid rgba(195, 160, 89, 0.1);
}

.article-tags {
    margin-bottom: 3rem;
}

.tag {
    display: inline-block;
    background: rgba(195, 160, 89, 0.1);
    color: #C3A059;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    border: 1px solid rgba(195, 160, 89, 0.2);
}

.article-author {
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(195, 160, 89, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(195, 160, 89, 0.1);
}

.author-info p {
    margin-bottom: 0.5rem;
}

.author-info p:first-child {
    color: #2E4A42;
}

.author-info p:last-child {
    color: #B6B1A9;
    font-size: 0.95rem;
}

.article-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #2E4A42 0%, #3A5A50 100%);
    border-radius: 20px;
    color: white;
}

.cta-content h3 {
    color: white;
    margin-bottom: 1rem;
    margin-top: 0;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
}

.article-sidebar {
    position: sticky;
    top: 150px;
}

.sidebar-section {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(195, 160, 89, 0.1);
}

.sidebar-section h3 {
    color: #2E4A42;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.5rem;
    margin-top: 0;
}

.sidebar-placeholder {
    text-align: center;
    padding: 2rem 1rem;
    color: #B6B1A9;
}

.sidebar-placeholder .decorative-element {
    font-size: 2rem;
    color: #C3A059;
    display: block;
    margin-bottom: 1rem;
}

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

/* Article Responsive */
@media (max-width: 1024px) {
    .article-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .article-sidebar {
        position: static;
        order: -1;
    }
    
    .sidebar-section {
        display: flex;
        gap: 2rem;
    }
    
    .sidebar-section:last-child {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .article-main {
        padding-top: 100px;
    }
    
    .article-container {
        padding: 0 1rem;
    }
    
    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .article-body {
        font-size: 1.05rem;
    }
    
    .lead-paragraph {
        font-size: 1.15rem;
    }
    
    .sidebar-section {
        flex-direction: column;
        text-align: center;
    }
}

/* Touch device styles */
@media (hover: none) {
    body {
        cursor: auto;
    }

    .cursor-dot,
    .cursor-outline {
        display: none;
    }
}

/* Form Notification Styles */
.form-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    max-width: 400px;
    background:white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border: 1px solid #e1e1e1;
    transform: translateX(120%);
    transition: transform 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-notification.show {
    transform: translateX(0);
}

.form-notification.success {
    border-left: 4px solid #22c55e;
}

.form-notification.error {
    border-left: 4px solid #ef4444;
}

.notification-content {
    display: flex;
    align-items: center;
    padding: 1rem 1.2rem;
    gap: 0.75rem;
}

.notification-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    color: white;
}

.form-notification.success .notification-icon {
    background: #22c55e;
}

.form-notification.error .notification-icon {
    background: #ef4444;
}

.notification-message {
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #333;
}

.notification-close {
    flex-shrink: 0;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.notification-close:hover {
    background: #f3f4f6;
    color: #666;
}

@media (max-width: 768px) {
    .form-notification {
        right: 10px;
        left: 10px;
        top: 10px;
        max-width: none;
        transform: translateY(-120%);
    }
    
    .form-notification.show {
        transform: translateY(0);
    }
    
    .notification-content {
        padding: 0.9rem 1rem;
    }
    
    .notification-message {
        font-size: 0.85rem;
    }
}

/* CTA Button Styles */
.hero-cta-below-image {
    margin: 3rem auto 2rem auto;
    text-align: center;
    padding: 0 2rem;
}

.btn-cta-bounce {
    padding: 1.2rem 2.5rem;
    font-size: 1.15rem;
    font-weight: 600;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(195, 160, 89, 0.3);
    animation: gentle-bounce 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.btn-cta-bounce:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(195, 160, 89, 0.4);
    animation-play-state: paused;
}

@keyframes gentle-bounce {
    0%, 100% { 
        transform: translateY(0); 
    }
    50% { 
        transform: translateY(-3px); 
    }
}

.cta-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
    opacity: 0;
    animation: fadeInUp 0.8s ease 2.2s forwards;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-header {
    position: relative;
    padding: 1rem 1.5rem 0;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #999;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: #f3f4f6;
    color: #666;
}

.modal-body {
    padding: 1.5rem 2rem 2.5rem;
    text-align: center;
}

.modal-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #2E4A42;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.modal-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.modal-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: left;
}

.modal-benefits li {
    font-size: 1rem;
    color: #2E4A42;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.modal-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #C3A059;
    font-weight: bold;
}

.modal-reassurance {
    font-size: 0.85rem;
    color: #888;
    text-align: center;
    margin-top: 1rem;
    line-height: 1.4;
}

.modal-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    background: linear-gradient(135deg, rgba(195, 160, 89, 0.05) 0%, rgba(212, 179, 102, 0.05) 100%);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(195, 160, 89, 0.1);
}

.modal-features li {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
}

.modal-features li:last-child {
    margin-bottom: 0;
}

.modal-form {
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.modal-input {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(195, 160, 89, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.modal-input:focus {
    outline: none;
    border-color: #C3A059;
    background: white;
    box-shadow: 0 0 0 3px rgba(195, 160, 89, 0.1);
}

.btn-modal {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    margin-bottom: 0;
}

.modal-note {
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
    line-height: 1.4;
}

/* Soft Reset Kit Link Styles */
.reset-kit-link {
    color: #C3A059;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    border-bottom: 1px solid transparent;
}

.reset-kit-link:hover {
    color: #A08851;
    border-bottom-color: #A08851;
}

/* Specific contextual styling */
.approach-invitation {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: #777;
    font-style: italic;
    padding: 1rem;
    background: rgba(195, 160, 89, 0.03);
    border-radius: 8px;
    border-left: 2px solid rgba(195, 160, 89, 0.2);
}

.testimonials-soft-cta {
    font-size: 0.9rem;
    color: #777;
    font-style: italic;
    text-align: center;
    margin: 1rem 0 1.5rem 0;
    padding: 0 2rem;
}

.blog-footer-cta {
    text-align: center;
    margin-top: 2.5rem;
    padding: 2rem;
    background: rgba(195, 160, 89, 0.02);
    border-radius: 15px;
    border: 1px solid rgba(195, 160, 89, 0.1);
}

.blog-soft-invitation {
    font-size: 0.95rem;
    color: #777;
    font-style: italic;
    margin: 0;
}

.footer-resource {
    margin-top: 1rem;
    text-align: center;
}

.footer-resource p {
    font-size: 0.85rem;
    color: #B6B1A9;
    font-style: italic;
}

.footer-resource .reset-kit-link {
    color: #C3A059;
    font-weight: 400;
}

.footer-resource .reset-kit-link:hover {
    color: #D4B366;
}

@media (max-width: 768px) {
    .hero-cta-below-image {
        margin: 2rem auto 1.5rem auto;
        padding: 0 1rem;
    }
    
    .btn-cta-bounce {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .modal-body {
        padding: 1rem 1.5rem 2rem;
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
    
    .modal-features {
        padding: 1.2rem;
    }
    
    .modal-features li {
        font-size: 0.9rem;
    }
    
    .approach-invitation {
        font-size: 0.9rem;
        padding: 0.8rem;
    }
    
    .testimonials-soft-cta {
        font-size: 0.85rem;
        padding: 0 1rem;
    }
    
    .blog-footer-cta {
        padding: 1.5rem;
    }
    
    .blog-soft-invitation {
        font-size: 0.9rem;
    }
}

/* Hero Description under Image */
.hero-visual .hero-description {
    font-size: 1.1rem;
    color: #2E4A42;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    padding: 0 1rem;
}

/* Hero Actions under Image */
.hero-visual .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-top: 0;
}

.hero-cta-section {
    text-align: center;
    margin-top: 1rem;
}

.hero-cta-section .btn-cta-bounce {
    margin-bottom: 0.75rem;
}

.hero-cta-section .cta-note {
    font-size: 0.85rem;
    color: #777;
    font-style: italic;
    margin: 0;
}

@media (max-width: 768px) {
    .hero-visual .hero-description {
        font-size: 1rem;
        margin-top: 2rem;
        margin-bottom: 1.2rem;
        padding: 0 0.5rem;
    }
    
    .hero-visual .hero-actions {
        gap: 0.8rem;
    }
    
    .hero-cta-section .btn-cta-bounce {
        padding: 1rem 1.8rem;
        font-size: 1rem;
    }
}
/* ===== NEW LANDING PAGE STYLES (index-new.html) ===== */

/* Hero Assessment Section */
.hero-assessment {
    background: #2E4A42;
    color: #F4F0EB;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 2rem 80px;
}

.hero-badge {
    position: absolute;
    top: 140px;
    left: 2rem;
    background: rgba(195, 160, 89, 0.2);
    color: #F4F0EB;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 10;
}

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

.hero-title-large {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin: 2rem 0 1.5rem;
    color: #F4F0EB;
}

.hero-subtitle-light {
    font-size: 1.3rem;
    line-height: 1.6;
    color: rgba(244, 240, 235, 0.85);
    margin-bottom: 3rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.6;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, #C3A059);
    animation: scrollPulse 2s infinite;
}

.scroll-text {
    font-size: 0.85rem;
    color: #F4F0EB;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* I Help Statement */
.i-help-section {
    padding: 80px 2rem;
    background: #F4F0EB;
    text-align: center;
}

.decorative-star-small {
    font-size: 2rem;
    color: #C3A059;
    margin-bottom: 1rem;
}

.i-help-statement {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.5;
    color: #2E4A42;
    max-width: 900px;
    margin: 0 auto;
}

/* Assessment Intro Section */
.assessment-intro-section {
    padding: 100px 2rem;
    background: white;
}

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

.section-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-top: 1rem;
}

.assessment-preview-card {
    max-width: 650px;
    margin: 0 auto;
    background: #F4F0EB;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.assessment-preview-header {
    margin-bottom: 2rem;
}

.preview-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    text-align: center;
}

.badge {
    background: #C3A059;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.preview-progress {
    text-align: center;
}

.progress-bar-container {
    width: 100%;
    height: 8px;
    background: rgba(195, 160, 89, 0.2);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-bar-fill {
    height: 100%;
    background: #C3A059;
    transition: width 0.3s ease;
}

.progress-text {
    font-size: 0.9rem;
    color: #666;
}

.assessment-benefits {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.assessment-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

.benefit-icon {
    color: #C3A059;
    font-weight: bold;
    font-size: 1.2rem;
}

.assessment-preview-cta {
    text-align: center;
    margin-top: 2rem;
}

.cta-helper {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
}

/* Four Pillars Section */
.pillars-section {
    padding: 100px 2rem;
    background: #E8E0D5;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1140px;
    margin: 3rem auto;
}

.pillar-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.pillar-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #2E4A42;
    margin-bottom: 0.75rem;
}

.pillar-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

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

/* Credibility Section */
.credibility-section {
    padding: 100px 2rem;
    background: white;
}

.credibility-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1140px;
    margin: 3rem auto 0;
    align-items: start;
}

.credibility-bio {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.bio-image {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.bio-photo {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.bio-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1rem;
}

.bio-text strong {
    color: #2E4A42;
    font-weight: 600;
}

.credibility-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: #F4F0EB;
    border-radius: 12px;
}

.stat-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.stat-icon .material-symbols-outlined {
    font-size: 2rem;
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    color: #555;
}

.stat-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 0.5rem;
}

.stat-source {
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
    margin-top: 0.25rem;
}

.stat-source a {
    color: inherit;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.stat-source a:hover {
    opacity: 0.7;
}

.stats-footnote {
    font-size: 0.85rem;
    color: #888;
    margin-top: 1rem;
}

/* CTA Repeat Section */
.cta-repeat-section {
    padding: 100px 2rem;
    background: #2E4A42;
    text-align: center;
}

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

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    color: #F4F0EB;
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(244, 240, 235, 0.85);
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* FAQ Section */
.faq-section {
    padding: 100px 2rem;
    background: #F4F0EB;
}

.faq-accordion {
    max-width: 800px;
    margin: 3rem auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item.active {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #2E4A42;
    text-align: left;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #C3A059;
}

.faq-icon {
    font-size: 1.5rem;
    color: #C3A059;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

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

/* Footer CTA Section */
.footer-cta-section {
    padding: 80px 2rem;
    background: #E8E0D5;
    text-align: center;
}

.footer-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.footer-cta-text {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #2E4A42;
    margin-bottom: 2rem;
}

/* Sticky Assessment CTA */
.sticky-assessment-cta {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    z-index: 900;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.sticky-assessment-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.sticky-cta-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #C3A059;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 4px 20px rgba(195, 160, 89, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-button:hover {
    background: #a68745;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(195, 160, 89, 0.5);
}

.sticky-cta-arrow {
    font-size: 1.2rem;
}

/* Sample Result Modal */
.sample-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
}

.sample-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.modal-content {
    position: relative;
    background: white;
    border-radius: 16px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 3rem 2.5rem;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: #888;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #2E4A42;
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #2E4A42;
    margin-bottom: 2rem;
    text-align: center;
}

.modal-body {
    margin-bottom: 2rem;
}

.sample-result-preview {
    text-align: center;
}

.sample-band {
    margin-bottom: 2rem;
}

.sample-emoji {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.sample-band h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #8B9D93;
    margin-bottom: 0.5rem;
}

.sample-subtitle {
    font-size: 1.1rem;
    color: #666;
    font-style: italic;
}

.sample-scores {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.sample-score-item {
    text-align: left;
}

.score-label {
    display: block;
    font-weight: 600;
    color: #2E4A42;
    margin-bottom: 0.5rem;
}

.score-bar {
    width: 100%;
    height: 12px;
    background: rgba(195, 160, 89, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

.score-fill {
    height: 100%;
    background: linear-gradient(90deg, #C3A059, #D4B36A);
    border-radius: 10px;
}

.sample-note {
    font-size: 0.95rem;
    color: #888;
    margin-top: 2rem;
}

.modal-footer {
    text-align: center;
}

/* Responsive Styles for New Page */
@media (max-width: 768px) {
    .hero-title-large {
        font-size: 2.5rem;
    }

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

    .hero-badge {
        top: 110px;
        left: 1rem;
        font-size: 0.8rem;
    }

    .i-help-statement {
        font-size: 1.5rem;
    }

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

    .credibility-two-col {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .cta-title {
        font-size: 2.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .sticky-assessment-cta {
        right: 1rem;
        bottom: 1rem;
    }

    .sticky-cta-button {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }
}
