/* Contact page — premium GTI Travels layout */

.contact-page {
    --ct-ink: #0b3022;
    --ct-gold: #c5a059;
    --ct-sand: #f3efe6;
    --ct-mist: #e8f0eb;
    background: #f7f5f0;
}

.ct-hero {
    position: relative;
    min-height: 0;
    display: flex;
    align-items: flex-end;
    color: #fff;
    overflow: hidden;
}

.ct-hero-media {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.ct-hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(8, 28, 20, 0.9) 0%, rgba(8, 28, 20, 0.62) 55%, rgba(8, 28, 20, 0.4) 100%),
        linear-gradient(to top, rgba(8, 28, 20, 0.45) 0%, transparent 55%);
}

.ct-hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: calc(var(--header-height, 90px) + 18px) 0 34px;
    animation: ctRise 0.8s ease-out both;
}

.ct-brand {
    margin: 0 0 6px;
    font-family: var(--font-heading, Outfit, sans-serif);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--ct-gold);
    text-transform: uppercase;
}

.ct-hero-title {
    margin: 0 0 8px;
    font-family: var(--font-heading, Outfit, sans-serif);
    font-size: clamp(1.7rem, 3.6vw, 2.35rem);
    font-weight: 800;
    line-height: 1.1;
    max-width: none;
}

.ct-hero-sub {
    margin: 0 0 16px;
    max-width: 36rem;
    font-size: 0.95rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.88);
}

.ct-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ct-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    font-family: var(--font-heading, Outfit, sans-serif);
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    transition: transform 0.2s ease, filter 0.2s ease, background 0.2s ease;
}

.ct-btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.04);
}

.ct-btn-gold {
    background: linear-gradient(135deg, #d4b46a, #c5a059);
    color: #1a1a1a;
}

.ct-btn-ghost {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.45);
}

.ct-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Quick reach strip */
.ct-quick {
    position: relative;
    z-index: 2;
    margin-top: -18px;
    margin-bottom: 4px;
}

.ct-quick-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.ct-quick-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: #fff;
    border: 1px solid rgba(11, 48, 34, 0.08);
    border-radius: 14px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 8px 22px rgba(11, 48, 34, 0.07);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: ctRise 0.7s ease-out both;
}

.ct-quick-item:nth-child(2) { animation-delay: 0.08s; }
.ct-quick-item:nth-child(3) { animation-delay: 0.16s; }
.ct-quick-item:nth-child(4) { animation-delay: 0.24s; }

.ct-quick-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(11, 48, 34, 0.12);
}

.ct-quick-item i {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--ct-mist);
    color: var(--ct-ink);
    font-size: 0.95rem;
    flex-shrink: 0;
}

.ct-quick-item .fa-whatsapp {
    color: #128c7e;
    background: #e8f8f3;
}

.ct-quick-item strong {
    display: block;
    font-family: var(--font-heading, Outfit, sans-serif);
    font-size: 0.92rem;
    color: var(--ct-ink);
    margin-bottom: 2px;
}

.ct-quick-item span {
    font-size: 0.8rem;
    color: #64748b;
}

/* Main split */
.ct-main {
    position: relative;
    padding: 28px 0 48px;
    overflow: hidden;
}

.ct-main-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 10% 20%, rgba(197, 160, 89, 0.14), transparent 45%),
        radial-gradient(ellipse at 90% 80%, rgba(11, 48, 34, 0.08), transparent 40%),
        linear-gradient(180deg, #f7f5f0 0%, #eef3ef 100%);
    z-index: 0;
}

.ct-split {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 28px;
    align-items: stretch;
}

.ct-form-panel {
    background: #fff;
    border-radius: 22px;
    padding: 34px 34px 30px;
    border: 1px solid rgba(11, 48, 34, 0.08);
    box-shadow: 0 18px 40px rgba(11, 48, 34, 0.07);
    animation: ctRise 0.75s ease-out 0.1s both;
}

.ct-kicker {
    margin: 0 0 8px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ct-gold);
}

.ct-kicker.light { color: #d4b46a; }

.ct-form-panel h2,
.ct-info-body h2 {
    margin: 0 0 10px;
    font-family: var(--font-heading, Outfit, sans-serif);
    font-size: clamp(1.45rem, 2.4vw, 1.9rem);
    font-weight: 800;
    color: var(--ct-ink);
    line-height: 1.15;
}

.ct-lead {
    margin: 0 0 22px;
    color: #5b6b63;
    font-size: 0.95rem;
    line-height: 1.55;
    max-width: 36rem;
}

.ct-form .ct-field { margin-bottom: 14px; }

.ct-form label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #3d4f46;
    letter-spacing: 0.02em;
}

.ct-form input,
.ct-form select,
.ct-form textarea {
    width: 100%;
    border: 1px solid #d7e0da;
    border-radius: 12px;
    padding: 13px 14px;
    font-size: 0.95rem;
    background: #fbfcfb;
    color: #0f172a;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.ct-form textarea {
    resize: vertical;
    min-height: 130px;
    line-height: 1.5;
}

.ct-form input:focus,
.ct-form select:focus,
.ct-form textarea:focus {
    border-color: #2f8f5b;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(47, 143, 91, 0.12);
}

.ct-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.ct-submit {
    margin-top: 6px;
    width: 100%;
    border: 0;
    border-radius: 14px;
    padding: 15px 18px;
    background: linear-gradient(135deg, #0b3022, #164a36);
    color: #fff;
    font-family: var(--font-heading, Outfit, sans-serif);
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.ct-submit:hover {
    filter: brightness(1.06);
    transform: translateY(-1px);
}

.ct-submit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
}

.ct-submit i {
    color: var(--ct-gold);
    transition: transform 0.2s ease;
}

.ct-submit:hover i {
    transform: translateX(3px);
}

.ct-msg {
    margin-bottom: 14px;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.4;
}

.ct-msg.ok {
    background: #e8f8ee;
    color: #137333;
    border: 1px solid #b7ebc6;
}

.ct-msg.err {
    background: #fdecea;
    color: #b3261e;
    border: 1px solid #f5c2c0;
}

/* Info panel */
.ct-info-panel {
    border-radius: 22px;
    overflow: hidden;
    background: var(--ct-ink);
    color: #fff;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    box-shadow: 0 18px 40px rgba(11, 48, 34, 0.18);
    animation: ctRise 0.75s ease-out 0.2s both;
}

.ct-info-photo {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.ct-info-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 20%, rgba(11, 48, 34, 0.85) 100%);
}

.ct-info-body {
    padding: 8px 26px 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ct-info-body h2 {
    color: #fff;
    margin-bottom: 18px;
}

.ct-info-block {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ct-info-block:last-of-type {
    border-bottom: 0;
}

.ct-info-block i {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(197, 160, 89, 0.18);
    color: var(--ct-gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.ct-info-block strong {
    display: block;
    font-family: var(--font-heading, Outfit, sans-serif);
    font-size: 0.88rem;
    margin-bottom: 4px;
    color: #fff;
}

.ct-info-block p {
    margin: 0;
    font-size: 0.86rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.78);
}

.ct-info-block a {
    color: #f0d9a0;
    text-decoration: none;
}

.ct-info-block a:hover {
    color: #fff;
}

.ct-info-links {
    margin-top: auto;
    padding-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ct-info-links a {
    text-decoration: none;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    transition: background 0.2s ease, border-color 0.2s ease;
}

.ct-info-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Bottom CTA */
.ct-map-note {
    padding: 0 0 64px;
}

.ct-map-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 28px 32px;
    border-radius: 20px;
    background:
        linear-gradient(120deg, rgba(11, 48, 34, 0.94), rgba(22, 74, 54, 0.9)),
        url('../backup/uploads/demo/general/bg-contact.jpg') center/cover;
    color: #fff;
    box-shadow: 0 16px 36px rgba(11, 48, 34, 0.16);
}

.ct-map-inner h2 {
    margin: 0 0 8px;
    font-family: var(--font-heading, Outfit, sans-serif);
    font-size: 1.35rem;
    font-weight: 800;
}

.ct-map-inner p {
    margin: 0;
    max-width: 40rem;
    font-size: 0.92rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.84);
}

@keyframes ctHeroZoom {
    from { transform: scale(1.08); }
    to { transform: scale(1.02); }
}

@keyframes ctRise {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 980px) {
    .ct-quick-row {
        grid-template-columns: 1fr 1fr;
    }
    .ct-split {
        grid-template-columns: 1fr;
    }
    .ct-map-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .ct-quick {
        margin-top: -12px;
    }
    .ct-quick-row,
    .ct-grid-2 {
        grid-template-columns: 1fr;
    }
    .ct-form-panel {
        padding: 24px 18px;
    }
    .ct-hero-inner {
        padding: calc(var(--header-height, 90px) + 14px) 0 28px;
    }
}
