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

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

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

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

a:hover {
    opacity: 0.7;
}

h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.8em;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.2rem;
}

h3 {
    font-size: 1.6rem;
}

h4 {
    font-size: 1.2rem;
}

p {
    margin-bottom: 1.2em;
}

ul {
    list-style: none;
}

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

.cookie-banner.hidden {
    display: none;
}

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

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

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.8rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 4px;
}

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

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

.btn-reject {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

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

/* Floating Navigation */
.floating-nav {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    min-width: 700px;
}

.nav-brand {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
}

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

.nav-links a {
    font-size: 0.95rem;
    color: #2c3e50;
    font-weight: 500;
}

.ad-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #95a5a6;
    padding: 0.3rem 0.8rem;
    background: #ecf0f1;
    border-radius: 12px;
}

/* Hero Visual Section */
.hero-visual {
    width: 100%;
    height: 100vh;
    position: relative;
    margin-bottom: 0;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    background-color: #34495e;
}

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

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.3));
    padding: 5rem 3rem;
    color: #fff;
}

.hero-overlay h1 {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    max-width: 900px;
}

.hero-overlay p {
    font-size: 1.4rem;
    max-width: 700px;
    line-height: 1.6;
    font-weight: 300;
}

/* Intro Narrative */
.intro-narrative {
    padding: 6rem 3rem;
    background: #fff;
}

.narrative-text {
    max-width: 750px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.9;
}

.narrative-text p {
    margin-bottom: 1.8em;
}

/* Visual Block */
.visual-block {
    width: 100%;
    margin: 0;
    background-color: #7f8c8d;
}

.visual-block img {
    width: 100%;
    height: 70vh;
    object-fit: cover;
}

/* Problem Insight Section */
.problem-insight {
    padding: 6rem 3rem;
    background: #f8f9fa;
}

.insight-container {
    max-width: 850px;
    margin: 0 auto;
}

.insight-container h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.insight-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.8em;
}

/* Approach Visual */
.approach-visual {
    padding: 5rem 3rem;
    background: #fff;
}

.approach-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.approach-image {
    flex: 1;
    background-color: #95a5a6;
}

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

.approach-text {
    flex: 1;
}

.approach-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.approach-text p {
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Testimonial Inline */
.testimonial-inline {
    padding: 5rem 3rem;
    background: #2c3e50;
    color: #fff;
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.testimonial-card {
    max-width: 450px;
    padding: 2.5rem;
    background: rgba(255,255,255,0.05);
    border-left: 4px solid #3498db;
}

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

.testimonial-card cite {
    font-style: normal;
    font-size: 0.95rem;
    color: #bdc3c7;
}

/* Services Reveal */
.services-reveal {
    padding: 6rem 3rem;
    background: #fff;
}

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

.services-intro h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.services-intro p {
    font-size: 1.2rem;
    color: #7f8c8d;
}

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

.service-card {
    flex: 0 1 400px;
    background: #f8f9fa;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

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

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #95a5a6;
}

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.5rem;
}

.service-card p {
    padding: 0 1.5rem;
    font-size: 0.95rem;
    line-height: 1.7;
    flex-grow: 1;
}

.service-card .price {
    display: block;
    padding: 0 1.5rem;
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1rem;
}

.select-service {
    margin: 0 1.5rem 1.5rem;
    padding: 0.9rem 1.5rem;
    background: #3498db;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: background 0.3s ease;
    border-radius: 4px;
}

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

/* Trust Elements */
.trust-elements {
    padding: 5rem 3rem;
    background: #ecf0f1;
}

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

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

.trust-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.trust-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

/* CTA Immersive */
.cta-immersive {
    width: 100%;
    margin: 0;
}

.cta-visual-bg {
    position: relative;
    width: 100%;
    height: 60vh;
    background-color: #34495e;
}

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

.cta-overlay-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 3rem;
    background: rgba(0,0,0,0.5);
    border-radius: 8px;
}

.cta-overlay-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.cta-overlay-content p {
    font-size: 1.2rem;
    line-height: 1.7;
}

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

.booking-section.hidden {
    display: none;
}

.form-container {
    max-width: 650px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-container h2 {
    text-align: center;
    margin-bottom: 1rem;
}

#selectedServiceDisplay,
#selectedServiceDisplayServices {
    text-align: center;
    font-size: 1.1rem;
    color: #3498db;
    font-weight: 600;
    margin-bottom: 2rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    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;
}

.submit-btn {
    width: 100%;
    padding: 1.1rem;
    background: #27ae60;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s ease;
}

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

/* Disclaimer Section */
.disclaimer-section {
    padding: 3rem;
    background: #fff3cd;
    border-top: 3px solid #ffc107;
}

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

.disclaimer-content p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #856404;
    margin: 0;
}

/* Footer */
.site-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 4rem 3rem 2rem;
}

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

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

.footer-section h4 {
    margin-bottom: 1rem;
    color: #fff;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #bdc3c7;
}

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

.footer-section ul li {
    margin-bottom: 0.7rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #fff;
}

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

.footer-bottom p {
    font-size: 0.9rem;
    color: #95a5a6;
}

/* Page Hero Styles */
.page-hero {
    width: 100%;
    height: 50vh;
    position: relative;
    margin-bottom: 4rem;
    background-color: #34495e;
}

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

.page-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
    color: #fff;
}

.page-hero-overlay h1 {
    font-size: 3.5rem;
}

.page-hero-simple {
    padding: 10rem 3rem 4rem;
    text-align: center;
    background: #f8f9fa;
}

.page-hero-simple h1 {
    font-size: 3rem;
}

/* Story Content */
.story-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
}

.story-block {
    margin-bottom: 3rem;
}

.story-block p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5em;
}

.story-block ul {
    list-style: disc;
    margin-left: 2rem;
}

.story-block ul li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.story-visual {
    margin: 4rem 0;
    background-color: #95a5a6;
}

.story-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.team-section {
    margin: 4rem 0;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 2rem;
}

.team-member {
    padding: 2rem;
    background: #f8f9fa;
    border-left: 4px solid #3498db;
}

.member-info h3 {
    margin-bottom: 0.3rem;
}

.member-info .role {
    color: #7f8c8d;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-info p {
    font-size: 1rem;
    line-height: 1.8;
}

.values-block {
    margin: 4rem 0;
}

.standards-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.standard-item {
    padding: 1.5rem;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.standard-item h4 {
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.standard-item p {
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
}

.approach-detail {
    margin: 4rem 0;
}

/* Services Detail Page */
.services-detail {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem;
}

.services-intro-text {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
}

.service-full-card {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 2px solid #ecf0f1;
}

.service-full-card:last-child {
    border-bottom: none;
}

.service-image-large {
    flex: 0 0 380px;
    background-color: #95a5a6;
}

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

.service-details {
    flex: 1;
}

.service-details h2 {
    margin-bottom: 1rem;
}

.service-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.service-meta span {
    font-size: 0.9rem;
    padding: 0.4rem 1rem;
    background: #ecf0f1;
    border-radius: 20px;
    color: #2c3e50;
}

.service-details ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-details ul li {
    margin-bottom: 0.8rem;
    font-size: 1rem;
    line-height: 1.7;
}

.service-pricing {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: #27ae60;
}

.select-service-btn {
    padding: 1rem 2rem;
    background: #3498db;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s ease;
}

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

.booking-info {
    padding: 4rem 3rem;
    background: #f8f9fa;
}

.info-content {
    max-width: 1100px;
    margin: 0 auto;
}

.info-content h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.info-grid {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.info-item {
    flex: 1;
    min-width: 250px;
}

.info-item h4 {
    margin-bottom: 0.8rem;
}

.info-item p {
    font-size: 1rem;
    line-height: 1.7;
}

/* Contact Page */
.contact-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem;
}

.contact-layout {
    display: flex;
    gap: 4rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.contact-info-block {
    flex: 1;
    min-width: 300px;
}

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

.contact-detail h4 {
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.contact-detail p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
}

.office-note {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 1rem;
}

.contact-visual {
    flex: 1;
    min-width: 300px;
    background-color: #95a5a6;
}

.contact-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.contact-additional,
.directions-section {
    margin-bottom: 3rem;
}

.contact-additional h3,
.directions-section h3 {
    margin-bottom: 1.5rem;
}

.contact-additional h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.contact-additional ul {
    list-style: disc;
    margin-left: 1.5rem;
}

.contact-additional ul li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

/* Thanks Page */
.thanks-container {
    min-height: 70vh;
    padding: 8rem 3rem 5rem;
    background: #f8f9fa;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 4rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.thanks-content h1 {
    color: #27ae60;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.thanks-details {
    text-align: left;
    margin: 3rem 0;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 4px;
}

.thanks-details ul {
    list-style: disc;
    margin-left: 1.5rem;
}

.thanks-details ul li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.next-steps {
    margin: 3rem 0;
    text-align: left;
}

.next-steps h3 {
    text-align: center;
    margin-bottom: 2rem;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.step-content h4 {
    margin-bottom: 0.5rem;
}

.step-content p {
    margin: 0;
    color: #555;
    line-height: 1.7;
}

.thanks-action {
    margin-top: 3rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: #3498db;
    color: #fff;
}

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

.btn-secondary {
    background: transparent;
    color: #3498db;
    border: 2px solid #3498db;
}

.btn-secondary:hover {
    background: #3498db;
    color: #fff;
}

/* Legal Pages */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 8rem 3rem 5rem;
}

.legal-content h1 {
    margin-bottom: 0.5rem;
}

.legal-intro {
    color: #7f8c8d;
    font-size: 0.95rem;
    margin-bottom: 3rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.legal-section h3 {
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
    font-size: 1.3rem;
}

.legal-section p {
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.legal-section ul li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.legal-section a {
    color: #3498db;
    text-decoration: underline;
}

.legal-section a:hover {
    color: #2980b9;
}

/* CTA Simple */
.cta-simple {
    padding: 5rem 3rem;
    background: #3498db;
    text-align: center;
}

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

.cta-content h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.cta-content p {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    background: #fff;
    color: #3498db;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Responsive Styles */
@media (max-width: 900px) {
    .floating-nav {
        min-width: auto;
        width: calc(100% - 4rem);
        padding: 1rem 1.5rem;
        gap: 1.5rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .hero-overlay h1 {
        font-size: 3rem;
    }

    .hero-overlay p {
        font-size: 1.1rem;
    }

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

    .service-full-card {
        flex-direction: column;
    }

    .service-image-large {
        flex: 0 0 auto;
        width: 100%;
        height: 300px;
    }

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

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 600px) {
    .floating-nav {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-overlay {
        padding: 3rem 1.5rem;
    }

    .hero-overlay h1 {
        font-size: 2.2rem;
    }

    .hero-overlay p {
        font-size: 1rem;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

    .form-container {
        padding: 2rem 1.5rem;
    }
}