/* Reuse patterns from services.css */

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    color: #fff;
}

.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
    z-index: -2;
}

.hero-content--left {
    max-width: 820px;
}

.hero.hero--service {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    padding: 8px 16px;
}

.pill--outline {
    color: #f7d34f;
    border: 1px solid #f7d34f;
    background-color: rgba(0, 0, 0, 0.18)
}

.hero.hero--service h1 {
    margin: 18px 0 40px;
    font-size: 48px;
    line-height: 1.05;
    word-break: break-word;
    overflow-wrap: break-word;
}

.hero-lead {
    margin: 0 0 16px;
    font-size: 20px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.92);
    max-width: 760px;
}

.hero-paragraph {
    margin: 0 0 24px;
    font-size: 18px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.82);
    max-width: 760px;
}

.hero-bullets--service {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin: 18px 0 22px;
}

.bullet {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.10);
    font-weight: 600;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.92);
}

.bullet-icon {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: rgba(247, 211, 79, 0.18);
    color: #f7d34f;
    border: 1px solid rgba(247, 211, 79, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bullet-icon svg {
    width: 18px;
    height: 18px;
}

.btn-hero--service {
    display: inline-flex;
    cursor: pointer;
}

/* Section Base */
.section-base {
    padding: 80px 0;
    background-color: #fafafa;
}

.section-base--white {
    background-color: #ffffff;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin: 0 0 16px;
    color: #111;
    font-weight: 700;
}

.section-title--left {
    text-align: left;
}

.section-subtitle {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 42px;
    font-size: 18px;
    line-height: 1.6;
    color: #6b7280;
}

/* Grid specific to new contents */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

/* Cards (Services) */
.service-card {
    background: #ffffff;
    border: 1px solid #ededed;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: #f7d34f;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.service-icon--dark {
    background: #111;
    color: #f7d34f;
}

.service-icon svg {
    width: 24px;
    height: 24px;
}

.service-card h3 {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 700;
    color: #111;
}

.service-card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #374151;
}

/* Text Content blocks */
.content-block {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.content-block-left {
    max-width: 800px;
    margin: 0 auto 20px;
    text-align: left;
    background: #ffffff;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.03);
}

.content-block-left h3 {
    margin-top: 0;
}

.content-block-left strong {
    display: block;
    margin-bottom: 12px;
}

.content-block-left--highlight {
    background: #f3f4f6;
}

.content-text {
    font-size: 18px;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 16px;
}

.content-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.content-list--spaced {
    margin-bottom: 32px;
}

.content-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    color: #111;
    line-height: 1.5;
}

.content-list svg {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    color: #f59e0b;
    flex-shrink: 0;
}

/* Process List */
.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    background: #ffffff;
    border: 1px solid #ededed;
    border-radius: 12px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.process-step-num {
    width: 42px;
    height: 42px;
    background: #f7d34f;
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.process-step-info h3 {
    margin: 0 0 4px;
    font-size: 18px;
    font-weight: 700;
    color: #111;
}

.process-step-info p {
    margin: 0;
    font-size: 16px;
    color: #6b7280;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
}

.faq-question {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin: 0 0 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-question::before {
    content: "Q:";
    color: #f59e0b;
}

.faq-answer {
    font-size: 16px;
    color: #374151;
    margin: 0;
    line-height: 1.6;
}

/* Callout Section */
.callout-section {
    background: #111;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.callout-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.callout-text {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.8);
}

/* Contact Form from contact.css */
.contact-form-card {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Modal Styles */
.modal {
    position: fixed;
    inset: 0;
    z-index: 1050;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.is-open {
    display: flex;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    width: 100%;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    z-index: 10;
    animation: modalFadeIn 0.3s ease-out;
}

.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 4px;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    background: #f3f4f6;
    border: none;
    border-radius: 50%;
    font-size: 16px;
    color: #4b5563;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    z-index: 20;
}

.modal-close:hover {
    background: #e5e7eb;
    color: #111;
}

.modal .contact-form-card {
    margin: 0;
    border: none;
    box-shadow: none;
    border-radius: 16px;
    padding: 40px 40px 30px 40px;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes modalFadeInMobile {
    from {
        opacity: 0;
        transform: translateY(100%);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}

.form-text {
    font-size: 16px;
    color: #6b7280;
    text-align: center;
    margin-bottom: 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.field label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.field .required {
    color: #dc2626;
}

.field input,
.field textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 16px;
    background: #f9fafb;
    font-family: inherit;
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.honeypot-wrapper {
    display: none;
}

.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: #4b5563;
    line-height: 1.5;
    cursor: pointer;
}

.checkbox input {
    margin-top: 2px;
    cursor: pointer;
}

.checkbox--spaced {
    margin-top: 10px;
}

.text-link--highlight {
    color: #f59e0b;
    text-decoration: underline;
}

.btn-full {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 14px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    margin-top: 10px;
}

.btn-full svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* ===== Form alert ===== */
.form-alert {
    display: none;
    margin-top: 16px;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 16px;
    line-height: 1.5;
}

.form-alert.success {
    display: block;
    background-color: #e6f6ee;
    color: #0f5132;
    border: 1px solid #badbcc;
}

.form-alert.error {
    display: block;
    background-color: #fdecea;
    color: #842029;
    border: 1px solid #f5c2c7;
}

/* CTA Final Section */
.cta-final {
    padding: 80px 0;
    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.75)), linear-gradient(135deg, #0f172a, #020617);
    color: #ffffff;
    text-align: center;
}

.cta-inner {
    max-width: 720px;
    margin: 0 auto;
}

.cta-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.2;
}

.cta-text {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
}

.cta-btn {
    display: inline-block;
    padding: 16px 32px;
    font-size: 18px;
    border-radius: 16px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(250, 204, 21, 0.35);
}

.cta-note {
    margin-top: 18px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
}

/* responsive */
@media (max-width: 900px) {
    .hero.hero--service h1 {
        font-size: 38px;
    }

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .field-row {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        padding: 24px;
    }
}

@media (max-width: 768px) {
    .modal {
        padding: 0;
        align-items: flex-end;
    }

    .modal.is-open {
        display: flex;
    }

    .modal-content {
        max-height: 95vh;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        animation: modalFadeInMobile 0.3s ease-out;
    }

    .modal .contact-form-card {
        padding: 40px 24px 30px 24px;
    }
}