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

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

ul {
    list-style: none;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.8rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #27ae60;
    color: #ffffff;
}

.btn-accept:hover {
    background: #229954;
}

.btn-reject {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Navigation */
.main-nav {
    position: sticky;
    top: 0;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: #34495e;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #3498db;
    transition: width 0.3s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Split Section */
.hero-split {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

.hero-left,
.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-left {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 3rem;
}

.hero-content {
    max-width: 550px;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.95;
}

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

/* Split Sections */
.split-reverse,
.split-default {
    display: flex;
    min-height: 500px;
    align-items: stretch;
}

.split-reverse {
    flex-direction: row-reverse;
}

.split-image,
.split-text {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.split-image {
    background: #f8f9fa;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-text {
    padding: 4rem 3rem;
}

.split-text h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
    line-height: 1.3;
}

.split-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #ffffff;
    color: #667eea;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background: #3498db;
    color: #ffffff;
    margin-top: 1rem;
}

.btn-secondary:hover {
    background: #2980b9;
}

.btn-cta {
    background: #e74c3c;
    color: #ffffff;
    font-size: 1.1rem;
}

.btn-cta:hover {
    background: #c0392b;
    transform: scale(1.05);
}

/* Services Preview */
.services-preview {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.section-header p {
    font-size: 1.15rem;
    color: #666;
}

.services-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.service-card.featured {
    border: 3px solid #3498db;
}

.service-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #e74c3c;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-icon {
    color: #3498db;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.btn-service {
    background: #3498db;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: #2980b9;
}

/* Benefits List */
.benefits-list {
    margin-top: 1.5rem;
}

.benefits-list li {
    padding: 0.7rem 0 0.7rem 2rem;
    position: relative;
    color: #555;
    font-size: 1.05rem;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Testimonials Split */
.testimonials-split {
    display: flex;
    min-height: 400px;
}

.testimonial-left,
.testimonial-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.testimonial-left {
    background: #34495e;
}

.testimonial-right {
    background: #2c3e50;
}

.testimonial-content {
    max-width: 500px;
    color: #ffffff;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.testimonial-author span {
    opacity: 0.8;
    font-size: 0.95rem;
}

/* CTA Centered */
.cta-centered {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Process Split */
.process-split {
    display: flex;
    min-height: 600px;
}

.process-text,
.process-visual {
    flex: 1;
}

.process-text {
    padding: 4rem 3rem;
    background: #ffffff;
}

.process-text h2 {
    font-size: 2.3rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.step p {
    color: #666;
    line-height: 1.6;
}

.process-visual {
    background: #f8f9fa;
}

.process-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Additional Services */
.additional-services {
    padding: 5rem 2rem;
    background: #ffffff;
}

.additional-services h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.additional-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.additional-card {
    flex: 1;
    min-width: 300px;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}

.additional-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.additional-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-price-medium {
    font-size: 1.5rem;
    font-weight: 700;
    color: #27ae60;
    margin: 1rem 0;
}

/* Booking Section */
.booking-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.booking-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: stretch;
}

.booking-left,
.booking-right {
    flex: 1;
}

.booking-left h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.booking-left p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.booking-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.benefit-item svg {
    color: #27ae60;
    flex-shrink: 0;
}

.benefit-item span {
    font-size: 1.05rem;
    color: #2c3e50;
}

.booking-form {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.btn-submit {
    background: #27ae60;
    color: #ffffff;
    padding: 1rem 3rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #229954;
}

/* Final CTA Split */
.final-cta-split {
    display: flex;
    min-height: 350px;
    background: #2c3e50;
}

.final-left,
.final-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    color: #ffffff;
}

.final-left {
    background: #34495e;
}

.final-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    max-width: 500px;
}

.final-left p {
    font-size: 1.1rem;
    max-width: 500px;
    opacity: 0.9;
}

.final-right {
    background: #2c3e50;
}

.btn-large {
    background: #e74c3c;
    color: #ffffff;
    padding: 1.3rem 3rem;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.btn-large:hover {
    background: #c0392b;
    transform: scale(1.05);
}

.final-note {
    font-size: 0.95rem;
    opacity: 0.8;
}

/* Footer */
.main-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto 3rem;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-section {
    flex: 1;
    min-width: 220px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p,
.footer-section li {
    color: #bbb;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-section a {
    color: #bbb;
}

.footer-section a:hover {
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #888;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.sticky-btn {
    background: #e74c3c;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(231, 76, 60, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(231, 76, 60, 0.5);
}

/* Page Hero Split */
.page-hero-split {
    display: flex;
    min-height: 450px;
    align-items: stretch;
}

.page-hero-split .hero-left {
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
}

/* About Split */
.about-split {
    display: flex;
    min-height: 500px;
}

.about-text,
.about-image {
    flex: 1;
}

.about-text {
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.about-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.about-image {
    background: #f8f9fa;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Philosophy Section */
.philosophy-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.philosophy-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.philosophy-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.philosophy-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
}

.philosophy-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.philosophy-card p {
    color: #666;
    line-height: 1.6;
}

/* Team Split Reverse */
.team-split-reverse {
    display: flex;
    flex-direction: row-reverse;
    min-height: 500px;
}

.team-text,
.team-image {
    flex: 1;
}

.team-text {
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-text h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.team-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.team-image {
    background: #f8f9fa;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Values Section */
.values-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.values-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
}

.value-number {
    font-size: 3rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.value-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.value-item p {
    color: #666;
    line-height: 1.6;
}

/* Stats Split */
.stats-split {
    display: flex;
    min-height: 400px;
    background: #f8f9fa;
}

.stats-left,
.stats-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 3rem;
}

.stats-left h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.stats-left p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
}

.stats-right {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-item {
    flex: 1;
    min-width: 150px;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-size: 1rem;
}

/* Services Detail Split */
.main-services {
    padding: 5rem 2rem;
    background: #ffffff;
}

.main-services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 4rem;
}

.service-detail-split {
    max-width: 1200px;
    margin: 0 auto 4rem;
    display: flex;
    gap: 3rem;
    align-items: center;
    padding: 3rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.service-detail-split.reverse {
    flex-direction: row-reverse;
    background: #ffffff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.service-detail-left,
.service-detail-right {
    flex: 1;
}

.service-badge-top {
    display: inline-block;
    background: #3498db;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-badge-top.popular {
    background: #e74c3c;
}

.service-detail-left h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-price-large {
    font-size: 2.2rem;
    font-weight: 700;
    color: #27ae60;
    margin: 1.5rem 0;
}

.service-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.btn-service-large {
    background: #3498db;
    color: #ffffff;
    padding: 1.2rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    width: 100%;
    max-width: 400px;
    transition: all 0.3s ease;
}

.btn-service-large:hover {
    background: #2980b9;
}

.service-detail-right h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-includes {
    margin-bottom: 1.5rem;
}

.service-includes li {
    padding: 0.7rem 0 0.7rem 2rem;
    position: relative;
    color: #555;
}

.service-includes li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

.service-note {
    background: #e8f4f8;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.service-note strong {
    color: #2c3e50;
}

/* Additional Offers */
.additional-offers {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.additional-offers h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.additional-list {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.additional-item-split {
    display: flex;
    gap: 3rem;
    align-items: center;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.additional-item-split.reverse {
    flex-direction: row-reverse;
}

.additional-left,
.additional-right {
    flex: 1;
}

.additional-left h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.additional-left p {
    color: #666;
    line-height: 1.7;
}

.additional-right h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.additional-right ul {
    margin-bottom: 1.5rem;
}

.additional-right li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: #555;
}

.additional-right li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #3498db;
    font-size: 1.5rem;
    line-height: 0.7;
}

/* Comparison Section */
.comparison-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

.comparison-section h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.comparison-table {
    max-width: 1200px;
    margin: 0 auto;
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
}

.comparison-header,
.comparison-row {
    display: flex;
    gap: 1px;
    background: #ddd;
}

.comparison-cell {
    flex: 1;
    padding: 1.5rem 1rem;
    background: #ffffff;
    text-align: center;
}

.comparison-header .comparison-cell {
    background: #3498db;
    color: #ffffff;
    font-weight: 700;
}

.comparison-header .comparison-cell.featured {
    background: #e74c3c;
}

.comparison-cell.label {
    text-align: left;
    font-weight: 600;
    background: #f8f9fa;
}

.comparison-cell.empty {
    background: transparent;
}

/* FAQ Split */
.faq-split {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.faq-split {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-left,
.faq-right {
    flex: 1;
}

.faq-left h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.faq-left p {
    font-size: 1.1rem;
    color: #666;
}

.faq-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* Contact Info Split */
.contact-info-split {
    display: flex;
    min-height: 500px;
    gap: 3rem;
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-left,
.contact-right {
    flex: 1;
}

.contact-left h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.contact-detail {
    margin-bottom: 2rem;
}

.contact-detail h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #3498db;
}

.contact-detail p {
    color: #666;
    line-height: 1.7;
}

.contact-detail a {
    color: #3498db;
}

.contact-detail a:hover {
    text-decoration: underline;
}

.contact-note {
    background: #e8f4f8;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #3498db;
    margin-top: 2rem;
}

.contact-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* Contact Reasons */
.contact-reasons {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.contact-reasons h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.reasons-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.reason-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
}

.reason-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.reason-card p {
    color: #666;
    line-height: 1.6;
}

/* Visit Info Split */
.visit-info-split {
    display: flex;
    min-height: 450px;
}

.visit-text,
.visit-image {
    flex: 1;
}

.visit-text {
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.visit-text h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.visit-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.visit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* FAQ Contact */
.faq-contact {
    padding: 5rem 2rem;
    background: #ffffff;
}

.faq-contact h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.faq-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.faq-grid .faq-item {
    flex: 1;
    min-width: 280px;
}

/* Map Placeholder */
.map-placeholder {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.map-placeholder h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.map-box {
    max-width: 800px;
    margin: 0 auto;
    background: #e8f4f8;
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
}

.map-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

/* Thanks Page */
.thanks-hero {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    text-align: center;
    color: #ffffff;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
}

.thanks-icon {
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.thanks-lead {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.selected-service-box {
    background: rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
}

/* Thanks Next Steps */
.thanks-next-steps {
    padding: 5rem 2rem;
    background: #ffffff;
}

.thanks-next-steps h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.steps-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    min-width: 250px;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.step-card .step-number {
    width: 70px;
    height: 70px;
    background: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.step-card p {
    color: #666;
    line-height: 1.6;
}

/* Thanks Resources */
.thanks-resources {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.thanks-resources h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.resources-split {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.resource-card {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
}

.resource-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.resource-card p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Thanks Contact Reminder */
.thanks-contact-reminder {
    padding: 5rem 2rem;
    background: #ffffff;
}

.reminder-box {
    max-width: 700px;
    margin: 0 auto;
    background: #fff3cd;
    padding: 2.5rem;
    border-radius: 10px;
    border-left: 5px solid #f39c12;
    text-align: center;
}

.reminder-box h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.reminder-box p {
    color: #666;
    line-height: 1.7;
}

.reminder-box a {
    color: #3498db;
    font-weight: 600;
}

/* Legal Page */
.legal-page {
    padding: 5rem 2rem;
    background: #ffffff;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-intro {
    font-size: 1.1rem;
    color: #999;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #34495e;
}

.legal-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-content li {
    list-style: disc;
    color: #555;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: #3498db;
}

.legal-content a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-split,
    .split-reverse,
    .split-default,
    .testimonials-split,
    .process-split,
    .about-split,
    .team-split-reverse,
    .stats-split,
    .final-cta-split,
    .page-hero-split,
    .visit-info-split,
    .contact-info-split,
    .booking-split,
    .faq-split,
    .service-detail-split,
    .additional-item-split {
        flex-direction: column;
    }

    .split-reverse,
    .team-split-reverse,
    .additional-item-split.reverse,
    .service-detail-split.reverse {
        flex-direction: column;
    }

    .hero-content h1 {
        font-size: 2.3rem;
    }

    .split-text h2,
    .about-text h2,
    .team-text h2,
    .visit-text h2 {
        font-size: 1.9rem;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        background: #ffffff;
        width: 250px;
        height: calc(100vh - 70px);
        flex-direction: column;
        padding: 2rem;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        align-items: flex-start;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .sticky-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 600px) {
    html {
        font-size: 14px;
    }

    .hero-content h1 {
        font-size: 1.9rem;
    }

    .cta-box h2 {
        font-size: 1.8rem;
    }

    .services-grid,
    .philosophy-grid,
    .values-split,
    .reasons-grid {
        gap: 1.5rem;
    }

    .booking-split {
        padding: 2rem 1rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }
}
