/* Skip link – visible on focus for keyboard users */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0.5rem;
    z-index: 10000;
    padding: 0.75rem 1.25rem;
    background: var(--primary-color);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: top 0.2s ease;
}
.skip-link:focus {
    top: 0.5rem;
    outline: 2px solid #fff;
    outline-offset: 2px;
}

:root {
    --primary-color: #059669;
    --primary-dark: #047857;
    --primary-light: #10b981;
    --secondary-color: #475569;
    --accent-color: #34d399;
    --text-dark: #0f172a;
    --text-medium: #334155;
    --text-light: #64748b;
    --bg-light: #f0fdf4;
    --bg-white: #ffffff;
    --border-color: #d1fae5;
    --success-color: #10b981;
    --shadow-sm: 0 1px 3px 0 rgba(5, 150, 105, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(5, 150, 105, 0.15);
    --shadow-lg: 0 10px 15px -3px rgba(5, 150, 105, 0.2);
    --shadow-xl: 0 20px 25px -5px rgba(5, 150, 105, 0.15);
}

/* Mobile touch improvements */
* {
    -webkit-tap-highlight-color: transparent;
}

button, a, select, input {
    touch-action: manipulation;
    -webkit-touch-callout: none;
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.8;
    color: var(--text-dark);
    background-color: var(--bg-light);
    font-size: 17px;
    animation: fadeIn 0.6s ease-out;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
    letter-spacing: 0.01em;
    overflow-x: hidden;
    /* Safe area for notched devices */
    padding-left: env(safe-area-inset-left, 0);
    padding-right: env(safe-area-inset-right, 0);
}

@media (max-width: 480px) {
    body {
        font-size: 16px;
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (max-width: 768px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 0.875rem;
        padding-right: 0.875rem;
    }
}

/* Navigation */
.navbar {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
    animation: slideInLeft 0.6s ease-out;
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.875rem 1rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.75rem 0.875rem;
    }
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.nav-logo:hover {
    opacity: 0.9;
}

.nav-logo-img {
    height: 2.5rem;
    width: auto;
    max-height: 48px;
    object-fit: contain;
    display: block;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu-link {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-menu-link:hover {
    color: var(--primary-color);
    background: rgba(5, 150, 105, 0.08);
}

.nav-menu-link:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

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

/* Hamburger toggle – hidden on desktop */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0.5rem;
    background: transparent;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.2s ease;
}
.nav-toggle:hover {
    background: rgba(5, 150, 105, 0.1);
}
.nav-toggle:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}
.nav-toggle-bar {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-dark);
    border-radius: 1px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}
.navbar.nav-open .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.navbar.nav-open .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}
.navbar.nav-open .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.btn {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    padding: 0.625rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-size: 1.0625rem;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.02em;
    text-transform: none;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

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

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

.btn-outline {
    background: var(--bg-white);
    color: var(--primary-color);
    border: 1.5px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Hero Section - full viewport height (desktop: exact 1 viewport; mobile: at least 1 viewport, can grow) */
.hero {
    background: var(--primary-color);
    color: white;
    min-height: 100vh;
    height: 100vh;
    box-sizing: border-box;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

@supports (height: 100dvh) {
    .hero {
        min-height: 100dvh;
        height: 100dvh;
    }
}

.hero * {
    color: white;
}

.hero-text {
    color: white;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(5, 150, 105, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-text {
    min-height: 0;
    animation: fadeIn 0.8s ease-out;
}

.hero-image {
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: slideInRight 0.8s ease-out 0.2s both;
}

.hero-content {
    flex: 1;
    min-height: 0;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    justify-items: stretch;
    min-width: 0;
}

.hero-text {
    min-width: 0;
    overflow-wrap: break-word;
}

.hero-text h1 {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 2.6rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.15;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    color: white;
    font-style: normal;
}

.hero-text .subtitle {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: white;
    font-style: italic;
    text-transform: none;
}

.hero-text p {
    color: white;
}

.hero-intro {
    margin-top: 1.5rem;
    opacity: 0.95;
    line-height: 1.8;
    font-size: 1.125rem;
    font-weight: 400;
    color: white;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
    text-align: justify;
}

.hero-image-caption {
    font-size: 1.125rem;
    margin-top: 1rem;
    color: white;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.hero-text strong {
    color: white;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    max-width: 100%;
    min-width: 0;
}

.badge {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.625rem 1.5rem;
    border-radius: 2rem;
    font-size: 1.125rem;
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 500;
    color: white;
    letter-spacing: 0.03em;
    max-width: 100%;
    box-sizing: border-box;
    min-width: 0;
}

.badge:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
    font-weight: 600;
    color: white;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    max-width: 100%;
    min-width: 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1rem;
    border-radius: 0.5rem;
    min-width: 0;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.stat-value {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    color: white;
    letter-spacing: 0.02em;
}

.stat-item:hover .stat-value {
    transform: scale(1.1);
}

.stat-label {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    opacity: 0.95;
    letter-spacing: 0.03em;
    color: white;
}

.hero-image {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.hero-image:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.profile-photo {
    width: 200px;
    height: 200px;
    max-width: min(200px, 100%);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.profile-photo:hover {
    transform: scale(1.05) rotate(5deg);
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Profile Section - 100vh, light background */
.profile-section {
    min-height: 100vh;
    height: 100vh;
    box-sizing: border-box;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

@supports (height: 100dvh) {
    .profile-section {
        min-height: 100dvh;
        height: 100dvh;
    }
}

.profile-section-inner {
    flex: 1;
    min-height: 0;
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
}

.profile-section-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    animation: fadeIn 0.7s ease-out;
}

.profile-section-header {
    margin-bottom: 2.5rem;
}

.profile-section-label {
    display: inline-block;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.profile-section-title {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0;
}

.profile-section-grid {
    display: grid;
    grid-template-columns: minmax(0, 2.5fr) minmax(260px, 1.2fr);
    gap: 4rem;
    align-items: start;
}

.profile-section-main {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.profile-text {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.125rem;
    line-height: 1.85;
    color: var(--text-medium);
    margin: 0;
    text-align: justify;
    text-indent: 1.5em;
}

.profile-text strong {
    color: var(--text-dark);
    font-weight: 600;
}

.profile-text a {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}
.profile-text a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}
.profile-text a:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    border-radius: 2px;
}

.profile-text-last {
    margin-bottom: 0;
}

/* Legal pages (Mentions légales, Politique de confidentialité) – same layout as main site */
.legal-page .profile-section-content {
    max-width: 720px;
}
.legal-page .profile-section-main {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    overflow-wrap: break-word;
    word-wrap: break-word;
}
.legal-page .profile-text {
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.legal-page .legal-page-cta {
    margin-top: 2rem;
}

.profile-section-aside {
    position: sticky;
    top: 6rem;
}

.profile-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.profile-highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--bg-white);
    border-radius: 0.75rem;
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.profile-highlight-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
    border-left-color: var(--primary-dark);
}

.profile-highlight-item .icon {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
    color: var(--primary-color);
}

.profile-highlight-item [data-lucide] {
    width: 1.5rem;
    height: 1.5rem;
    stroke-width: 2.5;
    color: var(--primary-color);
}

.profile-highlight-item span {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
}

@media (max-width: 1024px) {
    .profile-section-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .profile-section-aside {
        position: static;
    }

    .profile-highlights {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .profile-highlight-item {
        flex: 1 1 calc(50% - 0.5rem);
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .profile-section {
        height: auto;
        min-height: 100vh;
        overflow: visible;
    }

    @supports (height: 100dvh) {
        .profile-section {
            min-height: 100dvh;
        }
    }

    .profile-section-inner {
        padding: 2.5rem 1.5rem;
    }

    .profile-section-header {
        margin-bottom: 1.5rem;
    }

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

    .profile-section-grid {
        gap: 2rem;
    }

    .profile-text {
        font-size: 1.0625rem;
    }

    .profile-highlight-item {
        flex: 1 1 100%;
    }
}

@media (max-width: 480px) {
    .profile-section-inner {
        padding: 2rem 1rem;
    }

    .profile-section-title {
        font-size: 1.75rem;
    }
}

/* ===== Prestations Section ===== */
.prestations-section {
    --prestations-bg: var(--primary-color);
    --prestations-surface: rgba(255, 255, 255, 0.1);
    --prestations-surface-hover: rgba(255, 255, 255, 0.16);
    --prestations-border: rgba(255, 255, 255, 0.18);
    --prestations-border-hover: rgba(255, 255, 255, 0.35);
    --prestations-accent: rgba(255, 255, 255, 0.4);
    --prestations-accent-hover: rgba(255, 255, 255, 0.7);
    --prestations-text: white;
    --prestations-text-muted: rgba(255, 255, 255, 0.75);
    --prestations-tooltip-bg: rgba(15, 23, 42, 0.96);
    min-height: 100vh;
    box-sizing: border-box;
    background: var(--prestations-bg);
    position: relative;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}

@supports (height: 100dvh) {
    .prestations-section {
        min-height: 100dvh;
    }
}

.prestations-section-inner {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    padding: 2.25rem 2rem 1.75rem;
    max-width: 960px;
    margin: 0 auto;
    width: 100%;
}

.prestations-section * {
    color: inherit;
}

.prestations-section-header {
    margin-bottom: 1.25rem;
    flex-shrink: 0;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--prestations-border);
}

.prestations-section-label {
    display: inline-block;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--prestations-text-muted);
    margin-bottom: 0.375rem;
}

.prestations-section-title {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--prestations-text);
    letter-spacing: -0.02em;
    line-height: 1.25;
    margin: 0 0 0.5rem 0;
}

.prestations-section-intro {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.875rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* List: one row per line */
.prestations-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0.25rem 0.25rem 0.5rem 0;
    -webkit-overflow-scrolling: touch;
}

/* Message après réservation (bannière succès/erreur) */
.booking-message {
    padding: 0.875rem 1.5rem;
    text-align: center;
    font-weight: 500;
    font-size: 0.9375rem;
}

.booking-message--notification {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease, opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.booking-message-icon {
    width: 1.375rem;
    height: 1.375rem;
    flex-shrink: 0;
}

.booking-message--success .booking-message-icon {
    color: var(--primary-dark);
}

@media (max-width: 480px) {
    .booking-message--notification {
        padding: 0.875rem 1rem;
        padding-left: max(1rem, env(safe-area-inset-left));
        padding-right: max(1rem, env(safe-area-inset-right));
        font-size: 0.9375rem;
        flex-wrap: wrap;
        justify-content: center;
    }
}

.booking-message--notification.booking-message--dismissed {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.booking-message--success {
    background: var(--bg-light);
    border-bottom: 1px solid var(--success-color);
    color: var(--primary-dark);
}

.booking-message--error {
    background: #fee2e2;
    border-bottom: 1px solid #ef4444;
    color: #991b1b;
}

/* Reservation page (full page) */
.booking-page-body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, #f0fdf4 0%, #ecfdf5 30%, #f8fafc 100%);
}

@supports (height: 100dvh) {
    .booking-page-body {
        min-height: 100dvh;
    }
}

.booking-page {
    flex: 1;
    max-width: 720px;
    margin: 0 auto;
    padding: 1.5rem 1.25rem 3rem;
    width: 100%;
}

.booking-page-back {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    color: var(--text-medium);
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 1.25rem;
    transition: color 0.2s ease, transform 0.15s ease;
    word-break: break-word;
}

.booking-page-back:hover {
    color: var(--primary-color);
}

.booking-page-back .icon {
    width: 1.125rem;
    height: 1.125rem;
}

.booking-page-header {
    margin-bottom: 1.5rem;
}

.booking-page-title {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.35rem 0;
    letter-spacing: -0.02em;
}

.booking-page-summary {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 0.25rem 0;
}

.booking-page-price {
    display: inline-block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-dark);
    background: var(--bg-light);
    padding: 0.35rem 0.75rem;
    border-radius: 2rem;
    margin: 0 0 0.75rem 0;
    border: 1px solid var(--border-color);
}

.booking-page-intro {
    font-size: 0.9375rem;
    color: var(--text-medium);
    line-height: 1.6;
    margin: 0;
}

.booking-page-empty {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.6;
    margin: 0;
}

.booking-page-card {
    background: var(--bg-white);
    border-radius: 1rem;
    padding: 1.75rem 1.5rem;
    box-shadow: 0 4px 20px rgba(5, 150, 105, 0.08), 0 1px 3px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(5, 150, 105, 0.12);
}

.booking-page-empty-card {
    text-align: center;
    padding: 2rem 1.5rem;
}

.booking-page-empty-text {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.65;
    margin: 0 0 1.5rem 0;
}

.booking-page-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: background 0.2s ease, transform 0.1s ease;
}

.booking-page-cta:hover {
    transform: translateY(-1px);
}

.booking-page-form .form-group,
.booking-page-form .booking-step-actions {
    margin-bottom: 1rem;
}

.booking-page-form .form-group:last-of-type {
    margin-bottom: 1.25rem;
}

/* Stepper */
.booking-stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 1.5rem;
    padding: 0.5rem 0;
}

.booking-stepper-step {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.85rem;
    border-radius: 2rem;
    background: var(--bg-light);
    color: var(--text-medium);
    font-size: 0.875rem;
    font-weight: 600;
    transition: background 0.25s ease, color 0.25s ease;
}

.booking-stepper-connector {
    flex: 0 0 2rem;
    height: 2px;
    background: var(--border-color);
    margin: 0 0.15rem;
}

.booking-stepper-step[aria-current="step"],
.booking-stepper-step.booking-stepper-step--active {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 2px 8px rgba(5, 150, 105, 0.35);
}

.booking-stepper-step.booking-stepper-step--done {
    background: rgba(5, 150, 105, 0.15);
    color: var(--primary-dark);
}

.booking-stepper-step.booking-stepper-step--done .booking-stepper-num {
    background: var(--primary-color);
    color: white;
}

.booking-stepper-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    font-size: 0.75rem;
    font-weight: 700;
}

.booking-stepper-step[aria-current="step"] .booking-stepper-num,
.booking-stepper-step.booking-stepper-step--active .booking-stepper-num {
    background: rgba(255, 255, 255, 0.3);
}

.booking-step-panel {
    display: block;
    animation: bookingPanelFade 0.3s ease-out;
}

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

.booking-step-panel[hidden] {
    display: none !important;
}

.booking-step-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-color);
}

.booking-step-next,
.booking-step-prev {
    min-width: 7rem;
    padding: 0.6rem 1.25rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: background 0.2s ease, color 0.2s ease, transform 0.1s ease;
}

.booking-step-next {
    background: var(--primary-color);
    color: white;
    border: none;
}

.booking-step-next:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-1px);
}

.booking-form .form-group input:focus,
.booking-form .form-group select:focus,
.booking-form .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.2);
}

/* Payment step – layout and trust */
.booking-payment-inner {
    margin-bottom: 1.5rem;
}

.booking-payment-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border-color);
}

.booking-payment-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
}

.booking-payment-title .icon {
    width: 1.375rem;
    height: 1.375rem;
    color: var(--primary-color);
}

.booking-payment-desc {
    font-size: 0.9375rem;
    color: var(--text-medium);
    line-height: 1.5;
    margin: 0;
}

.booking-payment-amount-wrap {
    margin-bottom: 1.5rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, var(--bg-light) 0%, rgba(5, 150, 105, 0.08) 100%);
    border-radius: 0.75rem;
    border: 1px solid rgba(5, 150, 105, 0.2);
}

.booking-payment-amount-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-medium);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.25rem;
}

.booking-payment-box .booking-payment-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
}

.booking-payment-card-wrap {
    margin-bottom: 0.75rem;
    min-width: 0;
    max-width: 100%;
}
#stripe-card-element {
    min-width: 0;
    width: 100%;
}

.booking-payment-card-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.stripe-card-element {
    padding: 0.875rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    background: var(--bg-white);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.stripe-card-element:focus-within,
.booking-form .stripe-card-element:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.15);
}

.stripe-card-errors {
    font-size: 0.875rem;
    color: #b91c1c;
    margin-bottom: 1rem;
    min-height: 1.25rem;
}

.booking-payment-trust {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 0;
    padding: 1.25rem 1.25rem;
    background: linear-gradient(180deg, var(--bg-light) 0%, rgba(5, 150, 105, 0.04) 100%);
    border-radius: 0.75rem;
    border: 1px solid var(--border-color);
    font-size: 0.8125rem;
    color: var(--text-medium);
}

.booking-payment-trust-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 1.5rem;
}

.booking-payment-trust-row.booking-payment-trust-stripe {
    align-items: center;
    gap: 0.75rem 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-color);
}

.booking-payment-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.booking-payment-trust-item .icon {
    width: 1rem;
    height: 1rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.booking-payment-stripe-badge {
    height: 22px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    vertical-align: middle;
}

.booking-payment-stripe-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.booking-payment-stripe-link:hover {
    text-decoration: underline;
}

.booking-no-payment-box p {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.booking-form .form-group label .required {
    color: var(--primary-color);
}

.booking-form .form-group textarea {
    width: 100%;
    padding: 0.5rem 0.75rem;
    font-size: 0.9375rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    background: var(--bg-white);
    color: var(--text-dark);
    font-family: inherit;
    resize: vertical;
    min-height: 4rem;
}

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

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

.booking-form .form-group {
    margin-bottom: 1rem;
}

.booking-form .form-group:last-of-type {
    margin-bottom: 1.25rem;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-row .form-group {
    margin-bottom: 0;
    flex: 1;
    min-width: 0;
}

.form-row.form-row-2 .form-group {
    flex: 1;
    min-width: 120px;
}

.booking-step-intro {
    font-size: 0.9375rem;
    color: var(--text-medium);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.booking-devis-confirm p {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.booking-form .form-group label {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.375rem;
}

.booking-form .form-group label .icon {
    width: 1rem;
    height: 1rem;
    color: var(--primary-color);
}

.booking-form .form-group select,
.booking-form .form-group input {
    width: 100%;
    padding: 0.5rem 0.75rem;
    font-size: 0.9375rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    background: var(--bg-white);
    color: var(--text-dark);
}

.prestations-list::-webkit-scrollbar {
    width: 6px;
}

.prestations-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.prestations-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.35);
    border-radius: 3px;
}

.prestations-list::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Reservation page – responsive */
@media (max-width: 768px) {
    .booking-page {
        padding: 1.25rem 1rem 2.5rem;
        max-width: 100%;
    }
    .booking-page-title {
        font-size: 1.625rem;
    }
    .booking-page-card {
        padding: 1.5rem 1.25rem;
    }
    .booking-form .form-group input,
    .booking-form .form-group select,
    .booking-form .form-group textarea {
        font-size: 1rem; /* 16px – prevents iOS zoom on focus */
    }
}

@media (max-width: 480px) {
    .booking-page {
        padding: 1rem 0.875rem 2.5rem;
    }
    .booking-page-title {
        font-size: 1.5rem;
    }
    .booking-page-card {
        padding: 1.25rem 1rem;
    }
    .booking-form .form-group input,
    .booking-form .form-group select,
    .booking-form .form-group textarea {
        font-size: 1rem; /* 16px – prevents iOS zoom on focus */
    }
    .booking-payment-trust {
        padding: 1rem;
        gap: 0.75rem;
    }
    .booking-payment-trust-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    .booking-payment-trust-row.booking-payment-trust-stripe {
        padding-top: 0.75rem;
    }
    .booking-payment-stripe-badge {
        height: 20px;
    }
    .booking-payment-amount-wrap {
        padding: 1rem 1.25rem;
    }
    .booking-payment-amount-wrap .booking-payment-amount {
        font-size: 1.25rem;
    }
    .booking-stepper {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.35rem;
    }
    .booking-stepper-connector {
        display: none;
    }
    .booking-stepper-label {
        display: none;
    }
    .booking-stepper-step {
        padding: 0.5rem 0.65rem;
    }
    .booking-step-actions {
        flex-direction: column;
    }
    .booking-step-next,
    .booking-step-prev {
        width: 100%;
        min-width: 0;
    }
}

.prestation-row {
    list-style: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    min-height: 56px;
    padding: 0.625rem 1rem 0.625rem 0.75rem;
    background: var(--prestations-surface);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--prestations-border);
    border-radius: 0.5rem;
    flex-shrink: 0;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    border-left: 3px solid var(--prestations-accent);
}

.prestation-row:hover {
    background: var(--prestations-surface-hover);
    border-color: var(--prestations-border-hover);
    border-left-color: var(--prestations-accent-hover);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.prestation-row-icon {
    width: 2.5rem;
    height: 2.5rem;
    min-width: 2.5rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--prestations-text);
    flex-shrink: 0;
}

.prestation-row-icon [data-lucide] {
    width: 1.25rem;
    height: 1.25rem;
    stroke-width: 2.25;
    color: inherit;
}

.prestation-row-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    flex-shrink: 0;
    width: 280px;
    position: relative;
}

.prestation-row-title {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--prestations-text);
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.01em;
    cursor: help;
}

.prestation-row-tooltip-icon {
    display: inline-flex;
    flex-shrink: 0;
    width: 1rem;
    height: 1rem;
    color: rgba(255, 255, 255, 0.88);
    opacity: 0.9;
    transition: opacity 0.2s ease, color 0.2s ease;
}

.prestation-row-info:hover .prestation-row-tooltip-icon,
.prestation-row-info:focus .prestation-row-tooltip-icon {
    opacity: 1;
    color: var(--prestations-text);
}

.prestation-row-tooltip-icon svg,
.prestation-row-tooltip-icon [data-lucide] {
    width: 1rem;
    height: 1rem;
    stroke-width: 2.5;
    color: inherit;
}

.prestation-row-meta {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.125rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Description tooltip – shown on hover/focus of title or info icon */
.prestation-row-desc {
    position: absolute;
    bottom: 100%;
    left: 0;
    margin-bottom: 0.5rem;
    padding: 0.5rem 0.75rem;
    max-width: 260px;
    background: var(--prestations-tooltip-bg);
    color: white;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.8125rem;
    line-height: 1.4;
    border-radius: 0.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.28);
    white-space: normal;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.18s ease 0.05s, visibility 0.18s ease 0.05s;
    pointer-events: none;
    z-index: 25;
}

/* First row: show tooltip below so it isn’t clipped by list overflow */
.prestation-row:first-child .prestation-row-desc {
    bottom: auto;
    top: 100%;
    margin-bottom: 0;
    margin-top: 0.5rem;
}

/* First row: when tooltip is visible, stack above second row so tooltip isn’t overlapped */
.prestation-row:first-child:has(.prestation-row-info:hover),
.prestation-row:first-child:has(.prestation-row-info:focus-within) {
    position: relative;
    z-index: 30;
}

.prestation-row-desc::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 1rem;
    border: 6px solid transparent;
    border-top-color: var(--prestations-tooltip-bg);
}

/* First row: arrow points up */
.prestation-row:first-child .prestation-row-desc::after {
    top: auto;
    bottom: 100%;
    border-top-color: transparent;
    border-bottom-color: var(--prestations-tooltip-bg);
}

.prestation-row-info:hover .prestation-row-desc,
.prestation-row-info:focus-within .prestation-row-desc {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
}

.prestation-row-info:focus {
    outline: none;
}

.prestation-row-info:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.6);
    outline-offset: 2px;
    border-radius: 0.25rem;
}

/* Choice group: label + option buttons – fixed width so all rows align; up to 4 buttons per line */
.prestation-row-choices {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    flex-shrink: 0;
    width: 520px;
    min-width: 520px;
}

.prestation-row-choices-label {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--prestations-text);
    opacity: 0.95;
    white-space: nowrap;
    display: flex;
    align-items: center;
    padding-top: 0.5rem;
}

.prestation-row-options {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex: 1;
    flex-wrap: wrap;
    gap: 0.5rem;
    min-width: 0;
}

.prestation-row-options li {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1 1 0;
    min-width: 95px;
}

.prestation-option-btn {
    display: block;
    width: 100%;
    min-width: 0;
    min-height: 2.5rem;
    padding: 0.5rem 0.5rem;
    background: white;
    color: var(--primary-color);
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 0.5rem;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    -webkit-tap-highlight-color: transparent;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    text-align: center;
    box-sizing: border-box;
    white-space: normal;
    line-height: 1.25;
}

.prestation-option-btn:hover {
    background: var(--bg-light);
    color: var(--primary-dark);
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.prestation-option-btn:focus {
    outline: none;
    border-color: white;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.4);
}

.prestation-option-btn:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .prestations-section-inner {
        padding: 2rem 1.25rem 1.5rem;
    }

    .prestations-section-header {
        margin-bottom: 1rem;
        padding-bottom: 0.875rem;
    }

    .prestations-section-title {
        font-size: 1.625rem;
        margin-bottom: 0.375rem;
    }

    .prestations-section-intro {
        font-size: 0.8125rem;
    }

    .prestation-row {
        min-height: 52px;
        padding: 0.5rem 0.75rem 0.5rem 0.625rem;
        gap: 0.75rem;
        border-left-width: 3px;
    }

    .prestation-row-info {
        width: 220px;
    }

    .prestation-row-desc {
        max-width: 220px;
    }

    .prestation-row-options {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .prestation-row-options li {
        flex: 1 1 100px;
        min-width: 100px;
    }

    .prestation-option-btn {
        min-height: 2.75rem;
    }

    .prestations-list {
        padding-right: 0.25rem;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .prestations-section-inner {
        padding: 1.5rem 1rem 1.25rem;
    }

    .prestations-section-header {
        margin-bottom: 0.875rem;
        padding-bottom: 0.75rem;
    }

    .prestations-section-title {
        font-size: 1.375rem;
        margin-bottom: 0.25rem;
    }

    .prestations-section-intro {
        font-size: 0.8125rem;
    }

    .prestation-row {
        flex-wrap: wrap;
        min-height: auto;
        padding: 0.625rem 0.75rem 0.625rem 0.625rem;
        gap: 0.5rem;
        border-left-width: 3px;
    }

    .prestation-row-info {
        flex: 1;
        min-width: 0;
        width: auto;
    }

    .prestation-row-desc {
        max-width: min(240px, calc(100vw - 2rem));
        left: 0;
    }

    .prestation-row-choices {
        width: 100%;
        min-width: 0;
        padding-left: 3.25rem;
        margin-top: 0.25rem;
    }

    .prestation-row-options {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .prestation-row-options li {
        flex: 1 1 90px;
        min-width: 90px;
    }

    .prestation-option-btn {
        font-size: 0.75rem;
        padding: 0.5rem 0.375rem;
        min-height: 2.5rem;
    }
}

/* ===== Compétences Section – same pattern as profile / prestations ===== */
.skills-section {
    min-height: 100vh;
    height: 100vh;
    box-sizing: border-box;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

@supports (height: 100dvh) {
    .skills-section {
        min-height: 100dvh;
        height: 100dvh;
    }
}

.skills-section-inner {
    flex: 1;
    min-height: 0;
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 2rem;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    align-items: stretch;
}

.skills-section-row {
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 2.25rem 2rem;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 1.25rem;
    border: 1px solid rgba(5, 150, 105, 0.12);
    box-shadow: 0 4px 20px rgba(5, 150, 105, 0.08), 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.skills-section-row:hover {
    box-shadow: 0 8px 28px rgba(5, 150, 105, 0.1), 0 2px 6px rgba(0, 0, 0, 0.05);
    border-color: rgba(5, 150, 105, 0.18);
}

.skills-section-row--competences {
    justify-content: flex-start;
    border-right: 1px solid rgba(5, 150, 105, 0.12);
}

.skills-section-row--contact {
    justify-content: flex-start;
    align-items: stretch;
}

.skills-section-header {
    text-align: center;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.skills-section-label {
    display: inline-block;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.skills-section-title {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0 0 0.625rem 0;
}

.skills-section-intro {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-medium);
    margin: 0;
    max-width: 380px;
}

.skills-section-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.skills-section-link:hover {
    color: var(--primary-dark);
    border-bottom-color: var(--primary-dark);
}

.skills-section-cta-wrap {
    margin: 1.75rem 0 0 0;
    flex-shrink: 0;
}

.skills-section-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    min-height: 2.75rem;
    background: var(--primary-color);
    color: white;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 8px rgba(5, 150, 105, 0.25);
}

.skills-section-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(5, 150, 105, 0.35);
}

.skills-section-cta:focus {
    outline: none;
}

.skills-section-cta:focus-visible {
    outline: 2px solid var(--primary-dark);
    outline-offset: 3px;
}

.skills-section-cta .icon {
    width: 1.25rem;
    height: 1.25rem;
}

.skills-section .skills-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    animation: fadeIn 0.5s ease-out 0.15s both;
}

.skills-section .skill-tag {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    color: var(--text-dark);
    border: 1.5px solid rgba(5, 150, 105, 0.2);
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    cursor: default;
    font-weight: 500;
    letter-spacing: 0.02em;
    box-shadow: 0 1px 2px rgba(5, 150, 105, 0.06);
}

.skills-section .skill-tag:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.25);
    font-weight: 600;
}

.skills-section .skill-tag:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Contact – own card (second column) */
.skills-section-row--contact .skills-section-contact-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 1.25rem 0;
    flex-shrink: 0;
}

.skills-section-row--contact .skills-section-contact-title .icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary-color);
}

.skills-section-contact-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    align-items: stretch;
}

.skills-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-dark);
    line-height: 1.5;
    padding: 0.25rem 0;
}

.skills-contact-item .icon {
    width: 1.125rem;
    height: 1.125rem;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.skills-contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease, text-decoration 0.2s ease;
    padding: 0.25rem 0;
    display: inline-block;
}

.skills-contact-item a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.skills-contact-item a:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    border-radius: 4px;
}

.skills-contact-item {
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.skills-contact-item strong {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-medium);
}

@media (max-width: 768px) {
    .skills-section {
        height: auto;
        min-height: 100vh;
        overflow: visible;
    }

    @supports (height: 100dvh) {
        .skills-section {
            min-height: 100dvh;
        }
    }

    .skills-section-inner {
        padding: 2.5rem 1.5rem;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        gap: 1.5rem;
    }

    .skills-section-row {
        padding: 1.5rem 1.25rem;
    }

    .skills-section-row--competences {
        border-right: none;
        border-bottom: 1px solid rgba(5, 150, 105, 0.15);
    }

    .skills-section-title {
        font-size: 1.75rem;
    }

    .skills-section-intro {
        font-size: 0.9375rem;
    }

    .skills-section .skills-tags {
        gap: 0.5rem;
    }

    .skills-section .skill-tag {
        font-size: 0.875rem;
        padding: 0.5rem 0.875rem;
        min-height: 2.5rem;
        display: inline-flex;
        align-items: center;
    }

    .skills-section-cta-wrap {
        margin-top: 1.25rem;
    }

    .skills-section-cta {
        padding: 0.875rem 1.5rem;
        min-height: 2.75rem;
    }

    .skills-section-row--contact .skills-section-contact-title {
        font-size: 1.125rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .skills-section-inner {
        padding: 2rem 1rem;
        gap: 1.25rem;
    }

    .skills-section-row {
        padding: 1.5rem 1rem;
    }

    .skills-section-title {
        font-size: 1.5rem;
    }

    .skills-section-row--contact {
        padding: 1.25rem 1rem;
    }
}

/* ===== Site Footer ===== */
.site-footer {
    background: #0a0f1a;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    padding: 3rem 0 0;
    padding-bottom: env(safe-area-inset-bottom, 0);
    margin-top: 0;
    border-top: 3px solid var(--primary-color);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 2rem;
    width: 100%;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: start;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-logo-link {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    text-decoration: none;
    color: white;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.footer-logo-link:hover {
    color: var(--primary-light);
}

.footer-logo-link:hover .footer-logo-img {
    opacity: 0.9;
}

.footer-logo-link:focus-visible {
    outline: 2px solid var(--primary-light);
    outline-offset: 2px;
    border-radius: 2px;
}

.footer-logo-img {
    display: block;
    height: auto;
    width: 200px;
    max-width: 100%;
    object-fit: contain;
    margin-bottom: 0.75rem;
    transition: opacity 0.2s ease;
}

.footer-tagline {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--primary-light);
    margin: 0;
    letter-spacing: 0.02em;
}

.footer-desc {
    font-size: 0.875rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin: 0.5rem 0 0;
    max-width: 320px;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.08);
    transition: color 0.2s ease, background 0.2s ease, transform 0.15s ease;
}

.footer-social-link:hover {
    color: var(--primary-light);
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.footer-social-link:focus-visible {
    outline: 2px solid var(--primary-light);
    outline-offset: 2px;
}

.footer-social-link .icon {
    width: 1.25rem;
    height: 1.25rem;
}

.footer-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-nav-block {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-nav-title {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
}

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

.footer-nav-list li {
    margin: 0;
}

.footer-nav-list a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding: 0.25rem 0;
    display: inline-block;
    transition: color 0.2s ease, transform 0.15s ease;
}

.footer-nav-list a:hover {
    color: var(--primary-light);
}

.footer-nav-list a:focus-visible {
    outline: 2px solid var(--primary-light);
    outline-offset: 2px;
    border-radius: 2px;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    margin-top: 0;
}

.footer-copyright {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}

.footer-legal {
    margin: 0;
    font-size: 0.8125rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: var(--primary-light);
}

.footer-legal a:focus-visible {
    outline: 2px solid var(--primary-light);
    outline-offset: 2px;
    border-radius: 2px;
}

.footer-sep {
    color: rgba(255, 255, 255, 0.35);
    margin: 0 0.35rem;
    user-select: none;
}

@media (max-width: 768px) {
    .site-footer {
        padding-top: 2.5rem;
    }

    .footer-inner {
        padding: 0 1.5rem 1.75rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2.25rem;
        padding-bottom: 2rem;
    }

    .footer-brand {
        gap: 0.625rem;
    }

    .footer-desc {
        max-width: none;
        line-height: 1.65;
    }

    .footer-nav {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-nav-block {
        gap: 0.375rem;
    }

    .footer-nav-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.25rem 1rem;
    }

    .footer-nav-block:last-child .footer-nav-list {
        grid-template-columns: 1fr;
    }

    .footer-nav-title {
        font-size: 0.8125rem;
        margin-bottom: 0.25rem;
    }

    .footer-nav-list a {
        min-height: 2.75rem;
        display: inline-flex;
        align-items: center;
        padding: 0.5rem 0;
        font-size: 1rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding-top: 1.5rem;
        gap: 1rem;
    }

    .footer-copyright {
        line-height: 1.5;
    }

    .footer-legal a {
        min-height: 2.75rem;
        display: inline-flex;
        align-items: center;
        padding: 0.25rem 0;
    }

    .footer-copyright,
    .footer-legal {
        overflow-wrap: break-word;
        word-wrap: break-word;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding-top: 2rem;
    }

    .footer-inner {
        padding: 0 1.25rem 1.5rem;
    }

    .footer-top {
        gap: 2rem;
        padding-bottom: 1.75rem;
    }

    .footer-nav {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .footer-nav-list {
        grid-template-columns: 1fr 1fr;
        gap: 0.375rem 1rem;
    }

    .footer-nav-block:last-child .footer-nav-list {
        grid-template-columns: 1fr;
    }

    .footer-nav-title {
        font-size: 0.875rem;
    }

    .footer-nav-list a {
        min-height: 3rem;
        font-size: 1rem;
    }

    .footer-tagline {
        font-size: 0.9375rem;
    }

    .footer-desc {
        font-size: 0.9375rem;
    }

    .footer-bottom {
        padding-top: 1.25rem;
        gap: 1rem;
    }

    .footer-copyright {
        font-size: 0.875rem;
    }

    .footer-legal {
        font-size: 0.875rem;
    }
}

/* Main Content */
.main-content {
    max-width: 480px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: block;
    animation: fadeIn 0.8s ease-out 0.2s both;
}

/* Cards */
.card {
    background: var(--bg-white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeIn 0.6s ease-out;
}

.card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: var(--primary-light);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--bg-light);
}

.card-header i,
.card-header svg {
    color: var(--primary-color);
}

/* Lucide Icons styling */
[data-lucide] {
    stroke-width: 2.5;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover [data-lucide] {
    transform: rotate(5deg) scale(1.1);
}

.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.icon [data-lucide] {
    width: 100%;
    height: 100%;
    stroke-width: 2.5;
}

/* Icon sizes for better visibility */
.card-header .icon {
    width: 1.75rem;
    height: 1.75rem;
}

.card-header [data-lucide] {
    width: 1.75rem;
    height: 1.75rem;
    stroke-width: 2.5;
    color: var(--primary-color);
}

.service-icon {
    width: 3.5rem;
    height: 3.5rem;
}

.service-icon [data-lucide] {
    width: 2rem;
    height: 2rem;
    stroke-width: 2.5;
}

.contact-item .icon {
    width: 1.5rem;
    height: 1.5rem;
}

.contact-item [data-lucide] {
    width: 1.5rem;
    height: 1.5rem;
    stroke-width: 2.5;
    flex-shrink: 0;
}

.service-options [data-lucide] {
    width: 1.125rem;
    height: 1.125rem;
    stroke-width: 2.5;
}

.service-meta [data-lucide] {
    width: 1.125rem;
    height: 1.125rem;
    stroke-width: 2.5;
}

.badge .icon {
    width: 1.125rem;
    height: 1.125rem;
}

.badge [data-lucide] {
    width: 1.125rem;
    height: 1.125rem;
    stroke-width: 2.5;
    color: white;
}

.hero-badges .badge .icon,
.hero-badges .badge [data-lucide] {
    color: #eab308;
    stroke: #eab308;
}

.btn .icon {
    width: 1.125rem;
    height: 1.125rem;
}

.btn [data-lucide] {
    width: 1.125rem;
    height: 1.125rem;
    stroke-width: 2.5;
}

.nav-logo .icon {
    width: 1.5rem;
    height: 1.5rem;
}

.nav-logo [data-lucide] {
    width: 1.5rem;
    height: 1.5rem;
    stroke-width: 2.5;
}

.profile-photo .icon {
    width: 4rem;
    height: 4rem;
}

.profile-photo [data-lucide] {
    width: 4rem;
    height: 4rem;
    stroke-width: 3;
    color: white;
}

/* Ensure icons are visible on white backgrounds */
.service-card [data-lucide],
.card [data-lucide] {
    color: var(--primary-color);
}

/* Hero section icons - white on green */
.hero [data-lucide] {
    color: white;
    stroke-width: 2.5;
}

.card-header h2 {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.875rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.02em;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.service-card {
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--bg-white);
    animation: scaleIn 0.5s ease-out;
    animation-fill-mode: both;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }

.service-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px) scale(1.02);
    background: var(--bg-light);
}

.service-icon {
    width: 3rem;
    height: 3rem;
    background: var(--bg-light);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-icon {
    background: var(--primary-color);
    transform: rotate(5deg) scale(1.1);
}

.service-card:hover .service-icon [data-lucide] {
    color: white;
}

.service-card h3 {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    letter-spacing: 0.01em;
}

.service-meta {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-medium);
    font-size: 1.125rem;
    margin-bottom: 1rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    font-style: italic;
}

.service-description {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-medium);
    font-size: 1.0625rem;
    margin-bottom: 1rem;
    line-height: 1.8;
    letter-spacing: 0.01em;
}

.service-price {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.03em;
    font-style: normal;
}

.service-card:hover .service-price {
    transform: scale(1.1);
    color: var(--primary-dark);
}

.service-options {
    list-style: none;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.service-options li {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    padding: 0.625rem 0;
    color: var(--text-medium);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0.25rem;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.service-options li:hover {
    color: var(--primary-color);
    padding-left: 0.5rem;
    background: var(--bg-light);
    font-weight: 600;
}

.service-options li i,
.service-options li [data-lucide] {
    color: var(--primary-color);
    width: 1rem;
    transition: all 0.3s ease;
}

.service-options li:hover [data-lucide] {
    transform: scale(1.2);
}

/* Skills Tags */
.skills-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.skill-tag {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-light);
    padding: 0.625rem 1.25rem;
    border-radius: 2rem;
    font-size: 1.0625rem;
    color: var(--text-dark);
    border: 1.5px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.skill-tag:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    font-weight: 600;
}

/* Languages */
.languages-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.language-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem;
    background: var(--bg-light);
    border-radius: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
}

.language-item:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(5px);
    box-shadow: var(--shadow-sm);
    font-weight: 600;
}

.language-flag {
    font-size: 1.75rem;
    line-height: 1;
}

/* Availability Calendar */
.availability-calendar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.time-slot {
    padding: 0.875rem;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    text-align: center;
    font-size: 0.9375rem;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.time-slot.available {
    background: #dcfce7;
    border: 1.5px solid var(--success-color);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
}

.time-slot.available:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-md);
}

/* Booking Sidebar */
.sidebar {
    position: sticky;
    top: 5rem;
}

.booking-card {
    background: var(--bg-white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
    animation: slideInRight 0.6s ease-out 0.3s both;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.booking-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-2px);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

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

.form-group label {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: 0.02em;
}

.form-group select,
.form-group input {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    padding: 0.875rem;
    border: 1.5px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1.0625rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--bg-white);
    letter-spacing: 0.01em;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group select:focus,
.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
    transform: translateY(-1px);
}

.form-group select:hover,
.form-group input:hover {
    border-color: var(--primary-light);
}

.btn-booking {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    width: 100%;
    padding: 1.125rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.03em;
    text-transform: none;
}

.btn-booking::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-booking:hover::before {
    width: 400px;
    height: 400px;
}

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

.btn-booking:active {
    transform: translateY(0);
}

.contact-info {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 0.75rem;
    margin-top: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 0.875rem;
    color: var(--text-dark);
    border-radius: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.contact-item:hover {
    background: var(--bg-light);
    transform: translateX(5px);
}

.contact-item strong {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
    letter-spacing: 0.01em;
}

.contact-item i,
.contact-item [data-lucide] {
    color: var(--primary-color);
    width: 1.5rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.contact-item:hover [data-lucide] {
    transform: scale(1.2) rotate(5deg);
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.process-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.5rem;
    border-radius: 0.5rem;
}

.process-step:hover {
    background: var(--bg-light);
    transform: translateX(5px);
}

.step-number {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step:hover .step-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-md);
}

.step-content {
    flex: 1;
    padding-top: 0.25rem;
}

.step-content h4 {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    margin-bottom: 0.375rem;
    color: var(--text-dark);
    font-size: 1.25rem;
    letter-spacing: 0.01em;
}

.step-content p {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-medium);
    font-size: 1rem;
    line-height: 1.7;
    letter-spacing: 0.01em;
}

/* Responsive */
@media (max-width: 1024px) {
    .main-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-image {
        order: 1;
    }

    .hero-text {
        order: 2;
    }

    .sidebar {
        position: relative;
        top: 0;
    }

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

@media (max-width: 768px) {
    body.nav-open {
        overflow: hidden;
    }

    .navbar {
        padding: 0.875rem 1rem;
    }

    .nav-content {
        flex-wrap: wrap;
        gap: 0;
    }

    .nav-toggle {
        display: flex;
        margin-left: auto;
    }

    .nav-menu,
    .nav-actions {
        display: none;
        width: 100%;
    }

    .navbar.nav-open .nav-menu,
    .navbar.nav-open .nav-actions {
        display: flex;
    }

    .nav-menu {
        order: 3;
        flex-basis: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0.75rem 0 0;
        margin-top: 0.75rem;
        border-top: 1px solid var(--border-color);
    }

    .nav-menu li {
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu-link {
        font-size: 1rem;
        padding: 0.875rem 1rem;
        min-height: 2.75rem;
        display: flex;
        align-items: center;
        width: 100%;
        box-sizing: border-box;
    }

    .nav-actions {
        order: 4;
        flex-basis: 100%;
        flex-direction: column;
        padding: 0.75rem 0 0;
        margin-top: 0.5rem;
    }

    .nav-actions .btn {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1rem;
        min-height: 2.75rem;
    }

    .nav-logo-img {
        height: 2.25rem;
        max-height: 40px;
    }

    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9375rem;
        min-width: auto;
    }

    .hero {
        padding: 2rem 1rem 2.5rem;
        height: auto;
        min-height: 100vh;
        overflow-x: hidden;
        overflow-y: visible;
    }

    @supports (height: 100dvh) {
        .hero {
            min-height: 100dvh;
        }
    }

    .hero-content {
        gap: 1.5rem;
        flex: 1 1 auto;
        min-height: 0;
    }

    .hero-text,
    .hero-image {
        min-width: 0;
        max-width: 100%;
    }

    .hero-badges {
        max-width: 100%;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
        margin-top: 1.5rem;
        width: 100%;
    }

    .stat-item {
        padding: 0.75rem 0.5rem;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.875rem;
    }

    .hero-image {
        padding: 1.5rem 1rem;
        width: 100%;
    }

    .hero-text h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }

    .hero-text .subtitle {
        font-size: 1.125rem;
        margin-bottom: 1rem;
    }

    .hero-intro {
        font-size: 1rem;
        margin-top: 1.25rem;
    }

    .hero-image-caption {
        font-size: 1rem;
    }

    .hero-badges {
        flex-direction: column;
        gap: 0.75rem;
    }

    .badge {
        width: 100%;
        justify-content: center;
        padding: 0.5rem 1rem;
        font-size: 0.9375rem;
    }

    .hero .profile-photo {
        width: 160px;
        height: 160px;
        font-size: 3.25rem;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
        margin-top: 1.25rem;
    }

    .stat-item {
        padding: 0.5rem 0.25rem;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .main-content {
        padding: 1.5rem 1rem;
    }

    .card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .card-header {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .card-header h2 {
        font-size: 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .service-card {
        padding: 1.25rem;
    }

    .service-card h3 {
        font-size: 1.375rem;
    }

    .service-price {
        font-size: 1.75rem;
    }

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

    .skill-tag {
        font-size: 0.9375rem;
        padding: 0.5rem 1rem;
    }

    .skills-grid {
        gap: 0.75rem;
    }

    .language-item {
        padding: 0.75rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .step-item {
        flex-direction: row;
        align-items: flex-start;
        gap: 1rem;
    }

    .step-number {
        min-width: 2.5rem;
        height: 2.5rem;
        font-size: 1.25rem;
    }

    .step-content h4 {
        font-size: 1.125rem;
    }

    .step-content p {
        font-size: 0.9375rem;
    }

    .booking-card {
        padding: 1.5rem;
    }

    .form-group {
        margin-bottom: 1.25rem;
    }

    .form-group label {
        font-size: 1rem;
    }

    .form-group select,
    .form-group input {
        padding: 0.75rem;
        font-size: 1rem;
    }

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

    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        padding: 1rem;
    }

    .contact-item .icon {
        width: 1.5rem;
        height: 1.5rem;
    }

    .availability-calendar {
        grid-template-columns: 1fr;
        gap: 0.625rem;
    }

    .time-slot {
        padding: 0.75rem;
        font-size: 0.9375rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    h4 {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.75rem 0.875rem;
    }

    .nav-logo-img {
        height: 2rem;
        max-height: 36px;
    }

    .nav-toggle {
        width: 2.75rem;
        height: 2.75rem;
    }

    .nav-menu-link {
        padding: 1rem 1rem;
        min-height: 3rem;
    }

    .nav-actions .btn {
        min-height: 3rem;
        padding: 1rem;
    }

    .hero {
        padding: 1.5rem 0.875rem 2rem;
    }

    .hero-text h1 {
        font-size: 1.75rem;
    }

    .hero .profile-photo {
        width: 140px;
        height: 140px;
        font-size: 2.75rem;
    }

    .hero-text .subtitle {
        font-size: 1rem;
    }

    .hero-intro {
        font-size: 0.9375rem;
        margin-top: 1rem;
    }

    .hero-image-caption {
        font-size: 0.9375rem;
    }

    .hero-image {
        padding: 1.25rem 0.875rem;
    }

    .badge {
        font-size: 0.875rem;
        padding: 0.4375rem 0.875rem;
    }

    .main-content {
        padding: 1rem 0.875rem;
    }

    .card {
        padding: 1.25rem;
    }

    .card-header h2 {
        font-size: 1.375rem;
    }

    .service-card {
        padding: 1rem;
    }

    .service-card h3 {
        font-size: 1.25rem;
    }

    .service-price {
        font-size: 1.5rem;
    }

    .booking-card {
        padding: 1.25rem;
    }

    .form-group label {
        font-size: 0.9375rem;
    }

    .form-group select,
    .form-group input {
        padding: 0.625rem;
        font-size: 0.9375rem;
    }

    .btn-booking {
        padding: 0.875rem;
        font-size: 1rem;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    h4 {
        font-size: 1.125rem;
    }
}

@media (max-width: 360px) {
    .hero {
        padding: 1.25rem 0.75rem 1.75rem;
    }

    .hero-stats {
        gap: 0.375rem;
        margin-top: 1rem;
    }

    .stat-item {
        padding: 0.5rem 0.125rem;
    }

    .stat-value {
        font-size: 1.25rem;
    }

    .stat-label {
        font-size: 0.6875rem;
    }

    .hero-image {
        padding: 1rem 0.75rem;
    }

    .hero-text h1 {
        font-size: 1.5rem;
    }

    .hero .profile-photo {
        width: 120px;
        height: 120px;
        font-size: 2.25rem;
    }

    .hero-text .subtitle {
        font-size: 0.9375rem;
    }

    .hero-intro {
        font-size: 0.875rem;
    }

    .hero-image-caption {
        font-size: 0.875rem;
    }

    .card {
        padding: 1rem;
    }

    .service-card {
        padding: 0.875rem;
    }

    .booking-card {
        padding: 1rem;
    }

    .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .legal-page .profile-section-inner {
        padding: 1.5rem 0.75rem;
    }

    .site-footer {
        padding-top: 1.75rem;
    }

    .footer-inner {
        padding: 0 0.875rem 1.25rem;
    }

    .footer-top {
        gap: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .footer-nav {
        gap: 1.5rem;
    }

    .footer-legal {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-legal .footer-sep {
        display: none;
    }

    .footer-legal a {
        min-height: 2.75rem;
    }

    .booking-page {
        padding: 0.875rem 0.75rem 2rem;
    }
}

/* Enhanced Text Visibility - Luxury Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.3;
}

h1 {
    font-size: 2.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

h2 {
    font-size: 2.25rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

h3 {
    font-size: 1.75rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}

h4 {
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}

p, span, div {
    color: var(--text-medium);
}

strong, b {
    color: var(--text-dark);
    font-weight: 600;
}

/* Hero section text must be white */
.hero h1,
.hero h2,
.hero h3,
.hero h4,
.hero h5,
.hero h6,
.hero p,
.hero span,
.hero div,
.hero strong,
.hero b {
    color: white !important;
}

/* Ensure icons are always visible */
[data-lucide] {
    stroke: currentColor;
    fill: none;
}

/* Better contrast for form elements */
select option {
    color: var(--text-dark);
    background: var(--bg-white);
    padding: 0.5rem;
}

/* Print Styles */
@media print {
    .navbar,
    .booking-card {
        display: none;
    }
}
