/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'TransboldNeue Euro Bold'
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'TransboldNeue Euro Bold', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
    font-weight: bold;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    font-family: 'TransboldNeue Euro Bold', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

button {
    font-family: 'TransboldNeue Euro Bold', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    cursor: pointer;
    border: none;
    background: none;
    font-weight: bold;
}

input, textarea, select {
    font-family: 'TransboldNeue Euro Bold', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'TransboldNeue Euro Bold', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

p, span, div, li, label {
    font-family: 'TransboldNeue Euro Bold', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-light);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    max-width: 1200px;
    margin: 0 auto;
    height: 60px;
}

.logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.desktop-nav {
    display: none;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.theme-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-gray);
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.theme-icon {
    width: 20px;
    height: 20px;
}

.sun-icon {
    display: block;
}

.moon-icon {
    display: none;
}

[data-theme="dark"] .sun-icon {
    display: none;
}

[data-theme="dark"] .moon-icon {
    display: block;
}

.cta-button {
    display: none;
}

.burger-menu {
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 8px;
}

.burger-line {
    width: 24px;
    height: 2px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

.burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background-color: var(--bg-light);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-menu[aria-hidden="false"] {
    max-height: 400px;
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    padding: 16px;
}

.mobile-nav-link {
    padding: 12px 16px;
    color: var(--text-dark);
    font-weight: bold;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    background-color: var(--bg-gray);
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    margin-top: 60px;
    padding: 40px 0;
    background: linear-gradient(135deg, #fce4ec 0%, #ffffff 100%);
    background-image: url('https://vsesvit-ai.ams3.cdn.digitaloceanspaces.com/files/6/8/f/68f0a0da11ab5249907858.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(252, 228, 236, 0.95) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.hero-section > * {
    position: relative;
    z-index: 1;
}

[data-theme="dark"] .hero-section {
    background: linear-gradient(135deg, #3a1a2a 0%, #1a1a1a 100%);
}

[data-theme="dark"] .hero-section::before {
    background: linear-gradient(135deg, rgba(58, 26, 42, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%);
}

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

.hero-content h1 {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: bold;
}

.hero-subheadline {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 24px;
    font-weight: bold;
}

.offer-banner {
    background: linear-gradient(135deg, var(--accent-color) 0%, #ffa726 100%);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 24px;
    position: relative;
    box-shadow: var(--shadow-md);
}

.savings-badge {
    position: absolute;
    top: -12px;
    right: 16px;
    background-color: var(--secondary-color);
    color: var(--text-light);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
}

.offer-text {
    color: var(--text-dark);
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 12px;
}

.offer-pricing {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.old-price {
    font-size: 20px;
    color: var(--text-dark);
    text-decoration: line-through;
    opacity: 0.7;
    font-weight: bold;
}

.new-price {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-color);
}

.offer-consultation {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: bold;
}

.cta-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    margin-bottom: 32px;
    width: 100%;
}

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

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(234, 80, 150, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(234, 80, 150, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(234, 80, 150, 0.7);
    }
}

.trust-indicators {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px;
    background-color: var(--bg-light);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.trust-item svg {
    color: var(--primary-color);
    margin-bottom: 8px;
}

.trust-item span {
    font-size: 14px;
    font-weight: bold;
}

.hero-description {
    margin-bottom: 32px;
}

.hero-description p {
    margin-bottom: 16px;
    color: var(--text-gray);
    font-weight: bold;
}

.hero-image {
    margin-top: 32px;
}

.hero-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

/* Service Description Section */
.service-description-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.service-description-section h2 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: bold;
}

.intro-text {
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-gray);
    font-weight: bold;
}

.expandable-content {
    margin-bottom: 40px;
}

.expandable-item {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
}

.expandable-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background-color: var(--bg-gray);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.expandable-header:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.expandable-header .icon {
    flex-shrink: 0;
    color: var(--primary-color);
}

.expandable-header:hover .icon {
    color: var(--text-light);
}

.expandable-header span {
    flex: 1;
    font-weight: bold;
    font-size: 16px;
}

.expandable-header .chevron {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.expandable-header[aria-expanded="true"] .chevron {
    transform: rotate(180deg);
}

.expandable-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.expandable-header[aria-expanded="true"] + .expandable-body {
    max-height: 2000px;
}

.expandable-body > div {
    padding: 16px;
}

.expandable-body p {
    margin-bottom: 12px;
    color: var(--text-gray);
    font-weight: bold;
}

.expandable-body h4 {
    margin-top: 16px;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: bold;
}

.treatment-list {
    list-style: none;
}

.treatment-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.treatment-list svg {
    flex-shrink: 0;
    color: var(--primary-color);
    margin-top: 2px;
}

.treatment-list li span {
    font-weight: bold;
}

.methodology-content {
    margin-top: 40px;
    padding: 32px;
    background-color: var(--bg-gray);
    border-radius: 12px;
}

.methodology-content h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: bold;
}

.methodology-content p {
    margin-bottom: 16px;
    color: var(--text-gray);
    font-weight: bold;
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 14px 28px;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
    margin-top: 24px;
}

.cta-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

/* Benefits Section */
.benefits-section {
    padding: 60px 0;
    background-color: var(--bg-gray);
}

.benefits-section h2 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-dark);
    font-weight: bold;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.benefit-card {
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

.benefit-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.benefit-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: bold;
}

.benefit-card p {
    color: var(--text-gray);
    line-height: 1.6;
    font-weight: bold;
}

.testimonial-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: var(--text-light);
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 32px;
}

.testimonial-banner .stars {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--accent-color);
}

.testimonial-banner p {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: bold;
}

.testimonial-banner .rating {
    font-size: 14px;
    opacity: 0.9;
    font-weight: bold;
}

/* Video Section */
.video-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.video-section h2 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: bold;
}

.video-subheadline {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 24px;
    font-weight: bold;
}

.video-intro {
    text-align: center;
    margin-bottom: 32px;
    color: var(--text-gray);
    font-weight: bold;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-takeaways {
    max-width: 800px;
    margin: 0 auto 32px;
}

.video-takeaways h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: bold;
}

.video-takeaways ul {
    list-style: none;
}

.video-takeaways li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-gray);
    font-weight: bold;
}

.video-takeaways svg {
    flex-shrink: 0;
    color: var(--primary-color);
    margin-top: 2px;
}

.video-cta {
    text-align: center;
}

.video-cta p {
    margin-bottom: 16px;
    color: var(--text-gray);
    font-weight: bold;
}

.cta-link {
    color: var(--primary-color);
    font-weight: bold;
    text-decoration: underline;
}

/* Gallery Section */
.gallery-section {
    padding: 60px 0;
    background-color: var(--bg-gray);
}

.gallery-section h2 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: bold;
}

.gallery-subheadline {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 40px;
    font-weight: bold;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

.gallery-item {
    position: relative;
    background-color: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

.gallery-label {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
    color: var(--text-light);
}

.gallery-label.before {
    background-color: #f44336;
}

.gallery-label.during {
    background-color: #ff9800;
}

.gallery-label.after {
    background-color: #4caf50;
}

.gallery-caption {
    padding: 16px;
    color: var(--text-gray);
    font-size: 14px;
    font-weight: bold;
}

.gallery-credibility {
    max-width: 800px;
    margin: 0 auto 24px;
    text-align: center;
}

.gallery-credibility p {
    margin-bottom: 12px;
    color: var(--text-gray);
    font-weight: bold;
}

.privacy-notice {
    font-size: 14px;
    font-style: italic;
    font-weight: bold;
}

.trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.badge {
    padding: 8px 16px;
    background-color: var(--primary-color);
    color: var(--text-light);
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.faq-section h2 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: bold;
}

.faq-intro {
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-gray);
    font-weight: bold;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto 40px;
}

.faq-item {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background-color: var(--bg-gray);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.faq-question:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: bold;
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.faq-question:hover .faq-icon {
    color: var(--text-light);
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-question[aria-expanded="true"] + .faq-answer {
    max-height: 1000px;
}

.faq-answer > div {
    padding: 20px;
}

.faq-answer p {
    margin-bottom: 12px;
    color: var(--text-gray);
    font-weight: bold;
}

.faq-answer ul {
    list-style: none;
    margin-left: 0;
}

.faq-answer li {
    margin-bottom: 8px;
    padding-left: 24px;
    position: relative;
    font-weight: bold;
}

.faq-answer li::before {
    content: "•";
    position: absolute;
    left: 8px;
    color: var(--primary-color);
    font-weight: bold;
}

.faq-contact {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.faq-contact p {
    margin-bottom: 24px;
    color: var(--text-gray);
    font-size: 18px;
    font-weight: bold;
}

.faq-contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #25d366;
    color: var(--text-light);
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
}

/* Booking Section */
.booking-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.booking-section h2 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: bold;
}

.booking-subheadline {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 40px;
    font-weight: bold;
}

.booking-form {
    max-width: 600px;
    margin: 0 auto 40px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: var(--text-dark);
}

.required {
    color: var(--error-color);
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: 'TransboldNeue Euro Bold', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    transition: all 0.3s ease;
    font-weight: bold;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(234, 80, 150, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-weight: bold;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
}

.error-message {
    display: none;
    color: var(--error-color);
    font-size: 14px;
    margin-top: 4px;
    font-weight: bold;
}

.form-group.error input,
.form-group.error textarea {
    border-color: var(--error-color);
}

.form-group.error .error-message {
    display: block;
}

.privacy-statement {
    text-align: center;
    margin-bottom: 24px;
    color: var(--text-gray);
    font-size: 14px;
    font-weight: bold;
}

.submit-button {
    width: 100%;
    padding: 16px;
    background-color: var(--primary-color);
    color: var(--text-light);
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.submit-button:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.button-loader {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--text-light);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

@keyframes spin {
    to { transform: translateY(-50%) rotate(360deg); }
}

.submit-button.loading .button-text {
    opacity: 0.6;
}

.submit-button.loading .button-loader {
    display: block;
}

.form-success,
.form-error {
    display: none;
    padding: 16px;
    border-radius: 8px;
    margin-top: 16px;
    text-align: center;
    font-weight: bold;
}

.form-success {
    background-color: rgba(76, 175, 80, 0.1);
    color: var(--success-color);
    border: 1px solid var(--success-color);
}

.form-error {
    background-color: rgba(244, 67, 54, 0.1);
    color: var(--error-color);
    border: 1px solid var(--error-color);
}

.alternative-contact {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.alternative-contact h3 {
    font-size: 22px;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: bold;
}

.contact-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.contact-option {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
    color: var(--text-dark);
    font-weight: bold;
}

.contact-option:hover {
    border-color: var(--primary-color);
    background-color: var(--bg-gray);
}

.contact-option.whatsapp {
    border-color: #25d366;
    color: #25d366;
}

.contact-option.whatsapp:hover {
    background-color: #25d366;
    color: var(--text-light);
}

.contact-option.phone {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.contact-option.phone:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.contact-option.email {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.contact-option.email:hover {
    background-color: var(--secondary-color);
    color: var(--text-light);
}

.contact-option.instagram {
    border-color: #e1306c;
    color: #e1306c;
}

.contact-option.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--text-light);
}

/* Location Section */
.location-section {
    padding: 60px 0;
    background-color: var(--bg-gray);
}

.location-section h2 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: bold;
}

.location-subheadline {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 40px;
    font-weight: bold;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
}

.contact-icon {
    flex-shrink: 0;
    color: var(--primary-color);
}

.whatsapp-icon {
    color: #25d366;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: bold;
}

.contact-item p,
.contact-item a {
    color: var(--text-gray);
    margin-bottom: 4px;
    font-weight: bold;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.helper-text {
    font-size: 14px;
    font-style: italic;
    font-weight: bold;
}

.map-link {
    display: inline-block;
    margin-top: 8px;
    color: var(--primary-color);
    font-weight: bold;
}

.map-container {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

.directions-button {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: bold;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.directions-button:hover {
    background-color: var(--primary-hover);
}

.location-description {
    max-width: 900px;
    margin: 0 auto;
}

.location-description p {
    margin-bottom: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    font-weight: bold;
}

/* Footer */
footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.footer-top {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

.footer-brand {
    text-align: center;
}

.footer-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 16px;
    object-fit: cover;
}

.footer-tagline {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 12px;
}

.footer-mission {
    color: var(--text-gray);
    line-height: 1.6;
    font-weight: bold;
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: bold;
}

.footer-links nav,
.footer-services nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a,
.footer-services a {
    color: var(--text-gray);
    transition: color 0.3s ease;
    font-weight: bold;
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--primary-color);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-gray);
    font-weight: bold;
}

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

.footer-contact-item a {
    color: var(--text-gray);
    transition: color 0.3s ease;
    font-weight: bold;
}

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

.footer-social {
    text-align: center;
    margin-bottom: 32px;
}

.footer-social h4 {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: bold;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.social-links a {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    transform: translateY(-3px);
}

.footer-cta {
    text-align: center;
    padding: 32px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.footer-cta h4 {
    font-size: 22px;
    margin-bottom: 16px;
    font-weight: bold;
}

.footer-cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.footer-cta-button:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.footer-seo {
    padding: 32px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-seo p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.8;
    font-weight: bold;
}

.footer-bottom {
    padding: 24px 0;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.copyright {
    color: var(--text-gray);
    font-size: 14px;
    font-weight: bold;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-gray);
    font-weight: bold;
}

.privacy-link,
.terms-link {
    color: var(--text-gray);
    cursor: pointer;
    transition: color 0.3s ease;
    font-weight: bold;
}

.privacy-link:hover,
.terms-link:hover {
    color: var(--primary-color);
}

.separator {
    color: var(--text-gray);
    font-weight: bold;
}

.medical-disclaimer {
    font-size: 12px;
    font-style: italic;
    font-weight: bold;
}

/* Privacy Modal */
.privacy-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    overflow-y: auto;
    padding: 16px;
}

.privacy-modal[aria-hidden="false"] {
    display: flex;
    align-items: center;
    justify-content: center;
}

.privacy-modal-content {
    background-color: var(--bg-light);
    border-radius: 12px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
}

.privacy-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    border-bottom: 1px solid var(--border-color);
}

.privacy-modal-header h2 {
    font-size: 24px;
    color: var(--text-dark);
    font-weight: bold;
}

.privacy-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--bg-gray);
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.privacy-close:hover {
    background-color: var(--error-color);
    color: var(--text-light);
}

.privacy-modal-body {
    padding: 24px;
    color: var(--text-dark);
    font-weight: bold;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .header-container {
        height: 70px;
    }

    .logo img {
        width: 60px;
        height: 60px;
    }

    .desktop-nav {
        display: flex;
        gap: 24px;
    }

    .nav-link {
        color: var(--text-dark);
        font-weight: bold;
        transition: color 0.3s ease;
        position: relative;
    }

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

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

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

    .cta-button {
        display: inline-block;
        background-color: var(--primary-color);
        color: var(--text-light);
        padding: 12px 24px;
        border-radius: 8px;
        font-weight: bold;
        transition: all 0.3s ease;
    }

    .cta-button:hover {
        background-color: var(--primary-hover);
    }

    .burger-menu {
        display: none;
    }

    .mobile-menu {
        display: none;
    }

    .hero-section {
        margin-top: 70px;
        padding: 80px 0;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .hero-subheadline {
        font-size: 24px;
    }

    .hero-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 48px;
        align-items: center;
    }

    .hero-image {
        margin-top: 0;
    }

    .cta-primary {
        width: auto;
    }

    .trust-indicators {
        grid-template-columns: repeat(4, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .contact-options {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-brand {
        text-align: left;
    }

    .footer-logo {
        margin: 0 0 16px 0;
    }
}

/* Print Styles */
@media print {
    header,
    .cta-primary,
    .cta-secondary,
    .whatsapp-button,
    .burger-menu,
    .theme-toggle,
    footer {
        display: none;
    }

    body {
        color: #000;
        background: #fff;
    }
}
