:root {
    --color-primary: #8B4513;
    --color-primary-dark: #6B3410;
    --color-secondary: #D4A574;
    --color-accent: #2D5016;
    --color-text: #2C2C2C;
    --color-text-light: #5A5A5A;
    --color-bg: #FDFBF7;
    --color-bg-alt: #F5EFE6;
    --color-bg-dark: #3D3229;
    --color-white: #FFFFFF;
    --color-border: #E5DED3;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --transition: 0.3s ease;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-bg);
}

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

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

a:hover {
    color: var(--color-primary-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-text);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

@media (min-width: 768px) {
    h1 { font-size: 3.5rem; }
    h2 { font-size: 2.5rem; }
    h3 { font-size: 1.75rem; }
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-bg-dark);
    color: var(--color-white);
    padding: 20px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform var(--transition);
}

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

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

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
}

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

.btn-cookie {
    padding: 10px 20px;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all var(--transition);
}

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

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

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

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

/* Navigation */
.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 20px;
    transition: all var(--transition);
}

.nav-floating.scrolled {
    background: rgba(253, 251, 247, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    transition: color var(--transition);
}

.nav-floating.scrolled .logo {
    color: var(--color-primary);
}

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

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

.nav-floating.scrolled .nav-toggle span {
    background: var(--color-text);
}

.nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--color-bg);
    padding: 80px 30px;
    list-style: none;
    transition: right var(--transition);
    box-shadow: var(--shadow-lg);
}

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

.nav-links li {
    margin-bottom: 20px;
}

.nav-links a {
    font-size: 1.1rem;
    color: var(--color-text);
    display: block;
    padding: 10px 0;
}

.nav-links a:hover {
    color: var(--color-primary);
}

.nav-cta {
    background: var(--color-primary);
    color: var(--color-white) !important;
    padding: 12px 24px !important;
    border-radius: var(--radius-sm);
    text-align: center;
    margin-top: 20px;
    display: inline-block;
}

.nav-cta:hover {
    background: var(--color-primary-dark);
}

@media (min-width: 900px) {
    .nav-toggle {
        display: none;
    }

    .nav-links {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        padding: 0;
        display: flex;
        align-items: center;
        gap: 30px;
        box-shadow: none;
    }

    .nav-links li {
        margin-bottom: 0;
    }

    .nav-links a {
        font-size: 0.95rem;
        padding: 0;
        color: var(--color-white);
    }

    .nav-floating.scrolled .nav-links a {
        color: var(--color-text);
    }

    .nav-cta {
        margin-top: 0;
    }
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
    display: block;
}

/* Hero Section */
.hero-immersive {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(135deg, #3D3229 0%, #5C4A3D 100%);
    background-image: url('https://images.unsplash.com/photo-1596040033229-a9821ebd058d?w=1920&q=80');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(45,35,28,0.7) 0%, rgba(45,35,28,0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-tag {
    display: inline-block;
    background: var(--color-secondary);
    color: var(--color-text);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.hero-content h1 {
    color: var(--color-white);
    margin-bottom: 20px;
}

.hero-content h1 em {
    font-style: italic;
    color: var(--color-secondary);
}

.hero-subtitle {
    color: rgba(255,255,255,0.85);
    font-size: 1.2rem;
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: rotate(45deg) translateY(0); }
    50% { transform: rotate(45deg) translateY(8px); }
}

/* Story Hook */
.story-hook {
    padding: 100px 20px;
    background: var(--color-bg);
}

.story-intro {
    text-align: center;
    margin-bottom: 50px;
}

.story-intro h2 {
    margin-bottom: 20px;
}

.lead-text {
    font-size: 1.3rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

.story-block {
    max-width: 650px;
    margin: 0 auto;
}

.story-block p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--color-text);
}

/* Problem Section */
.problem-amplify {
    display: flex;
    flex-direction: column;
    background: var(--color-bg-alt);
}

.problem-visual {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.problem-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%) contrast(1.1);
}

.problem-content {
    padding: 60px 20px;
}

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

.problem-content h2 {
    margin-bottom: 30px;
}

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

.problem-list li {
    padding: 15px 0;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.problem-list li:last-child {
    border-bottom: none;
}

.problem-list strong {
    font-weight: 400;
    color: var(--color-text-light);
}

.highlight-bad {
    font-size: 1.3rem;
    font-weight: 700;
    color: #C0392B;
}

.problem-conclusion {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text);
}

@media (min-width: 900px) {
    .problem-amplify {
        flex-direction: row;
    }

    .problem-visual {
        width: 45%;
        height: auto;
        min-height: 500px;
    }

    .problem-content {
        width: 55%;
        padding: 80px 60px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

/* Insight Section */
.insight-section {
    padding: 80px 20px;
    background: var(--color-bg);
}

.insight-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 50px 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    max-width: 700px;
    margin: 0 auto;
}

.insight-icon {
    color: var(--color-accent);
    margin-bottom: 25px;
}

.insight-card h3 {
    margin-bottom: 20px;
    font-size: 1.6rem;
}

.insight-card p {
    color: var(--color-text-light);
    font-size: 1.1rem;
}

/* Solution Section */
.solution-reveal {
    padding: 100px 20px;
    background: var(--color-bg-alt);
    position: relative;
    overflow: hidden;
}

.solution-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30z' fill='%238B4513'/%3E%3C/svg%3E");
    background-size: 60px 60px;
}

.solution-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.solution-header h2 {
    max-width: 600px;
    margin: 0 auto;
}

.solution-features {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.feature-visual {
    width: 100%;
    max-width: 500px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.feature-text {
    text-align: center;
}

.feature-text h3 {
    margin-bottom: 15px;
}

.feature-text p {
    color: var(--color-text-light);
    font-size: 1.05rem;
}

@media (min-width: 900px) {
    .feature-item {
        flex-direction: row;
        gap: 60px;
    }

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

    .feature-visual {
        width: 50%;
    }

    .feature-text {
        width: 50%;
        text-align: left;
    }
}

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

.trust-testimonials h2 {
    text-align: center;
    margin-bottom: 50px;
}

.testimonial-flow {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonial-item {
    background: var(--color-white);
    padding: 35px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-secondary);
    box-shadow: var(--shadow-sm);
}

.testimonial-item.featured {
    border-left-color: var(--color-primary);
    background: var(--color-bg-alt);
}

.testimonial-item p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--color-text);
}

.testimonial-item cite {
    font-style: normal;
    color: var(--color-text-light);
    font-size: 0.95rem;
}

@media (min-width: 768px) {
    .testimonial-flow {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

/* Mid-page CTA */
.cta-midpage {
    padding: 80px 20px;
    background: var(--color-primary);
}

.cta-midpage-inner {
    text-align: center;
}

.cta-midpage h2 {
    color: var(--color-white);
    margin-bottom: 15px;
}

.cta-midpage p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.cta-midpage .btn-primary {
    background: var(--color-white);
    color: var(--color-primary);
}

.cta-midpage .btn-primary:hover {
    background: var(--color-secondary);
    color: var(--color-text);
}

/* Benefits Grid */
.benefits-grid {
    padding: 100px 20px;
    background: var(--color-bg);
}

.benefits-header {
    text-align: center;
    margin-bottom: 60px;
}

.benefits-header h2 {
    margin-top: 10px;
}

.benefits-items {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.benefit-card {
    flex: 1;
    min-width: 280px;
    padding: 35px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.benefit-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 15px;
}

.benefit-card h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.benefit-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* Process Section */
.process-section {
    padding: 100px 20px;
    background: var(--color-bg-alt);
}

.process-section h2 {
    text-align: center;
    margin-bottom: 60px;
}

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

.process-step {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.step-marker {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
}

.step-content h3 {
    margin-bottom: 8px;
}

.step-content p {
    color: var(--color-text-light);
}

@media (min-width: 768px) {
    .process-timeline {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 30px;
    }

    .process-step {
        flex: 1;
        min-width: 200px;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

/* Pricing Section */
.pricing-reveal {
    padding: 100px 20px;
    background: var(--color-bg);
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-subtext {
    color: var(--color-text-light);
    font-size: 1.1rem;
    margin-top: 15px;
}

.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.price-card {
    flex: 1;
    min-width: 260px;
    max-width: 350px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all var(--transition);
    position: relative;
}

.price-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.price-card.featured {
    border: 2px solid var(--color-primary);
}

.price-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 5px 40px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    transform: rotate(45deg);
}

.price-card-header {
    padding: 30px 25px 20px;
    text-align: center;
    background: var(--color-bg-alt);
}

.price-card-header h3 {
    margin-bottom: 5px;
}

.price-card-header p {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.price-card-body {
    padding: 25px;
    flex-grow: 1;
}

.price-includes {
    list-style: none;
}

.price-includes li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 0.95rem;
    color: var(--color-text);
}

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

.price-card-footer {
    padding: 25px;
    text-align: center;
    border-top: 1px solid var(--color-border);
}

.price-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.btn-select-service {
    width: 100%;
    padding: 12px 24px;
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-select-service:hover {
    background: var(--color-primary-dark);
}

/* Order Form */
.order-form-section {
    padding: 100px 20px;
    background: var(--color-bg-alt);
}

.form-wrapper {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    box-shadow: var(--shadow-md);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    margin-bottom: 10px;
}

.form-header p {
    color: var(--color-text-light);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: border-color var(--transition);
}

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

.form-row {
    display: flex;
    flex-direction: column;
    gap: 0;
}

@media (min-width: 600px) {
    .form-row {
        flex-direction: row;
        gap: 20px;
    }

    .form-row .form-group {
        flex: 1;
    }
}

.form-consent {
    margin-bottom: 30px;
}

.checkbox-label {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    cursor: pointer;
}

.checkbox-label input {
    width: auto;
    margin-top: 4px;
}

.checkbox-label span {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.checkbox-label a {
    text-decoration: underline;
}

/* Urgency Section */
.urgency-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--color-bg-dark) 0%, #4A3C30 100%);
}

.urgency-content {
    text-align: center;
}

.urgency-icon {
    color: var(--color-secondary);
    margin-bottom: 25px;
}

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

.urgency-content p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

/* Guarantee */
.guarantee-section {
    padding: 80px 20px;
    background: var(--color-bg);
}

.guarantee-box {
    background: var(--color-white);
    border: 2px dashed var(--color-secondary);
    border-radius: var(--radius-lg);
    padding: 50px 30px;
    text-align: center;
}

.guarantee-box h2 {
    margin-bottom: 20px;
    color: var(--color-accent);
}

.guarantee-box p {
    color: var(--color-text-light);
    font-size: 1.1rem;
    max-width: 550px;
    margin: 0 auto 25px;
}

.guarantee-badge {
    display: inline-block;
    background: var(--color-accent);
    color: var(--color-white);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Final CTA */
.final-cta {
    position: relative;
    padding: 120px 20px;
    background: url('https://images.unsplash.com/photo-1506368249639-73a05d6f6488?w=1920&q=80') center/cover no-repeat;
}

.final-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(45,35,28,0.85);
}

.final-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.final-cta h2 {
    color: var(--color-white);
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.final-cta p {
    color: rgba(255,255,255,0.85);
    font-size: 1.2rem;
    margin-bottom: 35px;
}

@media (min-width: 768px) {
    .final-cta h2 {
        font-size: 3rem;
    }
}

/* Footer */
.site-footer {
    background: var(--color-bg-dark);
    color: var(--color-white);
    padding: 60px 20px 30px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.footer-links {
    min-width: 150px;
}

.footer-links h4 {
    color: var(--color-white);
    font-size: 1rem;
    margin-bottom: 20px;
}

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

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--color-secondary);
}

.footer-contact {
    min-width: 200px;
}

.footer-contact h4 {
    color: var(--color-white);
    font-size: 1rem;
    margin-bottom: 20px;
}

.footer-contact p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

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

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

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition);
}

.sticky-cta.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.btn-sticky {
    display: block;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition);
}

.btn-sticky:hover {
    background: var(--color-primary-dark);
    color: var(--color-white);
    transform: scale(1.05);
}

/* About Page */
.page-header {
    padding: 150px 20px 80px;
    background: linear-gradient(135deg, var(--color-bg-dark) 0%, #4A3C30 100%);
    text-align: center;
}

.page-header h1 {
    color: var(--color-white);
    margin-bottom: 15px;
}

.page-header p {
    color: rgba(255,255,255,0.8);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    padding: 80px 20px;
}

.about-story {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-bottom: 80px;
}

.about-story-text h2 {
    margin-bottom: 25px;
}

.about-story-text p {
    margin-bottom: 20px;
    color: var(--color-text);
    font-size: 1.05rem;
}

.about-story-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

@media (min-width: 900px) {
    .about-story {
        flex-direction: row;
        align-items: center;
    }

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

    .about-story-image img {
        height: 450px;
    }
}

.about-values {
    padding: 80px 20px;
    background: var(--color-bg-alt);
}

.about-values h2 {
    text-align: center;
    margin-bottom: 50px;
}

.values-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.value-item {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    text-align: center;
    padding: 30px;
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.value-item h3 {
    margin-bottom: 12px;
}

.value-item p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.team-section {
    padding: 80px 20px;
}

.team-section h2 {
    text-align: center;
    margin-bottom: 50px;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.team-member {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 4px solid var(--color-secondary);
}

.team-member h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.team-member .role {
    color: var(--color-primary);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.team-member p {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

/* Services Page */
.services-intro {
    padding: 60px 20px;
    text-align: center;
    background: var(--color-bg);
}

.services-intro p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--color-text-light);
}

.services-grid {
    padding: 80px 20px;
    background: var(--color-bg-alt);
}

.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-info {
    padding: 30px;
}

.service-info h3 {
    margin-bottom: 12px;
}

.service-info p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-price span {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.service-price a {
    padding: 10px 20px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
}

.service-price a:hover {
    background: var(--color-primary-dark);
    color: var(--color-white);
}

/* Contact Page */
.contact-section {
    padding: 80px 20px;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h2 {
    margin-bottom: 30px;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--color-primary);
}

.contact-item p {
    color: var(--color-text);
}

.contact-item a {
    color: var(--color-primary);
}

.contact-map {
    background: var(--color-bg-alt);
    border-radius: var(--radius-lg);
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light);
}

@media (min-width: 768px) {
    .contact-grid {
        flex-direction: row;
    }

    .contact-info {
        flex: 1;
    }

    .contact-map {
        flex: 1;
        height: auto;
        min-height: 400px;
    }
}

/* Legal Pages */
.legal-content {
    padding: 80px 20px;
}

.legal-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.legal-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.legal-content p {
    margin-bottom: 15px;
    color: var(--color-text);
}

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

.legal-content li {
    margin-bottom: 8px;
    color: var(--color-text);
}

/* Thanks Page */
.thanks-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    background: var(--color-bg-alt);
}

.thanks-content {
    text-align: center;
    max-width: 600px;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: var(--color-accent);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 3rem;
}

.thanks-content h1 {
    margin-bottom: 20px;
}

.thanks-content p {
    color: var(--color-text-light);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.thanks-content .selected-service {
    background: var(--color-white);
    padding: 20px;
    border-radius: var(--radius-md);
    margin: 30px 0;
    border-left: 4px solid var(--color-primary);
}

.thanks-content .selected-service strong {
    color: var(--color-primary);
}

.thanks-content .btn-primary {
    margin-top: 20px;
}
