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

:root {
    /* Green Palette */
    --green-0: #d8f3dc98;
    --green-1: #D8F3DC;
    --green-2: #B7E4C7;
    --green-3: #95D5B2;
    --green-4: #74C69D;
    --green-5: #52B788;
    
    /* Color Variables */
    --primary-color: #1a1a1a;
    --secondary-color: var(--green-5);
    --accent-color: var(--green-4);
    --lowopacity-accent-color: rgba(82, 183, 136, 0.1);
    --text-color: #333;
    --text-light: #666;
    --bg-light: var(--green-0);
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 5px 20px rgba(0, 0, 0, 0.15);
    --border-radius-1: calc(8px + 0.5em + 1em);
    --border-radius-2: calc(8px + 0.5em);
    --border-radius-3: calc(8px);
}

body {
    font-family: 'Rubik', -apple-system, BlinkMacSystemFont, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Lora', Georgia, 'Times New Roman', serif;
    font-weight: 600;
}

p {
    font-family: 'Rubik', -apple-system, BlinkMacSystemFont, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

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

/* Header & Navigation */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

/* Center nav menu on desktop */
@media (min-width: 834px) {
    .nav-container {
        justify-content: space-between;
    }

    .logo-container {
        flex: 1;
        display: flex;
        justify-content: flex-start;
    }

    .nav-menu {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        flex: 0 0 auto;
    }

    .nav-right-desktop {
        flex: 1;
        display: flex;
        justify-content: flex-end;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Lora', Georgia, 'Times New Roman', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 1px;
    text-decoration: none;
    transition: opacity 0.3s;
}

.logo:hover {
    opacity: 0.8;
}

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

.logo-text {
    display: inline-block;
    font-size: small;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    padding: 2em 0;
}

.nav-menu a:hover {
    color: var(--secondary-color);
}

.nav-menu a.active {
    color: var(--secondary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: calc(2em - 12px);
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* Hide home and about nav items on medium screens (851px-1024px), but show them in mobile hamburger menu */
@media (min-width: 834px) and (max-width: 1024px) {
    .nav-home-item,
    .nav-about-item {
        display: none;
    }
}

.btn-mobile-appointment {
    display: none;
}

.btn-desktop-appointment {
    display: none;
}

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

@media (min-width: 834px) {
    .btn.btn-desktop-appointment {
        display: inline-flex;
        align-items: center;
        padding: 8px 12px !important;
        font-size: 0.8rem !important;
        height: 40px;
        line-height: 1;
    }

    .lang-dropdown-btn {
        padding: 8px 0.8rem 8px 0.6rem !important;
        font-size: 1rem !important;
        height: 40px;
        line-height: 1;
    }

    .btn-mobile-appointment {
        display: none !important;
    }

    .nav-right-desktop {
        display: flex;
    }
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    justify-content: center;
    align-items: center;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s;
    border-radius: 2px;
}

/* Language Selector */
.language-selector {
    display: flex;
    gap: 0.5rem;
}

.language-selector-desktop {
    margin-right: 0;
}

/* Custom dropdown to support SVG/HTML content */
.custom-lang-dropdown {
    position: relative;
    width: auto;
    min-width: 70px;
}

.lang-dropdown-btn {
    width: 100%;
    padding: 0.5rem 1.8rem 0.5rem 0.6rem;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    border-radius: var(--border-radius-2);
    transition: all 0.3s;
    font-size: 1rem;
    font-family: 'Rubik', -apple-system, BlinkMacSystemFont, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.4rem;
    text-align: left;
    white-space: nowrap;
}

.lang-dropdown-btn:hover {
    background-color: rgba(26, 26, 26, 0.1);
    border-color: var(--secondary-color);
}

.lang-dropdown-btn:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px var(--lowopacity-accent-color);
}

.lang-dropdown-btn[aria-expanded="true"] {
    background-color: rgba(26, 26, 26, 0.1);
    border-color: var(--secondary-color);
}

.lang-dropdown-selected {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
}

.lang-dropdown-selected .fi {
    font-size: 1.2rem;
    line-height: 1;
}

.lang-dropdown-arrow {
    flex-shrink: 0;
    width: 12px;
    height: 12px;
    color: var(--primary-color);
    transition: transform 0.3s;
}

.lang-dropdown-btn[aria-expanded="true"] .lang-dropdown-arrow {
    transform: rotate(180deg);
}

.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    min-width: 100%;
    width: max-content;
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius-2);
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
    box-shadow: var(--shadow-hover);
    z-index: 1000;
    display: none;
    overflow: hidden;
}

.custom-lang-dropdown.open .lang-dropdown-menu {
    display: block;
}

.lang-dropdown-option {
    padding: 0.5rem 0.7rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.2s;
    font-weight: 600;
    color: var(--primary-color);
    white-space: nowrap;
}

.lang-dropdown-option:hover {
    background-color: rgba(26, 26, 26, 0.1);
}

.lang-dropdown-option.selected {
    background-color: var(--lowopacity-accent-color);
    color: var(--primary-color);
}

.lang-dropdown-option .fi {
    font-size: 1.2rem;
    line-height: 1;
}

.lang-btn {
    padding: 0.5rem 0.8rem;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    border-radius: var(--border-radius-2);
    transition: all 0.3s;
    font-size: 1.3rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    min-height: 40px;
}

.lang-btn:hover {
    background: rgba(26, 26, 26, 0.1);
    transform: scale(1.05);
    border-color: var(--secondary-color);
}

.lang-btn.active {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(201, 169, 97, 0.3);
}

/* Mobile language selector */
.language-selector-mobile {
    display: none;
    padding: 1.5rem 0;
    text-align: left;
}

.language-selector-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.8rem;
    width: 100%;
    margin: 0 auto;
    padding: 1rem 0;
    padding-left: 2rem;
}

.language-selector-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: left;
    width: 100%;
}

.language-selector-mobile .language-selector {
    justify-content: flex-start;
}

/* Hero Section */
.hero {
    color: var(--white);
    padding: 150px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.6) 0%, rgba(45, 45, 45, 0.6) 100%);
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.hero-title-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.1);
    z-index: 1;
    white-space: nowrap;
    font-weight: 700;
    letter-spacing: 3px;
    max-width: 100%;
    overflow: hidden;
}

.hero .appointment-title {
    color: var(--white);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: var(--border-radius-2);
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

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

.btn-secondary {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    box-sizing: border-box;
}

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

.btn-call {
    background: var(--primary-color);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 1.5rem 0;
    width: 100%;
    max-width: 300px;
}

.btn-call:hover {
    background: #2d2d2d;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-call-fixed {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    margin: 0;
    width: 60px;
    height: 60px;
    padding: 0;
    border-radius: 50%;
    background: var(--secondary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    animation: pulse 2s infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-call-fixed:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    animation: none;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    50% {
        box-shadow: 0 4px 15px var(--secondary-color);
    }
}

.call-icon {
    width: 24px;
    height: 24px;
    color: var(--white);
    display: block;
    flex-shrink: 0;
}

.btn-call-fixed .call-icon {
    width: 26px;
    height: 26px;
}

/* What We Do Section */
.what-we-do {
    padding: 80px 20px;
    background: var(--white);
}

.what-we-do-wrapper {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.what-we-do-image {
    flex: 0 0 45%;
    max-width: 45%;
}

.what-we-do-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-1);
    box-shadow: var(--shadow);
    object-fit: cover;
}

.what-we-do-right {
    flex: 1;
}

.what-we-do h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: left;
}

.what-we-do-content {
    margin-bottom: 2rem;
    text-align: left;
}

.what-we-do-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.what-we-do-content p:last-child {
    margin-bottom: 0;
}

.what-we-do-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.what-we-do-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius-1);
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: left;
}

.what-we-do-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.what-we-do-icon {
    width: 80px;
    height: 80px;
    margin: 0 0 1.5rem 0;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.what-we-do-icon svg {
    width: 100%;
    height: 100%;
}

.what-we-do-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.what-we-do-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.what-we-do-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

/* Services Section */
.services {
    padding: 80px 20px;
    background: var(--bg-light);
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.services-category-selector {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.services-category-selector input[type="radio"] {
    display: none;
}

.services-category-selector label {
    padding: 0.75rem 2rem;
    background: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    border-radius: var(--border-radius-2);
    transition: all 0.3s;
    font-size: 1rem;
    font-family: 'Rubik', -apple-system, BlinkMacSystemFont, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
    user-select: none;
}

.services-category-selector label:hover {
    background: rgba(26, 26, 26, 0.05);
    border-color: var(--secondary-color);
}

.services-category-selector input[type="radio"]:checked + label {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white);
    box-shadow: 0 2px 8px var(--secondary-color);
}

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

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-1);
    box-shadow: var(--shadow);
    transition: opacity 0.3s, transform 0.3s, box-shadow 0.3s;
    text-align: left;
    display: flex;
    flex-direction: column;
}


.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
}

.service-title-desc {
    flex: 1;
    min-width: 0;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    text-align: left;
    line-height: 1.3;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
    text-align: left;
    margin: 0;
    font-size: 0.95rem;
}

.service-price-duration {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
    flex-shrink: 0;
}

.price {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--secondary-color);
    padding: 0.5rem 1rem;
    background: var(--lowopacity-accent-color);
    border-radius: var(--border-radius-2);
}

.duration {
    display: inline-block;
    font-size: 0.9rem;
    color: var(--text-light);
    padding: 0.25rem 0.75rem;
    background: rgba(0, 0, 0, 0.05);
    border-radius: var(--border-radius-2);
}

/* About Section */
.about {
    padding: 80px 20px;
    background: var(--white);
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

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

.about-who {
    margin-top: 3rem;
    text-align: center;
}

.about-who h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.about-who p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem auto;
    max-width: 600px;
}

.team-member {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: var(--border-radius-1);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.team-member-image {
    width: 100%;
    max-width: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-member h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.team-role {
    font-size: 1rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin: 0;
}

.about-detail {
    margin-top: 3rem;
}

.about-detail-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.about-detail-image {
    width: 100%;
    max-width: 500px;
    border-radius: var(--border-radius-1);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.detail-photo {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.about-detail-text {
    flex: 1;
    text-align: center;
}

.about-detail-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.about-detail-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Desktop layout: image on left, text on right */
@media (min-width: 768px) {
    .about-detail-content {
        flex-direction: row;
        align-items: flex-start;
        gap: 3rem;
    }

    .about-detail-image {
        max-width: 400px;
    }

    .about-detail-text {
        text-align: left;
    }

    .about-detail-text h3 {
        margin-top: 0;
    }

    .about-detail-text p {
        margin: 0;
    }

    /* Make location card flex container so map can expand */
    .location-card {
        display: flex;
        flex-direction: column;
    }

    .location-info {
        display: flex;
        flex-direction: column;
        flex: 1;
    }

    /* Map container expands to fill available space on desktop */
    .map-container {
        flex: 1;
        min-height: 300px;
        height: auto;
    }
}

/* Hours & Location */
.hours-location {
    padding: 3em 20px;
    background: var(--bg-light);
}

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

.hours-card,
.location-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius-1);
    box-shadow: var(--shadow);
    overflow-wrap: break-word;
    word-wrap: break-word;
    overflow-x: hidden;
}

.hours-card h2,
.location-card h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.hours-header {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1em;
}

.hours-icon {
    display: flex;
    align-self: center;
    width: 2em;
    height: 2em;
    color: var(--secondary-color);
}

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

.location-icon {
    display: flex;
    align-self: center;
    width: 2em;
    height: 2em;
    color: var(--secondary-color);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
    gap: 1rem;
}

.hour-item.closed {
    opacity: 0.6;
}

.day {
    font-weight: 600;
    color: var(--primary-color);
    flex: 1 1 auto;
    min-width: 0;
}

.time {
    color: var(--text-light);
    flex-shrink: 0;
    white-space: nowrap;
    margin-left: auto;
}

.location-info p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.address {
    font-size: 1.1rem;
    line-height: 1.8;
}

.phone,
.email {
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.map-container {
    margin-top: 2rem;
    height: 300px;
    width: 100%;
    border-radius: var(--border-radius-2);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container .leaflet-container {
    height: 100%;
    width: 100%;
    border-radius: var(--border-radius-2);
}

.leaflet-touch .leaflet-bar a:last-child {
    border-bottom-left-radius: var(--border-radius-3);
    border-bottom-right-radius: var(--border-radius-3);
}

.leaflet-touch .leaflet-bar a:first-child {
    border-top-left-radius: var(--border-radius-3);
    border-top-right-radius: var(--border-radius-3);
}

.leaflet-bar {
    border-radius: var(--border-radius-3);
}

.leaflet-control-attribution {
    display: none;
}

.leaflet-popup-content {
    font-family: 'Rubik', -apple-system, BlinkMacSystemFont, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Recenter control styling - remove spacing to position directly under zoom controls */
.leaflet-top.leaflet-right .leaflet-control.recenter-control-container {
    margin-top: 0 !important;
}

.leaflet-top.leaflet-left .leaflet-control.recenter-control-container {
    margin-top: 0.5em !important;
}

.recenter-control-container {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
    border-radius: var(--border-radius-3);
    overflow: hidden;
    transition: opacity 0.3s ease, display 0.3s ease;
}

.recenter-control-btn {
    width: 34px;
    height: 34px;
    line-height: 34px;
    display: block;
    text-align: center;
    text-decoration: none;
    color: var(--primary-color);
    background-color: var(--white);
    transition: background-color 0.2s;
    border: none;
    cursor: pointer;
}

.recenter-control-btn:hover {
    background-color: #f4f4f4;
}

.recenter-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.recenter-icon svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

.leaflet-top,
.leaflet-bottom {
    position: inherit !important;
}

/* Navigate control container - positioned at bottom of map */
.leaflet-control-container .leaflet-bottom.leaflet-left {
    width: 100% !important;
    left: 0 !important;
    right: 0 !important;
    position: absolute !important;
    z-index: 500 !important;
}

/* Override for navigate control specifically */
.leaflet-control-container .leaflet-bottom.leaflet-left .navigate-control-container {
    position: relative;
}

.navigate-control-container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 10px !important;
    box-sizing: border-box;
    pointer-events: none;
    z-index: 500 !important;
}

.btn-navigate {
    width: 100% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 !important;
    pointer-events: auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    border-radius: var(--border-radius-3);
}

.navigate-text {
    font-size: 1rem;
    font-weight: 600;
}

/* Contact Section */
.contact {
    padding: 80px 20px;
    background: var(--white);
}

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

.contact-info h2,
.instagram-feed-wrapper h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.contact-info p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.contact-details {
    margin: 2rem 0;
}

.contact-details p {
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.contact-details a[href^="tel:"] {
    color: var(--secondary-color);
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s;
}

.contact-details a[href^="tel:"]:hover {
    opacity: 0.8;
}

.contact-info a[href^="tel:"] {
    color: var(--secondary-color);
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s;
}

.contact-info a[href^="tel:"]:hover {
    opacity: 0.8;
}

.contact-details a[href^="mailto:"] {
    color: var(--secondary-color);
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s;
}

.contact-details a[href^="mailto:"]:hover {
    opacity: 0.8;
}

.contact-info a[href^="mailto:"] {
    color: var(--secondary-color);
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s;
}

.contact-info a[href^="mailto:"]:hover {
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--border-radius-2);
    transition: background 0.3s;
}

.social-link:hover {
    background: var(--secondary-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group textarea {
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: var(--border-radius-2);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

/* Instagram Feed */
.instagram-feed-wrapper {
    display: flex;
    flex-direction: column;
}

.instagram-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.instagram-feed {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
    min-height: 300px;
}

.instagram-post {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--border-radius-2);
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    background: var(--bg-light);
}

.instagram-post-loading {
    background: linear-gradient(
        90deg,
        var(--lowopacity-accent-color) 0%,
        var(--lowopacity-accent-color) 50%,
        var(--lowopacity-accent-color) 100%
    );
    background-size: 200% 100%;
    animation: loading-shimmer 1.5s infinite;
}

@keyframes loading-shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.instagram-skeleton {
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        var(--lowopacity-accent-color) 0%,
        var(--lowopacity-accent-color) 50%,
        var(--lowopacity-accent-color) 100%
    );
    background-size: 200% 100%;
    animation: loading-shimmer 1.5s infinite;
}

.instagram-error-small {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 0.9rem;
    background: var(--bg-light);
}

.instagram-post:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

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

.instagram-post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.instagram-post:hover .instagram-post-overlay {
    opacity: 1;
}

.instagram-post-overlay span {
    color: var(--white);
    font-size: 1.2rem;
}

.instagram-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

.instagram-error {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

.instagram-error a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.instagram-error a:hover {
    text-decoration: underline;
}

.instagram-follow-btn {
    align-self: flex-start;
    margin-top: 1rem;
}

.instagram-post {
    text-decoration: none;
    color: inherit;
}

.instagram-post-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--lowopacity-accent-color) 0%, rgba(26, 26, 26, 0.1) 100%);
}

.instagram-post-placeholder svg {
    width: 40px;
    height: 40px;
    color: var(--secondary-color);
}

.instagram-api-note {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.instagram-post-embed {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-2);
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 320px;
    /* Hide the top 60px (header with profile) and bottom 80px (interaction buttons, like count, comment prompt, etc.) */
    clip-path: inset(60px 0 80px 0);
    -webkit-clip-path: inset(60px 0 80px 0);
}

.instagram-post-embed:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.instagram-post-embed iframe {
    width: 100%;
    height: 460px;
    /* Shift iframe up to hide the header (profile picture and "View profile" button) */
    /* The clip-path handles hiding the bottom interaction elements */
    transform: translateY(-60px);
    border: none;
    margin-top: 0;
    pointer-events: none; /* Disable interaction to prevent clicks on hidden elements */
}

/* Appointment Section */
.appointment-section {
    padding: 80px 20px;
    background: var(--bg-light);
    overflow-x: hidden;
}

.appointment-header {
    text-align: center;
    margin-bottom: 4rem;
}

h1.appointment-title,
h2.appointment-title {
    position: relative;
    font-family: 'Lora', Georgia, 'Times New Roman', serif;
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.appointment-title-text {
    position: relative;
    z-index: 2;
}

.appointment-title-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 6rem;
    color: var(--lowopacity-accent-color);
    z-index: 1;
    white-space: nowrap;
    font-weight: 700;
    letter-spacing: 3px;
    max-width: 100%;
    overflow: hidden;
}

.services .appointment-title-bg {
    font-size: 6rem;
}

.appointment-description {
    max-width: 700px;
    margin: 0 auto 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.appointment-info {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.appointment-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.appointment-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-1);
    box-shadow: var(--shadow);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.appointment-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.appointment-card-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    border-radius: var(--border-radius-2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.appointment-card-content {
    flex: 1;
}

.appointment-card-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.appointment-card-value {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
}

.appointment-card-value a[href^="tel:"] {
    color: var(--secondary-color);
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s;
}

.appointment-card-value a[href^="tel:"]:hover {
    opacity: 0.8;
}

.appointment-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.btn-appointment {
    flex: 1;
    min-width: 280px;
    padding: 1.2rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: var(--border-radius-1);
    transition: all 0.3s;
}

.btn-appointment:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-appointment svg {
    flex-shrink: 0;
}

/* Responsive Appointment Section */
@media (max-width: 768px) {
    h1.appointment-title,
    h2.appointment-title {
        font-size: 2.5rem;
    }

    .appointment-title-bg {
        font-size: 4rem;
        letter-spacing: 2px;
    }

    .services .appointment-title-bg {
        font-size: 5rem;
    }

    .appointment-description {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .appointment-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .appointment-card {
        padding: 1.5rem;
    }

    .appointment-buttons {
        flex-direction: column;
    }

    .btn-appointment {
        min-width: 100%;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .appointment-title-bg {
        font-size: 4rem;
        letter-spacing: 1px;
    }

    .services .appointment-title-bg {
        font-size: 3.5rem;
    }

    .hero-title-bg {
        font-size: 3rem;
        letter-spacing: 1px;
    }
}

/* Appointment CTA Section */
.appointment-cta {
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    text-align: center;
}

.appointment-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.appointment-cta-title {
    font-family: 'Lora', Georgia, 'Times New Roman', serif;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 2rem;
}

.btn-appointment-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--white);
    transition: all 0.3s ease;
}

.btn-appointment-cta:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-appointment-cta svg {
    transition: transform 0.3s ease;
}

.btn-appointment-cta:hover svg {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .appointment-cta {
        padding: 40px 20px;
    }

    .appointment-cta-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .btn-appointment-cta {
        padding: 0.875rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .appointment-cta-title {
        font-size: 1.75rem;
    }
}

/* Reviews Section */
.reviews {
    padding: 80px 20px;
    background: var(--bg-light);
}

.reviews-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: -1rem;
    margin-bottom: 1rem;
}

.reviews-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.reviews-rating-value {
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.reviews-rating-label {
    color: var(--text-light);
    font-weight: 500;
}

.reviews-container {
    margin-bottom: 3rem;
    min-height: 200px;
}

.reviews-loading,
.reviews-error {
    text-align: center;
    padding: 2rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius-2);
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.review-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    position: relative;
}

.review-author-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--bg-light);
}

.review-author-info {
    flex: 1;
    min-width: 0;
}

.review-author-name {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.review-stars {
    display: flex;
    gap: 2px;
    font-size: 1.1rem;
    line-height: 1;
}

.star {
    color: #ddd;
}

.star-full {
    color: var(--secondary-color);
}

.star-half {
    background: linear-gradient(90deg, var(--secondary-color) 50%, #ddd 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.review-time {
    font-size: 0.85rem;
    color: var(--text-light);
    white-space: nowrap;
    position: absolute;
    top: 0;
    right: 0;
}

.review-text {
    color: var(--text-color);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

.reviews-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.reviews-view-all,
.reviews-write-review {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    min-height: 48px;
    box-sizing: border-box;
}

.reviews-view-all:hover,
.reviews-write-review:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Responsive Reviews Section */
@media (max-width: 768px) {
    .reviews {
        padding: 60px 20px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .review-card {
        padding: 1.25rem;
    }

    .review-header {
        flex-wrap: wrap;
    }

    .review-time {
        position: static;
        width: 100%;
        margin-top: 0.5rem;
    }

    .reviews-footer {
        flex-direction: column;
        gap: 1rem;
    }

    .reviews-view-all,
    .reviews-write-review {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .reviews-subtitle {
        font-size: 1rem;
    }

    .reviews-rating {
        font-size: 1rem;
        gap: 0.4rem;
    }

    .reviews-rating-value {
        font-size: 1.3rem;
    }

    .review-author-photo {
        width: 40px;
        height: 40px;
    }

    .review-author-name {
        font-size: 0.95rem;
    }

    .review-text {
        font-size: 0.9rem;
    }
}

/* Footer */
.footer {
    background: #282828;
    color: var(--white);
    padding: 3rem 20px 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

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

.footer-heading {
    font-family: 'Lora', Georgia, 'Times New Roman', serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.footer-bracket {
    color: var(--secondary-color);
    font-weight: 700;
}

.footer-text {
    color: var(--white);
    line-height: 1.8;
    font-size: 0.95rem;
    margin: 0;
}

/* Footer Navigation Links */
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-link {
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-link::before {
    content: '>';
    color: var(--white);
    font-weight: 600;
    margin-right: 0.2rem;
}

.footer-link:hover {
    color: var(--secondary-color);
}

/* Footer Contact */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-contact-item svg {
    flex-shrink: 0;
    color: var(--white);
}

.footer-contact-item:hover {
    color: var(--secondary-color);
}

.footer-contact-item:hover svg {
    color: var(--secondary-color);
}

/* Footer Social Media */
.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social-btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #282828;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--white);
    transition: all 0.3s;
    flex-shrink: 0;
}

.footer-social-btn svg {
    width: 24px;
    height: 24px;
}

.footer-social-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: rgba(255, 255, 255, 1);
    text-decoration: underline;
}

.footer-certifications {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-cert-logo {
    height: 50px;
    width: auto;
    max-width: 120px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
    object-fit: contain;
}

/* Footer Payment */
.footer-payment {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    margin-top: 2rem;
}

.footer-payment-text {
    color: var(--white);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.footer-payment-icon {
    height: 40px;
    width: auto;
    max-width: 120px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
    object-fit: contain;
}

.footer-cert-logo:hover {
    opacity: 1;
}

.footer-business-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-business-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.footer-business-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.footer-business-value {
    font-size: 0.95rem;
    color: var(--white);
    font-weight: 600;
}

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

    .footer-heading {
        font-size: 1rem;
    }

    .footer-social {
        justify-content: flex-start;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Responsive Design */
@media (max-width: 833px) {
    .nav-container {
        justify-content: flex-start;
        gap: 1rem;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: left 0.3s;
        box-shadow: var(--shadow);
        gap: 0;
        z-index: 1001;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 0;
        border-bottom: 1px solid #eee;
        width: 100%;
    }

    .nav-menu a {
        display: block;
        width: 100%;
        padding: 1rem 2rem;
        text-align: left;
        position: relative;
    }

    .nav-menu a::after {
        bottom: 0.5rem;
        left: 2rem;
        width: 0;
    }

    .nav-menu a:hover::after,
    .nav-menu a.active::after {
        width: var(--underline-width, auto);
    }

    /* Hide desktop elements on mobile */
    .nav-right-desktop {
        display: none;
    }

    .language-selector-desktop {
        display: none;
    }

    /* Show mobile language selector in menu */
    .language-selector-mobile {
        display: flex;
        padding: 1.5rem 2rem;
        width: 100%;
    }

    .lang-btn {
        padding: 0.4rem 0.6rem;
        font-size: 1.1rem;
        min-width: 35px;
        min-height: 35px;
    }

    .btn-mobile-appointment {
        display: inline-block;
        padding: 8px 12px;
        font-size: 0.8rem;
        white-space: nowrap;
        margin-right: 0;
        margin-left: auto;
        flex-shrink: 0;
    }

    .btn-desktop-appointment {
        display: none !important;
    }

    .menu-toggle {
        display: flex;
        margin-left: 0;
        flex-shrink: 0;
        padding: 12px;
        min-width: 48px;
        min-height: 48px;
    }

    /* Group button and menu toggle together visually - keep them close */
    .btn-mobile-appointment+.menu-toggle {
        flex-shrink: 0;
    }

    .logo-img {
        height: 40px;
    }

    .logo {
        font-size: 1.5rem;
        gap: 0.5rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-title-bg {
        font-size: 4rem;
        letter-spacing: 2px;
    }

    .hero p {
        font-size: 1.1rem;
    }

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

    .services-category-selector {
        gap: 0.75rem;
    }

    .services-category-selector label {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .what-we-do-wrapper {
        flex-direction: column;
        gap: 2rem;
    }

    .what-we-do-image {
        display: none;
    }

    .what-we-do h2 {
        text-align: left;
        font-size: 2rem;
    }

    .what-we-do-content {
        text-align: left;
    }

    .what-we-do-grid {
        grid-template-columns: 1fr;
    }

    .hours-location-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        justify-items: stretch;
        width: 100%;
    }

    .hours-card,
    .location-card {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        box-sizing: border-box;
        padding: 1.5rem;
        overflow-wrap: break-word;
        word-wrap: break-word;
        overflow-x: hidden;
    }

    .hour-item {
        gap: 0.5rem;
    }

    .day {
        font-size: 0.9rem;
    }

    .time {
        font-size: 0.9rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .instagram-feed {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .btn-call {
        width: 100%;
        max-width: 100%;
        padding: 14px 30px;
        font-size: 1.1rem;
    }

    .btn-call-fixed {
        bottom: 15px;
        right: 15px;
        width: 56px !important;
        height: 56px !important;
        min-width: 56px;
        min-height: 56px;
        max-width: 56px;
        max-height: 56px;
        padding: 0 !important;
        border-radius: 50% !important;
        box-sizing: border-box;
    }

    .btn-call-fixed .call-icon {
        width: 24px;
        height: 24px;
        display: block;
    }
}