/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #857160;
    --primary-dark: #6f5c4e;
    --secondary-color: #A65E68;
    --text-color: #333;
    --text-light: #666;
    --white: #ffffff;
    --light-gray: #f9f9f9;
    --border-color: #eaeaea;
    --overlay-color: #7b5243;
    --shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

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

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

ul {
    list-style: none;
}

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

/* Header */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo img {
    max-width: 162px;
    height: auto;
}

.nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--text-color);
    position: relative;
    padding: 5px 0;
}

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

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

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    transition: all 0.3s ease;
}

.header-cta {
    display: flex;
    align-items: center;
}

.contact-info-bar {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 0;
    font-size: 12px;
}

.contact-info {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

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

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

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

.btn-text {
    background: none;
    color: var(--primary-color);
    padding: 12px 0;
    font-weight: 600;
}

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

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay-color);
    opacity: 0.7;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    text-align: center;
    padding: 0 20px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s backwards;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--light-gray);
}

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

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* About Preview */
.about-preview {
    padding: 80px 0;
}

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

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about-text p {
    margin-bottom: 15px;
    color: var(--text-light);
    line-height: 1.8;
}

.about-image img {
    border-radius: 12px;
    box-shadow: var(--shadow);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* About Section */
.about-section {
    padding: 80px 0;
}

.about-content-full {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text-full h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about-text-full h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin: 30px 0 15px;
    color: var(--text-color);
}

.about-text-full p {
    margin-bottom: 15px;
    color: var(--text-light);
    line-height: 1.8;
}

.about-text-full ul {
    list-style: none;
    margin-top: 15px;
}

.about-text-full ul li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-light);
}

.about-text-full ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.about-img {
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.about-img:hover {
    transform: scale(1.02);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-header p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-form-container {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.form-status {
    margin-top: 16px;
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.5;
}

.form-status--success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-status--error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(133, 113, 96, 0.1);
}

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

.contact-info-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.contact-info-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-item strong {
    display: block;
    margin-bottom: 5px;
    color: var(--text-color);
}

.info-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-hours {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.contact-hours h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-hours ul {
    list-style: none;
}

.contact-hours ul li {
    padding: 10px 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.contact-hours ul li:last-child {
    border-bottom: none;
}

/* Services Section */
.services-section {
    padding: 80px 0;
}

.services-intro {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-intro h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.services-intro p {
    color: var(--text-light);
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    align-items: stretch;
}

.service-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card .service-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-card .service-features {
    margin-bottom: 20px;
}

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

.service-image {
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.service-price {
    margin-top: auto;
    padding: 18px 20px;
    background: linear-gradient(135deg, rgba(133, 113, 96, 0.08), rgba(166, 94, 104, 0.08));
    border-radius: 10px;
    border: 1px solid var(--border-color);
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 10px 14px;
}

.service-price .price-current {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1;
}

.service-price .price-original {
    font-size: 1.05rem;
    color: var(--text-light);
    text-decoration: line-through;
    line-height: 1;
}

.service-price .price-label {
    flex-basis: 100%;
    color: var(--text-color);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.5;
}

.service-price .price-label .zh {
    display: inline-block;
    margin-left: 6px;
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 0.9rem;
}

.service-price .price-note {
    flex-basis: 100%;
    color: var(--text-light);
    font-size: 0.85rem;
    font-style: italic;
}

.service-price .price-note .zh {
    display: inline-block;
    margin-left: 6px;
    color: var(--secondary-color);
    font-style: normal;
}

.acupuncture-price {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
    gap: 10px 16px;
    margin-top: 22px;
    padding: 16px 28px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

.acupuncture-intro .acupuncture-price {
    background: linear-gradient(135deg, rgba(133, 113, 96, 0.1), rgba(166, 94, 104, 0.1));
    border: 1px solid var(--border-color);
}

.acupuncture-price .price-current {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1;
}

.acupuncture-price .price-original {
    font-size: 1.1rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.acupuncture-price .price-label {
    flex-basis: 100%;
    text-align: center;
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.95rem;
}

.acupuncture-price .price-label .zh {
    color: var(--secondary-color);
    margin-left: 6px;
    font-weight: 500;
}

.promo-note {
    margin-top: 35px;
    text-align: center;
    color: var(--text-light);
    font-size: 1rem;
    font-style: italic;
}

.promo-note .zh {
    color: var(--secondary-color);
    margin-left: 6px;
    font-style: normal;
}

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

.benefits-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-color);
}

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

.benefit-item {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.benefit-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.benefit-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Acupuncture Section */
.acupuncture-section {
    padding: 80px 0;
    background-color: var(--white);
}

.acupuncture-intro {
    text-align: center;
    margin-bottom: 60px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.acupuncture-intro h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.acupuncture-intro .zh {
    display: block;
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.acupuncture-intro p {
    color: var(--text-light);
    line-height: 1.8;
}

.acupuncture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.acupuncture-feature {
    max-width: 900px;
    margin: 0 auto 60px;
}

.acupuncture-feature-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    max-height: 420px;
}

.acupuncture-feature-image img {
    width: 100%;
    height: 100%;
    max-height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.acupuncture-feature-image:hover img {
    transform: scale(1.03);
}

.acu-card {
    background: var(--white);
    border-left: 4px solid var(--primary-color);
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 30px 28px;
    transition: all 0.3s ease;
}

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

.acu-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    color: var(--primary-color);
    margin-bottom: 6px;
}

.acu-card .zh {
    display: block;
    color: var(--secondary-color);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 14px;
}

.acu-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 14px;
}

.acu-card .acu-list-title {
    font-weight: 600;
    color: var(--text-color);
    margin-top: 12px;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.acu-card ul {
    list-style: none;
}

.acu-card ul li {
    padding: 4px 0 4px 22px;
    position: relative;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.acu-card ul li::before {
    content: '•';
    position: absolute;
    left: 6px;
    color: var(--primary-color);
    font-weight: bold;
}

.tcm-quote {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    border-radius: 12px;
    padding: 50px 40px;
    text-align: center;
    margin-bottom: 60px;
}

.tcm-quote .tcm-zh {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.tcm-quote blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.5;
}

.tcm-quote p {
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.8;
    opacity: 0.95;
}

.combo-benefits {
    background: var(--light-gray);
    border-radius: 12px;
    padding: 50px 40px;
}

.combo-benefits h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 10px;
}

.combo-benefits .zh {
    display: block;
    text-align: center;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.combo-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 15px;
    list-style: none;
}

.combo-list li {
    background: var(--white);
    padding: 16px 20px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    color: var(--text-color);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.combo-list li::before {
    content: '✅';
    flex-shrink: 0;
}

.combo-list li .zh {
    display: block;
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 400;
    margin-top: 2px;
}

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

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

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

.cta-section .btn-primary:hover {
    background-color: var(--light-gray);
    color: var(--primary-dark);
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-section p {
    line-height: 1.8;
    opacity: 0.9;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--white);
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.8;
}

/* Modal Overlay (shared) */
.modal-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.55);
    z-index: 9998;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(2px);
}

.modal-overlay.active {
    display: flex;
}

/* Cookie Consent Modal */
.cookie-modal {
    background: var(--white);
    border-radius: 16px;
    padding: 40px 36px;
    max-width: 520px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    text-align: center;
    animation: modalSlideUp 0.4s ease;
}

.cookie-modal-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.cookie-modal h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.cookie-modal p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 28px;
    font-size: 0.97rem;
}

.cookie-modal-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.cookie-modal-buttons .btn {
    min-width: 130px;
}

/* Promo Popup Modal */
.promo-modal {
    background: var(--white);
    border-radius: 16px;
    max-width: 640px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    animation: modalSlideUp 0.4s ease;
}

.promo-modal-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 28px 32px 22px;
    position: relative;
    text-align: center;
}

.promo-modal-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: rgba(255,255,255,0.2);
    border: none;
    color: var(--white);
    font-size: 1.4rem;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    line-height: 1;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-modal-close:hover {
    background: rgba(255,255,255,0.35);
}

.promo-lang-toggle {
    position: absolute;
    top: 14px;
    right: 60px;
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.2s ease;
    letter-spacing: 0.5px;
}

.promo-lang-toggle:hover {
    background: rgba(255,255,255,0.35);
}

.promo-modal-header .promo-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.4);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.promo-modal-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.65rem;
    margin-bottom: 6px;
}

.promo-modal-header p {
    font-size: 0.95rem;
    opacity: 0.9;
}

.promo-modal-body {
    padding: 24px 32px 28px;
}

.promo-services-list {
    list-style: none;
    margin-bottom: 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.promo-services-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--light-gray);
    border-radius: 10px;
    padding: 12px 16px;
    gap: 10px;
}

.promo-services-list li .promo-service-name {
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.95rem;
}

.promo-services-list li .promo-prices {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-shrink: 0;
}

.promo-services-list li .promo-price-now {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.promo-services-list li .promo-price-was {
    font-size: 0.85rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.promo-modal-note {
    font-size: 0.82rem;
    color: var(--text-light);
    font-style: italic;
    text-align: center;
    margin-bottom: 20px;
}

.promo-modal-cta {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 30px;
    font-size: 1.05rem;
    border-radius: 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.promo-modal-cta:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    color: var(--white);
}

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

@media (max-width: 600px) {
    .cookie-modal {
        padding: 28px 20px;
    }

    .promo-modal-header,
    .promo-modal-body {
        padding-left: 20px;
        padding-right: 20px;
    }

    .promo-services-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .about-content,
    .about-content-full,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .nav-list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-list.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .header-cta {
        display: none;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}
