/* =========================================================
   CONTACT US PAGE — PREMIUM DESIGN
   Matches floor-plan / location / master-plan / price-list
   ========================================================= */

:root {
    --ct-navy: #0d1b2a;
    --ct-gold: #d7b56d;
    --ct-grey: #f5f5f7;
    --ct-text: #555;
}

/* --- HERO --- */
.ct-hero {
    position: relative;
    height: 60vh;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ct-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    animation: ctHeroZoom 20s ease-out forwards;
}

@keyframes ctHeroZoom {
    0%   { transform: scale(1); }
    100% { transform: scale(1.08); }
}

.ct-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(13,27,42,0.88) 0%,
        rgba(13,27,42,0.5) 50%,
        rgba(13,27,42,0.8) 100%);
}

.ct-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 80px 5% 0;
}

/* Breadcrumb */
.ct-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
    font-family: sans-serif;
    font-size: 13px;
    animation: ctFadeDown .8s .1s both;
}

.ct-breadcrumb a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.3s;
}
.ct-breadcrumb a:hover { color: var(--ct-gold); }

.ct-breadcrumb__sep {
    color: rgba(255,255,255,0.3);
    font-size: 10px;
}

.ct-breadcrumb__current {
    color: var(--ct-gold);
    font-weight: 600;
}

.ct-hero__eyebrow {
    color: var(--ct-gold);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin: 0 0 14px;
    font-weight: 700;
    font-family: sans-serif;
    animation: ctFadeDown .8s .2s both;
}

.ct-hero__title {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-family: 'Georgia', serif;
    margin: 0 0 16px;
    letter-spacing: .02em;
    animation: ctFadeDown .8s .4s both;
}

.ct-hero__sub {
    font-size: 15px;
    font-family: sans-serif;
    color: rgba(255,255,255,0.65);
    letter-spacing: .18em;
    text-transform: uppercase;
    margin: 0;
    animation: ctFadeDown .8s .6s both;
}

.ct-hero__scroll {
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 1px; height: 70px;
    background: rgba(255,255,255,0.12);
    z-index: 2;
    overflow: hidden;
}

.ct-hero__scroll span {
    display: block;
    width: 100%; height: 50%;
    background: var(--ct-gold);
    animation: ctScrollDrop 2s cubic-bezier(.77,0,.175,1) infinite;
}

@keyframes ctScrollDrop {
    0%  { transform: translateY(-100%); }
    50% { transform: translateY(100%); }
    100%{ transform: translateY(200%); }
}

@keyframes ctFadeDown {
    0%   { opacity: 0; transform: translateY(-20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* --- SHARED --- */
.ct-label {
    display: block;
    font-size: 12px;
    font-family: sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--ct-gold);
    margin-bottom: 14px;
}

.ct-heading {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-family: 'Georgia', serif;
    color: var(--ct-navy);
    margin: 0 0 10px;
}

.ct-gold-rule {
    width: 50px;
    height: 3px;
    background: var(--ct-gold);
}

/* --- MAIN CONTACT SECTION --- */
.ct-main {
    padding: 10vh 5%;
    background: var(--ct-grey);
}

.ct-main__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Left — Contact Info */
.ct-info__header {
    margin-bottom: 40px;
}

.ct-info__desc {
    font-size: 15px;
    line-height: 1.75;
    color: var(--ct-text);
    margin: 20px 0 0;
    font-family: sans-serif;
}

.ct-info__cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ct-info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px 24px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 6px 24px rgba(0,0,0,.03);
    border: 1px solid rgba(0,0,0,.04);
    text-decoration: none;
    color: inherit;
    transition: transform .5s cubic-bezier(.16,1,.3,1),
                box-shadow .5s cubic-bezier(.16,1,.3,1),
                border-color .3s ease;
    position: relative;
    overflow: hidden;
}

.ct-info-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--ct-gold);
    transform: scaleX(0);
    transition: transform .5s cubic-bezier(.16,1,.3,1);
}

.ct-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,.08);
    border-color: rgba(215,181,109,.15);
}

.ct-info-card:hover::after {
    transform: scaleX(1);
}

.ct-info-card__icon {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: rgba(215,181,109,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--ct-gold);
    flex-shrink: 0;
    transition: background .4s ease, color .4s ease, transform .4s ease;
}

.ct-info-card:hover .ct-info-card__icon {
    background: var(--ct-gold);
    color: #fff;
    transform: scale(1.1) rotate(5deg);
}

.ct-info-card__body h4 {
    font-size: 15px;
    font-family: 'Georgia', serif;
    color: var(--ct-navy);
    margin: 0 0 4px;
}

.ct-info-card__body p {
    font-size: 14px;
    line-height: 1.5;
    color: #777;
    margin: 0;
    font-family: sans-serif;
}

/* Right — Form */
.ct-form-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0,0,0,.06);
    border: 1px solid rgba(0,0,0,.04);
    overflow: hidden;
    position: relative;
}

.ct-form-card__accent {
    height: 5px;
    background: var(--ct-gold);
}

.ct-form-card__title {
    font-size: 24px;
    font-family: 'Georgia', serif;
    color: var(--ct-navy);
    margin: 36px 36px 6px;
}

.ct-form-card__sub {
    font-size: 14px;
    color: #999;
    margin: 0 36px 30px;
    font-family: sans-serif;
}

.ct-form {
    padding: 0 36px 36px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ct-form__group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ct-form__group label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--ct-navy);
    font-family: sans-serif;
}

.ct-form__group input,
.ct-form__group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(0,0,0,.1);
    border-radius: 10px;
    font-size: 15px;
    font-family: sans-serif;
    color: var(--ct-navy);
    background: var(--ct-grey);
    transition: border-color .3s ease, box-shadow .3s ease;
    outline: none;
    box-sizing: border-box;
}

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

.ct-form__group input:focus,
.ct-form__group textarea:focus {
    border-color: var(--ct-gold);
    box-shadow: 0 0 0 3px rgba(215,181,109,.15);
}

.ct-form__group textarea {
    resize: vertical;
    min-height: 120px;
}

.ct-form__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--ct-navy);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-family: sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    cursor: pointer;
    transition: background .3s ease, transform .3s ease, box-shadow .3s ease;
}

.ct-form__btn:hover {
    background: var(--ct-gold);
    color: var(--ct-navy);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(215,181,109,.3);
}

.ct-form__btn i {
    font-size: 14px;
}

/* --- MAP --- */
.ct-map {
    line-height: 0;
}

.ct-map iframe {
    width: 100%;
    height: 400px;
    display: block;
    filter: grayscale(40%) contrast(1.05);
    transition: filter .5s ease;
}

.ct-map iframe:hover {
    filter: grayscale(0%) contrast(1);
}

/* --- CTA --- */
.ct-cta {
    padding: 10vh 5%;
    background: var(--ct-navy);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ct-cta::before,
.ct-cta::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(215,181,109,.04);
    pointer-events: none;
}

.ct-cta::before {
    width: 500px; height: 500px;
    top: -200px; left: -200px;
    animation: ctFloat 12s ease-in-out infinite;
}

.ct-cta::after {
    width: 350px; height: 350px;
    bottom: -120px; right: -80px;
    animation: ctFloat 9s ease-in-out infinite reverse;
}

@keyframes ctFloat {
    0%, 100% { transform: translate(0,0) scale(1); }
    50% { transform: translate(15px,-20px) scale(1.05); }
}

.ct-cta__inner {
    position: relative; z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.ct-cta__title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-family: 'Georgia', serif;
    color: #fff;
    margin: 0 0 16px;
}

.ct-cta__text {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255,255,255,.6);
    margin: 0 0 40px;
    font-family: sans-serif;
}

.ct-cta__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.ct-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    font-family: sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    text-decoration: none;
    border-radius: 8px;
    transition: all .3s ease;
}

.ct-cta__btn--primary {
    background: var(--ct-gold);
    color: var(--ct-navy);
}

.ct-cta__btn--primary:hover {
    background: #e8c87e;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(215,181,109,.3);
}

.ct-cta__btn--secondary {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,.2);
}

.ct-cta__btn--secondary:hover {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.4);
    transform: translateY(-3px);
}

.ct-cta__partner {
    margin-top: 32px;
    font-size: 18px;
    color: var(--ct-gold);
    font-family: sans-serif;
    font-weight: 700;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .ct-main__inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .ct-hero {
        height: 50vh;
        min-height: 360px;
    }
    .ct-hero__content { padding-top: 60px; }

    .ct-main__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ct-form-card__title { margin: 28px 24px 6px; }
    .ct-form-card__sub { margin: 0 24px 24px; }
    .ct-form { padding: 0 24px 28px; }

    .ct-map iframe { height: 300px; }

    .ct-cta__actions {
        flex-direction: column;
        align-items: center;
    }

    .ct-cta__btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}
