.ct-wrapper {
    
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.ct-card {
    background: #ffffff;
    border: 1.5px solid #e2e2e2;
    border-radius: 20px;
    width: 100%;
    max-width: 1000px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    padding: 60px 60px 60px 60px;
    gap: 60px;
}

/* ── LEFT ── */
.ct-left h1 {
    
    font-weight: 800;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.1;
    color: #0a0a0a;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}

.ct-left>p {
    font-size: 13px;
    color: #888;
    line-height: 1.7;
    max-width: 290px;
    margin-bottom: 36px;
}

.ct-info-block {
    margin-bottom: 28px;
}

.ct-info-block h3 {
    
    font-weight: 700;
    font-size: 18px;
    color: #0a0a0a;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.ct-info-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #444;
    margin-bottom: 8px;
    line-height: 1.5;
}

.ct-info-row:last-child {
    margin-bottom: 0;
}

.ct-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ct-icon svg {
    width: 16px;
    height: 16px;
    stroke: #444;
    fill: none;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ── RIGHT: Form ── */
.ct-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ct-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
}

.ct-field:last-of-type {
    margin-bottom: 6px;
}

.ct-field label {
    font-size: 13px;
    font-weight: 500;
    color: #0a0a0a;
}

.ct-field input,
.ct-field select,
.ct-field textarea {
    width: 100%;
    border: 1.5px solid #d8d8d8;
    border-radius: 8px;
    padding: 13px 16px;
    
    font-size: 13.5px;
    color: #0a0a0a;
    background: #fff;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    resize: none;
}

.ct-field input::placeholder,
.ct-field textarea::placeholder {
    color: #bbb;
}

.ct-field input:focus,
.ct-field select:focus,
.ct-field textarea:focus {
    border-color: #5b21f5;
    box-shadow: 0 0 0 3px rgba(91, 33, 245, 0.1);
}

.ct-field textarea {
    height: 110px;
}

.ct-char-count {
    font-size: 12px;
    color: #bbb;
    text-align: right;
    margin-top: 4px;
    margin-bottom: 18px;
}

.ct-submit {
    width: 100%;
    background: #5b21f5;
    color: #fff;
    
    font-size: 15px;
    font-weight: 500;
    padding: 17px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    letter-spacing: 0.01em;
    transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 20px rgba(91, 33, 245, 0.3);
}

.ct-submit:hover {
    background: #4a14e0;
    transform: translateY(-1px);
    box-shadow: 0 8px 28px rgba(91, 33, 245, 0.4);
}

.ct-submit:active {
    transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 780px) {
    .ct-card {
        grid-template-columns: 1fr;
        padding: 40px 36px;
        gap: 40px;
    }

    .ct-left>p {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .ct-wrapper {
        padding: 24px 14px;
    }

    .ct-card {
        padding: 32px 24px;
        gap: 32px;
        border-radius: 16px;
    }

    .ct-left h1 {
        font-size: 28px;
    }
}


/* ======================================================================================= */

 
/* =====================================================
       HERO SECTION
    ===================================================== */

.Luxury_travels_hero {
    position: relative;
    min-height: 560px;
    background: url('../img/home/Rectangle 12038.png') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.Luxury_travels_overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.42);
}

.Luxury_travels_content {
    position: relative;
    z-index: 2;
    text-align: center;
    /* max-width: 760px; */
    padding: 0 20px;
}

.Luxury_travels_title {
    color: #fff;
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 18px;
}

.Luxury_travels_text {
    color: #f3f3f3;
    font-size: 20px;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 34px;
}

/* =====================================================
       BUTTON
    ===================================================== */

.Luxury_travels_btn {
    border: none;
    background: #4b00ff;
    color: #fff;
    height: 64px;
    min-width: 420px;
    padding: 0 36px;
    border-radius: 60px;
    font-size: 22px;
    font-weight: 500;
    transition: 0.25s ease;
}

.Luxury_travels_btn:hover {
    background: #3900d0;
}

/* =====================================================
       FEATURES SECTION
    ===================================================== */

.Luxury_travels_features {
    background: #f5f5f5;
    padding: 42px 0;
}

.Luxury_travels_feature_card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    height: 100%;
}

.Luxury_travels_feature_icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    background: #000;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
}

.Luxury_travels_feature_title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 6px;
    color: #111;
}

.Luxury_travels_feature_title.highlight {
    border: 2px solid #ffe100;
    display: inline-block;
    padding: 0 6px;
}

.Luxury_travels_feature_text {
    font-size: 14px;
    color: #444;
    line-height: 1.5;
    max-width: 260px;
}

/* =====================================================
       RESPONSIVE
    ===================================================== */

@media (max-width:991px) {

    .Luxury_travels_hero {
        min-height: 500px;
    }

    .Luxury_travels_title {
        font-size: 48px;
    }

    .Luxury_travels_text {
        font-size: 18px;
    }

    .Luxury_travels_btn {
        min-width: 340px;
        height: 58px;
        font-size: 19px;
    }

    .Luxury_travels_feature_title {
        font-size: 22px;
    }
}

@media (max-width:767px) {

    .Luxury_travels_hero {
        min-height: 460px;
    }

    .Luxury_travels_title {
        font-size: 38px;
    }

    .Luxury_travels_text {
        font-size: 16px;
        margin-bottom: 28px;
    }

    .Luxury_travels_btn {
        width: 100%;
        min-width: 100%;
        max-width: 340px;
        height: 54px;
        font-size: 16px;
    }

    .Luxury_travels_features {
        padding: 36px 0;
    }

    .Luxury_travels_feature_card {
        margin-bottom: 26px;
    }
}

@media (max-width:575px) {

    .Luxury_travels_hero {
        min-height: 420px;
    }

    .Luxury_travels_title {
        font-size: 30px;
    }

    .Luxury_travels_text {
        font-size: 14px;
        line-height: 1.5;
    }

    .Luxury_travels_btn {
        height: 50px;
        font-size: 15px;
        border-radius: 40px;
    }

    .Luxury_travels_feature_icon {
        width: 56px;
        height: 56px;
        min-width: 56px;
        font-size: 24px;
    }

    .Luxury_travels_feature_title {
        font-size: 20px;
    }

    .Luxury_travels_feature_text {
        font-size: 13px;
    }
}
 
