/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #444444;
    background: #FFFFFF;
    min-height: 100vh;
    padding-top: 80px;
}

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

/* Navigation */
.main-nav {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
    padding: 0;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
}

.nav-logo {
    flex-shrink: 0;
}

.logo {
    height: 120px;
    width: auto;
    object-fit: contain;
    margin: -20px 0;
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin: 0;
}

.nav-menu li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 12px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-menu li a:hover {
    background: rgba(74, 144, 226, 0.1);
    color: #184B63;
    transform: translateY(-1px);
}

.nav-menu li a.btn-rdv {
    background: linear-gradient(135deg, #184B63, #4BAF9E);
    color: white;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.35);
    position: relative;
    overflow: hidden;
}

.nav-menu li a.btn-rdv::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.nav-menu li a.btn-rdv:hover::before {
    left: 100%;
}

.nav-menu li a.btn-rdv:hover {
    background: linear-gradient(135deg, #184B63, #4BAF9E);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.45);
}

/* Sections générales */
section {
    padding: 100px 0;
    position: relative;
}

section:nth-child(even) {
    background: #ffffff;
}

section:nth-child(odd) {
    background: linear-gradient(135deg, #fafbff 0%, #ffffff 100%);
}

/* Section Why avec contraste renforcé */
.why-section {
    background: #ffffff !important;
    padding: 120px 0;
}

h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 50px;
    color: #1f2937;
    font-weight: 600;
    position: relative;
    letter-spacing: -0.3px;
}

h3 .highlight {
    color: #184B63;
    font-weight: 700;
}

h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #184B63, #4BAF9E);
    border-radius: 20px;
}

/* Hero Section */
.hero {
    background: #FFFFFF;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: #444444;
    position: relative;
    overflow: hidden;
}

@keyframes gentleGradient {
    0% { background-position: 0% 50%; }
    25% { background-position: 100% 0%; }
    50% { background-position: 100% 100%; }
    75% { background-position: 0% 100%; }
    100% { background-position: 0% 50%; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.02), rgba(123, 197, 174, 0.02));
    display: flex;
    align-items: center;
}

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

.hero-text-content {
    text-align: left;
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #6b7280;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #184B63;
    max-width: 500px;
}

.hero-title .highlight {
    color: #4BAF9E;
    font-weight: 800;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 35px;
    color: #4b5563;
    font-weight: 400;
    max-width: 450px;
}

.hero-description .highlight {
    color: #4BAF9E;
    font-weight: 500;
}

.hero-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #FFFFFF;
    padding: 35px;
    border-radius: 20px;
    border: 1px solid #F4F4F4;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
}

.hero-profile:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(24, 75, 99, 0.15);
    border-color: rgba(75, 175, 158, 0.3);
}

.hero-profile::before {
    display: none;
}


.profile-img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 5px solid #FFFFFF;
    box-shadow: 0 0 0 3px #4BAF9E, 0 10px 25px rgba(24, 75, 99, 0.15);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.profile-img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 0 3px #184B63, 0 15px 35px rgba(24, 75, 99, 0.25);
}

.profile-info {
    text-align: center;
    color: #444444;
    z-index: 2;
    position: relative;
}

.profile-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #184B63;
    letter-spacing: 0.3px;
}

.profile-info h3::after {
    display: none;
}

.profile-info p {
    font-size: 1.15rem;
    color: #444444;
    margin-bottom: 6px;
    font-weight: 600;
}

.profile-location {
    font-size: 1rem !important;
    color: #4BAF9E !important;
    font-weight: 700 !important;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

/* Boutons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 200px;
}

.btn-primary {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #184B63, #4BAF9E);
    color: white;
    font-weight: 500;
    letter-spacing: 0.3px;
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.25), 0 3px 10px rgba(74, 144, 226, 0.1);
    border: none;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary::before {
    content: '📅';
    font-size: 1.1em;
}

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

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

.btn-primary:hover {
    background: linear-gradient(135deg, #184B63, #4BAF9E);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(74, 144, 226, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #184B63, #4BAF9E);
    color: white;
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #184B63, #4BAF9E);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4);
}

.btn-outline {
    font-family: 'Montserrat', sans-serif;
    background: rgba(255, 255, 255, 0.95);
    color: #184B63;
    border: 2px solid #184B63;
    font-weight: 500;
    backdrop-filter: blur(10px);
    letter-spacing: 0.3px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline::before {
    content: '📞';
    font-size: 1.1em;
}

.btn-outline:hover {
    background: linear-gradient(135deg, #184B63, #4BAF9E);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(74, 144, 226, 0.3);
    border-color: transparent;
}

/* Why Section */
.why-section {
    padding: 100px 0;
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-text h3 {
    text-align: left;
    margin-bottom: 30px;
    font-size: 2.5rem;
}

.why-text h3::after {
    left: 0;
    transform: none;
}

.why-intro {
    font-size: 1.3rem;
    color: #4a5568;
    margin-bottom: 25px;
    line-height: 1.7;
    font-weight: 500;
}

.why-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.why-cta {
    background: linear-gradient(135deg, #f0f4ff, #e8f2ff);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #184B63;
}

.why-cta p {
    color: #2d3748;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.why-image {
    position: relative;
}

.why-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #184B63;
    margin-bottom: 15px;
}

/* Services */
.services-list {
    width: 100%;
}

.services-text h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    color: #1f2937;
    margin-bottom: 30px;
    font-weight: 600;
}

.services-items {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.services-items li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid #f3f4f6;
    font-size: 1.05rem;
    color: #6b7280;
    font-weight: 400;
}

.services-items li:last-child {
    border-bottom: none;
}

.services-items .service-icon {
    font-size: 1.5rem;
    margin: 0;
    flex-shrink: 0;
}

.services-items strong {
    color: #184B63;
    font-weight: 600;
}

.reassurance {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    padding: 25px;
    border-radius: 16px;
    border-left: 4px solid #184B63;
    font-style: italic;
    color: #374151;
    font-weight: 400;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.practitioner-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
}

.practitioner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #184B63, #4BAF9E);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: exclude;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    z-index: -1;
}

.card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.practitioner-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid #ffffff;
    box-shadow: 0 8px 25px rgba(24, 75, 99, 0.2);
}

.practitioner-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    color: #184B63;
    margin-bottom: 8px;
    font-weight: 700;
}

.practitioner-info h3::after {
    display: none;
}

.practitioner-info .title {
    color: #6b7280;
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-variant: small-caps;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #4b5563;
    font-size: 0.95rem;
}

.info-item .icon {
    color: #4BAF9E;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.phone-pill {
    background: #4BAF9E;
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(76, 175, 80, 0.2);
}

.phone-pill:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.35);
}

.service-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(74, 144, 226, 0.08);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #4A90E2, #4BAF9E, #A896D6);
}

.service-card.featured {
    background: #ffffff;
    border: 2px solid rgba(74, 144, 226, 0.15);
    transform: scale(1.02);
    box-shadow: 0 12px 35px rgba(74, 144, 226, 0.1);
}

.service-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
    border-color: rgba(74, 144, 226, 0.25);
    box-shadow: 0 20px 50px rgba(74, 144, 226, 0.15);
}

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

.service-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: #1f2937;
    margin-bottom: 18px;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.service-card h4 .highlight {
    color: #184B63;
    font-weight: 700;
}

.service-card p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
}

.service-card p .highlight {
    color: #4BAF9E;
    font-weight: 500;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    opacity: 0.8;
    filter: none;
}

/* Trust Section */
/* Services Details */
.services-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

.services-row-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    align-items: stretch;
}

.services-row-top .service-detail-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 280px;
}

.services-row-top .service-details-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.services-row-bottom {
    display: flex;
    justify-content: center;
}

.services-row-bottom .service-detail-card {
    max-width: 400px;
    width: 100%;
}


.service-detail-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(24, 75, 99, 0.1);
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: fit-content;
}

.service-detail-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(24, 75, 99, 0.15);
    border-color: rgba(24, 75, 99, 0.2);
}

.service-detail-card.highlight {
    background: linear-gradient(135deg, rgba(24, 75, 99, 0.05), rgba(75, 175, 158, 0.05));
    border: 2px solid rgba(75, 175, 158, 0.3);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.service-header .service-icon {
    font-size: 1.5rem;
}

.service-header h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #184B63;
    margin: 0;
}

.service-details-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.service-details-list li {
    padding: 6px 0;
    color: #444444;
    font-size: 0.95rem;
    position: relative;
    padding-left: 20px;
}

.service-details-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4BAF9E;
    font-weight: bold;
    font-size: 0.9rem;
}

.age-groups {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: nowrap;
}

.age-tag {
    background: linear-gradient(135deg, #184B63, #4BAF9E);
    color: white;
    padding: 8px 14px;
    border-radius: 18px;
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    flex-shrink: 0;
}

.trust-section {
    margin-top: 60px;
}

.trust-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.trust-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
}

.trust-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.trust-card h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 8px;
}

.trust-card p {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

/* Tarifs */
.tarif-list {
    max-width: 600px;
    margin: 0 auto 40px;
}

.tarif-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    margin-bottom: 18px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.tarif-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.tarif-item .service {
    font-size: 1.2rem;
    font-weight: 500;
}

.tarif-item .price {
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #184B63, #4BAF9E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tarif-note {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: #666;
}

.payment-methods {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.payment-methods h4 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #4a5568;
}

.payment-methods ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
}

.payment-methods li {
    font-size: 1.1rem;
    padding: 10px 20px;
    background: white;
    border-radius: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}


/* Rendez-vous */
.rdv-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.rdv-option {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.rdv-option h4 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #4a5568;
}

.rdv-option p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #666;
}

/* Widget Calendly personnalisé */
.calendly-widget {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(139, 92, 246, 0.2);
    padding: 25px;
    max-width: 100%;
}

.calendly-widget h4 {
    background: linear-gradient(135deg, #184B63, #4BAF9E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

#calendly-widget-container {
    margin: 20px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.15);
}

.calendly-inline-widget {
    border-radius: 12px !important;
    box-shadow: none !important;
}

.calendly-info {
    margin-top: 20px;
    padding: 15px;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 10px;
    border-left: 4px solid #184B63;
    font-size: 1rem;
    color: #1e40af;
}

/* Message de confirmation */
.booking-confirmation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

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

.confirmation-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 90%;
    max-height: 90%;
    box-shadow: 0 25px 80px rgba(0,0,0,0.3);
    animation: slideIn 0.4s ease;
}

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

.confirmation-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: bounce 0.6s ease;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.confirmation-content h3 {
    color: #1a202c;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.confirmation-content p {
    color: #4a5568;
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.6;
}


/* Personnalisation du widget Calendly */
.calendly-inline-widget iframe {
    border-radius: 12px;
}

/* Loading state */
.calendly-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 12px;
    margin: 20px 0;
}

.calendly-loading::after {
    content: 'Chargement du calendrier...';
    color: #6b7280;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Contact & Rendez-vous */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.map-and-booking {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Sections d'informations */
.info-section {
    margin-bottom: 50px;
}

.info-section:last-child {
    margin-bottom: 0;
}

.info-section h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: #1f2937;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Cartes d'informations */
.info-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.info-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(24, 75, 99, 0.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(24, 75, 99, 0.1);
    border-color: rgba(24, 75, 99, 0.2);
}

.info-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.info-icon {
    font-size: 1.3rem;
    color: #184B63;
}

.info-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #1f2937;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-card p {
    color: #6b7280;
    font-size: 1rem;
    margin: 0;
    line-height: 1.5;
}

.contact-phone {
    color: #184B63 !important;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-phone:hover {
    color: #4BAF9E !important;
    text-decoration: underline;
}

/* Grille des horaires */
.schedule-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    border: 1px solid rgba(24, 75, 99, 0.1);
    transition: all 0.3s ease;
}

.schedule-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(24, 75, 99, 0.08);
}

.schedule-item .day {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: #1f2937;
    font-size: 0.95rem;
}

.schedule-item .hours {
    font-weight: 600;
    color: #184B63;
    font-size: 0.95rem;
}

.schedule-item.weekend .hours {
    color: #4BAF9E;
}

.schedule-item.closed .hours {
    color: #9ca3af;
    font-style: italic;
}

.schedule-note {
    text-align: center;
    padding: 15px;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    border-radius: 10px;
    border-left: 3px solid #184B63;
}

.schedule-note p {
    color: #6b7280;
    font-style: italic;
    font-size: 0.9rem;
    margin: 0;
}

/* Section réservation en ligne */
.booking-cta {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid rgba(24, 75, 99, 0.15);
    box-shadow: 0 10px 30px rgba(24, 75, 99, 0.1);
    text-align: center;
}

.booking-cta h4 {
    font-family: 'Montserrat', sans-serif;
    color: #184B63;
    font-weight: 600;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.booking-cta p {
    color: #6b7280;
    margin-bottom: 25px;
    font-size: 1.05rem;
    font-weight: 400;
}

.btn-popup-calendly {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #184B63, #4BAF9E);
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.3px;
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.3), 0 3px 10px rgba(74, 144, 226, 0.1);
    border: none;
    border-radius: 50px;
    padding: 15px 30px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.btn-popup-calendly:hover {
    background: linear-gradient(135deg, #184B63, #4BAF9E);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(74, 144, 226, 0.4);
}

.booking-cta .calendly-info {
    padding: 15px;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    border-radius: 12px;
    border-left: 3px solid #184B63;
    font-size: 0.9rem;
    color: #374151;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

/* Carte réduite */
.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    position: relative;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.85rem;
    min-width: auto;
}

.contact-item {
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.contact-item strong {
    display: block;
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 8px;
}

.contact-item p {
    font-size: 1.1rem;
    margin: 0;
}

.contact-item a {
    color: #184B63;
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}

.map-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.map-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
}

.map-overlay .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    min-width: auto;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #184B63, #4BAF9E);
    color: white;
    text-align: center;
    padding: 40px 0;
}

footer p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Effets ultra-modernes */
.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #184B63, #4BAF9E);
    background-size: 400% 400%;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
    animation: gradient 8s ease infinite;
    border-radius: 22px;
}

.service-card:hover::before {
    opacity: 0.7;
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Améliorer les contrastes pour l'accessibilité */
a:focus, button:focus, .btn:focus {
    outline: 3px solid #ffd700;
    outline-offset: 2px;
}

/* Taille minimale des zones cliquables (44px minimum recommandé) */
.btn, .nav-menu li a {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Espacement généreux pour la lisibilité */
p, li {
    margin-bottom: 10px;
}

/* Couleurs à fort contraste */
.hero-text, .service-card p, .tarif-note {
    color: #444;
}

/* Amélioration de la lisibilité des liens */
a {
    text-decoration: underline;
    text-decoration-thickness: 2px;
}

a:hover {
    text-decoration-thickness: 3px;
}

/* Animation douce pour réduire les effets de mouvement brusques */
* {
    transition-duration: 0.2s !important;
}

/* ========== RESPONSIVE STYLES - NE PAS MODIFIER LE DESKTOP ========== */

/* Hamburger menu - caché sur desktop */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 3px;
    background-color: #184B63;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Tablettes (769px - 1023px) */
@media (min-width: 769px) and (max-width: 1023px) {
    .services-row-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .services-row-bottom {
        margin-top: 20px;
    }
    
    .services-row-bottom .service-detail-card {
        max-width: 500px;
    }
}

/* Mobile (max 768px) */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
        max-width: 100%;
    }
    
    /* Navigation */
    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(24, 75, 99, 0.1);
        z-index: 1000;
    }
    
    .nav-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0;
        gap: 0;
    }
    
    .logo {
        height: 50px;
        margin: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: linear-gradient(135deg, rgba(24, 75, 99, 0.95), rgba(75, 175, 158, 0.95));
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 40px;
        gap: 0;
        transition: left 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 85%;
        max-width: 280px;
        margin-bottom: 15px;
        opacity: 0;
        transform: translateY(30px);
        animation: slideInUp 0.6s ease forwards;
    }
    
    .nav-menu.active li:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { animation-delay: 0.2s; }
    .nav-menu.active li:nth-child(3) { animation-delay: 0.3s; }
    .nav-menu.active li:nth-child(4) { animation-delay: 0.4s; }
    .nav-menu.active li:nth-child(5) { animation-delay: 0.5s; }
    
    .nav-menu li a {
        display: block;
        width: 100%;
        padding: 15px 20px;
        background: rgba(255, 255, 255, 0.15);
        border: 2px solid rgba(255, 255, 255, 0.2);
        border-radius: 12px;
        color: white;
        font-size: 1rem;
        font-weight: 500;
        text-align: center;
        text-decoration: none;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu li a:hover {
        background: rgba(255, 255, 255, 0.25);
        border-color: rgba(255, 255, 255, 0.4);
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }
    
    .nav-menu .btn-rdv {
        background: rgba(255, 255, 255, 0.9) !important;
        color: #184B63 !important;
        font-weight: 600;
        border-color: rgba(255, 255, 255, 0.9) !important;
    }
    
    .nav-menu .btn-rdv:hover {
        background: white !important;
        color: #184B63 !important;
        border-color: white !important;
    }
    
    /* Hero */
    .hero {
        margin-top: 60px;
        min-height: calc(100vh - 60px);
        padding: 30px 0;
        display: flex;
        align-items: center;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        width: 100%;
    }
    
    .hero-text-content {
        text-align: center;
        order: 1;
        padding: 0 10px;
    }
    
    .hero-profile {
        order: 2;
        padding: 30px 20px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .hero-description {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 25px;
    }
    
    .profile-img {
        width: 150px;
        height: 150px;
    }
    
    .profile-info {
        margin-top: 15px;
    }
    
    .profile-info h3 {
        font-size: 1.3rem;
        margin-bottom: 5px;
        color: #184B63;
    }
    
    .profile-info p {
        font-size: 1rem;
        margin-bottom: 3px;
        color: #444444;
    }
    
    .profile-location {
        font-size: 0.9rem !important;
        color: #4BAF9E !important;
        font-weight: 500;
    }
    
    /* Services */
    .services-row-top {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .services-row-top .service-detail-card {
        min-height: auto;
    }
    
    .services-row-bottom .service-detail-card {
        max-width: 100%;
    }
    
    .age-groups {
        gap: 8px;
    }
    
    .age-tag {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .why-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .why-text {
        text-align: center;
    }
    
    .why-img {
        height: 200px;
        border-radius: 12px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }
}

/* Grands téléphones et petites tablettes (430px - 768px) */
@media (min-width: 431px) and (max-width: 768px) {
    .container {
        padding: 0 25px;
    }
    
    .hero-title {
        font-size: 2.4rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 1.1rem;
        padding: 0 10px;
    }
    
    .services-row-top .service-detail-card {
        padding: 25px 20px;
    }
    
    .profile-img {
        width: 160px;
        height: 160px;
    }
}

/* iPhone 12 Pro, iPhone 13, iPhone 14 (390px) */
@media (min-width: 376px) and (max-width: 430px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 1.9rem;
        line-height: 1.1;
    }
    
    .hero-description {
        font-size: 0.95rem;
        padding: 0 5px;
    }
    
    .hero-profile {
        padding: 20px 15px;
    }
    
    .profile-img {
        width: 130px;
        height: 130px;
    }
    
    .nav-menu li {
        width: 90%;
        margin-bottom: 12px;
    }
    
    .nav-menu li a {
        padding: 14px 18px;
        font-size: 0.95rem;
    }
    
    .service-detail-card {
        padding: 18px 15px;
    }
    
    .age-groups {
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .age-tag {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .profile-info {
        margin-top: 12px;
    }
    
    .profile-info h3 {
        font-size: 1.2rem;
        margin-bottom: 4px;
        color: #184B63;
        font-weight: 600;
    }
    
    .profile-info p {
        font-size: 0.9rem;
        margin-bottom: 3px;
        color: #444444;
    }
    
    .profile-location {
        font-size: 0.8rem !important;
        color: #4BAF9E !important;
        font-weight: 500;
    }
}

/* SUPPRIMÉ - Conflit avec autres media queries */

/* Petits téléphones (321px - 375px) */
@media (min-width: 321px) and (max-width: 375px) {
    .container {
        padding: 0 12px;
    }
    
    .hero-title {
        font-size: 1.7rem;
        line-height: 1.15;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .profile-img {
        width: 120px;
        height: 120px;
    }
}

/* Très petits écrans (max 320px) - iPhone 5/SE première génération */
@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 0.85rem;
    }
    
    .profile-img {
        width: 100px;
        height: 100px;
    }
    
    .profile-info {
        margin-top: 10px;
    }
    
    .profile-info h3 {
        font-size: 1.1rem;
        margin-bottom: 3px;
        color: #184B63;
        font-weight: 600;
    }
    
    .profile-info p {
        font-size: 0.8rem;
        margin-bottom: 2px;
        color: #444444;
    }
    
    .profile-location {
        font-size: 0.75rem !important;
        color: #4BAF9E !important;
        font-weight: 500;
    }
    
    .service-detail-card {
        padding: 12px 10px;
    }
    
    .nav-menu li {
        width: 98%;
    }
    
    .nav-menu li a {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
    
    .why-img {
        height: 120px;
        border-radius: 6px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
    }
}

/* Galaxy S8/S9, iPhone X/XS (360px-375px) */
@media (max-width: 375px) and (min-width: 360px) {
    .hero {
        margin-top: 58px;
        min-height: calc(100vh - 58px);
        padding: 25px 0;
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.15;
        margin-bottom: 16px;
    }
    
    .hero-subtitle {
        font-size: 0.82rem;
        margin-bottom: 8px;
    }
    
    .hero-description {
        font-size: 0.92rem;
        line-height: 1.4;
        margin-bottom: 22px;
    }
    
    .profile-img {
        width: 125px;
        height: 125px;
    }
    
    .profile-info h3 {
        font-size: 1.15rem;
        font-weight: 600;
    }
    
    .profile-info p {
        font-size: 0.88rem;
    }
    
    .profile-location {
        font-size: 0.82rem !important;
    }
    
    .nav-menu {
        top: 58px;
        height: calc(100vh - 58px);
    }
}

/* iPhone SE 2020/2022 et similaires (exactement 375px) */
@media (max-width: 375px) and (min-width: 374px) {
    .container {
        padding: 0 14px;
    }
    
    .hero {
        margin-top: 56px;
        min-height: calc(100vh - 56px);
        padding: 22px 0;
    }
    
    .hero-title {
        font-size: 1.7rem;
        line-height: 1.1;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 20px;
    }
    
    .profile-img {
        width: 122px;
        height: 122px;
    }
    
    .profile-info h3 {
        font-size: 1.18rem;
        font-weight: 600;
        color: #184B63;
    }
    
    .profile-info p {
        font-size: 0.87rem;
        color: #444444;
    }
    
    .profile-location {
        font-size: 0.8rem !important;
        color: #4BAF9E !important;
        font-weight: 500;
    }
    
    .why-img {
        height: 180px;
        border-radius: 10px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    }
}

/* iPhone SE original et Android similaires (≤373px) */
@media (max-width: 373px) {
    .container {
        padding: 0 12px;
    }
    
    .logo {
        height: 45px;
    }
    
    .mobile-menu-toggle {
        padding: 6px;
    }
    
    .mobile-menu-toggle span {
        width: 20px;
        height: 2px;
    }
    
    .hero {
        margin-top: 55px;
        min-height: calc(100vh - 55px);
        padding: 20px 0;
    }
    
    .hero-title {
        font-size: 1.65rem;
        line-height: 1.1;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 0.78rem;
    }
    
    .hero-description {
        font-size: 0.88rem;
        line-height: 1.4;
        margin-bottom: 20px;
        padding: 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn {
        min-width: auto;
        width: 100%;
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    
    .hero-profile {
        padding: 20px 10px;
    }
    
    .profile-img {
        width: 118px;
        height: 118px;
    }
    
    .profile-info {
        margin-top: 12px;
    }
    
    .profile-info h3 {
        font-size: 1.15rem;
        margin-bottom: 4px;
        color: #184B63;
        font-weight: 600;
    }
    
    .profile-info p {
        font-size: 0.88rem;
        margin-bottom: 2px;
        color: #444444;
    }
    
    .profile-location {
        font-size: 0.83rem !important;
        color: #4BAF9E !important;
        font-weight: 500;
    }
    
    .nav-menu {
        top: 55px;
        height: calc(100vh - 55px);
        padding-top: 30px;
    }
    
    .nav-menu li {
        width: 95%;
        margin-bottom: 10px;
    }
    
    .nav-menu li a {
        padding: 12px 16px;
        font-size: 0.9rem;
        border-radius: 10px;
    }
    
    .service-detail-card {
        padding: 15px 12px;
    }
    
    .service-header h4 {
        font-size: 0.95rem;
    }
    
    .service-details-list li {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    .age-groups {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
    
    .age-tag {
        padding: 8px 16px;
        font-size: 0.8rem;
        width: fit-content;
    }
    
    .section-header h3 {
        font-size: 1.8rem;
    }
    
    .why-img {
        height: 160px;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
}

/* Petits Android/iPhone mini (340px-359px) */
@media (max-width: 359px) and (min-width: 340px) {
    .container {
        padding: 0 12px;
    }
    
    .logo {
        height: 46px;
    }
    
    .hero {
        margin-top: 54px;
        min-height: calc(100vh - 54px);
        padding: 20px 0;
    }
    
    .hero-title {
        font-size: 1.6rem;
        line-height: 1.1;
        margin-bottom: 14px;
    }
    
    .hero-description {
        font-size: 0.88rem;
        line-height: 1.35;
        margin-bottom: 18px;
    }
    
    .profile-img {
        width: 115px;
        height: 115px;
    }
    
    .profile-info h3 {
        font-size: 1.1rem;
        font-weight: 600;
        color: #184B63;
    }
    
    .profile-info p {
        font-size: 0.85rem;
        color: #444444;
    }
    
    .profile-location {
        font-size: 0.78rem !important;
        color: #4BAF9E !important;
        font-weight: 500;
    }
    
    .nav-menu li a {
        padding: 11px 14px;
        font-size: 0.88rem;
    }
    
    .why-img {
        height: 140px;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


