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

:root {
    --primary-color: #2c2c2c;
    --secondary-color: #8b7355;
    --accent-color: #d4a574;
    --text-color: #333333;
    --light-bg: #f9f7f4;
    --white: #ffffff;
    --gray: #666666;
    --light-gray: #e5e5e5;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

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

.container-fluid {
    padding: 0 20px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 20px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.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: 20px;
}

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

.cookie-actions {
    display: flex;
    gap: 10px;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition);
    font-size: 14px;
}

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

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

.btn-reject {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

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

/* Floating Navigation */
.floating-nav {
    position: fixed;
    top: 30px;
    right: 30px;
    background: var(--white);
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-brand {
    font-weight: 700;
    font-size: 20px;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: var(--gray);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--secondary-color);
}

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

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

/* Hero Asymmetric */
.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 20px 80px;
}

.hero-content-offset {
    max-width: 600px;
    margin-left: 10%;
    z-index: 2;
}

.hero-title {
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: clamp(18px, 2vw, 22px);
    color: var(--gray);
    margin-bottom: 35px;
    line-height: 1.5;
}

.hero-image-overlap {
    position: absolute;
    right: 5%;
    top: 15%;
    width: 450px;
    height: 600px;
    z-index: 1;
}

.hero-image-overlap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* CTA Buttons */
.cta-primary {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition);
}

.cta-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    padding: 16px 40px;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition);
}

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

.cta-large {
    padding: 20px 50px;
    font-size: 18px;
}

.link-arrow {
    color: var(--secondary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.link-arrow:hover {
    gap: 12px;
}

/* Problem Section */
.problem-section {
    padding: 100px 20px;
    background: var(--light-bg);
}

.problem-grid-asymmetric {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.problem-text-left {
    flex: 1.5;
}

.problem-text-left h2 {
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 25px;
    line-height: 1.3;
    color: var(--primary-color);
}

.problem-text-left p {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--gray);
}

.problem-visual-right {
    flex: 1;
}

.visual-card {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.stat-text {
    font-size: 16px;
    color: var(--gray);
}

/* Philosophy Section */
.philosophy-section {
    padding: 100px 20px;
}

.philosophy-offset-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.philosophy-image-block {
    flex: 1;
    margin-top: 60px;
}

.philosophy-image-block img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.philosophy-text-block {
    flex: 1;
}

.section-label {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.philosophy-text-block h2 {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 25px;
    line-height: 1.2;
    color: var(--primary-color);
}

.philosophy-text-block p {
    font-size: 17px;
    margin-bottom: 20px;
    color: var(--gray);
    line-height: 1.7;
}

/* How It Works */
.how-it-works {
    padding: 100px 20px;
    background: var(--white);
}

.section-title-center {
    text-align: center;
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 60px;
    color: var(--primary-color);
}

.steps-asymmetric {
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    align-items: flex-start;
}

.step-left {
    margin-right: 80px;
}

.step-right {
    margin-left: 80px;
    flex-direction: row-reverse;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-color);
    opacity: 0.4;
    min-width: 80px;
}

.step h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.step p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.6;
}

/* Testimonials */
.testimonials-section {
    padding: 100px 20px;
    background: var(--light-bg);
}

.section-title-offset {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 60px;
    color: var(--primary-color);
    margin-left: 10%;
}

.testimonials-overlap {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    flex: 1;
    min-width: 280px;
}

.card-1 {
    transform: translateY(-20px);
}

.card-2 {
    transform: translateY(20px);
}

.card-3 {
    transform: translateY(-10px);
}

.testimonial-text {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-color);
    line-height: 1.7;
}

.testimonial-author {
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
}

/* Services Section */
.services-section {
    padding: 100px 20px;
}

.services-intro-asymmetric {
    max-width: 700px;
    margin-bottom: 60px;
    margin-left: 5%;
}

.services-intro-asymmetric h2 {
    font-size: clamp(36px, 4vw, 52px);
    margin-bottom: 20px;
    color: var(--primary-color);
}

.services-intro-asymmetric p {
    font-size: 18px;
    color: var(--gray);
}

.services-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.card-large {
    flex: 1 1 calc(60% - 15px);
}

.card-small {
    flex: 1 1 calc(40% - 15px);
}

.card-medium {
    flex: 1 1 calc(50% - 15px);
}

.card-premium {
    flex: 1 1 100%;
    background: linear-gradient(135deg, #2c2c2c 0%, #4a4a4a 100%);
    color: var(--white);
}

.service-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.card-premium .service-content h3 {
    color: var(--white);
}

.service-content p {
    font-size: 15px;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.card-premium .service-content p {
    color: rgba(255, 255, 255, 0.85);
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.card-premium .service-price {
    color: var(--accent-color);
}

.btn-service {
    width: 100%;
    background: var(--primary-color);
    color: var(--white);
    padding: 14px 20px;
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition);
    font-size: 15px;
}

.btn-service:hover {
    background: var(--secondary-color);
}

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

.btn-premium:hover {
    background: var(--white);
}

/* Trust Section */
.trust-section {
    padding: 100px 20px;
    background: var(--light-bg);
}

.trust-container-offset {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.trust-text {
    flex: 1;
}

.trust-text h2 {
    font-size: clamp(32px, 4vw, 42px);
    margin-bottom: 30px;
    color: var(--primary-color);
}

.trust-list {
    list-style: none;
    margin-bottom: 30px;
}

.trust-list li {
    font-size: 17px;
    color: var(--gray);
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.trust-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.trust-image {
    flex: 1;
}

.trust-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

/* Booking Form Section */
.booking-section {
    padding: 100px 20px;
}

.booking-wrapper-asymmetric {
    max-width: 900px;
    margin: 0 auto;
}

.booking-intro {
    margin-bottom: 50px;
}

.booking-intro h2 {
    font-size: clamp(32px, 4vw, 42px);
    margin-bottom: 20px;
    color: var(--primary-color);
}

.booking-intro p {
    font-size: 17px;
    color: var(--gray);
}

.booking-form {
    background: var(--light-bg);
    padding: 50px;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--light-gray);
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
}

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

.btn-submit {
    width: 100%;
    background: var(--primary-color);
    color: var(--white);
    padding: 16px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
}

.btn-submit:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Final CTA */
.final-cta {
    padding: 100px 20px;
    background: var(--primary-color);
    color: var(--white);
    position: relative;
}

.final-cta-overlap {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.final-cta-content h2 {
    font-size: clamp(36px, 5vw, 56px);
    margin-bottom: 20px;
}

.final-cta-content p {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.9;
}

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

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-brand {
    flex: 1.5;
}

.footer-column h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 10px;
}

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

.footer-column ul li a {
    font-size: 14px;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

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

.sticky-cta-btn {
    display: block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 16px 30px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.sticky-cta-btn:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

/* About Page Styles */
.page-hero-offset {
    padding: 150px 20px 100px;
    background: var(--light-bg);
}

.page-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.page-hero-content h1 {
    font-size: clamp(38px, 5vw, 62px);
    margin-bottom: 25px;
    color: var(--primary-color);
    line-height: 1.2;
}

.hero-lead {
    font-size: clamp(20px, 2.5vw, 26px);
    color: var(--gray);
    line-height: 1.5;
}

.page-hero-image {
    max-width: 1000px;
    margin: 50px auto 0;
}

.page-hero-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.origin-section {
    padding: 100px 20px;
}

.origin-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.origin-text-block {
    flex: 1.5;
}

.origin-text-block p {
    font-size: 17px;
    margin-bottom: 20px;
    color: var(--gray);
    line-height: 1.7;
}

.origin-quote-block {
    flex: 1;
    margin-top: 40px;
}

.origin-quote-block blockquote {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.origin-quote-block p {
    font-size: 20px;
    font-style: italic;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 15px;
}

.origin-quote-block cite {
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
    font-style: normal;
}

.philosophy-deep {
    padding: 100px 20px;
    background: var(--white);
}

.philosophy-container-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.philosophy-image-left {
    flex: 1;
}

.philosophy-image-left img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.philosophy-content-right {
    flex: 1.2;
}

.philosophy-content-right h2 {
    font-size: clamp(32px, 4vw, 42px);
    margin-bottom: 40px;
    color: var(--primary-color);
}

.philosophy-point {
    margin-bottom: 35px;
}

.philosophy-point h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.philosophy-point p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.7;
}

.team-section {
    padding: 100px 20px;
    background: var(--light-bg);
}

.team-grid-irregular {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.team-member {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.member-large {
    flex: 1 1 calc(60% - 15px);
    display: flex;
    gap: 30px;
}

.member-small {
    flex: 1 1 calc(40% - 15px);
}

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

.member-large .member-image {
    flex: 1;
}

.member-small .member-image {
    height: 250px;
}

.member-info {
    padding: 30px;
}

.member-large .member-info {
    flex: 1;
}

.member-info h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.member-role {
    font-size: 14px;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-weight: 600;
}

.member-info p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.6;
}

.values-section {
    padding: 100px 20px;
}

.values-overlap {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.value-card {
    background: var(--light-bg);
    padding: 35px;
    border-radius: 8px;
    flex: 1;
    min-width: 250px;
}

.value-1 {
    transform: translateY(-15px);
}

.value-2 {
    transform: translateY(15px);
}

.value-3 {
    transform: translateY(-8px);
}

.value-4 {
    transform: translateY(8px);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.value-card p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.6;
}

.process-section {
    padding: 100px 20px;
    background: var(--white);
}

.process-intro-asymmetric {
    max-width: 700px;
    margin-bottom: 60px;
    margin-left: 8%;
}

.process-intro-asymmetric h2 {
    font-size: clamp(36px, 4vw, 48px);
    margin-bottom: 15px;
    color: var(--primary-color);
}

.process-steps-offset {
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    align-items: flex-start;
}

.step-right {
    margin-left: 100px;
}

.step-left {
    margin-right: 100px;
    flex-direction: row-reverse;
}

.step-icon {
    font-size: 40px;
    min-width: 60px;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.process-step p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.6;
}

.results-section {
    padding: 100px 20px;
    background: var(--light-bg);
}

.results-container-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.results-text {
    flex: 1.2;
}

.results-text h2 {
    font-size: clamp(32px, 4vw, 42px);
    margin-bottom: 30px;
    color: var(--primary-color);
}

.results-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.results-text p {
    font-size: 17px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 30px;
}

.results-image {
    flex: 1;
}

.results-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.cta-about {
    padding: 100px 20px;
    background: var(--secondary-color);
    color: var(--white);
}

.cta-content-center {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-content-center h2 {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 20px;
}

.cta-content-center p {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.95;
}

/* Services Page */
.services-hero-offset {
    padding: 150px 20px 100px;
    background: var(--light-bg);
}

.services-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.services-hero-content h1 {
    font-size: clamp(42px, 5vw, 62px);
    margin-bottom: 25px;
    color: var(--primary-color);
}

.services-detailed {
    padding: 80px 20px;
}

.service-detail {
    max-width: 1200px;
    margin: 0 auto 100px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.service-left {
    flex-direction: row;
}

.service-right {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.service-detail-content {
    flex: 1.2;
}

.service-detail-content h2 {
    font-size: clamp(28px, 3vw, 36px);
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-price-large {
    font-size: 42px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.service-duration {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 20px;
}

.service-description {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 25px;
    line-height: 1.6;
}

.service-detail-content h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-includes {
    list-style: none;
    margin-bottom: 25px;
}

.service-includes li {
    font-size: 15px;
    color: var(--gray);
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.service-includes li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.service-premium {
    background: linear-gradient(135deg, #2c2c2c 0%, #4a4a4a 100%);
    padding: 60px;
    border-radius: 8px;
    color: var(--white);
    margin-bottom: 100px;
}

.service-detail-content-full {
    max-width: 1200px;
    margin: 0 auto;
}

.premium-badge {
    display: inline-block;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.service-premium h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.service-premium .service-price-large {
    color: var(--accent-color);
}

.premium-content-grid {
    display: flex;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.premium-section {
    flex: 1;
    min-width: 280px;
}

.premium-section h3 {
    color: var(--accent-color);
    font-size: 22px;
    margin-bottom: 20px;
}

.premium-bonus {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
}

.premium-bonus h3 {
    color: var(--white);
    margin-bottom: 15px;
}

.premium-bonus ul {
    list-style: none;
}

.premium-bonus li {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 15px;
}

.premium-highlight {
    font-size: 18px;
    color: var(--accent-color);
    font-weight: 600;
    margin: 30px 0;
}

.comparison-section {
    padding: 100px 20px;
    background: var(--light-bg);
}

.comparison-guide {
    max-width: 900px;
    margin: 0 auto 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.comparison-item {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    flex: 1;
    min-width: 280px;
}

.comparison-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.comparison-item p {
    font-size: 16px;
    color: var(--secondary-color);
    font-weight: 600;
}

.comparison-note {
    text-align: center;
    font-size: 16px;
    color: var(--gray);
}

.comparison-note a {
    color: var(--secondary-color);
    font-weight: 600;
}

.faq-section {
    padding: 100px 20px;
}

.faq-grid-asymmetric {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.faq-item {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 8px;
    flex: 1;
    min-width: 300px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.6;
}

.booking-cta-services {
    padding: 100px 20px;
    background: var(--primary-color);
    color: var(--white);
}

.booking-cta-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.booking-cta-content h2 {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 20px;
}

.booking-cta-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.booking-form-inline {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.form-row input,
.form-row select {
    flex: 1;
    min-width: 200px;
    padding: 14px;
    border: 2px solid var(--light-gray);
    border-radius: 4px;
    font-size: 15px;
}

.btn-submit-inline {
    background: var(--primary-color);
    color: var(--white);
    padding: 14px 30px;
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-submit-inline:hover {
    background: var(--secondary-color);
}

/* Contact Page */
.contact-hero {
    padding: 150px 20px 100px;
    background: var(--light-bg);
}

.contact-hero-content-offset {
    max-width: 800px;
    margin-left: 10%;
}

.contact-hero-content-offset h1 {
    font-size: clamp(42px, 6vw, 72px);
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-info-section {
    padding: 100px 20px;
}

.contact-grid-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-card {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    padding: 40px;
}

.contact-card.card-large {
    flex: 1 1 calc(60% - 15px);
}

.contact-card.card-small {
    flex: 1 1 calc(40% - 15px);
}

.contact-card.card-medium {
    flex: 1 1 calc(50% - 15px);
}

.card-highlight {
    background: var(--light-bg);
    border-color: var(--secondary-color);
}

.contact-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.contact-card h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-details {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.7;
}

.contact-address {
    font-size: 17px;
    margin-bottom: 15px;
}

.contact-link {
    color: var(--secondary-color);
    font-weight: 600;
}

.contact-link:hover {
    text-decoration: underline;
}

.contact-note {
    font-size: 14px;
    color: var(--gray);
    font-style: italic;
    margin-top: 10px;
}

.contact-hours {
    margin-bottom: 15px;
}

.contact-hours strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.booking-steps {
    list-style: none;
    counter-reset: step-counter;
}

.booking-steps li {
    counter-increment: step-counter;
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
}

.booking-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: var(--secondary-color);
    color: var(--white);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.map-section {
    padding: 100px 20px;
    background: var(--light-bg);
}

.map-container-offset {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.map-info {
    flex: 1;
}

.map-info h2 {
    font-size: clamp(28px, 3vw, 36px);
    margin-bottom: 20px;
    color: var(--primary-color);
}

.map-info p {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.transport-list {
    list-style: none;
    margin-bottom: 20px;
}

.transport-list li {
    margin-bottom: 10px;
    font-size: 16px;
    color: var(--gray);
}

.parking-note {
    font-size: 14px;
    color: var(--gray);
    font-style: italic;
}

.map-placeholder {
    flex: 1;
}

.map-placeholder img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.faq-contact-section {
    padding: 100px 20px;
}

.faq-contact-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.faq-contact-item {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 8px;
    flex: 1;
    min-width: 280px;
}

.faq-contact-item h3 {
    font-size: 19px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.faq-contact-item p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.6;
}

.social-proof-contact {
    padding: 100px 20px;
    background: var(--light-bg);
}

.social-proof-content-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.social-proof-text {
    flex: 1.5;
}

.social-proof-text h2 {
    font-size: clamp(32px, 4vw, 42px);
    margin-bottom: 40px;
    color: var(--primary-color);
}

.testimonial-large {
    background: var(--white);
    padding: 35px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid var(--secondary-color);
}

.testimonial-large p {
    font-size: 17px;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 15px;
}

.testimonial-large cite {
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
    font-style: normal;
}

.social-proof-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
}

.stat-box {
    background: var(--white);
    padding: 35px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.stat-label {
    font-size: 14px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.final-cta-contact {
    padding: 100px 20px;
    background: var(--secondary-color);
    color: var(--white);
}

.final-cta-content-offset {
    max-width: 800px;
    margin-left: 10%;
}

.final-cta-content-offset h2 {
    font-size: clamp(36px, 5vw, 52px);
    margin-bottom: 20px;
}

.final-cta-content-offset p {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-alternative {
    margin-top: 20px;
    font-size: 16px;
    opacity: 0.9;
}

.cta-alternative a {
    color: var(--white);
    text-decoration: underline;
}

/* Thanks Page */
.thanks-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 20px 80px;
}

.thanks-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    font-size: 80px;
    margin-bottom: 30px;
}

.thanks-content h1 {
    font-size: clamp(38px, 5vw, 56px);
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-message {
    font-size: clamp(20px, 2.5vw, 24px);
    color: var(--gray);
    margin-bottom: 40px;
}

.service-confirmation {
    margin-bottom: 50px;
}

.service-selected {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 8px;
    display: inline-block;
}

.service-name {
    color: var(--secondary-color);
    font-size: 20px;
}

.thanks-details {
    margin-bottom: 60px;
    text-align: left;
}

.thanks-details h2 {
    font-size: clamp(28px, 3vw, 36px);
    margin-bottom: 40px;
    color: var(--primary-color);
    text-align: center;
}

.next-steps {
    max-width: 700px;
    margin: 0 auto;
}

.next-step {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
    align-items: flex-start;
}

.step-number-circle {
    min-width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.step-content p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.6;
}

.thanks-additional {
    margin-bottom: 60px;
}

.thanks-additional h2 {
    font-size: clamp(28px, 3vw, 36px);
    margin-bottom: 40px;
    color: var(--primary-color);
}

.thanks-suggestions {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    text-align: left;
}

.suggestion-card {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 8px;
    flex: 1;
    min-width: 250px;
}

.suggestion-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.suggestion-card p {
    font-size: 15px;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-suggestion {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition);
    font-size: 14px;
}

.btn-suggestion:hover {
    background: var(--secondary-color);
}

.thanks-quote {
    max-width: 700px;
    margin: 0 auto 50px;
    background: var(--light-bg);
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.thanks-quote blockquote p {
    font-size: 20px;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 15px;
}

.thanks-quote cite {
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
    font-style: normal;
}

.thanks-cta {
    margin-top: 40px;
}

.thanks-trust {
    padding: 100px 20px;
    background: var(--light-bg);
}

.thanks-trust h2 {
    text-align: center;
    font-size: clamp(28px, 3vw, 36px);
    margin-bottom: 50px;
    color: var(--primary-color);
}

.trust-grid-thanks {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.trust-item {
    background: var(--white);
    padding: 35px;
    border-radius: 8px;
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.trust-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.trust-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.trust-item p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.6;
}

/* Legal Pages */
.legal-page {
    padding: 150px 20px 100px;
    background: var(--white);
}

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

.legal-container h1 {
    font-size: clamp(36px, 4vw, 48px);
    margin-bottom: 15px;
    color: var(--primary-color);
}

.legal-update {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 40px;
    font-style: italic;
}

.legal-content h2 {
    font-size: clamp(24px, 3vw, 32px);
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: clamp(20px, 2.5vw, 24px);
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.legal-content h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 20px;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 10px;
}

.legal-content ul li {
    list-style-type: disc;
}

.legal-content ol li {
    list-style-type: decimal;
}

.legal-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--primary-color);
}

.legal-navigation {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid var(--light-gray);
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.legal-navigation a {
    color: var(--secondary-color);
    font-weight: 600;
    transition: var(--transition);
}

.legal-navigation a:hover {
    color: var(--primary-color);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookie-table thead {
    background: var(--light-bg);
}

.cookie-table th,
.cookie-table td {
    padding: 15px;
    text-align: left;
    border: 1px solid var(--light-gray);
    font-size: 14px;
}

.cookie-table th {
    font-weight: 600;
    color: var(--primary-color);
}

.cookie-table td {
    color: var(--gray);
}

/* Responsive Design */
@media (max-width: 968px) {
    .floating-nav {
        top: 20px;
        right: 20px;
        padding: 12px 20px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 30px;
        gap: 20px;
        transition: var(--transition);
        box-shadow: 5px 0 20px rgba(0, 0, 0, 0.1);
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero-asymmetric {
        flex-direction: column;
        padding-top: 100px;
    }

    .hero-content-offset {
        margin-left: 0;
        margin-bottom: 40px;
    }

    .hero-image-overlap {
        position: relative;
        right: 0;
        top: 0;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .problem-grid-asymmetric,
    .philosophy-offset-container,
    .trust-container-offset,
    .results-container-asymmetric,
    .map-container-offset,
    .social-proof-content-asymmetric {
        flex-direction: column;
    }

    .step-left,
    .step-right {
        margin: 0;
        flex-direction: row;
    }

    .service-detail {
        flex-direction: column !important;
    }

    .origin-layout,
    .philosophy-container-asymmetric {
        flex-direction: column;
    }

    .member-large {
        flex-direction: column;
    }

    .member-large .member-image {
        height: 300px;
    }

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

    .sticky-cta-btn {
        padding: 14px 24px;
    }

    .contact-card.card-large,
    .contact-card.card-small,
    .contact-card.card-medium {
        flex: 1 1 100%;
    }

    .premium-content-grid {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .container,
    .container-fluid {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 36px;
    }

    .services-grid-asymmetric .service-card {
        flex: 1 1 100%;
    }

    .form-row {
        flex-direction: column;
    }

    .form-row input,
    .form-row select {
        width: 100%;
    }

    .footer-container {
        flex-direction: column;
        gap: 40px;
    }

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

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }

    .booking-form {
        padding: 30px 20px;
    }
}
