/* ========================================
   Circle Website - Modern Stylesheet
   ======================================== */

/* CSS Variables */
:root {
    /* Brand Colors - Teal/Cyan */
    --primary-50: #f0fdfa;
    --primary-100: #ccfbf1;
    --primary-200: #99f6e4;
    --primary-300: #5eead4;
    --primary-400: #2dd4bf;
    --primary-500: #14b8a6;
    --primary-600: #0d9488;
    --primary-700: #0f766e;
    --primary-800: #115e59;
    --primary-900: #134e4a;
    
    /* Neutral Colors */
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Accent Colors */
    --accent-50: #fff7ed;
    --accent-100: #ffedd5;
    --accent-500: #f97316;
    --accent-600: #ea580c;
    
    /* Semantic Colors */
    --success: #10b981;
    --error: #ef4444;
    --warning: #f59e0b;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Container */
    --container-max: 1200px;
    --container-padding: 1.5rem;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--gray-50);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
}

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--gray-900);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-600), var(--primary-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Section */
.section {
    padding: var(--spacing-3xl) 0;
    position: relative;
}

.section__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-2xl);
}

.section__subtitle {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary-600);
    margin-bottom: var(--spacing-sm);
    padding: 0.25rem 0.75rem;
    background: var(--primary-50);
    border-radius: var(--radius-full);
}

.section__title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--spacing-sm);
}

.section__description {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    white-space: nowrap;
    border: 2px solid transparent;
}

.btn--primary {
    background: var(--primary-600);
    color: white;
}

.btn--primary:hover {
    background: var(--primary-700);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--secondary {
    background: transparent;
    color: var(--primary-600);
    border-color: var(--primary-200);
}

.btn--secondary:hover {
    background: var(--primary-50);
    border-color: var(--primary-400);
}

.btn--large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn--full {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    z-index: 1000;
    transition: all var(--transition-base);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-700);
}

.nav__logo-img {
    width: 32px;
    height: 32px;
}

.nav__menu {
    display: flex;
    align-items: center;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav__link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gray-700);
    position: relative;
    padding: 0.5rem 0;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-600);
    transition: width var(--transition-base);
}

.nav__link:hover,
.nav__link.active {
    color: var(--primary-600);
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav__book-btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.95rem;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
}

.nav__toggle span {
    width: 24px;
    height: 2px;
    background: var(--gray-800);
    transition: all var(--transition-base);
}

.nav__toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav__toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--gray-50) 100%);
}

.hero__pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    opacity: 0.5;
    z-index: 0;
}

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

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: white;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    box-shadow: var(--shadow-sm);
    margin-bottom: var(--spacing-lg);
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
}

.hero__description {
    font-size: 1.25rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: var(--spacing-xl);
    max-width: 500px;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    margin-bottom: var(--spacing-2xl);
    flex-wrap: wrap;
}

.hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

.hero__stat {
    display: flex;
    flex-direction: column;
}

.hero__stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-600);
    font-family: var(--font-heading);
}

.hero__stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-top: 0.25rem;
}

.hero__visual {
    position: relative;
    height: 500px;
}

.hero__circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
}

.hero__circle--1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-400), var(--primary-600));
    top: 50px;
    right: 50px;
    animation: float 6s ease-in-out infinite;
}

.hero__circle--2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-300), var(--primary-500));
    top: 0;
    left: 50px;
    animation: float 8s ease-in-out infinite reverse;
}

.hero__circle--3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--primary-200), var(--primary-400));
    bottom: 50px;
    right: 100px;
    animation: float 7s ease-in-out infinite;
}

.hero__card {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
    width: 280px;
    z-index: 2;
}

.hero__card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.hero__card-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-50);
    color: var(--primary-600);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__card-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-600);
}

.hero__card-body {
    margin-bottom: 1rem;
}

.hero__card-date {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.hero__card-type {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.hero__card-btn {
    width: 100%;
    padding: 0.75rem;
    background: var(--primary-600);
    color: white;
    border-radius: var(--radius-md);
    font-weight: 500;
    font-size: 0.875rem;
    transition: background var(--transition-base);
}

.hero__card-btn:hover {
    background: var(--primary-700);
}

.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.hero__scroll-text {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gray-400), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

/* Services Section */
.services {
    background: white;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-600), var(--primary-400));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-200);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card__icon {
    width: 64px;
    height: 64px;
    background: var(--primary-50);
    color: var(--primary-600);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all var(--transition-base);
}

.service-card:hover .service-card__icon {
    background: var(--primary-600);
    color: white;
    transform: scale(1.1);
}

.service-card__title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.service-card__description {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-card__details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 1.5rem;
}

.service-card__duration {
    font-size: 0.875rem;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-card__price {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-600);
}

.service-card__btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.875rem 1.25rem;
    background: var(--primary-50);
    color: var(--primary-700);
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: all var(--transition-base);
}

.service-card__btn:hover {
    background: var(--primary-600);
    color: white;
}

.service-card__btn svg {
    transition: transform var(--transition-base);
}

.service-card__btn:hover svg {
    transform: translateX(4px);
}

/* About Section */
.about {
    background: var(--gray-50);
}

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

.about__visual {
    position: relative;
    height: 500px;
}

.about__pattern {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-100), var(--primary-50));
}

.about__pattern-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.about__content-card {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    text-align: center;
}

.about__icon {
    width: 80px;
    height: 80px;
    background: var(--primary-600);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.about__content-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-700);
}

.about__content-card p {
    color: var(--gray-600);
}

.about__text {
    margin-bottom: 2rem;
}

.about__text p {
    margin-bottom: 1rem;
    color: var(--gray-600);
    line-height: 1.8;
}

.about__text strong {
    color: var(--gray-900);
}

.about__text em {
    color: var(--primary-600);
    font-style: italic;
}

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

.about__feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
}

.about__feature-icon {
    width: 32px;
    height: 32px;
    background: var(--primary-50);
    color: var(--primary-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about__feature span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
}

/* Therapist Section */
.therapist {
    background: white;
}

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

.therapist__role {
    font-size: 1.25rem;
    color: var(--primary-600);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.therapist__bio {
    margin-bottom: 2rem;
}

.therapist__bio p {
    margin-bottom: 1rem;
    color: var(--gray-600);
    line-height: 1.8;
}

.therapist__bio strong {
    color: var(--gray-900);
}

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

.therapist__credential {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
}

.therapist__credential-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-600);
    color: white;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.therapist__credential-text h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.therapist__credential-text p {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.therapist__visual {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.therapist__image-wrapper {
    position: relative;
    z-index: 2;
}

.therapist__image {
    width: 400px;
    height: 400px;
    border-radius: var(--radius-2xl);
    background: linear-gradient(135deg, var(--primary-100), var(--primary-50));
    object-fit: cover;
}

.therapist__badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.therapist__badge-icon {
    width: 32px;
    height: 32px;
    background: var(--success);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.therapist__badge span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-800);
}

.therapist__decorations {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.therapist__decoration {
    position: absolute;
    border-radius: 50%;
}

.therapist__decoration--1 {
    width: 300px;
    height: 300px;
    border: 2px solid var(--primary-200);
    top: 50px;
    right: 50px;
    animation: rotate 20s linear infinite;
}

.therapist__decoration--2 {
    width: 200px;
    height: 200px;
    border: 2px dashed var(--primary-300);
    bottom: 100px;
    left: 50px;
    animation: rotate 15s linear infinite reverse;
}

.therapist__decoration--3 {
    width: 100px;
    height: 100px;
    background: var(--primary-100);
    top: 100px;
    left: 100px;
    opacity: 0.5;
}

/* Contact Section */
.contact {
    background: var(--gray-50);
}

.contact__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact__info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    align-content: start;
}

.contact__card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
}

.contact__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-200);
}

.contact__card-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-50);
    color: var(--primary-600);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.contact__card-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.contact__card-content p {
    color: var(--gray-600);
    line-height: 1.6;
    font-size: 0.875rem;
}

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

.contact__link:hover {
    text-decoration: underline;
}

.contact__form-wrapper {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
}

.contact__form-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact__form-group {
    margin-bottom: 1rem;
}

.contact__form-group input,
.contact__form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all var(--transition-base);
    background: white;
}

.contact__form-group input:focus,
.contact__form-group textarea:focus {
    outline: none;
    border-color: var(--primary-500);
    box-shadow: 0 0 0 3px var(--primary-100);
}

.contact__form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact__map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

.contact__map iframe {
    display: block;
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 4rem 0 2rem;
}

.footer__container {
    max-width: var(--container-max);
}

.footer__content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer__brand {
    max-width: 400px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
}

.footer__logo img {
    width: 32px;
    height: 32px;
}

.footer__description {
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--gray-400);
}

.footer__social {
    display: flex;
    gap: 0.75rem;
}

.footer__social-link {
    width: 40px;
    height: 40px;
    background: var(--gray-800);
    color: var(--gray-400);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.footer__social-link:hover {
    background: var(--primary-600);
    color: white;
    transform: translateY(-2px);
}

.footer__title {
    font-size: 1rem;
    color: white;
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.footer__list {
    list-style: none;
}

.footer__list li {
    margin-bottom: 0.75rem;
}

.footer__list a {
    font-size: 0.875rem;
    color: var(--gray-400);
    transition: color var(--transition-base);
}

.footer__list a:hover {
    color: var(--primary-400);
}

.footer__bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--gray-800);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* Booking Modal */
.booking-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

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

.booking-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

.booking-modal__container {
    position: relative;
    background: white;
    border-radius: var(--radius-2xl);
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
    box-shadow: var(--shadow-2xl);
}

.booking-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: var(--gray-100);
    color: var(--gray-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all var(--transition-base);
}

.booking-modal__close:hover {
    background: var(--gray-200);
    color: var(--gray-900);
}

.booking-modal__content {
    padding: 2rem;
}

.booking-modal__header {
    text-align: center;
    margin-bottom: 2rem;
}

.booking-modal__title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.booking-modal__subtitle {
    color: var(--gray-600);
}

/* Booking Progress */
.booking-progress {
    margin-bottom: 2rem;
}

.booking-progress__bar {
    position: relative;
}

.booking-progress__line {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gray-200);
}

.booking-progress__line-fill {
    height: 100%;
    background: var(--primary-600);
    width: 0%;
    transition: width var(--transition-slow);
}

.booking-progress__steps {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.booking-progress__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
}

.booking-progress__step-circle {
    width: 40px;
    height: 40px;
    background: white;
    border: 2px solid var(--gray-300);
    color: var(--gray-400);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: all var(--transition-base);
    z-index: 1;
}

.booking-progress__step.active .booking-progress__step-circle {
    background: var(--primary-600);
    border-color: var(--primary-600);
    color: white;
}

.booking-progress__step.completed .booking-progress__step-circle {
    background: var(--primary-600);
    border-color: var(--primary-600);
    color: white;
}

.booking-progress__step span {
    font-size: 0.75rem;
    color: var(--gray-500);
    font-weight: 500;
}

.booking-progress__step.active span {
    color: var(--primary-600);
}

/* Booking Steps */
.booking-step {
    display: none;
    animation: fadeIn 0.4s ease;
}

.booking-step.active {
    display: block;
}

.booking-step__title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.booking-step__content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Service Options */
.service-options {
    display: grid;
    gap: 0.75rem;
}

.service-option {
    cursor: pointer;
}

.service-option input[type="radio"] {
    display: none;
}

.service-option__content {
    padding: 1rem 1.25rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.service-option input[type="radio"]:checked + .service-option__content {
    border-color: var(--primary-500);
    background: var(--primary-50);
}

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

.service-option__header h4 {
    font-size: 1rem;
    margin: 0;
}

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

.service-option__content p {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 0.25rem;
}

.service-option__duration {
    font-size: 0.75rem;
    color: var(--gray-500);
}

/* Form Elements */
.form-group {
    margin-bottom: 1rem;
}

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all var(--transition-base);
    background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-500);
    box-shadow: 0 0 0 3px var(--primary-100);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Time Slots */
.time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 0.75rem;
}

.time-slot {
    cursor: pointer;
}

.time-slot input[type="radio"] {
    display: none;
}

.time-slot span {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all var(--transition-base);
}

.time-slot input[type="radio"]:checked + span {
    border-color: var(--primary-500);
    background: var(--primary-50);
    color: var(--primary-700);
}

/* Mode Options */
.mode-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.mode-option {
    cursor: pointer;
}

.mode-option input[type="radio"] {
    display: none;
}

.mode-option__content {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.mode-option input[type="radio"]:checked + .mode-option__content {
    border-color: var(--primary-500);
    background: var(--primary-50);
}

.mode-option__content svg {
    color: var(--primary-600);
    flex-shrink: 0;
}

.mode-option__content h4 {
    font-size: 1rem;
    margin: 0 0 0.25rem 0;
}

.mode-option__content p {
    font-size: 0.75rem;
    color: var(--gray-600);
    margin: 0;
}

/* Checkbox */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.125rem;
    width: 18px;
    height: 18px;
    accent-color: var(--primary-600);
}

.checkbox-label a {
    color: var(--primary-600);
    text-decoration: underline;
}

/* Booking Summary */
.booking-summary {
    background: var(--gray-50);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item__label {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.summary-item__value {
    font-weight: 600;
    color: var(--gray-900);
}

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

.summary-total__label {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
}

.summary-total__value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-600);
}

/* Booking Actions */
.booking-actions {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

/* Booking Success */
.booking-success {
    display: none;
    text-align: center;
    padding: 2rem 0;
    animation: fadeIn 0.5s ease;
}

.booking-success.active {
    display: block;
}

.booking-success__icon {
    width: 80px;
    height: 80px;
    background: var(--success);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    animation: scaleIn 0.5s ease;
}

.booking-success__title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.booking-success__message {
    color: var(--gray-600);
    margin-bottom: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.booking-success__details {
    background: var(--gray-50);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    text-align: left;
}

/* Toast */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 3000;
    transform: translateX(120%);
    transition: transform var(--transition-base);
    max-width: 400px;
    border-left: 4px solid var(--primary-600);
}

.toast.active {
    transform: translateX(0);
}

.toast--success {
    border-left-color: var(--success);
}

.toast--error {
    border-left-color: var(--error);
}

.toast__icon {
    width: 24px;
    height: 24px;
    color: var(--primary-600);
    flex-shrink: 0;
}

.toast--success .toast__icon {
    color: var(--success);
}

.toast--error .toast__icon {
    color: var(--error);
}

.toast__content {
    flex: 1;
}

.toast__title {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.125rem;
}

.toast__message {
    font-size: 0.75rem;
    color: var(--gray-600);
}

.toast__close {
    color: var(--gray-400);
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast__close:hover {
    color: var(--gray-600);
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.5);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes scrollLine {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }
    50% {
        transform: scaleY(1);
        transform-origin: top;
    }
    51% {
        transform: scaleY(1);
        transform-origin: bottom;
    }
    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero__container,
    .about__container,
    .therapist__container,
    .contact__container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero__visual,
    .about__visual,
    .therapist__visual {
        height: 400px;
    }
    
    .footer__content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-3xl: 4rem;
        --spacing-2xl: 3rem;
    }
    
    .nav__menu {
        position: fixed;
        top: 72px;
        left: 0;
        width: 100%;
        background: white;
        padding: 2rem 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-base);
    }
    
    .nav__menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav__list {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    
    .nav__link {
        display: block;
        padding: 0.75rem 0;
        width: 100%;
    }
    
    .nav__toggle {
        display: flex;
    }
    
    .nav__book-btn {
        display: none;
    }
    
    .hero {
        padding-top: 100px;
    }
    
    .hero__stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hero__stat {
        flex-direction: row;
        align-items: baseline;
        gap: 1rem;
    }
    
    .services__grid {
        grid-template-columns: 1fr;
    }
    
    .about__features,
    .therapist__credentials,
    .contact__info {
        grid-template-columns: 1fr;
    }
    
    .footer__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer__bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .mode-options {
        grid-template-columns: 1fr;
    }
    
    .booking-modal__content {
        padding: 1.5rem;
    }
    
    .booking-progress__step span {
        display: none;
    }
    
    .toast {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 2rem;
    }
    
    .hero__description {
        font-size: 1rem;
    }
    
    .hero__actions {
        flex-direction: column;
    }
    
    .hero__actions .btn {
        width: 100%;
    }
    
    .section__title {
        font-size: 1.75rem;
    }
    
    .service-card,
    .contact__form-wrapper {
        padding: 1.5rem;
    }
    
    .booking-actions {
        flex-direction: column-reverse;
    }
    
    .booking-actions .btn {
        width: 100%;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .booking-modal,
    .toast {
        display: none;
    }
    
    body {
        background: white;
    }
}