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

:root {
    --primary-color: #1a5f7a;
    --secondary-color: #57a8c4;
    --accent-color: #f4a261;
    --text-dark: #2d3142;
    --text-light: #4f5d75;
    --background-light: #f8f9fa;
    --white: #ffffff;
    --border-color: #e0e4e8;
    --success-color: #2a9d8f;
    --warning-color: #e76f51;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    font-size: 16px;
}

/* Editorial Story Layout */
.story-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
}

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

/* Navigation - Minimal Hidden Style */
.nav-wrapper {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    backdrop-filter: blur(10px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 15px;
    transition: color 0.3s ease;
    font-weight: 500;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* Hero Section - Editorial Style */
.hero-editorial {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8eef3 100%);
}

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

.hero-label {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero-editorial h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 28px;
    color: var(--text-dark);
    font-weight: 700;
}

.hero-subtitle {
    font-size: 22px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-image {
    margin-top: 50px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.hero-image img {
    width: 100%;
    display: block;
    height: auto;
}

/* Story Section - Editorial Flow */
.story-section {
    padding: 70px 0;
}

.story-section.alt-bg {
    background: var(--background-light);
}

.section-intro {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 24px;
    font-style: italic;
    line-height: 1.8;
}

.story-section h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 28px;
    color: var(--text-dark);
    font-weight: 700;
}

.story-section h3 {
    font-size: 26px;
    line-height: 1.4;
    margin: 40px 0 20px;
    color: var(--text-dark);
    font-weight: 600;
}

.story-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: var(--text-light);
}

.story-section ul {
    margin: 28px 0;
    padding-left: 0;
    list-style: none;
}

.story-section li {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: var(--text-light);
    padding-left: 32px;
    position: relative;
}

.story-section li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 20px;
}

/* Inline Image in Story */
.inline-image {
    margin: 50px 0;
    border-radius: 8px;
    overflow: hidden;
}

.inline-image img {
    width: 100%;
    display: block;
    height: auto;
}

.image-caption {
    text-align: center;
    font-size: 14px;
    color: var(--text-light);
    margin-top: 12px;
    font-style: italic;
}

/* CTA Inline Style */
.cta-inline {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    margin: 12px 8px;
}

.cta-inline:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 95, 122, 0.25);
}

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

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

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, #fff5eb 0%, #ffe8d1 100%);
    padding: 36px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
    margin: 40px 0;
}

.highlight-box h3 {
    margin-top: 0;
    color: var(--text-dark);
}

/* Testimonial Inline */
.testimonial-inline {
    background: var(--white);
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin: 40px 0;
    border-left: 4px solid var(--secondary-color);
}

.testimonial-text {
    font-size: 19px;
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 600;
}

.testimonial-role {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 400;
}

/* Services Grid - Editorial Adapted */
.services-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 50px 0;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.service-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 16px;
}

.service-card h3 {
    font-size: 24px;
    margin: 0;
    color: var(--text-dark);
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.price-note {
    font-size: 13px;
    color: var(--text-light);
    display: block;
    margin-top: 4px;
}

.service-description {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.service-features li {
    padding-left: 28px;
    margin-bottom: 12px;
    position: relative;
    font-size: 16px;
    color: var(--text-light);
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 18px;
}

.select-service-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 16px;
}

.select-service-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.select-service-btn.selected {
    background: var(--success-color);
}

/* Form Section */
.form-section {
    background: var(--background-light);
    padding: 70px 0;
}

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

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.form-intro p {
    font-size: 18px;
    color: var(--text-light);
}

.contact-form {
    background: var(--white);
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    max-width: 600px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: var(--white);
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 16px 48px;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 95, 122, 0.3);
}

.submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    padding: 20px;
    text-align: center;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

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

.sticky-cta-text {
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
}

.sticky-cta-btn {
    background: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 14px 36px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: #e89554;
    transform: translateY(-2px);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(45, 49, 66, 0.97);
    padding: 24px;
    z-index: 10000;
    backdrop-filter: blur(10px);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

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

.cookie-text {
    color: var(--white);
    font-size: 15px;
    line-height: 1.6;
    flex: 1;
    min-width: 250px;
}

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

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

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accept-btn {
    background: var(--success-color);
    color: var(--white);
}

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

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

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

/* Footer */
footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 48px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--white);
}

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

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

.footer-links a {
    color: #c0c5ce;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

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

/* Thanks Page */
.thanks-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
}

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

.checkmark {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--success-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.checkmark svg {
    width: 48px;
    height: 48px;
    fill: var(--white);
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.thanks-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.7;
}

.back-home {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 24px;
    transition: all 0.3s ease;
}

.back-home:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Contact Page Styles */
.contact-info {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.info-item {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.info-label {
    font-weight: 600;
    color: var(--text-dark);
    min-width: 140px;
}

.info-value {
    color: var(--text-light);
}

/* Policy Pages */
.policy-page {
    padding: 80px 0;
}

.policy-page h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.policy-date {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.policy-page h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.policy-page h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.policy-page p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-light);
}

.policy-page ul {
    margin: 20px 0;
    padding-left: 32px;
}

.policy-page li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: var(--text-light);
}

/* About Page */
.about-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8eef3 100%);
    padding: 80px 0 60px;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.about-hero p {
    font-size: 20px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.about-content {
    padding: 70px 0;
}

/* Services Page */
.services-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8eef3 100%);
    padding: 80px 0 60px;
    text-align: center;
}

.services-hero h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

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

.services-content {
    padding: 70px 0;
}

/* Urgency Elements */
.urgency-tag {
    display: inline-block;
    background: var(--warning-color);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}

.trust-badges {
    display: flex;
    gap: 32px;
    margin: 40px 0;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-badge {
    text-align: center;
}

.badge-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 8px;
}

.badge-text {
    font-size: 14px;
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 20px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        gap: 16px;
    }

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

    .hamburger {
        display: flex;
    }

    .hero-editorial h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .story-section h2 {
        font-size: 28px;
    }

    .story-section h3 {
        font-size: 22px;
    }

    .story-section p,
    .story-section li {
        font-size: 16px;
    }

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

    .contact-form {
        padding: 32px 24px;
    }

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

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

    .footer-content {
        flex-direction: column;
        gap: 32px;
    }

    .thanks-content h1 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .hero-editorial h1 {
        font-size: 28px;
    }

    .story-section h2 {
        font-size: 24px;
    }

    .service-card {
        padding: 28px 20px;
    }
}
