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

:root {
    --primary-color: #2c2c2c;
    --secondary-color: #d4a574;
    --accent-color: #c9b8a8;
    --bg-light: #f8f6f3;
    --bg-white: #ffffff;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #7a7a7a;
    --border-color: #e0ddd9;
    --transition: all 0.3s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

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

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

ul {
    list-style: none;
}

/* Navigation */
.main-nav {
    position: sticky;
    top: 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
}

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

.logo {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
}

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

.nav-links a {
    color: var(--text-medium);
    font-weight: 500;
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

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

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

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

/* Hero Split - Split-Screen Modern Archetype */
.hero-split {
    display: flex;
    min-height: 85vh;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem 3rem;
    background: var(--bg-light);
}

.hero-text {
    max-width: 600px;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.hero-intro {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 2.5rem;
}

.hero-visual {
    flex: 1;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.hero-image-placeholder svg {
    width: 100%;
    max-width: 600px;
    height: auto;
}

/* Split Container - Core of Split-Screen Modern */
.split-container {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 3rem;
    gap: 5rem;
}

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

.split-left {
    flex: 0 0 45%;
}

.split-right {
    flex: 1;
}

.split-left h2 {
    font-size: 2.75rem;
    line-height: 1.2;
    color: var(--primary-color);
    font-weight: 700;
}

.split-right p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

/* Intro Philosophy */
.intro-philosophy {
    background: var(--bg-white);
}

/* Visual Break */
.visual-break {
    background: var(--bg-light);
    padding: 5rem 3rem;
}

.visual-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2.5rem;
}

.visual-card {
    flex: 1;
    padding: 2.5rem;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
}

.visual-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
}

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

.visual-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Services Highlight */
.services-highlight {
    padding: 6rem 3rem;
    background: var(--bg-white);
}

.section-header-split {
    max-width: 1400px;
    margin: 0 auto 4rem;
    display: flex;
    gap: 4rem;
}

.header-left {
    flex: 0 0 40%;
}

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

.header-left h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    color: var(--primary-color);
    font-weight: 700;
}

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

.header-right p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-medium);
}

/* Services Grid */
.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    padding: 2.5rem;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card.featured {
    background: var(--primary-color);
    color: var(--bg-white);
    border-color: var(--primary-color);
}

.service-card.featured h3,
.service-card.featured p {
    color: var(--bg-white);
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.service-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.service-card.featured .service-number {
    color: var(--bg-white);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.service-card p {
    flex: 1;
    margin-bottom: 1.5rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.service-card.featured .service-price {
    color: var(--bg-white);
}

.service-link {
    color: var(--secondary-color);
    font-weight: 600;
    display: inline-block;
}

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

.service-card.featured .service-link {
    color: var(--bg-white);
}

/* CTA Buttons */
.cta-primary,
.cta-secondary,
.cta-tertiary {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-size: 1rem;
}

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

.cta-primary:hover {
    background: #c29660;
    transform: translateY(-2px);
}

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

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

.cta-tertiary {
    background: var(--primary-color);
    color: var(--bg-white);
}

.cta-tertiary:hover {
    background: #3a3a3a;
}

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

/* Testimonials Flow */
.testimonials-flow {
    padding: 6rem 3rem;
    background: var(--bg-light);
}

.testimonial-item {
    max-width: 1400px;
    margin: 0 auto 3rem;
    display: flex;
}

.testimonial-item.left {
    justify-content: flex-start;
}

.testimonial-item.right {
    justify-content: flex-end;
}

.testimonial-content {
    max-width: 600px;
    padding: 2.5rem;
    background: var(--bg-white);
    border-left: 4px solid var(--secondary-color);
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Process Section */
.process-section {
    background: var(--bg-white);
}

.process-intro {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-top: 1rem;
}

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

.process-step {
    display: flex;
    gap: 1.5rem;
}

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

.step-content h4 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* Value Proposition */
.value-proposition {
    padding: 5rem 3rem;
    background: var(--primary-color);
    color: var(--bg-white);
}

.value-content {
    max-width: 1400px;
    margin: 0 auto;
}

.value-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--bg-white);
}

.value-grid {
    display: flex;
    gap: 3rem;
}

.value-item {
    flex: 1;
}

.value-item h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.value-item p {
    color: var(--bg-light);
    line-height: 1.7;
}

/* Booking Section */
.booking-section {
    padding: 6rem 3rem;
    background: var(--bg-light);
}

.booking-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.booking-intro {
    flex: 0 0 40%;
}

.booking-intro h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.booking-intro p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-medium);
}

.booking-form-wrapper {
    flex: 1;
}

/* Forms */
.contact-form {
    background: var(--bg-white);
    padding: 2.5rem;
    border: 1px solid var(--border-color);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid var(--border-color);
    background: var(--bg-white);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

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

.contact-form button[type="submit"] {
    width: 100%;
}

/* Final CTA */
.final-cta {
    padding: 6rem 3rem;
    background: var(--bg-white);
    text-align: center;
}

.final-cta-content h2 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.final-cta-content p {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

/* Footer */
.site-footer {
    background: var(--primary-color);
    color: var(--bg-light);
    padding: 4rem 3rem 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--bg-white);
}

.footer-brand p {
    color: var(--bg-light);
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-column h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--bg-white);
    font-weight: 600;
}

.footer-column a {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--bg-light);
    opacity: 0.8;
}

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--bg-light);
    opacity: 0.7;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 1.5rem;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-content p {
    flex: 1;
    color: var(--bg-light);
}

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

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

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

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

.cookie-btn.accept:hover {
    background: #c29660;
}

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

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

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

.sticky-cta a {
    display: block;
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: var(--bg-white);
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.sticky-cta a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Page Hero */
.page-hero {
    padding: 6rem 3rem 4rem;
    background: var(--bg-light);
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto;
}

/* About Page Specific */
.about-story {
    background: var(--bg-white);
}

.philosophy-section {
    padding: 5rem 3rem;
    background: var(--bg-light);
}

.philosophy-header {
    text-align: center;
    margin-bottom: 3rem;
}

.philosophy-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

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

.philosophy-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2.5rem;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
}

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

.philosophy-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

.who-we-help {
    background: var(--bg-white);
}

.client-types {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.client-type h4 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.client-type p {
    color: var(--text-medium);
    line-height: 1.7;
}

.approach-section {
    padding: 5rem 3rem;
    background: var(--bg-light);
}

.approach-content {
    max-width: 1400px;
    margin: 0 auto;
}

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

.approach-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.approach-block {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2.5rem;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
}

.approach-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
}

.approach-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.approach-block p {
    color: var(--text-medium);
    line-height: 1.7;
}

.results-section {
    padding: 5rem 3rem;
    background: var(--bg-white);
}

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

.results-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.results-list {
    display: flex;
    gap: 3rem;
}

.result-item {
    flex: 1;
    padding: 2rem;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
}

.result-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

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

.cta-section {
    padding: 5rem 3rem;
    background: var(--bg-light);
}

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

.cta-content-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.cta-content-centered p {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

/* Services Page Specific */
.services-intro {
    background: var(--bg-white);
}

.services-detail {
    padding: 3rem;
    background: var(--bg-light);
}

.service-detail-card {
    max-width: 1200px;
    margin: 0 auto 3rem;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 3rem;
}

.service-detail-card.featured {
    border: 2px solid var(--secondary-color);
}

.service-detail-header {
    margin-bottom: 2.5rem;
    position: relative;
}

.service-detail-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--bg-light);
    color: var(--text-medium);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-detail-badge.popular {
    background: var(--secondary-color);
    color: var(--bg-white);
}

.service-detail-header h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.service-detail-content {
    display: flex;
    gap: 4rem;
}

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

.service-detail-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-checklist {
    list-style: none;
    margin-bottom: 2rem;
}

.service-checklist li {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
    color: var(--text-medium);
}

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

.service-detail-right h4 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.service-detail-right p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.packages-section {
    padding: 5rem 3rem;
    background: var(--bg-white);
}

.packages-header {
    text-align: center;
    margin-bottom: 3rem;
}

.packages-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.packages-header p {
    font-size: 1.125rem;
    color: var(--text-medium);
}

.packages-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

.package-card {
    flex: 1;
    padding: 2.5rem;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    text-align: center;
    position: relative;
}

.package-card.popular {
    border: 2px solid var(--secondary-color);
    background: var(--bg-white);
}

.package-badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 0.5rem 1.5rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.package-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.package-price {
    margin-bottom: 2rem;
}

.price-original {
    display: block;
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.price-final {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.package-includes {
    list-style: none;
    margin-bottom: 1.5rem;
    text-align: left;
}

.package-includes li {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
    color: var(--text-medium);
}

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

.package-saving {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.faq-section {
    padding: 5rem 3rem;
    background: var(--bg-light);
}

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

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

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    padding: 2rem;
    background: var(--bg-white);
    border-left: 4px solid var(--secondary-color);
}

.faq-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.faq-item p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Contact Page Specific */
.contact-content {
    padding: 5rem 3rem;
    background: var(--bg-white);
}

.contact-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.contact-info-side {
    flex: 0 0 40%;
}

.contact-info-side h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.contact-block {
    margin-bottom: 2.5rem;
}

.contact-block h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.contact-block p {
    color: var(--text-medium);
    line-height: 1.7;
}

.contact-block a {
    color: var(--secondary-color);
}

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

.contact-note {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.contact-map-side {
    flex: 1;
}

.map-placeholder {
    width: 100%;
    height: 500px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-directions {
    padding: 5rem 3rem;
    background: var(--bg-light);
}

.directions-content {
    max-width: 1200px;
    margin: 0 auto;
}

.directions-content h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
}

.directions-grid {
    display: flex;
    gap: 2rem;
}

.direction-item {
    flex: 1;
    padding: 2rem;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
}

.direction-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.direction-item p {
    color: var(--text-medium);
    line-height: 1.7;
}

.contact-faq {
    padding: 5rem 3rem;
    background: var(--bg-white);
}

/* Thanks Page Specific */
.thanks-hero {
    padding: 6rem 3rem;
    background: var(--bg-light);
    text-align: center;
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
}

.thanks-hero h1 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 1.25rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.service-confirmation {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--bg-white);
    border-left: 4px solid var(--secondary-color);
}

.service-confirmation p {
    color: var(--text-medium);
}

.next-steps {
    padding: 5rem 3rem;
    background: var(--bg-white);
}

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

.next-steps-content h2 {
    font-size: 2.25rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-align: center;
}

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

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

.step-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
}

.step-text h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.step-text p {
    color: var(--text-medium);
    line-height: 1.7;
}

.thanks-prep {
    padding: 5rem 3rem;
    background: var(--bg-light);
}

.prep-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

.prep-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.prep-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
}

.prep-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.prep-item p {
    color: var(--text-medium);
    line-height: 1.7;
}

.thanks-resources {
    padding: 5rem 3rem;
    background: var(--bg-white);
}

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

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

.resources-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.resource-link {
    display: block;
    padding: 2rem;
    background: var(--bg-light);
    border-left: 4px solid var(--secondary-color);
    transition: var(--transition);
}

.resource-link:hover {
    background: var(--bg-white);
    transform: translateX(10px);
}

.resource-link h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.resource-link p {
    color: var(--text-medium);
}

.thanks-questions {
    padding: 5rem 3rem;
    background: var(--bg-light);
    text-align: center;
}

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

.questions-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.questions-content p {
    font-size: 1.125rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1rem;
}

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

.questions-note {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* Legal Pages */
.legal-page {
    padding: 5rem 3rem;
    background: var(--bg-white);
}

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

.legal-container h1 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-intro {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.legal-content h4 {
    font-size: 1.125rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.legal-content p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-content ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-content ul li {
    color: var(--text-medium);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

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

.legal-update {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-light);
    font-style: italic;
}

.legal-table {
    width: 100%;
    margin: 1.5rem 0;
    border-collapse: collapse;
}

.legal-table th,
.legal-table td {
    padding: 0.75rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.legal-table th {
    background: var(--bg-light);
    color: var(--primary-color);
    font-weight: 600;
}

.legal-table td {
    color: var(--text-medium);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-split {
        flex-direction: column;
    }

    .split-container {
        flex-direction: column;
        gap: 3rem;
        padding: 3rem 2rem;
    }

    .split-container.reverse {
        flex-direction: column;
    }

    .split-left {
        flex: auto;
    }

    .visual-content {
        flex-direction: column;
    }

    .section-header-split {
        flex-direction: column;
        gap: 2rem;
    }

    .header-left {
        flex: auto;
    }

    .value-grid {
        flex-direction: column;
    }

    .booking-container {
        flex-direction: column;
    }

    .booking-intro {
        flex: auto;
    }

    .results-list {
        flex-direction: column;
    }

    .service-detail-content {
        flex-direction: column;
    }

    .packages-grid {
        flex-direction: column;
    }

    .contact-split {
        flex-direction: column;
    }

    .contact-info-side {
        flex: auto;
    }

    .directions-grid {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 1rem 2rem;
    }

    .nav-toggle {
        display: flex;
    }

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

    .split-left h2 {
        font-size: 2rem;
    }

    .services-grid {
        flex-direction: column;
    }

    .service-card {
        flex: auto;
    }

    .philosophy-grid {
        flex-direction: column;
    }

    .philosophy-card {
        flex: auto;
    }

    .approach-blocks {
        flex-direction: column;
    }

    .approach-block {
        flex: auto;
    }

    .prep-grid {
        flex-direction: column;
    }

    .prep-item {
        flex: auto;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-cta a {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }

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

    .cookie-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-intro {
        font-size: 1.125rem;
    }

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

    .split-left h2 {
        font-size: 1.75rem;
    }

    .final-cta-content h2 {
        font-size: 2rem;
    }
}