/* Reset and base styles */

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

html,
body {
    height: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--light-bg);
    padding: 0;
    margin: 0;
}

/* Fix for Calendly library applying fixed positioning to body and breaking the layout*/
body[style*="position: fixed"] {
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
    left: 0 !important;
    right: 0 !important;
}

/* Typography */
h1,
h2,
h3 {
    margin-bottom: 0.5rem;
    font-weight: 700;
}

h1 {
    font-size: 1.5rem;
    color: var(--purple);
}

/* Accessibility class for visually hidden elements */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--purple);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--orange);
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: var(--orange);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: var(--purple);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-card {
    display: inline-block;
    background-color: var(--orange);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 24px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-card:hover {
    background-color: var(--purple);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Container */
.container {
    width: 100%;
    padding: 0 1.5rem;
    margin: 0 auto;
}

/* Hero section */
.hero {
    position: relative;
    padding: 1rem 0;
    text-align: center;
    overflow: hidden;
}

.hero__content {
    margin-bottom: 1.5rem;
}

.hero__subtitle {
    text-wrap: balance;
}

.hero__logo {
    width: 150px;
    margin-bottom: 1rem;
}

.hero__title {
    margin-bottom: 0.5rem;
}

.hero--couples .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.hero--couples .hero__media {
    order: 2;
}

.hero--couples .hero__content {
    order: 1;
    margin-top: 1.5rem;
}

/* Couples Page (scoped overrides) */
/* ================================= */
.hero--couples .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.hero--couples .hero__media {
    order: 2;
}

.hero--couples .hero__content {
    order: 1;
}

.hero--couples .hero__image-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin: 1rem 0 1.5rem 0;
    background-color: #6e6c6c;
}

.hero--couples .hero__image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.hero__video-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    aspect-ratio: 9 / 16;
    background-color: #6e6c6c;
}

.hero__video {
    width: 100%;
    aspect-ratio: 9 / 16;
    display: block;
}

.hero__cta {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

/* Header and Navigation */
header {
    padding: 12px 0;
}

.header__inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.header__logo {
    margin: 0;
}

.header__logo-img {
    height: 40px;
    width: auto;
}

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

.header__social {
    margin: 0;
}

.header__lang-switcher {
    display: flex;
    align-items: center;
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
}

.header__lang-switcher--mobile {
    margin-top: 1rem;
    justify-content: center;
}

/* Control visibility of language switchers based on screen size */
@media (max-width: 767px) {
    .header__lang-switcher--desktop {
        display: none;
    }
}

@media (min-width: 768px) {
    .header__lang-switcher--mobile {
        display: none;
    }
}

.lang-btn {
    color: var(--purple);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    color: var(--orange);
}

.lang-btn.active {
    color: var(--orange);
    font-weight: 700;
}

.lang-separator {
    margin: 0 0.2rem;
    color: var(--purple);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

nav ul li a {
    padding: 0.5rem;
    font-weight: 600;
}

/* Experience Section */
.experience {
    padding: 3rem 0;
    background-color: var(--white);
    scroll-margin-top: 60px;
}

.section-title {
    text-align: center;
    font-size: 1.8rem;
    color: var(--purple);
    margin-bottom: 2rem;
}

.steps {
    list-style: none;
    counter-reset: step-counter;
    max-width: 700px;
    margin: 0 auto;
    padding: 0;
}

.step-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 3.5rem;
    counter-increment: step-counter;
}

.step-item::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.step-title {
    font-size: 1.2rem;
    color: var(--purple);
    margin-bottom: 0.5rem;
}

.step-description {
    font-size: 1rem;
    color: var(--dark-text);
    line-height: 1.5;
}

.experience-cta {
    text-align: center;
    margin-top: 3rem;
}

.experience-prompt {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Techniques Section */
.techniques {
    padding: 3rem 0;
    background-color: var(--light-bg);
    scroll-margin-top: 60px;
}

.techniques-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.techniques-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.technique-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.technique-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.technique-video-container {
    position: relative;
    overflow: hidden;
    padding-top: 100%; /* 1:1 aspect ratio (square) */
}

.technique-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover the entire square area */
    object-position: center; /* Center the video content */
}

.technique-title {
    color: var(--purple);
    margin: 1rem 1rem 0.5rem;
    font-size: 1.3rem;
}

.technique-description {
    margin: 0 1rem 1rem;
    color: var(--dark-text);
    font-size: 0.95rem;
}

/* Prices Section */
.prices {
    padding: 3rem 0;
    background-color: var(--white);
    scroll-margin-top: 60px;
}

/* Couples: What's Included list styling */
.prices--couples .included-list,
.prices--friends .included-list {
    list-style: none;
    padding: 0;
    margin: 1rem auto 1.5rem;
    max-width: 720px;
}

.prices--couples .included-list li,
.prices--friends .included-list li {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 0.85rem 1rem;
    margin: 0.5rem 0;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.prices--couples .included-list li .emoji,
.prices--friends .included-list li .emoji {
    font-size: 1.1rem;
}

.prices--couples .price-summary,
.prices--friends .price-summary {
    max-width: 720px;
    margin: 0.5rem auto 0;
    text-align: center;
}

/* Friends: group price table */
.prices--friends .price-table,
.prices--family .price-table { /* Added for family page */
    width: 100%;
    max-width: 720px;
    margin: 0.75rem auto 1rem;
    border-collapse: collapse;
    background: var(--white); /* This is the background for the table itself */
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.prices--friends .price-table th,
.prices--friends .price-table td {
    padding: 0.9rem 1rem;
    text-align: left;
}

.prices--friends .price-table th:last-child,
.prices--friends .price-table td:last-child {
    text-align: center;
}

.prices--friends .price-table thead th {
    background: rgba(102, 51, 153, 0.06);
    color: var(--purple);
    font-weight: 700;
}

.prices--friends .price-table tbody tr:not(:last-child) td {
    border-bottom: 1px solid #eee;
}

.prices--friends .price-table td:nth-child(2),
.prices--friends .price-table td:nth-child(3),
.prices--family .price-table td:nth-child(2),
.prices--family .price-table td:nth-child(3) { /* Added for family page */
    font-weight: 700;
    font-size: 1.25rem;
}

/* Price per group (column 2) in orange */
.prices--friends .price-table td:nth-child(2),
.prices--family .price-table td:nth-child(2) { /* Added for family page */
    color: var(--orange);
}

/* Price per person (column 3) in purple */
.prices--friends .price-table td:nth-child(3),
.prices--family .price-table td:nth-child(3) { /* Added for family page */
    color: var(--purple);
}

/* Mobile Table Styles for Friends and Family pages */
@media (max-width: 767px) {
    .prices--friends .price-table,
    .prices--friends .price-table tbody,
    .prices--friends .price-table tr,
    .prices--friends .price-table th,
    .prices--friends .price-table td,
    .prices--family .price-table,
    .prices--family .price-table tbody,
    .prices--family .price-table tr,
    .prices--family .price-table th,
    .prices--family .price-table td {
        display: block;
        width: 100%;
        background-color: transparent; /* Ensure no background on table when stacked */
        box-shadow: none; /* Ensure no shadow on table when stacked */
        border: none; /* Remove border from the overall table */
        border-radius: 0; /* Remove border-radius from the overall table */
    }

    .prices--friends .price-table thead,
    .prices--family .price-table thead {
        display: none;
    }

    .prices--friends .price-table tr,
    .prices--family .price-table tr {
        margin-bottom: 1rem;
        border: 1px solid #eee;
        border-radius: 8px;
        background-color: var(--white);
        box-shadow: 0 2px 8px rgba(0,0,0,0.04);
        padding: 1rem;
    }

    .prices--friends .price-table td,
    .prices--family .price-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 0; /* Adjusted padding */
        border-bottom: none; /* Remove any internal borders */
        font-size: 0.95rem;
    }

    .prices--friends .price-table td::before,
    .prices--family .price-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--purple);
        font-size: 0.9rem;
        text-align: left;
        white-space: normal;
        word-break: break-word;
        flex-shrink: 0; /* Prevent label from shrinking */
        padding-right: 0.5rem;
    }

    .prices--friends .price-table td:last-of-type,
    .prices--family .price-table td:last-of-type {
        border-bottom: none;
    }

    .prices--friends .price-table td:last-child,
    .prices--family .price-table td:last-child {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0.75rem 0;
        border-top: 1px solid #eee; /* Keep a top border to separate the button */
        margin-top: 0.5rem;
    }

    .prices--friends .price-table td:last-child::before,
    .prices--family .price-table td:last-child::before {
        display: none;
    }
}

.prices--friends .price-cta {
    margin-top: 1rem;
}

.pricing-tabs {
    max-width: 900px;
    margin: 0 auto;
}

.pricing-nav {
    display: flex;
    list-style: none;
    justify-content: center;
    border-bottom: 2px solid #eee;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.pricing-nav-item {
    padding: 0.8rem 1.2rem;
    margin: 0 0.5rem;
    cursor: pointer;
    position: relative;
    font-weight: 600;
    color: var(--dark-text);
    transition: color 0.3s;
}

.pricing-nav-item:hover {
    color: var(--orange);
}

.pricing-nav-item.active {
    color: var(--purple);
}

.pricing-nav-item.active::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--purple);
}

.pricing-content {
    position: relative;
    min-height: 300px;
}

.pricing-tab {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

.pricing-tab.active {
    display: block;
}

.price-header {
    text-align: center;
    margin-bottom: 1rem;
    max-width: 900px; /* Add a max-width to the container */
    margin-left: auto;
    margin-right: auto;
}

/* Open Sessions styles for horizontal layout */
.open-sessions-container {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px dashed #eee;
    max-width: 100%;
}

.open-sessions-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.open-sessions-title {
    font-size: 1.5rem;
    color: var(--purple);
    margin-bottom: 0.5rem;
}

.open-sessions-description {
    max-width: 700px;
    margin: 0 auto;
    color: var(--dark-text);
}

.open-sessions-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column; /* Default to column for mobile */
    flex-wrap: wrap;
    gap: 1.5rem;
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.open-sessions-price {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.open-sessions-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--orange);
    line-height: 1;
}

.open-sessions-note {
    font-size: 0.85rem;
    color: var(--dark-text);
    opacity: 0.7;
}

.open-sessions-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    text-align: center;
    align-items: baseline;
}

.open-sessions-detail {
    font-weight: 500;
    color: var(--dark-text);
    white-space: nowrap;
}

.sessions-cta {
    display: none;
}

/* Gift Certificates Section */
.gift-certificates {
    padding: 3rem 0;
    background-color: var(--white);
    scroll-margin-top: 60px;
}

/* Reviews Section */
.reviews {
    padding: 3rem 0;
    scroll-margin-top: 60px;
    width: 100%;
    overflow: hidden;
}

.reviews .container {
    padding: 0;
    max-width: none;
    width: 100%;
}

.reviews-grid {
    display: flex;
    gap: 1.5rem;
    width: 100%;
    margin: 0;
    padding: 1rem 0 1.5rem;
    overflow-x: auto;
    scroll-padding: 1.5rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--orange) #f0f0f0;
    scroll-behavior: smooth;
}

.reviews-grid::before,
.reviews-grid::after {
    content: "";
    flex: 0 0 1rem;
}

.review-item {
    flex: 0 0 auto;
    width: 320px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    scroll-snap-align: start;
    padding: 1rem 1rem 1.5rem;
    color: var(--dark-text);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.review-item:nth-child(odd) {
    background-color: var(--purple-tint-bg);
}
.review-item:nth-child(even) {
    background-color: var(--orange-tint-bg);
}

.review-item-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-height: 4rem;
}

.review-item-header-name {
    font-weight: 700;
    color: var(--purple);
}

.review-item-header-avatar {
    width: 4rem;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 50%;
    border: 2px solid rgba(255, 107, 53, 0.35);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.review-item-header-avatar picture,
.review-item-header-avatar img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Gallery Section */
.gallery {
    padding: 3rem 0;
    background-color: var(--light-bg);
    scroll-margin-top: 60px;
    width: 100%;
    overflow: hidden;
}

.gallery .container {
    padding: 0;
    max-width: none;
    width: 100%;
}

.gallery-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.gallery-description {
    font-size: 1.1rem;
    color: var(--dark-text);
}

.gallery-container {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
}

.gallery-grid {
    display: flex;
    gap: 1.5rem;
    width: 100%;
    margin: 0;
    padding: 1rem 0 1.5rem;
    overflow-x: auto;
    scroll-padding: 1.5rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--orange) #f0f0f0;
    scroll-behavior: smooth;
}

.gallery-grid::before,
.gallery-grid::after {
    content: "";
    flex: 0 0 1rem;
}

.gallery-item {
    flex: 0 0 auto;
    width: 320px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background-color: white;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    scroll-snap-align: start;
    position: relative;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 3 / 4;
}

.price-card-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    aspect-ratio: 3 / 4;
}

.gift-certificates-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.gift-certificates-description {
    font-size: 1.1rem;
    color: var(--dark-text);
}

/* Gift Certificate Styles */
.gift-certificate-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    align-items: start;
}

.gift-certificate-image {
    position: sticky;
    top: 110px;
}

.gift-certificate {
    background-color: white;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 16/9;
    margin: 0 auto;
}

.gift-certificate-gradient {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    filter: blur(30px);
}

.gift-certificate-gradient-1 {
    top: -60px;
    left: -60px;
    width: 220px;
    height: 220px;
    background: radial-gradient(
        circle,
        rgba(255, 107, 53, 0.3) 0%,
        rgba(255, 107, 53, 0) 70%
    );
}

.gift-certificate-gradient-2 {
    bottom: -80px;
    right: -80px;
    width: 280px;
    height: 280px;
    background: radial-gradient(
        circle,
        rgba(102, 51, 153, 0.25) 0%,
        rgba(102, 51, 153, 0) 70%
    );
}

.gift-certificate-logo-img {
    width: 120px;
    height: auto;
    margin-bottom: 15px;
    z-index: 1;
    position: relative;
}

.gift-certificate-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--purple);
    margin-bottom: 15px;
    z-index: 1;
    position: relative;
}

.gift-certificate-details {
    text-align: center;
    z-index: 1;
    position: relative;
}

.gift-certificate-text {
    font-size: 16px;
    line-height: 1.4;
    max-width: 280px;
    color: var(--dark-text);
}

.gift-certificate-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.gift-certificate-info-title {
    font-size: 1.3rem;
    color: var(--purple);
    margin: 0 0 1.25rem 0;
}

.gift-certificate-validity {
    font-size: 0.9rem;
    color: var(--dark-text);
    opacity: 0.8;
    padding-left: 1rem;
}

.gift-certificate-validity p {
    margin: 0;
}

.gift-certificate-prices {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.gift-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #eee;
}

.gift-price-row .btn {
    margin-left: 1rem;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.gift-price-row:last-child {
    border-bottom: none;
}

.gift-price-row.highlight {
    background-color: var(--orange-tint-bg);
    border-radius: 8px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    padding: 1rem;
}

.gift-canvases {
    font-weight: 600;
    color: var(--purple);
    flex: 1;
    text-align: left;
}

.gift-price {
    font-weight: 700;
    color: var(--orange);
    font-size: 1.1rem;
    margin: 0 1rem;
    white-space: nowrap;
}

.gift-certificate-cta {
    text-align: center;
    margin-top: 1rem;
}

.price-title {
    font-size: 1.5rem;
    color: var(--purple);
    margin-bottom: 0.5rem;
}

.price-description {
    max-width: 600px;
    margin: 0 auto;
    color: var(--dark-text);
}

.pricing-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1rem 0;
}

.price-card {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    position: relative;
    width: 100%;
}

.price-card.popular-card {
    border: 2px solid var(--orange);
    position: relative;
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.price-card.popular-card::before {
    content: "POPULAR";
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--orange);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: bold;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    z-index: 10;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.price-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
}

.price-card-content .btn-small {
    margin-top: auto;
    width: 100%;
    text-align: center;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.price-card-content .btn-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.price-card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price-card-icon {
    font-size: 1.5rem;
}

.price-card-title {
    font-size: 1.2rem;
    color: var(--purple);
    margin: 0;
}

.price-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.price-card-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--orange);
    line-height: 1;
}

.price-card-duration {
    font-size: 1rem;
    color: var(--dark-text);
}

.price-card-note {
    font-size: 0.85rem;
    color: var(--dark-text);
    opacity: 0.7;
}

@media (min-width: 768px) {
    .pricing-cards {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        overflow-x: auto;
        scrollbar-width: thin;
        scrollbar-color: var(--orange) #f0f0f0;
    }

    .pricing-cards::-webkit-scrollbar {
        height: 8px;
    }

    .pricing-cards::-webkit-scrollbar-track {
        background: #f0f0f0;
        border-radius: 4px;
    }

    .pricing-cards::-webkit-scrollbar-thumb {
        background-color: var(--orange);
        border-radius: 4px;
    }

    .price-card {
        min-width: 280px;
        max-width: 300px;
    }
}

.pricing-cards-centered {
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.prices-cta {
    text-align: center;
    margin-top: 3rem;
}

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

/* Social Media Icons */
.header__nav-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.header__social {
    margin-top: 0.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: var(--purple);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--orange);
    transform: scale(1.1);
}

.instagram-icon {
    width: 24px;
    height: 24px;
}

/* Contacts Section */
.contacts {
    padding: 3rem 0;
    background-color: var(--white);
    scroll-margin-top: 60px;
}

.contacts-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contacts-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.contacts-item {
    background-color: var(--light-bg);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.contacts-item-title {
    font-size: 1.2rem;
    color: var(--purple);
    margin-bottom: 0.75rem;
}

.contacts-item-text {
    margin-bottom: 1rem;
    color: var(--dark-text);
}

/* Social section removed */

.contacts-map {
    width: 100%;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem 0;
    background-color: var(--purple);
    color: var(--white);
    margin-top: 2rem;
}

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

@media (min-width: 768px) {
    .footer__content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.footer__social .social-link {
    color: var(--white);
}

.footer__social .social-link:hover {
    color: var(--orange);
}

/* Mobile Gallery Styles */
@media (max-width: 767px) {
    .gallery-container {
        padding-bottom: 2rem;
    }

    nav ul li {
        margin: 0.75rem 0.5rem;
    }

    .header__inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

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

    .header__social {
        margin: 0;
    }

    .header__nav-container {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        padding: 1rem 0;
        display: none;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .header__nav-container.active {
        display: block;
    }

    .header__logo-img {
        height: 28px;
    }

    .header__lang-switcher {
        font-size: 0.8rem;
    }

    .language-banner-content {
        flex-direction: column;
        align-items: flex-start;
        padding: 0.5rem 0;
    }

    .language-banner-actions {
        width: 100%;
        justify-content: space-between;
    }

    .mobile-menu-toggle {
        background: none;
        border: none;
        padding: 1rem;
        cursor: pointer;
        position: relative;
        width: 48px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;
    }

    .mobile-menu-line {
        display: block;
        width: 24px;
        height: 2px;
        background-color: var(--purple);
        transition:
            transform 0.3s ease,
            opacity 0.3s ease;
    }

    .mobile-menu-toggle.active .mobile-menu-line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

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

    .mobile-menu-toggle.active .mobile-menu-line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .gift-certificate-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gift-certificate-image {
        position: static;
        order: -1;
    }

    .gift-certificate {
        max-width: 100%;
        margin: 0 auto;
        padding: 30px 20px; /* Adjusted padding for smaller screens */
    }

    .gift-certificate-title {
        font-size: 22px; /* Smaller font size for mobile */
        margin-bottom: 10px; /* Adjusted margin */
    }

    .gift-certificate-text {
        font-size: 14px; /* Smaller font size for mobile */
        max-width: none; /* Allow text to use available width */
    }

    .gift-certificate-info {
        gap: 1.25rem;
    }

    .gift-certificate-prices {
        gap: 0.5rem;
    }

    .gift-price-row {
        padding: 0.5rem 0.75rem;
    }

    .gift-certificate-validity {
        font-size: 0.85rem;
    }
}

/* Desktop menu styles */
@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }

    .header__nav-container {
        display: block;
        position: static;
        background: none;
        box-shadow: none;
        padding: 0;
    }

    nav ul {
        justify-content: flex-end;
        column-gap: 0.5rem;
    }

    .container {
        max-width: 740px;
    }

    /* Tablet Contacts Layout */
    .contacts-info {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .contacts-map {
        height: 400px;
    }

    h1 {
        font-size: 2.5rem;
    }

    .hero {
        padding: 2rem 0;
    }

    .hero__subtitle {
        max-width: 50rem;
        margin: 0 auto;
        font-size: 1.2rem;
    }

    .hero__logo {
        width: 180px;
    }

    /* Tablet techniques layout */
    .techniques-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Tablet pricing styles */
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Tablet open sessions styles */
    .open-sessions-content {
        flex-direction: row;
    }

    .open-sessions-price {
        padding-right: 2rem;
        border-right: 1px dashed #eee;
    }

    /* Tablet gift certificate styles */
    .gift-certificate-container {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }

    .gift-certificate-image {
        align-self: start;
    }

    .gift-certificate-pricing {
        grid-template-columns: repeat(3, 1fr);
    }

    .gift-price-item.highlight {
        grid-column: span 3;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 1140px;
    }

    /* Fixed language banner for desktop only */
    .language-banner {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 11;
    }

    /* Desktop Contacts Layout */
    .contacts {
        padding: 5rem 0;
    }

    .contacts-container {
        flex-direction: row;
    }

    .contacts-info {
        flex: 1;
    }

    .contacts-map {
        flex: 1;
        height: auto;
    }

    h1 {
        font-size: 3rem;
    }

    .hero {
        padding: 0;
        height: 100vh;
        display: flex;
        align-items: center;
    }

    .hero .container {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 2rem;
        align-items: center;
    }

    .hero__content {
        text-align: left;
        margin-bottom: 0;
    }

    /* Couples page overrides */
    .hero--couples {
        height: auto; /* allow content height to grow so text isn't cut */
        padding-top: 116px; /* space for fixed header (and language banner) */
        padding-bottom: 2rem;
    }

    .language-banner ~ main .hero--couples {
        padding-top: 116px;
    }

    .hero--couples .container {
        grid-template-columns: 1fr 1fr; /* text left, image right */
        align-items: center; /* vertically center text relative to photo */
    }

    .hero--couples .hero__media {
        align-self: center;
    }

    /* Show the h1 on desktop */
    .hero__title.visually-hidden {
        position: static;
        width: auto;
        height: auto;
        padding: 0;
        margin: 0 0 0.5rem 0;
        overflow: visible;
        clip: auto;
        white-space: normal;
        border: 0;
        display: block;
    }

    .hero__logo {
        width: 200px;
    }

    .hero__video-container {
        height: calc(100vh - 140px);
        margin-bottom: 0;
    }

    .hero__video {
        object-fit: cover;
    }

    /* Ensure header is on top of everything */
    header {
        position: fixed;
        width: 100%;
        z-index: 10;
        background-color: rgba(249, 249, 249, 0.9);
        box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
    }

    .language-banner + header {
        top: 36px;
    }

    /* Add padding to the body to account for the fixed banner */
    body:has(.language-banner) {
        padding-top: 36px; /* Same as the banner height */
    }

    .header__inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .header__logo {
        margin-bottom: 0;
    }

    .header__nav-container {
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
        width: auto;
    }

    .header__social {
        margin-top: 0;
    }

    .header__logo-img {
        height: 60px;
    }

    /* Adjust content to account for fixed header and banner */
    .hero {
        padding-top: 80px; /* 80px (original padding) + 36px (banner height) */
    }

    .language-banner ~ main .hero {
        padding-top: 116px; /* 80px (original padding) + 36px (banner height) */
    }

    /* Increase button size on desktop and add spacing */
    .hero__cta {
        margin-top: 2rem;
    }

    .hero__cta .btn {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }

    /* Desktop experience section enhancements */
    .section-title {
        font-size: 2.5rem;
    }

    .steps {
        max-width: 800px;
    }

    .step-item {
        padding-left: 5rem;
        margin-bottom: 3rem;
    }

    .step-item::before {
        width: 3.5rem;
        height: 3.5rem;
        font-size: 1.5rem;
    }

    .step-title {
        font-size: 1.5rem;
    }

    .step-description {
        font-size: 1.1rem;
    }

    .experience-prompt {
        font-size: 1.5rem;
    }

    .techniques-intro {
        font-size: 1.2rem;
        margin-bottom: 3rem;
    }

    .techniques-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem; /* Increased spacing for better composition with square videos */
    }

    /* Desktop gallery adjustments */
    .gallery {
        padding: 5rem 0;
    }

    .gallery-intro {
        font-size: 1.2rem;
        margin-bottom: 3rem;
    }

    .technique-title {
        font-size: 1.5rem;
        margin: 1.2rem 1.5rem 0.5rem;
    }

    .technique-description {
        font-size: 1rem;
        margin: 0 1.5rem 1.5rem;
    }

    /* Desktop pricing styles */
    .price-title {
        font-size: 2rem;
    }

    .price-description {
        font-size: 1.1rem;
    }

    .pricing-cards {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }

    .pricing-packages {
        grid-template-columns: repeat(5, 1fr);
        gap: 1.25rem;
    }

    .price-card-title {
        font-size: 1.3rem;
    }

    .pricing-cards-centered {
        max-width: 400px;
    }

    .pricing-nav-item {
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
    }
}

@media (min-width: 768px) {
    .gallery {
        padding: 5rem 0;
    }

    .gallery-grid {
        gap: 2rem;
    }
}

.pricing-packages .price-card {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    position: relative;
    width: 100%;
    padding: 1.5rem;
}

.pricing-packages .price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.pricing-packages .price-card-header {
    margin-bottom: 1rem;
}

.pricing-packages .price-card-title {
    font-size: 1.3rem;
    color: var(--purple);
    margin: 0;
}

.pricing-packages .price-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pricing-packages .price-card-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--orange);
    line-height: 1;
}

.pricing-packages .price-card-price-note {
    font-size: 0.9rem;
    color: var(--dark-text);
    opacity: 0.8;
}

.pricing-packages .price-card-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pricing-packages .price-card-features li {
    color: var(--dark-text);
    font-size: 0.95rem;
}

.pricing-packages .price-card.popular {
    border: 2px solid var(--orange);
}

.pricing-packages .price-card-badge {
    position: absolute;
    top: -12px;
    right: 1.5rem;
    background-color: var(--orange);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

@media (min-width: 768px) {
    .pricing-packages {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 992px) {
    .pricing-packages {
        grid-template-columns: repeat(3, 1fr);
    }
}

.language-banner {
    background-color: var(--purple);
    color: var(--white);
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.language-banner-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.language-banner p {
    margin: 0;
}

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

.language-switch-link {
    color: var(--white);
    text-decoration: underline;
    font-weight: 600;
}

.language-switch-link:hover {
    color: var(--orange);
}

.language-banner-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1rem;
    cursor: pointer;
    padding: 0.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.language-banner-close:hover {
    color: var(--orange);
}

.review-item p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.reviews-grid::-webkit-scrollbar {
    height: 8px;
}
.reviews-grid::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 4px;
}
.reviews-grid::-webkit-scrollbar-thumb {
    background-color: var(--orange);
    border-radius: 4px;
}

.price-cards-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 2rem auto 0;
}

.price-card {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.price-card.popular-card {
    border: 2px solid var(--orange);
    position: relative;
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.price-card.popular-card::before {
    content: "POPULAR";
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--orange);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: bold;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    z-index: 10;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.price-card picture {
    width: 100%;
    height: 200px; /* Fixed height for images */
    overflow: hidden;
}

.price-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.price-card-details {
    padding: 1.5rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.price-card-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 0.75rem;
}

.price-card p {
    font-size: 1rem;
    color: var(--dark-text);
    line-height: 1.6;
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .price-cards-container {
        grid-template-columns: repeat(3, 1fr);
        justify-content: center; /* Center the grid tracks */
        justify-items: center; /* Center the grid items within their tracks */
    }

    .price-card picture {
        height: 250px;
    }
}