﻿@charset "UTF-8";

/* ── HelveticaNow Display – used for headings, bold, heavy text ── */
@font-face {
    font-family: 'Verlag';
    src: url("/fonts/HelveticaNowDisplayThin.otf") format("opentype");
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Verlag';
    src: url("/fonts/HelveticaNowDisplayLight.otf") format("opentype");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Verlag';
    src: url("/fonts/HelveticaNowDisplay.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Verlag';
    src: url("/fonts/HelveticaNowDisplayMedium.otf") format("opentype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Verlag';
    src: url("/fonts/HelveticaNowDisplayBold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Verlag';
    src: url("/fonts/HelveticaNowDisplayXBd.otf") format("opentype");
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Verlag';
    src: url("/fonts/HelveticaNowDisplayBlack.otf") format("opentype");
    font-weight: 900;
    font-style: normal;
}

/* ── HelveticaNow Text – used for body, labels, light copy ── */
@font-face {
    font-family: 'Verlag Book';
    src: url("/fonts/HelveticaNowTextExtraLight.otf") format("opentype");
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Verlag Book';
    src: url("/fonts/HelveticaNowTextLight.otf") format("opentype");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Verlag Book';
    src: url("/fonts/HelveticaNowText.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Verlag Book';
    src: url("/fonts/HelveticaNowTextBold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Verlag Book';
    src: url("/fonts/HelveticaNowTextBlack.otf") format("opentype");
    font-weight: 900;
    font-style: normal;
}

:root {
    /* --color-primary: var(--color-primary); */
    --color-primary: #A31B33;
}

html {
    font-family: 'Verlag';
    color: white;
    scroll-behavior: smooth;
}

body {
    margin: 0px;
    padding: 0px;
    background-color: black;
}

.main {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url('images/receipt_bg-scaled.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 100vh;
}

h1 {
    font-weight: 800;
}

h2 {
}

h3 {
}

a:link {
    text-decoration: none;
    color: white;
}

.form-accept a:link {
    color: var(--color-primary);
}

.h-icon {
    line-height: 24px;
    height: 24px;
    width: 24px;
    fill: white;
}

.main-content {
    margin: 5vh 30vw auto 30vw;
    min-width: max(600px, 40vw);
}

.form-container {
    position: relative;
    background-color: white;
    color: rgb(84, 89, 95);
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.form-fields {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-control {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

    .form-control input:focus {
        outline: 1px solid var(--color-primary);
    }

.form-image {
    height: 70%;
    aspect-ratio: 732 / 1010;
    background-image: url('images/content.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    justify-self: center;
    align-self: center;
    position: absolute;
    right: -15%;
}

.form-control-validation {
    color: var(--color-primary);
}

.form-buttons {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
}

.form-accept {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.4rem;
}

    .form-accept input {
        align-self: start;
    }

    .form-accept label {
        font-size: 0.9rem;
    }

.validation-required {
    color: var(--color-primary);
}

.btn {
    background-color: var(--color-primary);
    border: none;
    color: white;
    font-weight: 700;
    padding: 10px 15px;
    border-radius: 2px;
    cursor: pointer;
    /*width: 50%;*/
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

    .btn.btn-white-border {
        border: 1px solid white;
    }

    .btn:hover {
        background-color: #D82242;
    }

    .btn.w-50 {
        width: 50%;
    }

    .btn.w-70 {
        width: 70%;
    }

    .btn.yellow {
        background-color: #e9c36a;
        background-color: #A31B33;
        color: black;
        color: white;
    }

.alert {
    padding: 1rem;
    background-color: hsla(0, 80.7%, 65.5%, 0.70);
    color: white;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 2fr;
    column-gap: 0.5rem;
}

.search-results {
    display: flex;
    flex-direction: column;
}

.search-results-item {
    cursor: pointer;
}

.form-reciept {
    display: flex;
    flex-direction: column;
    height: 80vh;
    justify-content: center;
}

.footer {
    /* position: sticky;*/
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: rgb(236, 238, 240);
    padding: 0 30vw;
    margin-top: auto;
}

/* custom checkbox styling - start */
*,
*:before,
*:after {
    box-sizing: border-box;
}

.custom-check {
    line-height: 1.1;
    display: grid;
    grid-template-columns: 1em auto;
    gap: 0.2rem;
    color: var(--color-primary);
}

    .custom-check span {
        color: var(--color-primary);
    }

        .custom-check span a {
            color: var(--color-primary);
            text-decoration: none;
        }

            .custom-check span a:hover {
                color: var(--color-primary);
                text-decoration: underline;
                text-underline-offset: 6px;
            }

    .custom-check:not(:last-child) {
        margin-bottom: 14px;
    }

.custom-check--disabled {
    color: grey;
    cursor: not-allowed;
}

input[type="checkbox"] {
    -webkit-appearance: none;
    appearance: none;
    background-color: white;
    margin: 0;
    font: inherit;
    color: var(--color-primary);
    width: 18px;
    height: 18px;
    box-shadow: 0 0 0 1px var(--color-primary);
    border-radius: 1px;
    /* transform: translateY(-0.035em);*/
    display: grid;
    place-content: center;
}

    input[type="checkbox"]::before {
        content: "";
        width: 18px;
        height: 18px;
        background: url("Images/check-ikon.svg") no-repeat center;
        background-size: contain;
        opacity: 0;
        transition: all .1s ease;
        background-size: 50%;
        background-position: center;
    }

    input[type="checkbox"]:checked::before {
        opacity: 1;
    }

    input[type="checkbox"]:disabled {
        --form-control-color: var(--form-control-disabled);
        color: var(--form-control-disabled);
        cursor: not-allowed;
    }
/* custom checkbox styling - end */

.header-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url('images/start_bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 100vh;
}

.header-content {
    display: flex;
    flex-direction: column;
    height: 80vh;
    width: 70vw;
    position: relative;
    justify-content: center;
}

.main-tjek {
    position: relative;
    height: 100vh;
    background-color: black;
    display: flex;
    flex-direction: column;
}

.tjek-logo-container {
    position: absolute;
    top: 0;
    left: 120px;
    width: 136px;
    height: 126px;
    background-color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 100;
}

.tjek-logo {
    aspect-ratio: 90 / 44;
    width: 90px;
    height: 44px;
}

@media (max-width: 480px) {
    .main-content {
        margin: 5vw;
        min-width: 80vw;
    }

    .form-container {
        grid-template-columns: 1fr 0px;
        min-height: 350px;
    }

    .form-image {
        display: none;
    }

    .form-reciept {
        padding: 0 5vw;
    }

    .footer {
        padding: 0 5vw;
    }
}


/* =============================================================
   TAGTEST PAGES (ttj-)
   Shared across: tagtest_landing.html,
                  tagtest_burde_vaere_i_orden.html,
                  tagtest_pa_tide.html
   ============================================================= */

/* ── Shared: header bar ── */
.ttj-header-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

    .ttj-header-bar .ttj-logo {
        font-family: 'Verlag', sans-serif;
        font-weight: 900;
        font-size: 1.4rem;
        letter-spacing: 0.1em;
        color: #111;
    }

/* ── Shared: site footer ── */
.ttj-site-footer {
    background-color: black;
    text-align: center;
    padding: 2rem 1rem 2.5rem;
    /*border-top: 1px solid #eee;*/
}

    .ttj-site-footer p {
        font-family: 'Verlag Book', sans-serif;
        font-size: 0.8rem;
        color: #888;
        line-height: 1.6;
        margin: 0;
    }

    .ttj-site-footer a {
        color: #888;
        text-decoration: none;
    }

        .ttj-site-footer a:hover {
            text-decoration: underline;
        }

    .ttj-site-footer .ttj-footer-icon {
        display: block;
        margin: 0 auto 0.8rem;
        width: 36px;
        height: 36px;
        opacity: 0.5;
    }

/* ── Shared: hero section ── */
.ttj-result-hero {
    position: relative;
    min-height: 55vh;
    background-image: url('images/start_bg.jpg');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 60px;
    /* Extra bottom padding so the card has room to overlap */
    padding-bottom: 80px;
}

.ttj-result-hero-content {
    padding: 60px 120px;
    max-width: 960px;
}

    .ttj-result-hero-content h1 {
        font-family: 'Verlag', sans-serif;
        font-weight: 900;
        font-size: clamp(1.8rem, 3.5vw, 2.6rem);
        text-transform: uppercase;
        letter-spacing: 0.02em;
        color: white;
        margin: 0 0 1.2rem;
    }

    .ttj-result-hero-content p {
        font-family: 'Verlag Book', sans-serif;
        font-weight: 300;
        font-size: 0.95rem;
        line-height: 1.6;
        color: white;
        margin: 0 0 1.5rem;
        max-width: 520px;
    }

/* ── Shared: outline button variants ── */
.ttj-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid white;
    color: white;
    background: transparent;
    font-family: 'Verlag', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 10px 20px;
    cursor: pointer;
    text-decoration: none;
}

    .ttj-btn-outline:hover {
        background-color: rgba(255,255,255,0.15);
    }

    .ttj-btn-outline::after {
        content: '→';
    }

.ttj-btn-outline-gold {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid #d4a843;
    color: #d4a843;
    background: transparent;
    font-family: 'Verlag', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 10px 20px;
    cursor: pointer;
    text-decoration: none;
}

    .ttj-btn-outline-gold:hover {
        background-color: rgba(212, 168, 67, 0.15);
    }

    .ttj-btn-outline-gold::after {
        content: '→';
    }

/* ── Shared: property section ── */
.ttj-property-section {
    background-color: white;
    padding: 0 120px 60px;
}

.ttj-section-headline {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    color: var(--color-primary);
}

    .ttj-section-headline.yellow {
        background-color: #e9c36a;
        background-color: #A31B33;
        color: white;
    }

/* No-photo variant: grey background, card pulled up to overlap the hero above */
.ttj-property-section--no-photo {
    background-color: #c8bfb0;
    background-color: #C0C4C8;
    padding: 0 8vw 3rem;
}

    /* No-photo variant: grey background, card pulled up to overlap the hero above */
    .ttj-property-section--no-photo.yellow {
        background-color: #e9c36a;
        background-color: #A31B33;
    }

    .ttj-property-section--no-photo .ttj-info-card {
        background-color: white;
        padding: 2.5rem 3rem 2rem;
        margin-top: -120px;
        position: relative;
        z-index: 2;
    }

.ttj-property-photo-placeholder {
    width: 100%;
    max-width: 820px;
    height: 300px;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-family: 'Verlag Book', sans-serif;
    font-size: 0.9rem;
    margin: 0 auto;
}

.ttj-address-heading {
    font-family: 'Verlag', sans-serif;
    font-weight: 900;
    font-size: clamp(1rem, 2vw, 1.3rem);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #2a2d33;
    text-align: center;
    margin: 2.5rem 0 2rem;
}

    .ttj-address-heading span {
        color: var(--color-primary);
    }

/* ── Shared: stats grid ── */
.ttj-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem 2rem;
    max-width: 700px;
    margin: 0 auto 1.5rem;
}

/* Inside the info card, stats fill the full card width */
.ttj-info-card .ttj-stats-grid {
    max-width: none;
    margin: 0 0 1.5rem;
}

.ttj-info-card .ttj-address-heading {
    text-align: left;
    margin: 0 0 2rem;
}

.ttj-info-card .ttj-stats-disclaimer {
    max-width: none;
    margin: 0;
}

.ttj-stat-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.ttj-stat-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    opacity: 0.6;
    margin-top: 2px;
}

.ttj-stat-text {
    display: flex;
    flex-direction: column;
}

.ttj-stat-label {
    font-family: 'Verlag Book', sans-serif;
    font-size: 0.8rem;
    color: #888;
    font-weight: 300;
}

.ttj-stat-value {
    font-family: 'Verlag', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: #2a2d33;
}

.ttj-stats-disclaimer {
    font-family: 'Verlag Book', sans-serif;
    font-size: 0.75rem;
    color: #999;
    line-height: 1.5;
    max-width: 700px;
    margin: 0 auto;
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

/* ── Shared: two-column form section base ── */
.ttj-two-col-section {
    padding: 60px 120px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

    .ttj-two-col-section input[type="text"],
    .ttj-two-col-section input[type="email"],
    .ttj-two-col-section input[type="tel"] {
        border: 1px solid rgba(255,255,255,0.6);
        padding: 12px 14px;
        font-family: 'Verlag Book', sans-serif;
        font-size: 0.9rem;
        color: #2a2d33;
        background-color: white;
        outline: none;
        width: 100%;
        box-sizing: border-box;
    }

    .ttj-two-col-section input::placeholder {
        color: #aaa;
    }

    .ttj-two-col-section input:focus {
        outline: 1px solid var(--color-primary);
    }

    .ttj-two-col-section .ttj-form-col {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }

        .ttj-two-col-section .ttj-form-col .btn {
            font-family: 'Verlag', sans-serif;
            font-weight: 700;
            font-size: 0.85rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            border-radius: 0;
            padding: 14px;
        }

        .ttj-two-col-section .ttj-form-col .custom-check {
            font-family: 'Verlag Book', sans-serif;
            font-size: 0.8rem;
            line-height: 1.5;
            color: #2a2d33;
            gap: 0.6rem;
        }

            .ttj-two-col-section .ttj-form-col .custom-check span {
                color: #2a2d33;
                color: black;
            }

/* ── Page 2: newsletter section (grey/taupe) ── */
.ttj-newsletter-section {
    background-color: #C0C4C8;
    color: #2a2d33;
}

    .ttj-newsletter-section.yellow {
        background-color: #e9c36a;
        background-color: #A31B33;
        color: black;
    }



.ttj-newsletter-text h2 {
    font-family: 'Verlag', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    /*color: #2a2d33;*/
    margin: 0 0 0.8rem;
    text-align: start;
}

.ttj-newsletter-text h3 {
    /*color: #2a2d33;*/
}

.ttj-newsletter-text p {
    font-family: 'Verlag Book', sans-serif;
    font-size: 0.9rem;
    /*color: #2a2d33;*/
    line-height: 1.6;
    text-align: start;
}

/* ── Page 3: CTA section (gold) ── */
.ttj-cta-section {
    background-color: #e8d49a;
}

.ttj-cta-text h2 {
    font-family: 'Verlag', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    /*color: var(--color-primary);*/
    margin: 0 0 1.5rem;
}

.ttj-cta-text p {
    font-family: 'Verlag Book', sans-serif;
    font-size: 0.9rem;
    /*color: #2a2d33;*/
    line-height: 1.6;
    margin: 0 0 1rem;
}

    .ttj-cta-text p strong {
        font-family: 'Verlag', sans-serif;
        font-weight: 700;
    }

.ttj-cta-text .ttj-ja-tak {
    font-family: 'Verlag', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: #2a2d33;
    margin: 1rem 0 0.5rem;
}

/* ── Page 1: landing page specific ── */
.ttj-hero-section {
    position: relative;
    min-height: 100vh;
    background-image: url('images/start_bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    padding-top: 60px;
}

.ttj-hero-content {
    padding: 80px 0 60px 120px;
    max-width: 800px;
}

    .ttj-hero-content h1 {
        font-family: 'Verlag', sans-serif;
        font-weight: 900;
        font-size: clamp(2rem, 4vw, 3rem);
        margin: 0 0 1.5rem 0;
        letter-spacing: 0.02em;
        color: white;
        text-transform: uppercase;
    }

    .ttj-hero-content p {
        font-family: 'Verlag Book', sans-serif;
        font-weight: 300;
        font-size: 1rem;
        line-height: 1.6;
        color: white;
        max-width: 580px;
        margin: 0;
    }

.ttj-form-card {
    background-color: rgba(255,255,255,0.96);
    color: rgb(84, 89, 95);
    padding: 2.5rem;
    margin: 0 0 0 120px;
    max-width: 520px;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

    .ttj-form-card .form-control {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .ttj-form-card input[type="text"],
    .ttj-form-card input[type="email"] {
        border: 1px solid rgb(200, 200, 200);
        padding: 14px 16px;
        font-family: 'Verlag Book', sans-serif;
        font-size: 0.95rem;
        color: rgb(84, 89, 95);
        background-color: white;
        outline: none;
        width: 100%;
        box-sizing: border-box;
    }

        .ttj-form-card input[type="text"]:focus,
        .ttj-form-card input[type="email"]:focus {
            outline: 1px solid var(--color-primary);
        }

    .ttj-form-card input::placeholder {
        color: rgb(150, 155, 160);
    }

    .ttj-form-card .btn {
        font-family: 'Verlag', sans-serif;
        font-weight: 700;
        font-size: 0.9rem;
        letter-spacing: 0.1em;
        padding: 16px;
        border-radius: 0;
        text-transform: uppercase;
    }

    .ttj-form-card .custom-check {
        font-family: 'Verlag Book', sans-serif;
        font-size: 0.85rem;
        line-height: 1.5;
        color: rgb(84, 89, 95);
        gap: 0.6rem;
    }

        .ttj-form-card .custom-check span {
            color: rgb(84, 89, 95);
        }

            .ttj-form-card .custom-check span a {
                color: var(--color-primary);
                text-decoration: underline;
                text-underline-offset: 3px;
            }

.ttj-landing-footer {
    margin-top: auto;
    text-align: center;
    color: rgba(255,255,255,0.75);
    font-family: 'Verlag Book', sans-serif;
    font-size: 0.8rem;
    padding: 2rem 1rem 2.5rem;
    line-height: 1.6;
}

    .ttj-landing-footer a {
        color: rgba(255,255,255,0.75);
        text-decoration: none;
    }

        .ttj-landing-footer a:hover {
            text-decoration: underline;
        }

/* ── Address autocomplete dropdown ── */
.ttj-address-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.ttj-address-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    border: 1px solid #ccc;
    border-top: none;
    z-index: 100;
    max-height: 260px;
    overflow-y: auto;
    display: none;
}

/*.ttj-address-wrapper:focus-within .ttj-address-dropdown {
    display: block;
}*/

.ttj-address-dropdown {
    display: block;
}

    .ttj-address-dropdown.active {
        display: block;
    }

.ttj-address-option {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 11px 16px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    color: rgb(84, 89, 95);
    font-family: 'Verlag Book', sans-serif;
    font-size: 0.9rem;
    line-height: 1.3;
}

    .ttj-address-option:last-child {
        border-bottom: none;
    }

    .ttj-address-option:hover {
        background-color: #f7f7f7;
    }

.ttj-option-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    margin-top: 2px;
    opacity: 0.4;
}

.ttj-option-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ttj-option-main strong {
    font-family: 'Verlag', sans-serif;
    font-weight: 700;
    color: #1a1a1a;
}

.ttj-option-sub {
    font-size: 0.78rem;
    color: #aaa;
}

/* ── Field validation message ── */
.ttj-field-validation {
    font-family: 'Verlag Book', sans-serif;
    font-size: 0.8rem;
    color: var(--color-primary);
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}

    .ttj-field-validation svg {
        flex-shrink: 0;
        width: 13px;
        height: 13px;
    }

/* Input with validation error state */
.ttj-input-error {
    outline: 1px solid var(--color-primary) !important;
}

/* ── Validation wrapper for bare input lists (no form-control div) ── */
.ttj-field-wrap {
    display: flex;
    flex-direction: column;
}

.ttj-info-card-body {
    padding: 2.5rem 3rem 2rem;
}

/* Remove padding from the card itself so image goes edge-to-edge */
.ttj-info-card:has(.ttj-info-card-image) {
    padding: 0;
}

/* ── Info card street view image ── */
.ttj-info-card-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center;
    display: block;
    margin-bottom: 0;
}


/* ── Responsive ── */
@media (max-width: 900px) {
    .ttj-result-hero-content {
        padding: 60px 5vw;
    }

    .ttj-property-section {
        padding: 0 5vw 40px;
    }

    .ttj-two-col-section {
        padding: 40px 5vw;
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .ttj-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ttj-hero-content {
        padding: 60px 5vw 40px;
    }

    .ttj-form-card {
        margin: 0 5vw;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .ttj-hero-content {
        padding: 50px 5vw 30px;
    }

    .ttj-form-card {
        margin: 0;
        max-width: 100%;
        padding: 1.5rem;
    }

    .ttj-stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}
