:root {
    --primary-color: #E6B89C;
    --secondary-color: #4F4846;
    --accent-color: #9CB4CC;
    --text-color: #2C3639;
    --light-bg: #F9F5F2;
    --white: #ffffff;
    --rdv-color: #4A7C59;
    --rdv-hover: #3D6548;
    --font-main: 'Poppins', sans-serif;
    --font-heading: 'Playfair Display', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    background: linear-gradient(
        135deg,
        rgba(230, 184, 156, 0.05) 0%,
        rgba(255, 255, 255, 1) 100%
    );
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    z-index: 1000;
    height: 80px;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.5rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

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

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 1.2rem 1.8rem;
    list-style: none;
    padding-left: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

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

.hero {
    width: 100%;
    min-height: 100vh;
    padding-top: 80px;
    background: linear-gradient(135deg, var(--light-bg) 0%, #ffffff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 0;
    overflow: hidden;
}

.hero::after {
    display: none;
}

.hero::before {
    display: none;
}

.hero-content {
    max-width: 1400px;
    width: 100%;
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    gap: 4rem;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}


.hero-text {
    flex: 1;
    color: var(--text-color);
    text-align: left;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
    line-height: 1.2;
    letter-spacing: -0.5px;
    font-weight: 700;
    text-align: left;
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    bottom: -15px;
    left: 0;
    border-radius: 2px;
}

.hero-title::after {
    display: none;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin: 2.5rem 0;
    color: var(--text-color);
    font-weight: 400;
    font-family: var(--font-main);
    line-height: 1.6;
    text-align: justify;
    opacity: 0.8;
}

.hero-image-section {
    flex: 0 0 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-placeholder {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--light-bg) 0%, #f8f9fa 100%);
    border: 3px dashed var(--primary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-family: var(--font-main);
    text-align: center;
    transition: all 0.3s ease;
}

.hero-image-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.hero-image-placeholder p {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
    opacity: 0.8;
}

.hero-image-placeholder:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(230, 184, 156, 0.2);
}

.hero-profile-image {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 6px solid #ffffff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

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

/* Location Section */
.location-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #3a3532 100%);
    position: relative;
    overflow: hidden;
}

.location-section::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="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="60" cy="80" r="1" fill="rgba(255,255,255,0.06)"/></svg>');
    pointer-events: none;
}

.location-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.location-info {
    color: white;
}

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

.location-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    background: rgba(230, 184, 156, 0.2);
    padding: 1rem;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    border: 2px solid var(--primary-color);
}

.location-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin: 0;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.location-item h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.location-item p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    text-align: justify;
}

.location-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), #d4a574);
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(230, 184, 156, 0.4);
}

.location-btn:hover {
    background: linear-gradient(135deg, #d4a574, var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(230, 184, 156, 0.5);
}

.location-map {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border: 3px solid var(--primary-color);
    background: var(--primary-color);
    position: relative;
}

.map-container::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    z-index: -1;
}

.map-container iframe {
    display: block;
    border-radius: 17px;
    filter: brightness(0.9) contrast(1.1);
    transition: all 0.3s ease;
}

.map-container:hover iframe {
    filter: brightness(1) contrast(1.2);
    transform: scale(1.02);
}

.map-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.map-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(230, 184, 156, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    color: white;
    font-weight: 500;
    border: 1px solid rgba(230, 184, 156, 0.4);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.map-badge:hover {
    background: rgba(230, 184, 156, 0.3);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.map-badge i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Kinesiology Explanation Section */
.kinesiology-explanation {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--light-bg) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.kinesiology-explanation::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="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="30" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="50" cy="90" r="1" fill="rgba(255,255,255,0.06)"/></svg>');
    pointer-events: none;
}

.kinesiology-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.kinesiology-text {
    color: var(--text-color);
}

.kinesiology-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
    line-height: 1.2;
    font-weight: 700;
    position: relative;
}

.kinesiology-title::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 4px;
    background: var(--primary-color);
    bottom: -15px;
    left: 0;
    border-radius: 2px;
}

.kinesiology-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-color);
    opacity: 0.9;
    text-align: justify;
}

.kinesiology-description p {
    margin-bottom: 1.5rem;
}

.kinesiology-description strong {
    color: var(--primary-color);
    font-weight: 600;
}

.kinesiology-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.kinesiology-image {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brain-icon {
    background: rgba(230, 184, 156, 0.15);
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.brain-icon:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 45px rgba(230, 184, 156, 0.3);
}

.brain-icon i {
    font-size: 3rem;
    color: var(--primary-color);
}

.connection-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px dashed rgba(230, 184, 156, 0.4);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.connection-lines::before,
.connection-lines::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(230, 184, 156, 0.5);
}

.connection-lines::before {
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
}

.connection-lines::after {
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
}

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

/* Benefits Section */
.benefits-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #3a3532 100%);
    position: relative;
    overflow: hidden;
}

.benefits-section::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="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="60" cy="80" r="1" fill="rgba(255,255,255,0.06)"/></svg>');
    pointer-events: none;
}

.benefits-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.benefits-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: white;
    font-weight: 700;
    position: relative;
}

.benefits-title::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 4px;
    background: var(--primary-color);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.benefit-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: rgba(230, 184, 156, 0.3);
}

.benefit-item:hover .benefit-check {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: var(--primary-color);
    border-color: white;
}

.benefit-item:hover .benefit-check::before {
    border-color: white;
}

.benefit-check {
    flex-shrink: 0;
    background: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    border: 3px solid var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
}

.benefit-check::before {
    content: '';
    width: 12px;
    height: 8px;
    border: 3px solid var(--primary-color);
    border-top: none;
    border-right: none;
    transform: rotate(-45deg);
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -6px;
    margin-left: -6px;
}

.benefit-item h3 {
    font-family: var(--font-main);
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin: 0;
    line-height: 1.4;
}

.benefit-cta {
    margin-top: 0;
}

.benefit-cta p {
    background: rgba(255, 255, 255, 0.95);
    color: var(--secondary-color);
    padding: 1.5rem;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    text-align: center;
}

.benefit-cta p:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 1);
}

/* Session Process Section */
.session-process {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.session-process::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="25" cy="25" r="2" fill="rgba(230,184,156,0.1)"/><circle cx="75" cy="50" r="1.5" fill="rgba(230,184,156,0.08)"/><circle cx="50" cy="75" r="1" fill="rgba(230,184,156,0.06)"/></svg>');
    pointer-events: none;
}

.session-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.session-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 700;
    position: relative;
}

.session-title::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 4px;
    background: var(--primary-color);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.session-subtitle {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4rem;
}

.session-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    align-items: start;
}

.session-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    text-align: center;
    position: relative;
}

.session-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(230, 184, 156, 0.3);
}

.session-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #d4a574);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 8px 25px rgba(230, 184, 156, 0.3);
    transition: all 0.3s ease;
}

.session-icon i {
    font-size: 2rem;
    color: white;
}

.session-card:hover .session-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(230, 184, 156, 0.5);
}

.session-card-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.session-card-text {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    text-align: justify;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    text-align: left;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), #d4a574);
    color: var(--white);
    text-decoration: none;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(230, 184, 156, 0.3);
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(230, 184, 156, 0.4);
    background: linear-gradient(135deg, #d4a574, var(--primary-color));
}

.section {
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at top right,
        rgba(156, 180, 204, 0.05),
        transparent 60%
    );
    pointer-events: none;
}

.section-title {
    font-family: var(--font-heading);
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: var(--secondary-color);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.services {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(230, 184, 156, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(230, 184, 156, 0.2);
    border-color: rgba(230, 184, 156, 0.3);
}

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

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin: 1rem 0;
    color: var(--secondary-color);
}

.testimonials {
    background: linear-gradient(
        to bottom right,
        var(--light-bg),
        rgba(249, 245, 242, 0.5)
    );
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="%23E6B89C" opacity="0.1"/></svg>');
    opacity: 0.4;
    pointer-events: none;
}

.testimonial-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.testimonial-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    text-align: center;
    margin-bottom: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(230, 184, 156, 0.1);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(230, 184, 156, 0.2);
    border-color: rgba(230, 184, 156, 0.3);
}

.contact-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 5rem 2rem 3rem;
    text-align: center;
}

.social-links {
    margin-bottom: 2rem;
}

.social-link {
    color: var(--white);
    font-size: 1.5rem;
    margin: 0 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .header {
        height: 65px;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: white;
        z-index: 1000;
    }

    .hero {
        margin-top: 65px;
        padding: 2rem 1rem;
        min-height: calc(100vh - 65px);
    }

    .hero-content {
        flex-direction: column;
        gap: 3rem;
        padding: 2rem 1rem;
        text-align: center;
    }
    
    .hero-image-section {
        flex: none;
        order: -1;
    }
    
    .hero-image-placeholder {
        width: 280px;
        height: 280px;
    }
    
    .hero-image-placeholder i {
        font-size: 2.5rem;
    }
    
    .hero-image-placeholder p {
        font-size: 1rem;
    }
    
    .hero-profile-image {
        width: 280px;
        height: 280px;
        border-width: 4px;
    }

    .hero-title {
        font-size: 2.5rem;
        text-align: center;
        line-height: 1.3;
        margin-bottom: 1.5rem;
    }
    
    .hero-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .hero-subtitle {
        font-size: 1.1rem;
        text-align: justify;
        line-height: 1.5;
        margin: 1.5rem 0;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .btn {
        padding: 1.2rem 2rem;
        font-size: 1rem;
    }
    
    /* Location Section Mobile */
    .location-section {
        padding: 3rem 1rem;
    }
    
    .location-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .location-header {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-bottom: 2rem;
        gap: 1rem;
    }
    
    .location-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .location-details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .location-item p {
        text-align: center;
    }
    
    .location-map {
        gap: 1rem;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .map-info {
        gap: 1rem;
        justify-content: center;
    }
    
    .map-badge {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    /* Kinesiology Explanation Mobile */
    .kinesiology-explanation {
        padding: 4rem 1rem;
    }
    
    .kinesiology-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .kinesiology-title {
        font-size: 2.2rem;
    }
    
    .kinesiology-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .kinesiology-description {
        font-size: 1.1rem;
        text-align: justify;
    }
    
    /* Session Process Mobile */
    .session-process {
        padding: 4rem 1rem;
    }
    
    .session-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .session-subtitle {
        font-size: 1.1rem;
        margin-bottom: 3rem;
        text-align: justify;
    }
    
    .session-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .session-card {
        padding: 2rem;
    }
    
    .session-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }
    
    .session-icon i {
        font-size: 1.8rem;
    }
    
    .session-card-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .session-card-text {
        font-size: 0.95rem;
        text-align: justify;
    }
    
    .kinesiology-visual {
        order: -1;
    }
    
    .kinesiology-image {
        width: 150px;
        height: 150px;
    }
    
    .brain-icon {
        width: 100px;
        height: 100px;
    }
    
    .brain-icon i {
        font-size: 2.5rem;
    }
    
    /* Benefits Section Mobile */
    .benefits-section {
        padding: 4rem 1rem;
    }
    
    .benefits-title {
        font-size: 2.2rem;
        margin-bottom: 3rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-item {
        padding: 1.2rem;
    }
    
    .benefit-item h3 {
        font-size: 1rem;
    }
    
    .benefit-cta p {
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 1rem;
        text-align: center;
    }

    .nav-container {
        height: 65px;
        padding: 0.5rem 1rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: white;
    }

    .logo-img {
        height: 45px;
    }

    .btn {
        padding: 1.2rem 2.5rem;
        font-size: 1rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1002;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 65px;
        left: 0;
        width: 100%;
        height: calc(100vh - 65px);
        background: white;
        flex-direction: column;
        padding: 0.3rem 1rem;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        overflow-y: auto;
        z-index: 1001;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
        margin-top: 0;
        margin-bottom: 0;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 0.4rem 0;
        width: 100%;
        display: block;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .dropdown-toggle {
        padding: 0.8rem 0;
    }
    
    .dropdown-menu {
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
        padding: 0;
        border: none;
        background: rgba(230, 184, 156, 0.08);
        border-radius: 8px;
    }
    
    .dropdown-item {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .dropdown-item:hover {
        background-color: rgba(230, 184, 156, 0.15);
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    .section {
        padding: 5rem 1rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
}

.wave-section {
    position: relative;
    padding: 8rem 2rem;
    margin-bottom: -1px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.wave-section::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 180px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320' preserveAspectRatio='none'%3E%3Cpath fill='rgba(79, 72, 70, 0.2)' d='M0,224L80,213.3C160,203,320,181,480,181.3C640,181,800,203,960,197.3C1120,192,1280,160,1360,144L1440,128L1440,320L1360,320C1280,320,1120,320,960,320C800,320,640,320,480,320C320,320,160,320,80,320L0,320Z'%3E%3C/path%3E%3Cpath fill='rgba(79, 72, 70, 0.15)' d='M0,224L80,234.7C160,245,320,267,480,266.7C640,267,800,245,960,250.7C1120,256,1280,288,1360,304L1440,320L1440,320L1360,320C1280,320,1120,320,960,320C800,320,640,320,480,320C320,320,160,320,80,320L0,320Z'%3E%3C/path%3E%3Cpath fill='%23ffffff' d='M0,256L80,261.3C160,267,320,277,480,277.3C640,277,800,267,960,266.7C1120,267,1280,277,1360,282.7L1440,288L1440,320L1360,320C1280,320,1120,320,960,320C800,320,640,320,480,320C320,320,160,320,80,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: 100% 180px;
    background-repeat: no-repeat;
    background-position: bottom;
    z-index: 1;
}

.wave-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        rgba(255, 255, 255, 0.92),
        rgba(230, 184, 156, 0.15)
    );
    pointer-events: none;
}

.wave-section .section-content {
    position: relative;
    z-index: 2;
}

#services {
    background-image: url('../images/meditation-wellness.jpg');
}

#famille {
    background-image: url('../images/famille(1).jpg');
}

.testimonials {
    background-image: url('../images/peaceful-massage.jpg');
}

.contact {
    background-image: url('../images/zen-stones.jpg');
}

.service-card, .testimonial-card, .contact-item {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.google-reviews {
    background: linear-gradient(
        165deg,
        rgba(255, 255, 255, 0.98) 0%,
        rgba(230, 184, 156, 0.08) 100%
    );
    position: relative;
    overflow: hidden;
    padding: 8rem 2rem;
}

.google-reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(230, 184, 156, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(156, 180, 204, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.google-header {
    text-align: center;
    margin-bottom: 6rem;
    position: relative;
}

.google-header h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.google-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    border-radius: 3px;
}

.rating-summary {
    text-align: center;
    margin: 0 auto 7rem;
    padding: 4rem;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 40px;
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.06),
        0 0 0 1px rgba(230, 184, 156, 0.2);
    max-width: 450px;
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    transition: all 0.4s ease;
}

.rating-summary:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 30px 60px rgba(230, 184, 156, 0.2),
        0 0 0 2px rgba(230, 184, 156, 0.3);
}

.rating-summary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
}

.rating-score {
    font-size: 6rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    line-height: 1;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 20px rgba(0,0,0,0.1);
}

.rating-stars {
    color: #FFB800;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    letter-spacing: 0.3rem;
    filter: drop-shadow(0 2px 4px rgba(255, 184, 0, 0.2));
}

.rating-count {
    color: var(--text-color);
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 500;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 1rem;
}

.review-card {
    background: rgba(255, 255, 255, 0.98);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.05),
        0 0 0 1px rgba(230, 184, 156, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(165deg, transparent, rgba(230, 184, 156, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.review-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(230, 184, 156, 0.15),
        0 0 0 2px rgba(230, 184, 156, 0.2);
}

.review-card:hover::before {
    opacity: 1;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.reviewer-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.6rem;
    box-shadow: 
        0 8px 20px rgba(230, 184, 156, 0.3),
        0 0 0 2px rgba(255, 255, 255, 0.8);
}

.reviewer-info {
    flex: 1;
}

.reviewer-name {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    letter-spacing: 0.02em;
}

.review-date {
    font-size: 0.95rem;
    color: #666;
    opacity: 0.9;
}

.review-stars {
    color: #FFB800;
    margin-bottom: 2rem;
    font-size: 1.2rem;
    letter-spacing: 0.15rem;
    filter: drop-shadow(0 2px 4px rgba(255, 184, 0, 0.1));
}

.review-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    font-style: italic;
    position: relative;
    padding: 0.5rem 0;
}

.review-text::before,
.review-text::after {
    font-family: var(--font-heading);
    font-size: 5rem;
    position: absolute;
    color: var(--primary-color);
    opacity: 0.08;
    line-height: 1;
}

.review-text::before {
    content: '"';
    top: -2rem;
    left: -1rem;
}

.review-text::after {
    content: '"';
    bottom: -3rem;
    right: -1rem;
}

.google-reviews .btn {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    padding: 1.4rem 3.5rem;
    font-size: 1.15rem;
    margin-top: 5rem;
    border-radius: 50px;
    font-weight: 500;
    letter-spacing: 0.02em;
    box-shadow: 0 15px 30px rgba(230, 184, 156, 0.3);
}

.google-reviews .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(230, 184, 156, 0.4);
    background: var(--secondary-color);
}

@media (max-width: 768px) {
    .google-header h2 {
        font-size: 2.8rem;
    }
    
    .rating-summary {
        padding: 3rem 2rem;
        margin-bottom: 4rem;
        border-radius: 30px;
    }
    
    .rating-score {
        font-size: 4.5rem;
    }
    
    .rating-stars {
        font-size: 2rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .review-card {
        padding: 2.5rem;
    }
    
    .reviewer-avatar {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }
}

.map-container {
    margin-top: 3rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    position: relative;
    height: 400px;
    width: 100%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(230, 184, 156, 0.2);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.address-link {
    color: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.address-link:hover {
    color: var(--primary-color);
}

.address-link i {
    margin-left: 0.5rem;
    font-size: 0.9em;
}

@media (max-width: 768px) {
    .map-container {
        height: 300px;
        margin-top: 2rem;
        border-radius: 15px;
    }
}

.floating-rdv {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    background: var(--rdv-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.floating-rdv:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(74, 124, 89, 0.4);
    background: var(--rdv-hover);
    border-color: var(--rdv-color);
}

.floating-rdv i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .floating-rdv {
        bottom: 1.5rem;
        right: 1.5rem;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

.mobile-menu-toggle {
    display: none;
}

@media (max-width: 768px) {
    .header {
        padding: 0;
    }

    .nav-container {
        padding: 0.5rem 1rem;
    }

    .logo-img {
        height: 45px;
        width: auto;
    }

    .mobile-menu-toggle {
        display: block;
        width: 44px;
        height: 44px;
        padding: 10px;
        background-color: var(--primary-color);
        border: none;
        border-radius: 8px;
        color: white;
        cursor: pointer;
        position: relative;
        z-index: 1002;
        margin-left: auto;
    }

    .mobile-menu-toggle i {
        font-size: 24px;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 65px;
        left: 0;
        width: 100%;
        height: calc(100vh - 65px);
        background: white;
        flex-direction: column;
        padding: 0.3rem 1rem;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        overflow-y: auto;
        z-index: 1001;
    }

    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
        margin-top: 0;
        margin-bottom: 0;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 0.4rem 0;
        width: 100%;
        display: block;
    }
}

.dropdown {
    position: relative;
}

.dropdown-toggle i {
    font-size: 0.75rem;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    list-style: none;
    padding: 0.8rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    z-index: 1002;
    border: 1px solid rgba(230, 184, 156, 0.1);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.dropdown-item {
    display: block;
    padding: 0.6rem 1.5rem;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.dropdown-item:hover {
    background-color: rgba(230, 184, 156, 0.1);
    color: var(--primary-color);
    padding-left: 1.8rem;
}

@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        min-width: auto;
        background: rgba(230, 184, 156, 0.05);
        margin: 0.5rem 0;
        border-radius: 8px;
        display: none;
        padding: 0.5rem 0;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .dropdown-item {
        padding: 0.7rem 2rem;
        font-size: 0.95rem;
    }
    
    .nav-menu li {
        width: 100%;
    }
}

/* Styles spécifiques pour iOS */
@supports (-webkit-touch-callout: none) {
    .mobile-menu-toggle {
        -webkit-appearance: none;
    }

    @media (min-width: 769px) {
        .mobile-menu-toggle {
            display: none !important;
        }
    }
}

/* Ajuster la position du menu pour iOS */
@supports (-webkit-touch-callout: none) {
    @media (max-width: 768px) {
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.5rem 1rem;
            gap: 1rem;
        }

        .logo {
            flex: 1;
        }

        .nav-menu {
            top: 65px;
            padding-top: 0;
        }
        
        .nav-menu li:first-child {
            margin-top: 0;
        }

                /* Bloc d'introduction à la kinésiologie */
                .intro-block {
                    max-width: 900px;
                    margin: 0 auto 4rem;
                    padding: 2.5rem;
                    background-color: rgba(249, 245, 242, 0.7);
                    border-radius: 20px;
                    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
                    text-align: center;
                    position: relative;
                }
                
                .intro-block::after {
                    content: '';
                    position: absolute;
                    bottom: -15px;
                    left: 50%;
                    transform: translateX(-50%);
                    width: 100px;
                    height: 2px;
                    background: var(--primary-color);
                    border-radius: 2px;
                }
    }
} 