/* Services Page Styles */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Fira Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
}

/* Header Override for Services Page */
.header {
    background: var(--blue-900);
    border-bottom: 1px solid rgba(147, 197, 253, 0.2);
}

.header.scrolled {
    background: var(--blue-900);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--blue-300);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Shared Section Classes */
.section-white {
    background: #ffffff;
    padding: 4rem 0;
}

.section-dark-blue {
    background: var(--gradient-primary);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.section-dark-blue::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--radial-blue);
    pointer-events: none;
    z-index: 1;
}

.section-dark-blue > * {
    position: relative;
    z-index: 2;
}

/* Hero Section */
.services-hero {
    min-height: auto;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    background-image: url('../assets/images/about-me-hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0.85;
    z-index: 1;
}

.services-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: center;
}

.services-hero-content {
    max-width: 800px;
    text-align: center;
}

.services-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.underline-accent {
    position: relative;
    display: inline-block;
    font-style: italic;
}

.underline-accent::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 12px;
    background: var(--blue-300);
    border-radius: 6px;
    z-index: -1;
}

/* Overview Cards Section */
.overview-cards-section {
    padding: 5rem 0;
}

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

.overview-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.overview-card {
    background: var(--blue-100);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.1);
}

.overview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(30, 58, 138, 0.15);
    background: var(--blue-200);
}

.overview-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    font-style: italic;
    color: var(--blue-900);
    line-height: 1.3;
}

/* Struggles Section */
.struggles-section {
    padding: 5rem 0;
}

.struggles-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.struggles-title {
    font-size: 2.5rem;
    font-weight: 700;
    font-style: italic;
    color: var(--blue-900);
    margin-bottom: 2.5rem;
    line-height: 1.2;
}

.struggles-text {
    font-size: 1.1rem;
    color: var(--slate-900);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: left;
}

/* Outcomes Section (copied from home) */
.outcomes-section {
    padding: 5rem 0;
}

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

.outcomes-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--blue-900);
    margin-bottom: 3rem;
    background: var(--blue-200);
    padding: 1.5rem 3rem;
    border-radius: 20px;
    border: 2px solid var(--blue-300);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.2);
    display: inline-block;
}

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

.outcome-card {
    background: var(--blue-200);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.15);
}

.outcome-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(30, 58, 138, 0.2);
    background: var(--blue-300);
}

.outcome-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--blue-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.outcome-card:hover .outcome-icon {
    background: var(--blue-200);
    transform: scale(1.1);
}

.outcome-icon-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.outcome-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blue-900);
    margin-bottom: 0.5rem;
}

.outcome-card-description {
    font-size: 1rem;
    color: var(--blue-900);
    line-height: 1.5;
    opacity: 0.9;
}

/* Coaching Options Section - Tabs & Accordion */
.coaching-options-section {
    padding: 6rem 0;
}

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

.coaching-options-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 3rem;
}

/* Desktop Tabs */
.coaching-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 3rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.5rem;
    overflow-x: auto;
}

.tab-button {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: none;
    padding: 1rem 1.5rem;
    font-family: 'Fira Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    white-space: nowrap;
    flex-shrink: 0;
}

.tab-button:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.tab-button.active {
    background: white;
    color: var(--blue-900);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Tab Content */
.tab-content-wrapper {
    position: relative;
}

.tab-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-content.active {
    display: block;
}

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

.tab-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.tab-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

.tab-badge {
    background: var(--blue-200);
    color: var(--blue-900);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    font-style: italic;
}

.tab-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

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

.feature-box {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.feature-box-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

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

.feature-list li {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.feature-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--blue-300);
    font-size: 1.5rem;
}

.tab-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 3rem;
    background: white;
    color: var(--blue-900);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 30px;
    border: 2px solid white;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    margin-top: 2rem;
}

.tab-cta-button:hover {
    background: var(--blue-100);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

/* Mobile/Tablet Accordion */
.coaching-accordion {
    display: none;
}

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

.accordion-header {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1.2rem 1.5rem;
    font-family: 'Fira Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header:hover {
    background: rgba(255, 255, 255, 0.15);
}

.accordion-header.active {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--blue-300);
}

.accordion-icon {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.accordion-header.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion-content.active {
    max-height: 2000px;
    padding-top: 2rem;
}

/* Desktop/Mobile Toggle */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

/* What You Can Expect Section */
.expect-section {
    padding: 5rem 0;
}

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

.expect-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--blue-900);
    margin-bottom: 2rem;
    background: white;
    padding: 1.5rem 3rem;
    border-radius: 60px;
    border: 3px solid var(--blue-400);
    display: inline-block;
}

.expect-intro {
    font-size: 1.1rem;
    color: var(--slate-900);
    line-height: 1.7;
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.expect-card {
    background: var(--blue-100);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.1);
    border: 2px solid transparent;
}

.expect-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(30, 58, 138, 0.15);
    border-color: var(--blue-300);
    background: var(--blue-200);
}

.expect-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--blue-900);
    margin-bottom: 1rem;
}

.expect-card-description {
    font-size: 0.95rem;
    color: var(--blue-900);
    line-height: 1.6;
}

/* Testimonials Section */
/* Testimonials styles moved to shared.css */

/* Contact Form Section */
.contact-form-section {
    padding: 5rem 0;
}

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

.contact-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem auto;
}

.contact-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--blue-900);
    margin-bottom: 2rem;
}

.contact-intro-text {
    font-size: 1.1rem;
    color: var(--slate-900);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.contact-intro-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-intro-list li {
    font-size: 1rem;
    color: var(--slate-900);
    line-height: 1.7;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    font-style: italic;
}

.contact-intro-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--blue-900);
    font-size: 1.5rem;
    font-style: normal;
}

.contact-intro-footer {
    font-size: 1rem;
    color: var(--slate-900);
    line-height: 1.7;
    margin-top: 2rem;
}

.contact-form-wrapper {
    background: white;
    border: 2px solid var(--blue-300);
    border-radius: 20px;
    padding: 3rem 4rem;
    max-width: 1100px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.15);
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--blue-900);
    margin-bottom: 2rem;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--blue-900);
}

.form-input,
.form-select,
.form-textarea {
    padding: 0.9rem 1.2rem;
    border: 2px solid #E0E7FF;
    border-radius: 8px;
    background: white;
    color: var(--slate-900);
    font-size: 1rem;
    font-family: 'Fira Sans', sans-serif;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    height: 48px;
}

.form-textarea {
    height: auto;
    min-height: 120px;
    resize: vertical;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--blue-300);
    box-shadow: 0 0 0 3px rgba(147, 197, 253, 0.1);
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23334155' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

.form-submit {
    text-align: center;
    margin-top: 1rem;
}

.submit-button {
    background: var(--blue-200);
    color: var(--blue-900);
    border: 2px solid var(--blue-300);
    padding: 1.2rem 3.5rem;
    border-radius: 30px;
    font-family: 'Fira Sans', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.25);
    position: relative;
    overflow: hidden;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.submit-button:hover::before {
    left: 100%;
}

.submit-button:hover {
    background: var(--blue-300);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(30, 58, 138, 0.4);
    border-color: var(--blue-400);
}

.submit-button:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.3);
}

/* Form Validation */
.form-input.error,
.form-select.error,
.form-textarea.error {
    border-color: #EF4444;
    background: #FEF2F2;
}

.error-message {
    color: #DC2626;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
    font-weight: 500;
}

.error-message.show {
    display: block;
    animation: slideDown 0.3s ease;
}

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

/* Success Modal */
.success-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.success-modal.show {
    display: flex;
}

.success-modal-content {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.success-icon {
    margin: 0 auto 1.5rem auto;
}

.success-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--blue-900);
    margin-bottom: 1rem;
}

.success-message {
    font-size: 1.1rem;
    color: var(--slate-700);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.success-close-btn {
    background: var(--blue-200);
    color: var(--blue-900);
    border: 2px solid var(--blue-300);
    padding: 1rem 3rem;
    border-radius: 30px;
    font-family: 'Fira Sans', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.success-close-btn:hover {
    background: var(--blue-300);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.3);
}

/* Responsive Design */

/* Tablet Landscape - 1024px */
@media (max-width: 1024px) {
    /* Hero Section */
    .services-hero-title {
        font-size: 3rem;
    }

    .coaching-options-main-title {
        font-size: 2.2rem;
    }

    /* Overview Cards */
    .overview-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Coaching Options - Switch to Accordion */
    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: block;
    }

    .tab-content-wrapper {
        display: none;
    }

    /* Outcomes */
    .outcomes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* What You Can Expect */
    .expect-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Testimonials */
    .carousel-arrow-left {
        left: -40px;
    }

    .carousel-arrow-right {
        right: -40px;
    }

    /* Form */
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Tablet Portrait - 768px */
@media (max-width: 768px) {
    /* Hero */
    .services-hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .services-hero {
        padding: 100px 0 60px;
    }

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

    .coaching-options-main-title {
        font-size: 2rem;
    }

    /* Overview Cards */
    .overview-cards-section {
        padding: 4rem 0;
    }

    .overview-cards-grid {
        grid-template-columns: 1fr;
    }

    .overview-card {
        padding: 2.5rem 2rem;
    }

    /* Struggles */
    .struggles-section {
        padding: 4rem 0;
    }

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

    .struggles-text {
        font-size: 1rem;
    }

    /* Outcomes */
    .outcomes-section {
        padding: 4rem 0;
    }

    .outcomes-title {
        font-size: 2rem;
        padding: 1.2rem 2rem;
    }

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

    /* Coaching Options */
    .coaching-options-section {
        padding: 4rem 0;
    }

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

    .tab-badge {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }

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

    .feature-box {
        padding: 1.5rem;
    }

    /* What You Can Expect */
    .expect-section {
        padding: 4rem 0;
    }

    .expect-title {
        font-size: 2rem;
        padding: 1.2rem 2rem;
    }

    .expect-intro {
        font-size: 1rem;
        margin-bottom: 3rem;
    }

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

    .expect-card {
        padding: 1.5rem 1.2rem;
    }

    .expect-card-title {
        font-size: 1.2rem;
    }

    .expect-card-description {
        font-size: 0.9rem;
    }

    /* Testimonials responsive styles moved to shared.css */

    /* Contact Form */
    .contact-form-section {
        padding: 4rem 0;
    }

    .contact-section-title {
        font-size: 2rem;
    }

    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .form-title {
        font-size: 1.8rem;
    }

    .submit-button {
        width: 100%;
        max-width: 350px;
        padding: 1rem 2.5rem;
    }
}

/* Small Phones - 480px */
@media (max-width: 480px) {
    /* Hero */
    .services-hero {
        padding: 80px 0 50px;
    }

    .services-hero-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .coaching-options-main-title {
        font-size: 1.8rem;
    }

    /* Overview Cards */
    .overview-card {
        padding: 2rem 1.5rem;
    }

    .overview-card-title {
        font-size: 1.3rem;
    }

    /* Struggles */
    .struggles-section {
        padding: 3rem 0;
    }

    .struggles-title {
        font-size: 1.8rem;
    }

    .struggles-text {
        font-size: 0.95rem;
    }

    /* Outcomes */
    .outcomes-section {
        padding: 3rem 0;
    }

    .outcomes-title {
        font-size: 1.8rem;
        padding: 1rem 1.5rem;
    }

    .outcome-card {
        padding: 1.5rem 1rem;
    }

    .outcome-icon {
        width: 60px;
        height: 60px;
    }

    .outcome-icon-image {
        width: 40px;
        height: 40px;
    }

    .outcome-card-title {
        font-size: 1.2rem;
    }

    /* Coaching Options */
    .coaching-options-section {
        padding: 3rem 0;
    }

    .accordion-header {
        padding: 1rem;
        font-size: 1rem;
    }

    .tab-title {
        font-size: 1.8rem;
    }

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

    .feature-box {
        padding: 1.2rem;
    }

    .feature-box-title {
        font-size: 1.1rem;
    }

    .feature-list li {
        font-size: 0.95rem;
    }

    /* What You Can Expect */
    .expect-section {
        padding: 3rem 0;
    }

    .expect-title {
        font-size: 1.8rem;
        padding: 1rem 1.5rem;
    }

    .expect-intro {
        font-size: 0.95rem;
        margin-bottom: 2.5rem;
    }

    .expect-card {
        padding: 1.2rem 1rem;
    }

    .expect-card-title {
        font-size: 1.1rem;
    }

    .expect-card-description {
        font-size: 0.85rem;
    }

    /* Testimonials responsive styles moved to shared.css */

    /* Contact Form */
    .contact-section-title {
        font-size: 1.8rem;
    }

    .contact-intro-text {
        font-size: 0.95rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem 1rem;
    }

    .form-title {
        font-size: 1.6rem;
    }

    .form-label {
        font-size: 0.9rem;
    }

    .form-input,
    .form-select,
    .form-textarea {
        padding: 0.8rem 1rem;
        font-size: 0.95rem;
    }

    .submit-button {
        width: 100%;
        max-width: 300px;
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }
}
