/**
 * Modern Consultation Page Design
 * Clean, modern design inspired by wellness coaching websites
 */

/* Modern Variables */
:root {
    --primary-color: #2E5266;
    --primary-light: #4A7C8C;
    --secondary-color: #D4B5A0;
    --accent-color: #E8C4A8;
    --success-color: #7FB069;
    --text-dark: #2D3748;
    --text-medium: #4A5568;
    --text-light: #718096;
    --background-light: #F7FAFC;
    --background-cream: #FDF7F0;
    --white: #FFFFFF;
    --border-light: #E2E8F0;
    --shadow-light: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-heavy: 0 10px 25px rgba(0, 0, 0, 0.1);
    --border-radius: 16px;
    --border-radius-small: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1200px;
}

/* Base Styles */
.consultation-page-modern {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Modern Hero Section */
.modern-hero {
    position: relative;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    background: #F8F9FA;
    overflow: hidden;
    padding: 4rem 0;
}

.modern-hero .container {
    grid-column: 1;
    z-index: 3;
    position: relative;
    padding-left: 3rem;
}

.hero-visual-section {
    grid-column: 2;
    position: relative;
    height: 100vh;
    min-height: 600px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 2rem;
}

.hero-circles-container {
    position: relative;
    width: 100%;
    height: 80%;
    max-width: 550px;
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 5px solid var(--white);
}

.hero-circle:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
}

.hero-circle-1 {
    width: 280px;
    height: 280px;
    top: 0;
    right: 5%;
    z-index: 3;
}

.hero-circle-2 {
    width: 350px;
    height: 350px;
    bottom: 50%;
    right: 73%;
    z-index: 2;
}

.hero-circle-3 {
    width: 190px;
    height: 190px;
    top: 50%;
    right: 46%;
    z-index: 1;
}

.circle-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
}

.hero-content-modern {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: 100%;
    text-align: left;
    padding-right: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: #4A90A4;
    color: var(--white);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-title-modern {
    font-size: 4rem;
    font-weight: 800;
    color: #2D3748;
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    max-width: 90%;
}

.hero-description-modern {
    font-size: 1.1rem;
    color: #718096;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 80%;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    align-items: center;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 1rem;
    max-width: 520px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

.stat-divider {
    width: 1px;
    height: 2rem;
    background: var(--border-light);
}

/* Modern Buttons - Corrections importantes */
.btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.75rem;
    border: none;
    border-radius: var(--border-radius-small);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    text-align: center;
    justify-content: center;
    min-height: 48px;
    box-shadow: var(--shadow-light);
}

.btn-large {
    padding: 1.25rem 2.25rem;
    font-size: 1.125rem;
    min-height: 56px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-primary-modern {
    background: #4A90A4;
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1rem;
}

.btn-primary-modern:hover {
    background: #3A7A8A;
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(74, 144, 164, 0.3);
    color: var(--white);
    text-decoration: none;
}

.btn-outline-modern {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    backdrop-filter: blur(10px);
}

.btn-outline-modern:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    text-decoration: none;
}

.btn-success-modern {
    background: linear-gradient(135deg, var(--success-color) 0%, #6BA054 100%);
    color: var(--white);
    border: 2px solid transparent;
}

.btn-success-modern:hover {
    background: linear-gradient(135deg, #6BA054 0%, var(--success-color) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    color: var(--white);
    text-decoration: none;
}

.btn-arrow {
    width: 1rem;
    height: 1rem;
    transition: var(--transition);
    flex-shrink: 0;
}

.btn-modern:hover .btn-arrow {
    transform: translateX(3px);
}

/* Hero CTA amélioré */
.hero-cta .btn-modern {
    min-width: 200px;
}

.hero-cta .btn-primary-modern {
    font-weight: 700;
}

.hero-cta .btn-outline-modern {
    font-weight: 600;
}

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

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

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--accent-color);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-header-modern h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-header-modern p {
    font-size: 1.125rem;
    color: var(--text-light);
}

/* Client Satisfaction Section */
.client-satisfaction {
    background: var(--background-light);
}

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

.satisfaction-text h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.satisfaction-text p {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.satisfaction-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-icon {
    width: 2rem;
    height: 2rem;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 1rem;
    height: 1rem;
    stroke: var(--white);
}

.satisfaction-visual {
    display: flex;
    justify-content: center;
}

.satisfaction-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
    text-align: center;
    min-width: 200px;
}

.rating-display {
    margin-bottom: 1rem;
}

.rating-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    line-height: 1;
}

.rating-stars {
    color: #FFB800;
    font-size: 1.25rem;
    margin-top: 0.5rem;
}

/* Services Section Modern */
.services-modern {
    background: var(--white);
}

.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card-modern {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
}

.service-card-modern:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-heavy);
}

.service-card-modern.featured {
    border: 2px solid var(--primary-color);
    position: relative;
}

.service-card-modern.featured::before {
    content: 'Recommandé';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.service-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.service-icon-modern {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: var(--border-radius-small);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-modern svg {
    width: 1.5rem;
    height: 1.5rem;
    stroke: var(--white);
}

.service-badge {
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.service-card-modern h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-description-modern {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-highlights {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.highlight-item {
    text-align: center;
}

.highlight-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.highlight-text {
    font-size: 0.875rem;
    color: var(--text-light);
}

.service-benefits-modern {
    margin-bottom: 2rem;
}

.benefit-category {
    margin-bottom: 1.5rem;
}

.benefit-category h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.benefit-category ul {
    list-style: none;
    padding: 0;
}

.benefit-category li {
    padding: 0.25rem 0;
    color: var(--text-medium);
    font-size: 0.875rem;
    position: relative;
    padding-left: 1.5rem;
}

.benefit-category li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.service-benefits-simple ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.service-benefits-simple li {
    padding: 0.5rem 0;
    color: var(--text-medium);
    position: relative;
    padding-left: 1.5rem;
}

.service-benefits-simple li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.service-pricing-modern {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
}

.price-info {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

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

.price-period {
    color: var(--text-light);
}

/* Specialized Focus Section */
.specialized-focus {
    background: var(--background-light);
}

.focus-header {
    text-align: center;
    margin-bottom: 3rem;
}

.focus-header h2 {
    font-size: 2.25rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.focus-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.focus-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.focus-icon {
    width: 3rem;
    height: 3rem;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.focus-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    stroke: var(--primary-color);
}

.focus-item h4 {
    font-size: 1.125rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.focus-item p {
    color: var(--text-medium);
    font-size: 0.875rem;
}

/* FAQ Section */
.faq-modern {
    background: var(--white);
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-header h2 {
    font-size: 2.25rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-small);
    margin-bottom: 1rem;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--background-light);
}

.faq-question h4 {
    font-size: 1.125rem;
    color: var(--primary-color);
    margin: 0;
    font-weight: 600;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 300;
    transition: var(--transition);
}

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

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

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-medium);
    line-height: 1.6;
    margin: 0;
}

/* Testimonials Modern */
.testimonials-modern {
    background: var(--background-cream);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-header h2 {
    font-size: 2.25rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.testimonial-modern {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    position: relative;
}

.testimonial-content-modern {
    margin-bottom: 1.5rem;
}

.testimonial-quote {
    margin-bottom: 1rem;
}

.testimonial-quote svg {
    width: 2rem;
    height: 2rem;
    fill: var(--accent-color);
}

.testimonial-content-modern p {
    font-style: italic;
    color: var(--text-medium);
    line-height: 1.7;
    margin: 0;
}

.testimonial-author-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-info h5 {
    color: var(--primary-color);
    margin: 0 0 0.25rem;
    font-weight: 600;
}

.author-info span {
    color: var(--text-light);
    font-size: 0.875rem;
}

.testimonial-rating {
    color: #FFB800;
}

/* CTA Journey Section */
.cta-journey {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
}

.cta-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.cta-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cta-text p {
    font-size: 1.125rem;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-action {
    text-align: right;
}

.cta-action .btn-modern {
    background: var(--white);
    color: var(--primary-color);
}

.cta-action .btn-modern:hover {
    background: var(--background-light);
    transform: translateY(-2px);
}

/* Booking Section Modern */
.booking-modern {
    background: var(--background-light);
}

.booking-header-modern {
    text-align: center;
    margin-bottom: 3rem;
}

.booking-header-modern h2 {
    font-size: 2.25rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.booking-container-modern {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.booking-form-modern {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-medium);
}

/* Form Steps */
.form-step-modern {
    display: none;
}

.form-step-modern.active {
    display: block;
}

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

.step-header h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step-header p {
    color: var(--text-light);
}

/* Service Selection */
.service-selection {
    display: grid;
    gap: 1rem;
}

.service-option-modern {
    cursor: pointer;
}

.service-option-modern input {
    display: none;
}

.service-card-selection {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border: 2px solid var(--border-light);
    border-radius: var(--border-radius-small);
    transition: var(--transition);
    position: relative;
}

.service-card-selection:hover {
    border-color: var(--primary-color);
}

.service-option-modern input:checked + .service-card-selection {
    border-color: var(--primary-color);
    background: rgba(46, 82, 102, 0.05);
}

.service-icon-small {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--primary-color);
    border-radius: var(--border-radius-small);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon-small svg {
    width: 1.25rem;
    height: 1.25rem;
    stroke: var(--white);
}

.service-details {
    flex: 1;
}

.service-details h4 {
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.service-details p {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.service-price-selection {
    color: var(--primary-color);
    font-weight: 600;
}

.service-badge-popular {
    position: absolute;
    top: -8px;
    right: 1rem;
    background: var(--success-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Form Fields */
.form-grid-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

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

.form-group-modern label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.form-group-modern input,
.form-group-modern select,
.form-group-modern textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--border-light);
    border-radius: var(--border-radius-small);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-group-modern input:focus,
.form-group-modern select:focus,
.form-group-modern textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(46, 82, 102, 0.1);
}

/* Consultation Modes */
.consultation-modes-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.mode-option-modern {
    cursor: pointer;
}

.mode-option-modern input {
    display: none;
}

.mode-card {
    padding: 1.5rem;
    border: 2px solid var(--border-light);
    border-radius: var(--border-radius-small);
    text-align: center;
    transition: var(--transition);
}

.mode-card:hover {
    border-color: var(--primary-color);
}

.mode-option-modern input:checked + .mode-card {
    border-color: var(--primary-color);
    background: rgba(46, 82, 102, 0.05);
}

.mode-icon {
    width: 3rem;
    height: 3rem;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.mode-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    stroke: var(--primary-color);
}

.mode-card h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.mode-card p {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* DateTime Selection */
.datetime-selection-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.calendar-modern,
.time-slots-modern {
    background: var(--background-light);
    padding: 1.5rem;
    border-radius: var(--border-radius-small);
}

.calendar-modern h4,
.time-slots-modern h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 0.5rem;
}

.time-slot-modern {
    padding: 0.5rem;
    border: 2px solid var(--border-light);
    border-radius: var(--border-radius-small);
    background: var(--white);
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    font-size: 0.875rem;
}

.time-slot-modern:hover {
    border-color: var(--primary-color);
}

.time-slot-modern.selected {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Booking Summary */
.booking-summary-modern {
    background: var(--background-light);
    padding: 1.5rem;
    border-radius: var(--border-radius-small);
    margin-bottom: 2rem;
}

.booking-summary-modern h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.summary-grid {
    display: grid;
    gap: 0.75rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.summary-label {
    color: var(--text-medium);
}

.summary-value {
    color: var(--text-dark);
    font-weight: 600;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
    margin-top: 0.5rem;
}

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

.total-amount {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.25rem;
}

/* Terms & Navigation */
.terms-modern {
    margin-bottom: 2rem;
}

.checkbox-modern {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-modern input {
    width: auto;
    margin: 0;
}

.checkbox-custom-modern {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid var(--border-light);
    border-radius: 4px;
    position: relative;
    margin-top: 2px;
    flex-shrink: 0;
}

.checkbox-modern input:checked + .checkbox-custom-modern {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-modern input:checked + .checkbox-custom-modern::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-weight: bold;
    font-size: 0.875rem;
}

.form-navigation-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
}

/* Booking Sidebar */
.booking-sidebar-modern {
    display: grid;
    gap: 2rem;
}

.booking-guarantees {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.booking-guarantees h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.guarantee-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.guarantee-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.guarantee-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    stroke: var(--primary-color);
}

.guarantee-item h5 {
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.guarantee-item p {
    color: var(--text-light);
    font-size: 0.875rem;
    margin: 0;
}

.contact-info-modern {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    text-align: center;
}

.contact-info-modern h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-info-modern p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-link svg {
    width: 1rem;
    height: 1rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .modern-hero {
        grid-template-columns: 1fr 1fr;
    }
    
    .modern-hero .container {
        padding-left: 2rem;
    }
    
    .hero-title-modern {
        font-size: 3.5rem;
    }
}

@media (max-width: 1024px) {
    .modern-hero {
        display: flex;
        flex-direction: column;
        background: #F8F9FA;
        min-height: 90vh;
        text-align: center;
        justify-content: center;
        padding: 2rem 0;
    }
    
    .modern-hero .container {
        order: 1;
        grid-column: unset;
        padding-left: 1rem;
        text-align: center;
    }
    
    .hero-title-modern {
        font-size: 3rem;
        max-width: 100%;
    }
    
    .hero-description-modern {
        max-width: 100%;
    }
    
    .hero-visual-section {
        order: 2;
        grid-column: unset;
        position: relative;
        height: 300px;
        width: 100%;
        padding: 1rem;
        justify-content: center;
    }
    
    .hero-circles-container {
        height: 100%;
        max-width: 400px;
    }
    
    .hero-circle-1 {
        width: 180px;
        height: 180px;
        top: 0;
        right: 0;
    }
    
    .hero-circle-2 {
        width: 140px;
        height: 140px;
        bottom: 0;
        left: 0;
    }
    
    .hero-circle-3 {
        width: 110px;
        height: 110px;
        top: 50%;
        right: 25%;
    }
    
    .hero-content-modern {
        padding-right: 0;
        max-width: 100%;
        z-index: 3;
        text-align: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-stats {
        max-width: 100%;
        justify-content: center;
    }
    
    .satisfaction-content,
    .cta-content,
    .booking-container-modern {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-action {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .modern-hero {
        min-height: 85vh;
        padding: 1rem 0;
    }
    
    .hero-title-modern {
        font-size: 2.5rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-subtitle-modern {
        font-size: 1.25rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-description-modern {
        font-size: 1rem;
        margin-bottom: 2rem;
        max-width: 100%;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 2.5rem;
    }
    
    .hero-cta .btn-modern {
        min-width: 250px;
        width: 100%;
        max-width: 320px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
        margin-top: 1rem;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .stat-divider {
        display: none;
    }
    
    .stat-item {
        padding: 0.5rem 0;
    }
    
    .hero-visual-section {
        height: 50%;
    }
    
    .hero-circles-container {
        max-width: 100%;
    }
    
    .hero-circle-1 {
        width: 150px;
        height: 150px;
        top: 0;
        right: 10%;
    }
    
    .hero-circle-2 {
        width: 120px;
        height: 120px;
        bottom: 0;
        left: 10%;
    }
    
    .hero-circle-3 {
        width: 100px;
        height: 100px;
        top: 45%;
        right: 35%;
    }
    
    .services-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .focus-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-carousel {
        grid-template-columns: 1fr;
    }
    
    .service-highlights {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-grid-modern,
    .consultation-modes-modern,
    .datetime-selection-modern {
        grid-template-columns: 1fr;
    }
    
    .form-navigation-modern {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    section {
        padding: 3rem 0;
    }
    
    .modern-hero {
        min-height: 80vh;
        padding: 0.5rem 0;
    }
    
    .hero-title-modern {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle-modern {
        font-size: 1.1rem;
    }
    
    .hero-description-modern {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .hero-cta .btn-modern {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
        min-width: 100%;
    }
    
    .hero-stats {
        padding: 1.2rem;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .section-header-modern h2 {
        font-size: 1.75rem;
    }
    
    .service-card-modern,
    .booking-form-modern {
        padding: 1.5rem;
    }
}