/* 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, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
}

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

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

ul {
    list-style: none;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.97);
    color: #fff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cookie-content p {
    font-size: 0.95rem;
    text-align: center;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

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

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

.btn-cookie-accept:hover {
    background: #229954;
    transform: translateY(-2px);
}

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

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

/* Navigation */
.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e74c3c;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    transition: all 0.3s ease;
}

.nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.nav-menu.active {
    transform: translateX(0);
}

.nav-menu a {
    font-size: 1.1rem;
    padding: 0.8rem;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: #f8f9fa;
    color: #e74c3c;
}

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

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.8), rgba(231, 76, 60, 0.6));
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 800px;
    z-index: 3;
}

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

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.cta-hero {
    display: inline-block;
    padding: 1rem 3rem;
    background: #e74c3c;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.4);
}

.cta-hero:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(231, 76, 60, 0.6);
}

/* Container Styles */
.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

.container-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

/* Hook Section */
.hook-section {
    padding: 5rem 1.5rem;
}

.hook-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    line-height: 1.3;
}

.lead-text {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.hook-section p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

blockquote {
    border-left: 4px solid #e74c3c;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-size: 1.3rem;
    font-style: italic;
    color: #34495e;
}

/* Background Utilities */
.bg-light {
    background: #f8f9fa;
}

.bg-dark {
    background: #2c3e50;
    color: white;
}

.bg-dark h2,
.bg-dark h3 {
    color: white;
}

/* Story Section */
.story-section {
    padding: 5rem 1.5rem;
}

.split-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.content-left h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.content-left p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.highlight-text {
    font-size: 1.3rem;
    color: #e74c3c;
    font-weight: 600;
    margin-top: 1.5rem;
}

.content-right img {
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Problem Amplification */
.problem-amplification {
    padding: 5rem 1.5rem;
}

.problem-amplification h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
}

.problem-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.problem-card {
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #e74c3c;
}

.problem-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #e74c3c;
}

.problem-conclusion {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #e74c3c;
    padding: 1rem;
    z-index: 999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    display: none;
}

.sticky-cta.show {
    display: block;
}

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

.sticky-content span {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
}

.btn-sticky {
    padding: 0.8rem 2rem;
    background: white;
    color: #e74c3c;
    font-weight: 700;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: #2c3e50;
    color: white;
    transform: scale(1.05);
}

/* Insight Section */
.insight-section {
    padding: 5rem 1.5rem;
}

.insight-section h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.insight-intro {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.insight-list {
    margin: 2rem 0;
    padding-left: 1.5rem;
}

.insight-list li {
    list-style: disc;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.insight-conclusion {
    margin-top: 2rem;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Transformation Section */
.transformation-section {
    padding: 5rem 1.5rem;
}

.transformation-section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

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

.timeline-marker {
    min-width: 50px;
    height: 50px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    font-size: 1.05rem;
    color: #555;
}

/* Testimonials */
.testimonials-inline {
    padding: 5rem 1.5rem;
}

.testimonials-inline h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.testimonial-card.featured {
    border: 3px solid #e74c3c;
}

.testimonial-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
}

.testimonial-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-style: italic;
}

cite {
    font-weight: 600;
    color: #e74c3c;
    font-style: normal;
}

.testimonial-simple {
    padding: 1.5rem;
    background: #f8f9fa;
    border-left: 4px solid #e74c3c;
    margin-bottom: 1.5rem;
    border-radius: 5px;
}

.testimonial-simple p {
    font-size: 1.05rem;
    font-style: italic;
    margin-bottom: 0.8rem;
}

.cta-inline {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background: #e74c3c;
    color: white;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    background: #c0392b;
    transform: translateY(-3px);
}

/* Benefits Section */
.benefits-reveal {
    padding: 5rem 1.5rem;
}

.benefits-reveal h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

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

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

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

.benefit-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.benefit-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.benefit-content p {
    font-size: 1.05rem;
    color: #555;
}

/* Trust Building */
.trust-building {
    padding: 5rem 1.5rem;
}

.trust-building h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
}

.trust-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.trust-card {
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

/* Visual Gallery */
.visual-gallery {
    padding: 3rem 0;
}

.gallery-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
}

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

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Urgency Section */
.urgency-section {
    padding: 5rem 1.5rem;
}

.urgency-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.urgency-text {
    font-size: 1.15rem;
    margin-bottom: 1rem;
}

.urgency-highlight {
    font-size: 1.4rem;
    font-weight: 700;
    color: #e74c3c;
    margin: 2rem 0;
}

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

.countdown-text {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.spots-remaining {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.spots-number {
    font-size: 4rem;
    font-weight: 800;
    color: #e74c3c;
}

.spots-label {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Pricing Section */
.pricing-section {
    padding: 5rem 1.5rem;
}

.pricing-section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 1rem;
}

.pricing-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #555;
}

.pricing-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.price-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
}

.price-card:hover {
    transform: translateY(-5px);
}

.price-card.featured {
    border: 3px solid #e74c3c;
}

.badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: #e74c3c;
    color: white;
    padding: 0.5rem 2rem;
    transform: rotate(45deg);
    font-size: 0.85rem;
    font-weight: 700;
}

.price-header {
    padding: 2rem;
    background: #f8f9fa;
}

.price-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.price-desc {
    color: #555;
    font-size: 1rem;
}

.price-body {
    padding: 2rem;
}

.price-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.price-features li {
    padding-left: 1.5rem;
    position: relative;
}

.price-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.price-footer {
    padding: 0 2rem 2rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #e74c3c;
    margin-bottom: 1.5rem;
}

.btn-select-service {
    width: 100%;
    padding: 1rem;
    background: #e74c3c;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

/* Form Section */
.form-section {
    padding: 5rem 1.5rem;
    background: #f8f9fa;
}

.form-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

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

.booking-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px 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.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    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: #e74c3c;
}

.form-group input[readonly] {
    background: #f8f9fa;
}

.form-consent {
    margin: 2rem 0;
}

.form-consent label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
}

.form-consent input[type="checkbox"] {
    margin-top: 0.3rem;
    cursor: pointer;
}

.form-consent a {
    color: #e74c3c;
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: #27ae60;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #229954;
    transform: translateY(-2px);
}

/* Final CTA */
.final-cta {
    padding: 5rem 1.5rem;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.highlight-large {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e74c3c;
    margin: 2rem 0;
}

.cta-final {
    display: inline-block;
    margin-top: 2rem;
    padding: 1.2rem 3rem;
    background: #e74c3c;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-final:hover {
    background: #c0392b;
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 1.5rem 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-col a {
    color: #bdc3c7;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #e74c3c;
}

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

/* Page Header */
.page-header {
    height: 40vh;
    min-height: 300px;
    background: linear-gradient(135deg, #2c3e50, #e74c3c);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 70px;
}

.header-overlay h1 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.header-overlay p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* About Page */
.about-story,
.about-mission,
.about-values,
.about-team,
.about-impact,
.about-cta {
    padding: 4rem 1.5rem;
}

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

.value-card {
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    margin-bottom: 0.8rem;
    color: #e74c3c;
}

.team-intro {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

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

.team-member {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
}

.member-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border: 4px solid #e74c3c;
}

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

.team-member h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.member-role {
    color: #e74c3c;
    font-weight: 600;
    margin-bottom: 1rem;
}

.impact-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #e74c3c;
}

.stat-label {
    font-size: 1rem;
    color: #555;
    margin-top: 0.5rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #e74c3c;
    color: white;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.cta-button:hover {
    background: #c0392b;
    transform: translateY(-3px);
}

/* Services Page */
.services-intro {
    padding: 4rem 1.5rem;
    text-align: center;
}

.services-list {
    padding: 2rem 1.5rem;
}

.service-detail {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-image {
    overflow: hidden;
    border-radius: 15px;
}

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

.service-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.service-level {
    color: #e74c3c;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-includes {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-includes li {
    list-style: disc;
    margin-bottom: 0.5rem;
}

.service-price {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-label {
    font-weight: 600;
}

.price-amount {
    font-size: 2rem;
    font-weight: 800;
    color: #e74c3c;
}

.services-faq {
    padding: 4rem 1.5rem;
}

.faq-list {
    margin-top: 2rem;
}

.faq-item {
    margin-bottom: 2rem;
}

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

.services-cta {
    padding: 4rem 1.5rem;
    text-align: center;
}

/* Contact Page */
.contact-content {
    padding: 4rem 1.5rem;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 2rem;
}

.contact-text h3 {
    margin-bottom: 0.5rem;
}

.contact-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.map-placeholder {
    position: relative;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: rgba(44, 62, 80, 0.9);
    color: white;
}

.contact-directions {
    padding: 4rem 1.5rem;
}

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

.direction-item {
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.direction-item h3 {
    margin-bottom: 0.8rem;
}

.contact-faq {
    padding: 4rem 1.5rem;
}

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

.faq-card {
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.faq-card h3 {
    margin-bottom: 0.8rem;
    color: #e74c3c;
}

.contact-cta {
    padding: 4rem 1.5rem;
}

/* Thanks Page */
.thanks-hero {
    min-height: 100vh;
    padding: 6rem 1.5rem;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 800px;
    text-align: center;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: #27ae60;
    color: white;
    font-size: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thanks-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.thanks-message {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 3rem;
}

.thanks-details {
    margin: 3rem 0;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.detail-label {
    font-weight: 600;
}

.detail-value {
    color: #e74c3c;
    font-weight: 700;
}

.thanks-next {
    margin: 4rem 0;
}

.thanks-next h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

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

.step-item {
    display: flex;
    gap: 1.5rem;
    text-align: left;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

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

.thanks-note {
    margin: 3rem 0;
    padding: 1.5rem;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 5px;
    text-align: left;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 3rem 0;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #e74c3c;
    color: white;
}

.btn-primary:hover {
    background: #c0392b;
}

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

.btn-secondary:hover {
    background: #e74c3c;
    color: white;
}

.thanks-share {
    margin-top: 4rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
}

.thanks-share h3 {
    margin-bottom: 1rem;
}

/* Legal Pages */
.legal-page {
    padding: 4rem 1.5rem;
    margin-top: 70px;
}

.legal-updated {
    color: #777;
    font-style: italic;
    margin-bottom: 2rem;
}

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

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

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

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

.legal-content ul li {
    list-style: disc;
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: #e74c3c;
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.cookie-table th {
    background: #f8f9fa;
    font-weight: 700;
}

/* Desktop Styles */
@media (min-width: 768px) {
    .nav-menu {
        position: static;
        flex-direction: row;
        transform: translateX(0);
        padding: 0;
        gap: 2rem;
        background: transparent;
        box-shadow: none;
    }

    .hamburger {
        display: none;
    }

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

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

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

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

    .problem-grid,
    .trust-grid,
    .pricing-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .problem-card,
    .trust-card {
        flex: 1 1 calc(50% - 1rem);
    }

    .price-card {
        flex: 1 1 calc(33.333% - 1.5rem);
    }

    .gallery-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .gallery-item {
        flex: 1 1 calc(50% - 0.5rem);
    }

    .gallery-item.tall {
        flex: 1 1 calc(33.333% - 0.5rem);
    }

    .gallery-item.wide {
        flex: 1 1 calc(66.666% - 0.5rem);
    }

    .footer-container {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-col {
        flex: 1;
    }

    .testimonial-card {
        flex-direction: row;
        align-items: center;
    }

    .values-grid,
    .team-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card,
    .team-member {
        flex: 1 1 calc(50% - 1rem);
    }

    .contact-grid {
        flex-direction: row;
    }

    .contact-info,
    .contact-map {
        flex: 1;
    }

    .directions-grid,
    .faq-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .direction-item,
    .faq-card {
        flex: 1 1 calc(50% - 1rem);
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .problem-card {
        flex: 1 1 calc(25% - 1.5rem);
    }

    .value-card,
    .team-member {
        flex: 1 1 calc(25% - 1.5rem);
    }

    .direction-item,
    .faq-card {
        flex: 1 1 calc(33.333% - 1rem);
    }
}