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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background: #ffffff;
}

/* Typography */
h1 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

h2 {
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
}

h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #333;
}

p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    color: #444;
}

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

a:hover {
    color: #8b6914;
}

/* Container Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

/* Navigation - Floating Style */
.floating-nav {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    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: 280px;
}

.nav-brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    white-space: nowrap;
}

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

.nav-links a {
    color: #2c2c2c;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #b8860b;
}

/* Hero Section - Visual First */
.hero-visual {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 0;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e8d5c4 0%, #d4b5a0 100%);
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 900px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(5px);
    border-radius: 20px;
}

.hero-overlay h1 {
    font-size: 3.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.hero-overlay p {
    font-size: 1.4rem;
    color: #555;
}

/* Page Hero (for other pages) */
.page-hero {
    padding: 10rem 0 4rem;
    background: linear-gradient(135deg, #f5ebe0 0%, #e8d5c4 100%);
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.3rem;
    color: #555;
}

/* Story Sections */
.story-intro {
    padding: 6rem 0;
    background: #ffffff;
}

.story-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

/* Image Text Offset Layout */
.image-text-offset {
    padding: 5rem 0;
    background: #f9f9f9;
}

.offset-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    flex-wrap: wrap;
}

.offset-image {
    flex: 1;
    min-width: 300px;
}

.offset-text {
    flex: 1;
    min-width: 300px;
}

/* Placeholder Images */
.placeholder-img {
    background: linear-gradient(135deg, #d4b5a0 0%, #c4a894 100%);
    border-radius: 12px;
}

.img-square {
    width: 100%;
    padding-bottom: 100%;
}

.img-wide {
    width: 100%;
    padding-bottom: 56.25%;
}

.img-portrait {
    width: 100%;
    padding-bottom: 133%;
}

.img-tall {
    width: 100%;
    padding-bottom: 150%;
}

/* Problem Section */
.problem-amplify {
    padding: 6rem 0;
    background: #fafafa;
}

.problem-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.problem-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.problem-card h4 {
    color: #b8860b;
    margin-bottom: 1rem;
}

/* CTA Inline */
.cta-inline {
    padding: 4rem 0;
    background: linear-gradient(135deg, #b8860b 0%, #9a7209 100%);
    text-align: center;
}

.cta-text {
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-large,
.btn-submit,
.btn-select {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: #b8860b;
    color: #ffffff;
}

.btn-primary:hover {
    background: #9a7209;
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background: #b8860b;
    color: #ffffff;
}

.btn-large {
    padding: 1.3rem 3rem;
    font-size: 1.2rem;
}

.btn-submit {
    background: #2c5f2d;
    color: #ffffff;
    width: 100%;
}

.btn-submit:hover {
    background: #1f4820;
}

.btn-select {
    background: #b8860b;
    color: #ffffff;
    width: 100%;
    margin-top: 1rem;
}

.btn-select:hover {
    background: #9a7209;
}

/* Insight Section */
.insight-reveal {
    padding: 6rem 0;
    background: #ffffff;
}

/* Visual Break */
.visual-break {
    padding: 0;
    background: #f5f5f5;
}

.full-image-section {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.image-caption {
    position: absolute;
    bottom: 3rem;
    left: 3rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem 3rem;
    border-radius: 12px;
}

.image-caption p {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
    color: #1a1a1a;
}

/* Trust Building */
.trust-build {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f5ebe0 0%, #e8d5c4 100%);
    text-align: center;
}

.trust-features {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.trust-item {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
}

.trust-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    color: #b8860b;
    margin-bottom: 0.5rem;
}

/* Testimonials */
.testimonials-inline {
    padding: 6rem 0;
    background: #fafafa;
}

blockquote {
    background: #ffffff;
    padding: 2.5rem;
    border-left: 4px solid #b8860b;
    margin: 2rem 0;
    border-radius: 8px;
    font-size: 1.15rem;
    font-style: italic;
    color: #333;
}

cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: #b8860b;
}

/* Benefits Section */
.benefits-stacked {
    padding: 6rem 0;
    background: #ffffff;
}

.benefits-list {
    margin-top: 3rem;
}

.benefit-row {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 5rem;
    flex-wrap: wrap;
}

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

.benefit-visual {
    flex: 1;
    min-width: 300px;
}

.benefit-text {
    flex: 1;
    min-width: 300px;
}

/* How It Works */
.how-it-works {
    padding: 6rem 0;
    background: #f9f9f9;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 3rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
}

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

/* Services and Pricing */
.services-pricing {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f5ebe0 0%, #e8d5c4 100%);
}

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card.featured {
    border: 3px solid #b8860b;
    transform: scale(1.02);
}

.badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #b8860b;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-card p {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #b8860b;
    margin: 1rem 0;
}

/* Form Section */
.form-section {
    padding: 6rem 0;
    background: #ffffff;
}

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

.contact-form {
    max-width: 600px;
    margin: 2rem auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #b8860b;
}

.form-group input[readonly] {
    background: #f5f5f5;
    cursor: not-allowed;
}

/* Urgency Block */
.urgency-block {
    padding: 4rem 0;
    background: linear-gradient(135deg, #8b6914 0%, #6b5310 100%);
    text-align: center;
}

.urgency-block h3 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.urgency-block p {
    color: #f5f5f5;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Final CTA */
.final-cta {
    padding: 6rem 0;
    background: #fafafa;
    text-align: center;
}

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

.sticky-btn {
    display: block;
    background: #b8860b;
    color: #ffffff;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    box-shadow: 0 6px 25px rgba(184, 134, 11, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #9a7209;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(184, 134, 11, 0.5);
}

/* Footer */
.site-footer {
    background: #1a1a1a;
    color: #f5f5f5;
    padding: 4rem 0 2rem;
}

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

.footer-brand h3 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: #aaa;
}

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

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

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-col a {
    display: block;
    color: #ccc;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
    color: #888;
    max-width: 1200px;
    margin: 2rem auto 0;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #2c5f2d;
    color: #ffffff;
}

.btn-accept:hover {
    background: #1f4820;
}

.btn-reject {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-reject:hover {
    background: #ffffff;
    color: #1a1a1a;
}

/* About Page Specific */
.about-story {
    padding: 6rem 0;
    background: #ffffff;
}

.visual-split {
    padding: 5rem 0;
    background: #f9f9f9;
}

.split-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    flex-wrap: wrap;
}

.split-image {
    flex: 1;
    min-width: 300px;
}

.split-text {
    flex: 1;
    min-width: 300px;
}

.values-section {
    padding: 6rem 0;
    background: #fafafa;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: #ffffff;
    border-radius: 12px;
    border-left: 4px solid #b8860b;
}

.team-intro {
    padding: 6rem 0;
    background: #ffffff;
}

.approach-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f5ebe0 0%, #e8d5c4 100%);
}

.approach-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.approach-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
}

.results-proof {
    padding: 6rem 0;
    background: #fafafa;
}

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

.cta-about {
    padding: 5rem 0;
    background: #ffffff;
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Services Page Specific */
.services-detailed {
    padding: 6rem 0;
    background: #ffffff;
}

.service-detail-card {
    background: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
    position: relative;
}

.service-detail-card.featured-service {
    border: 3px solid #b8860b;
}

.service-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: #b8860b;
    color: #ffffff;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #b8860b;
    margin: 0;
}

.service-detail-body h4 {
    margin-top: 2rem;
    color: #b8860b;
}

.service-benefits {
    list-style: none;
    margin: 1rem 0 2rem;
}

.service-benefits li {
    padding: 0.6rem 0 0.6rem 2rem;
    position: relative;
    color: #444;
}

.service-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: 700;
}

.service-summary {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 2rem;
}

.service-ideal {
    background: #f5ebe0;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    font-style: italic;
}

.services-faq {
    padding: 6rem 0;
    background: #f9f9f9;
}

.faq-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.faq-item h4 {
    color: #b8860b;
}

.cta-services {
    padding: 5rem 0;
    background: #ffffff;
    text-align: center;
}

/* Contact Page Specific */
.contact-info-section {
    padding: 6rem 0;
    background: #ffffff;
}

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

.contact-main {
    flex: 2;
    min-width: 300px;
}

.contact-sidebar {
    flex: 1;
    min-width: 280px;
}

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

.contact-detail h3 {
    color: #b8860b;
    margin-bottom: 1rem;
}

.contact-detail a {
    color: #b8860b;
    font-weight: 600;
}

.note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-box {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.contact-box h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.contact-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f5ebe0 0%, #e8d5c4 100%);
    text-align: center;
}

/* Thanks Page Specific */
.thanks-hero {
    padding: 10rem 0 6rem;
    background: linear-gradient(135deg, #f5ebe0 0%, #e8d5c4 100%);
}

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

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

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

.thanks-details {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.selected-service-display {
    text-align: left;
}

.service-name {
    font-weight: 600;
    color: #b8860b;
    font-size: 1.2rem;
}

.thanks-info {
    color: #666;
    font-size: 1.05rem;
}

.thanks-next-steps {
    padding: 6rem 0;
    background: #ffffff;
}

.next-steps {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.next-step {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 12px;
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: #b8860b;
    color: #ffffff;
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 50px;
    margin-bottom: 1rem;
}

.thanks-explore {
    padding: 6rem 0;
    background: #f9f9f9;
    text-align: center;
}

.thanks-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Legal Pages */
.legal-page {
    padding: 8rem 0 6rem;
    background: #ffffff;
}

.legal-date {
    font-style: italic;
    color: #888;
    margin-bottom: 3rem;
}

.legal-page h2 {
    margin-top: 3rem;
    color: #b8860b;
}

.legal-page h3 {
    margin-top: 2rem;
}

.legal-page ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-page li {
    margin-bottom: 0.5rem;
    color: #444;
}

/* Responsive Design */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    .floating-nav {
        flex-direction: column;
        gap: 1rem;
        top: 1rem;
        padding: 1rem 1.5rem;
        width: calc(100% - 2rem);
        min-width: auto;
    }

    .nav-links {
        justify-content: center;
        gap: 1rem;
    }

    .hero-visual {
        height: 70vh;
        min-height: 500px;
    }

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

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .offset-container,
    .split-container,
    .benefit-row {
        flex-direction: column;
        gap: 2rem;
    }

    .benefit-row.reverse {
        flex-direction: column;
    }

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

    .service-card {
        min-width: 100%;
    }

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

    .sticky-btn {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }

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

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

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

    .service-detail-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-buttons,
    .thanks-links {
        flex-direction: column;
        align-items: center;
    }
}

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

    .hero-overlay {
        padding: 1.5rem;
    }

    .problem-card,
    .service-card {
        padding: 1.5rem;
    }

    .btn-primary,
    .btn-secondary,
    .btn-large {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }
}
