.custom-tour-page {
    --ctp-ink: #10233a;
    --ctp-ocean: #1e6f94;
    --ctp-sky: #49a7cc;
    --ctp-mist: #eaf4fb;
    --ctp-card: rgba(255, 255, 255, 0.84);
    --ctp-card-border: rgba(148, 163, 184, 0.24);
    background:
        radial-gradient(circle at 10% 8%, rgba(73, 167, 204, 0.12) 0%, rgba(73, 167, 204, 0) 42%),
        radial-gradient(circle at 90% 8%, rgba(30, 111, 148, 0.10) 0%, rgba(30, 111, 148, 0) 36%),
        linear-gradient(180deg, #f4f9fd 0%, #f8fbfe 34%, #ffffff 100%);
}

.ctp-main {
    padding-top: 106px;
    position: relative;
}

.ctp-main::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(73, 167, 204, 0.08) 0%, rgba(73, 167, 204, 0) 30%),
        radial-gradient(circle at 84% 28%, rgba(16, 35, 58, 0.06) 0%, rgba(16, 35, 58, 0) 34%);
    pointer-events: none;
}

.ctp-hero {
    position: relative;
    padding: 28px 0 18px;
}

.ctp-hero::before {
    content: "";
    position: absolute;
    inset: 14px 0 0;
    background: linear-gradient(135deg, rgba(16, 35, 58, 0.96) 0%, rgba(30, 111, 148, 0.92) 46%, rgba(73, 167, 204, 0.82) 100%);
    opacity: 0.92;
    pointer-events: none;
    z-index: 0;
}

.ctp-hero::after {
    content: "";
    position: absolute;
    inset: 14px 0 0;
    background-image: url('images/hero section 2.jpg');
    background-size: cover;
    background-position: center;
    mix-blend-mode: multiply;
    opacity: 0.38;
    pointer-events: none;
    z-index: 0;
}

.ctp-hero .container,
.ctp-builder .container {
    position: relative;
    z-index: 1;
}

.ctp-hero-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(290px, 0.75fr);
    gap: 18px;
    align-items: stretch;
}

.ctp-hero-copy {
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 24px;
    padding: 26px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    box-shadow: 0 20px 42px rgba(2, 6, 23, 0.18);
    color: #f8fafc;
}

.ctp-kicker {
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 11px;
    font-weight: 700;
    color: #d9f2ff;
    padding: 7px 13px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(15, 23, 42, 0.22);
}

.ctp-hero h1 {
    margin-top: 12px;
    font-size: clamp(2.2rem, 4.4vw, 3.55rem);
    line-height: 1.03;
    color: #ffffff;
    max-width: 560px;
    letter-spacing: -0.02em;
}

.ctp-hero > .container > .ctp-hero-shell > .ctp-hero-copy > p {
    margin-top: 10px;
    color: rgba(241, 245, 249, 0.92);
    font-size: 15px;
    line-height: 1.8;
    max-width: 620px;
}

.ctp-hero-tags {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ctp-hero-tags span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    color: #f8fbff;
    padding: 9px 13px;
    background: rgba(15, 23, 42, 0.20);
}

.ctp-hero-tags i {
    color: #a7e9ff;
}

.ctp-hero-side {
    display: grid;
    gap: 12px;
}

.ctp-hero-side article {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    color: #e2e8f0;
    padding: 18px;
    box-shadow: 0 18px 34px rgba(2, 6, 23, 0.16);
    overflow: hidden;
}

.ctp-hero-side article::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    pointer-events: none;
}

.ctp-hero-side h3 {
    position: relative;
    font-size: 15px;
    margin-bottom: 6px;
    color: #ffffff;
}

.ctp-hero-side p {
    position: relative;
    font-size: 12px;
    margin: 0;
    color: #dbeafe;
    line-height: 1.7;
}

.ctp-builder {
    padding: 18px 0 76px;
}

.ctp-form-grid {
    display: grid;
    gap: 16px;
}

.ctp-card {
    background: var(--ctp-card);
    border: 1px solid var(--ctp-card-border);
    border-radius: 20px;
    padding: 18px;
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(10px);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.ctp-card:hover {
    transform: translateY(-3px);
    border-color: rgba(73, 167, 204, 0.35);
    box-shadow: 0 22px 36px rgba(15, 23, 42, 0.12);
}

.ctp-card h2 {
    font-size: 16px;
    margin-bottom: 14px;
    color: var(--ctp-ink);
    display: flex;
    align-items: center;
    gap: 10px;
}

.ctp-card h2 i {
    color: var(--ctp-sky);
    font-size: 15px;
}

.ctp-option-grid {
    display: grid;
    gap: 10px;
}

.ctp-option {
    border: 1px solid #d8e4ed;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    border-radius: 14px;
    padding: 13px 14px;
    text-align: left;
    color: var(--ctp-ink);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.22s ease;
    font-family: var(--font-main);
    font-size: 14px;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
}

.ctp-option small {
    display: block;
    margin-top: 4px;
    font-size: 11px;
    color: #64748b;
    font-weight: 500;
}

.ctp-option:hover,
.ctp-option.is-active {
    border-color: rgba(73, 167, 204, 0.55);
    background: linear-gradient(180deg, #f0fbff 0%, #e8f7ff 100%);
    box-shadow: 0 12px 22px rgba(73, 167, 204, 0.18);
    transform: translateY(-1px);
}

.ctp-input {
    width: 100%;
    border: 1px solid #d2ddea;
    border-radius: 14px;
    padding: 12px 14px;
    font: inherit;
    color: var(--ctp-ink);
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.ctp-input::placeholder {
    color: #94a3b8;
}

.ctp-input:focus {
    outline: none;
    border-color: var(--ctp-sky);
    box-shadow: 0 0 0 4px rgba(73, 167, 204, 0.16);
    transform: translateY(-1px);
}

.ctp-counter-wrap {
    display: grid;
    gap: 10px;
}

.ctp-counter-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #dbe5ee;
    border-radius: 14px;
    padding: 12px 14px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fcff 100%);
}

.ctp-counter-item p {
    font-weight: 700;
    color: var(--ctp-ink);
}

.ctp-counter-item small {
    color: #64748b;
    font-size: 11px;
}

.ctp-counter-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ctp-counter-controls button {
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--ctp-sky), var(--ctp-ocean));
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 10px 18px rgba(30, 111, 148, 0.18);
}

.ctp-counter-controls button:hover {
    filter: saturate(1.08);
}

.ctp-counter-controls span {
    min-width: 20px;
    text-align: center;
    font-weight: 800;
    color: var(--ctp-ink);
}

.ctp-budget-label {
    display: block;
    margin-bottom: 10px;
    font-size: 12px;
    color: #475569;
}

.ctp-budget-label strong {
    color: var(--ctp-ink);
}

.ctp-range {
    width: 100%;
    accent-color: var(--ctp-sky);
}

.ctp-dynamic-stack {
    display: grid;
    gap: 12px;
    margin-bottom: 12px;
}

.ctp-dynamic-item {
    border: 1px dashed #cfdbe7;
    border-radius: 16px;
    padding: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.ctp-dynamic-item h3 {
    font-size: 13px;
    margin-bottom: 10px;
    color: var(--ctp-ink);
    letter-spacing: 0.02em;
}

.ctp-dynamic-item .ctp-input {
    margin-bottom: 10px;
}

.ctp-outline-btn {
    border: 1px solid #f59e0b;
    color: #9a5200;
    background: linear-gradient(180deg, #fff7ed 0%, #fff2df 100%);
    border-radius: 999px;
    padding: 9px 14px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.ctp-outline-btn:hover {
    transform: translateY(-1px);
    background: linear-gradient(180deg, #ffedd5 0%, #fde7bc 100%);
    box-shadow: 0 8px 16px rgba(245, 158, 11, 0.14);
}

.ctp-personal-grid {
    display: grid;
    gap: 12px;
}

.ctp-submit-wrap {
    text-align: center;
    padding-top: 4px;
}

.ctp-submit-btn {
    min-width: 280px;
    min-height: 52px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--ctp-sky), var(--ctp-ocean));
    box-shadow: 0 14px 28px rgba(36, 136, 173, 0.28);
}

.ctp-submit-btn:hover {
    background: linear-gradient(135deg, var(--ctp-ocean), #1d7495);
}

.ctp-submit-wrap .review-feedback {
    margin-top: 12px;
}

@media (min-width: 960px) {
    .ctp-form-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 16px;
    }

    .ctp-card-wide {
        grid-column: 1 / -1;
    }

    .ctp-personal-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ctp-personal-grid textarea {
        grid-column: 1 / -1;
        min-height: 130px;
    }

    .ctp-submit-wrap {
        grid-column: 1 / -1;
    }
}

@media (max-width: 900px) {
    .ctp-main {
        padding-top: 84px;
    }

    .ctp-hero-shell {
        grid-template-columns: 1fr;
    }

    .ctp-hero-copy,
    .ctp-hero-side article,
    .ctp-card {
        border-radius: 18px;
    }

    .ctp-submit-btn {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 768px) {
    .ctp-main {
        padding-top: 84px;
    }

    .ctp-hero {
        padding-top: 20px;
    }

    .ctp-hero::before,
    .ctp-hero::after {
        inset: 10px 0 0;
    }

    .ctp-hero-copy {
        padding: 22px;
    }

    .ctp-hero h1 {
        font-size: clamp(1.9rem, 7vw, 2.5rem);
    }

    .ctp-hero > .container > .ctp-hero-shell > .ctp-hero-copy > p {
        font-size: 14px;
    }

    .ctp-hero-side {
        grid-template-columns: 1fr;
    }

    .ctp-card {
        padding: 16px;
    }

    .ctp-card h2 {
        font-size: 14px;
    }

    .ctp-option {
        padding: 12px 13px;
        font-size: 13px;
    }

    .ctp-counter-item {
        padding: 11px 12px;
    }

    .ctp-submit-btn {
        padding-inline: 18px;
        font-size: 14px;
    }
}
