:root {
    --navy-900: #171e4b;
    --navy-800: #232d64;
    --navy-700: #2e3776;
    --pink-600: #cc0b6d;
    --pink-500: #e80b7a;
    --pink-100: #ffe2f2;
    --bg: #f2f2f6;
    --surface: #ffffff;
    --surface-soft: #f8f8fb;
    --text: #161b2b;
    --muted: #5b6173;
    --line: #e5e6ef;
    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --shadow-1: 0 14px 40px rgba(20, 31, 71, 0.12);
    --shadow-2: 0 30px 70px rgba(18, 27, 58, 0.2);
    --section-space: clamp(74px, 10vw, 122px);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Questrial", sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 0.7rem;
    font-family: "Outfit", sans-serif;
    letter-spacing: -0.02em;
    line-height: 1.12;
    font-weight: 700;
}

p {
    margin: 0 0 1rem;
    color: var(--muted);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.container {
    width: min(1180px, 92vw);
    margin-inline: auto;
}

.site-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 120;
}

.nav-shell {
    background:
        linear-gradient(rgba(23, 30, 75, 0.9), rgba(23, 30, 75, 0.9)),
        url("/media/seo/pages/seo-home.jpg") center / cover no-repeat;
    box-shadow: 0 10px 28px rgba(19, 27, 68, 0.22);
}

.nav-wrap {
    min-height: 98px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.4rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: #fff;
}

.brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background:
        radial-gradient(circle at 22% 20%, #66e4a4 0%, #66e4a4 18%, transparent 19%),
        radial-gradient(circle at 78% 76%, #f9c318 0%, #f9c318 20%, transparent 21%),
        linear-gradient(140deg, #2f7af8 0%, #ea0b78 75%);
}

.brand-logo {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.12);
    padding: 4px;
}

.brand strong {
    display: block;
    font-size: 1.38rem;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.brand small {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 0.95rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.site-nav a {
    color: rgba(255, 255, 255, 0.95);
    font-family: "Outfit", sans-serif;
    font-weight: 500;
    font-size: 0.98rem;
    transition: color 0.2s ease;
    position: relative;
    padding-bottom: 0.16rem;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.24rem;
    width: 100%;
    height: 2px;
    border-radius: 8px;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.24s ease;
    background: linear-gradient(90deg, #ff5dad 0%, #ff95c9 100%);
}

.site-nav a:hover {
    color: #ffb4dc;
}

.site-nav a.is-active {
    color: #ffb4dc;
}

.site-nav a:hover::after {
    transform: scaleX(1);
}

.site-nav a.is-active::after {
    transform: scaleX(1);
}

.menu-toggle {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    background: #fff;
}

.btn {
    border: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-family: "Outfit", sans-serif;
    font-weight: 600;
    border-radius: 999px;
    padding: 0.82rem 1.4rem;
    color: #fff;
    background: linear-gradient(120deg, #ec0b7c 0%, #ba0f7a 100%);
    box-shadow: 0 14px 30px rgba(210, 12, 112, 0.34);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(210, 12, 112, 0.4);
    filter: brightness(1.04);
}

.btn-nav {
    padding: 0.56rem 1.05rem;
    font-size: 0.94rem;
}

.btn-outline-light {
    background: transparent;
    border: 1.4px solid rgba(255, 255, 255, 0.6);
    box-shadow: none;
}

.btn-outline-light:hover {
    box-shadow: none;
    border-color: #fff;
}

.text-link {
    color: var(--pink-600);
    font-family: "Outfit", sans-serif;
    font-weight: 600;
}

.floating-enquire {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99;
    background: linear-gradient(120deg, #eb0b79 0%, #c40f78 100%);
    color: #fff;
    padding: 0.85rem 0.54rem;
    border-radius: 14px 0 0 14px;
    font-family: "Outfit", sans-serif;
    font-weight: 600;
    letter-spacing: 0.04em;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    box-shadow: 0 14px 28px rgba(187, 13, 104, 0.28);
}

.scroll-top {
    position: fixed;
    right: 16px;
    bottom: 20px;
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-size: 1.6rem;
    line-height: 1;
    color: #fff;
    background: linear-gradient(120deg, #ec0b7c 0%, #bd1178 100%);
    box-shadow: 0 16px 32px rgba(180, 14, 104, 0.3);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    z-index: 99;
}

.scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    filter: brightness(1.05);
}

/* Flash */
.flash-wrap {
    margin-top: 1rem;
}

.flash {
    border-radius: 12px;
    padding: 0.74rem 0.94rem;
    font-family: "Outfit", sans-serif;
    margin-bottom: 0.6rem;
}

.flash-success {
    background: #e9fff2;
    border: 1px solid #b7e8cd;
    color: #156643;
}

.flash-error {
    background: #ffeceb;
    border: 1px solid #f8c2bc;
    color: #a63722;
}

/* Generic sections */
.section {
    padding: var(--section-space) 0;
}

.section-light {
    background: var(--surface-soft);
}

.section-head {
    margin-bottom: 1.5rem;
}

.section-head.center {
    text-align: center;
}

.section-head h2 {
    font-size: clamp(2rem, 4vw, 3.1rem);
}

.section-head.light h2,
.section-head.light p {
    color: #fff;
}

.eyebrow {
    display: inline-block;
    font-family: "Outfit", sans-serif;
    font-weight: 600;
    color: var(--pink-600);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 0.7rem;
}

.eyebrow.dark {
    color: var(--navy-700);
}

.eyebrow.light {
    color: #ffd5eb;
}

.empty-state {
    border: 1px dashed #cfd2e4;
    background: #fff;
    padding: 1rem;
    border-radius: 14px;
    color: #5c6170;
}

.empty-state.dark {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.26);
    color: rgba(255, 255, 255, 0.8);
}

.visual-placeholder {
    min-height: 260px;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 1rem;
    border: 1px dashed #c8cede;
    border-radius: 16px;
    color: #667085;
    background: #fff;
}

/* Home hero */
.home-hero {
    position: relative;
    background:
        linear-gradient(80deg, rgba(19, 25, 68, 0.88) 0%, rgba(25, 38, 90, 0.78) 48%, rgba(34, 44, 96, 0.72) 100%),
        var(--hero-image, radial-gradient(circle at 60% 24%, #3f5ec2 0%, #232f6a 30%, #12183f 100%));
    background-size: cover;
    background-position: center;
    color: #fff;
    min-height: 730px;
    overflow: hidden;
}

.home-hero::before,
.home-hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    opacity: 0.38;
}

.home-hero::before {
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, rgba(233, 20, 130, 0.44) 0%, rgba(233, 20, 130, 0) 72%);
    right: -120px;
    top: -80px;
}

.home-hero::after {
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(111, 217, 187, 0.34) 0%, rgba(111, 217, 187, 0) 70%);
    left: -100px;
    bottom: -120px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 24, 66, 0.1) 0%, rgba(17, 24, 66, 0.48) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    min-height: 640px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 400px);
    gap: clamp(16px, 3vw, 36px);
    align-items: center;
}

.hero-copy {
    max-width: 700px;
}

.hero-kicker-wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-bottom: 0.8rem;
}

.hero-property-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.32rem 0.72rem;
    border-radius: 999px;
    font-family: "Outfit", sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.26);
}

.hero-side {
    justify-self: end;
    width: 100%;
    max-width: 400px;
}

.hero-spotlight {
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(16, 24, 66, 0.58);
    box-shadow: 0 26px 56px rgba(11, 18, 52, 0.42);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.hero-side-media {
    position: relative;
}

.hero-side-media img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.hero-side-media::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 48%;
    background: linear-gradient(180deg, rgba(17, 25, 66, 0) 0%, rgba(17, 25, 66, 0.88) 100%);
}

.hero-spotlight-body {
    padding: 1rem 1rem 1.08rem;
}

.hero-spotlight-label {
    margin: 0 0 0.2rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: "Outfit", sans-serif;
}

.hero-spotlight-body h3 {
    margin: 0 0 0.28rem;
    color: #fff;
    font-size: 1.3rem;
}

.hero-spotlight-body p {
    margin: 0 0 0.72rem;
    color: rgba(235, 239, 255, 0.84);
}

.hero-spotlight-link {
    display: inline-flex;
    align-items: center;
    color: #fff;
    font-family: "Outfit", sans-serif;
    font-weight: 600;
    font-size: 0.92rem;
    padding: 0.48rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.hero-spotlight-link:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-1px);
}

.hero-kicker {
    color: rgba(255, 255, 255, 0.82);
    font-family: "Outfit", sans-serif;
    font-size: 1rem;
    margin: 0;
}

.hero-copy h1 {
    font-size: clamp(2.2rem, 4vw, 4.2rem);
    line-height: 1.06;
    margin-bottom: 1rem;
    max-width: 15ch;
    text-wrap: balance;
}

.hero-lead {
    font-size: 1.22rem;
    max-width: 62ch;
    color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 1.2rem;
}

.hero-quick-wrap {
    position: relative;
    z-index: 4;
    margin-top: -56px;
}

.hero-quick {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr)) 170px;
    background: rgba(255, 255, 255, 0.84);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: var(--shadow-2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero-quick-field {
    padding: 0.98rem 1rem;
    border-right: 1px solid #e7e9f3;
}

.hero-quick-field label {
    margin: 0 0 0.2rem;
    color: #656d81;
    font-size: 0.8rem;
    font-family: "Questrial", sans-serif;
    font-weight: 400;
}

.hero-quick-field input,
.hero-quick-field select {
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    background: transparent;
    outline: none;
    color: var(--pink-600);
    font-family: "Outfit", sans-serif;
    font-size: 1.02rem;
    font-weight: 600;
    line-height: 1.3;
}

.hero-quick-field input::placeholder {
    color: rgba(204, 11, 109, 0.72);
}

.hero-quick-field input:focus,
.hero-quick-field select:focus {
    box-shadow: none;
}

.hero-quick-cta {
    display: grid;
    place-items: center;
    background: linear-gradient(120deg, #ec0b7c 0%, #ba0f7a 100%);
    color: #fff;
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    border: 0;
    cursor: pointer;
}

.hero-quick-cta:hover {
    filter: brightness(1.05);
}

.counter-strip {
    margin-top: 0;
    position: relative;
    z-index: 3;
    padding-bottom: 56px;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.counter-card {
    background: #fff;
    border: 1px solid #dfe1ec;
    border-radius: 16px;
    padding: 1.1rem;
    box-shadow: var(--shadow-1);
}

.counter-card h3 {
    font-size: 1.8rem;
    color: var(--navy-800);
    margin-bottom: 0.2rem;
}

.counter-card p {
    margin: 0;
    font-size: 0.94rem;
}

/* Home sections */
.about-split {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 30px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-visual img {
    width: 100%;
    border-radius: 24px;
    min-height: 420px;
    object-fit: cover;
    box-shadow: var(--shadow-2);
}

.frame {
    position: absolute;
    inset: auto;
    border: 3px solid #eb0f7c;
    border-radius: 24px;
    pointer-events: none;
}

.frame-a {
    width: 86%;
    height: 88%;
    left: 8%;
    top: 8%;
    transform: rotate(-4deg);
}

.frame-b {
    width: 82%;
    height: 83%;
    right: 8%;
    bottom: 8%;
    border-color: #3a3f8e;
    transform: rotate(5deg);
}

.about-copy h2 {
    font-size: clamp(2.2rem, 4.3vw, 3.9rem);
}

.about-copy p {
    font-size: 1.06rem;
}

.accent-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.72rem;
    color: #30374a;
}

.accent-list li::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: var(--pink-600);
    position: absolute;
    left: 0;
    top: 0.5rem;
    box-shadow: 0 0 0 5px var(--pink-100);
}

.amenities-band {
    padding: 74px 0;
    background:
        linear-gradient(0deg, rgba(16, 21, 53, 0.9), rgba(16, 21, 53, 0.9)),
        radial-gradient(circle at 20% 20%, #3850a6 0%, transparent 30%),
        radial-gradient(circle at 80% 75%, #ca0f73 0%, transparent 28%),
        #161c48;
    color: #fff;
}

.amenity-grid {
    margin-top: 1.2rem;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.amenity-grid div {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    padding: 0.8rem;
    text-align: center;
    font-family: "Outfit", sans-serif;
    font-weight: 500;
    transition: transform 0.22s ease, background-color 0.22s ease, border-color 0.22s ease;
}

.amenity-grid div:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.28);
}

.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: center;
}

.feature-text h2 {
    font-size: clamp(2rem, 3vw, 2.9rem);
}

.dot-list li {
    margin-bottom: 0.74rem;
    padding-left: 1.2rem;
    position: relative;
}

.dot-list li::before {
    content: "\2022";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--pink-600);
    font-weight: 700;
}

.feature-collage {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: repeat(2, minmax(110px, 1fr));
    gap: 10px;
}

.feature-collage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid #d8dcea;
    box-shadow: var(--shadow-1);
}

.feature-collage img:first-child {
    grid-row: span 2;
    min-height: 280px;
}

.property-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.property-card {
    background: #fff;
    border-radius: var(--radius-md);
    border: 1px solid #dce0ec;
    overflow: hidden;
    box-shadow: var(--shadow-1);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 44px rgba(20, 31, 71, 0.18);
    border-color: #cfd7ea;
}

.property-image {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    background: linear-gradient(140deg, #d6dceb 0%, #eef1f8 100%);
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.property-card:hover .property-image img {
    transform: scale(1.04);
}

.img-fallback {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-size: 2rem;
    color: #4f5573;
    font-family: "Outfit", sans-serif;
}

.badge {
    position: absolute;
    left: 12px;
    top: 12px;
    display: inline-flex;
    align-items: center;
    background: rgba(23, 30, 75, 0.88);
    color: #fff;
    border-radius: 999px;
    padding: 0.26rem 0.66rem;
    font-family: "Outfit", sans-serif;
    font-size: 0.74rem;
}

.property-body {
    padding: 1rem;
}

.property-body h3 {
    font-size: 1.25rem;
    margin-bottom: 0.4rem;
}

.property-meta {
    margin-top: 0.85rem;
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
    flex-wrap: wrap;
    font-size: 0.92rem;
}

.property-meta strong {
    color: var(--pink-600);
    font-family: "Outfit", sans-serif;
    font-weight: 600;
}

.property-facts {
    display: grid;
    gap: 0.25rem;
    color: #4f5565;
    font-size: 0.93rem;
}

.section-action {
    margin-top: 1.5rem;
    text-align: center;
}

.testimonial-wave {
    padding: 74px 0;
    background:
        radial-gradient(circle at 14% 22%, rgba(232, 14, 122, 0.35), transparent 32%),
        radial-gradient(circle at 80% 78%, rgba(89, 121, 245, 0.3), transparent 32%),
        linear-gradient(160deg, #151b46 0%, #191f4f 100%);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    padding: 1rem;
    backdrop-filter: blur(2px);
    transition: transform 0.24s ease, border-color 0.24s ease, background-color 0.24s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.13);
}

.testimonial-top {
    display: flex;
    align-items: center;
    gap: 0.72rem;
    margin-bottom: 0.75rem;
}

.testimonial-top img,
.avatar-fallback {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.45);
}

.avatar-fallback {
    display: grid;
    place-items: center;
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    font-family: "Outfit", sans-serif;
}

.testimonial-top h3 {
    color: #fff;
    margin: 0;
    font-size: 1.06rem;
}

.testimonial-top p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

.testimonial-card blockquote {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.96rem;
}

.faq-preview {
    max-width: 900px;
}

.faq-list {
    display: grid;
    gap: 0.8rem;
}

.faq-list details {
    border: 1px solid #dadceb;
    border-radius: 12px;
    background: #fff;
    padding: 0.95rem 1rem;
    transition: border-color 0.24s ease, box-shadow 0.24s ease;
}

.faq-list details:hover {
    border-color: #cfd5e8;
    box-shadow: 0 8px 24px rgba(15, 26, 60, 0.07);
}

.faq-list summary {
    font-family: "Outfit", sans-serif;
    cursor: pointer;
    font-size: 1.03rem;
}

.faq-list details p {
    margin-top: 0.7rem;
}

.contact-ribbon {
    padding: 26px 0 54px;
}

.ribbon-grid {
    background: linear-gradient(120deg, #1f265a 0%, #2b3271 65%, #352f79 100%);
    border-radius: 18px;
    padding: 1.38rem 1.5rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
}

.ribbon-grid h2 {
    color: #fff;
    margin-bottom: 0.2rem;
}

.ribbon-grid p {
    color: rgba(255, 255, 255, 0.82);
    margin: 0;
}

/* Generic page banners */
.page-banner {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(16, 22, 56, 0.82) 0%, rgba(16, 22, 56, 0.68) 100%),
        var(--banner-image, radial-gradient(circle at 40% 30%, #4457b9 0%, #25306e 40%, #151b45 100%));
    background-size: cover;
    background-position: center;
    color: #fff;
    overflow: hidden;
}

.properties-banner {
    min-height: 320px;
}

.contact-banner,
.faq-banner {
    min-height: 295px;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 70% 18%, rgba(240, 11, 126, 0.22), transparent 30%),
        radial-gradient(circle at 14% 80%, rgba(88, 197, 174, 0.2), transparent 30%);
}

.banner-content {
    position: relative;
    z-index: 1;
}

.banner-content h1 {
    font-size: clamp(2.6rem, 5vw, 4.7rem);
}

.banner-content p {
    max-width: 62ch;
    color: rgba(255, 255, 255, 0.86);
}

/* About page */
.about-layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 24px;
}

.about-card {
    background: #fff;
    border: 1px solid #dfe2eb;
    border-radius: 18px;
    padding: 1.2rem;
    box-shadow: var(--shadow-1);
}

.about-card h2 {
    color: var(--pink-600);
    font-size: clamp(2.1rem, 3.7vw, 3.25rem);
}

.about-image-stack {
    position: relative;
}

.about-image-stack img {
    border-radius: 20px;
    width: 100%;
    min-height: 420px;
    object-fit: cover;
    box-shadow: var(--shadow-2);
}

.stack-frame {
    position: absolute;
    inset: 8% 8% auto auto;
    width: 86%;
    height: 86%;
    border: 3px solid #ef0f7c;
    border-radius: 22px;
    transform: rotate(-4deg);
    pointer-events: none;
}

.two-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center;
}

.hex-panel {
    background: #fff;
    border: 1px solid #dfe2eb;
    border-radius: 18px;
    padding: 1rem;
}

.hex-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.hex-item {
    aspect-ratio: 1 / 1;
    clip-path: polygon(25% 6.7%, 75% 6.7%, 100% 50%, 75% 93.3%, 25% 93.3%, 0% 50%);
    overflow: hidden;
    background: #f0f1f7;
}

.hex-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bullet-panel h2 {
    font-size: clamp(2.25rem, 3.8vw, 3.5rem);
    color: var(--pink-600);
}

.timeline-section {
    padding: 70px 0;
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.timeline-item {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #dfe2eb;
    padding: 0.9rem;
    box-shadow: var(--shadow-1);
    border-top: 4px solid var(--pink-600);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.timeline-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 38px rgba(20, 31, 71, 0.15);
}

.timeline-item h3 {
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
}

.timeline-item p {
    margin: 0;
    font-size: 0.92rem;
}

/* Properties list */
.property-layout {
    display: grid;
    grid-template-columns: 290px 1fr;
    gap: 20px;
    align-items: start;
}

.property-sidebar {
    position: sticky;
    top: 120px;
    display: grid;
    gap: 12px;
}

.sidebar-box,
.sidebar-contact {
    background: #fff;
    border: 1px solid #dfe2eb;
    border-radius: 16px;
    padding: 1.08rem;
    box-shadow: var(--shadow-1);
}

.sidebar-box h3,
.sidebar-contact h4 {
    font-size: 1.3rem;
}

.stack-form {
    display: grid;
    gap: 10px;
}

.stack-form .btn {
    width: 100%;
}

.sidebar-contact {
    background: linear-gradient(160deg, #1f2556 0%, #2f3371 100%);
    color: #fff;
}

.sidebar-contact p {
    color: rgba(255, 255, 255, 0.82);
}

.sidebar-contact a {
    display: inline-flex;
    font-family: "Outfit", sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
}

.property-content {
    display: grid;
    gap: 1.1rem;
}

.pagination-wrap {
    display: flex;
    justify-content: center;
    margin-top: 0.5rem;
}

.pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #dbe0ee;
    border-radius: 999px;
    padding: 0.5rem;
    box-shadow: var(--shadow-1);
}

.page-link {
    min-width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid #d8ddee;
    background: #fff;
    color: #2f3650;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.85rem;
    font-family: "Outfit", sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.page-link:hover {
    border-color: #c7cfe5;
    color: var(--pink-600);
    transform: translateY(-1px);
}

.page-link.is-current {
    border-color: transparent;
    color: #fff;
    background: linear-gradient(120deg, #ec0b7c 0%, #ba0f7a 100%);
    box-shadow: 0 10px 22px rgba(210, 12, 112, 0.25);
}

.page-link.is-disabled {
    color: #9aa1b7;
    background: #f6f7fb;
    border-color: #e5e8f2;
    pointer-events: none;
}

/* Property detail */
.detail-hero {
    background:
        radial-gradient(circle at 76% 24%, rgba(87, 204, 168, 0.38), transparent 30%),
        radial-gradient(circle at 20% 84%, rgba(225, 15, 117, 0.36), transparent 30%),
        linear-gradient(130deg, #232860 0%, #25245f 80%);
    color: #fff;
    padding: 78px 0;
    overflow: hidden;
}

.detail-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
    align-items: center;
}

.detail-copy h1 {
    font-size: clamp(2.8rem, 5.2vw, 5.4rem);
    margin-bottom: 0.9rem;
    max-width: 13ch;
}

.detail-copy p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.08rem;
}

.detail-visual img {
    border-radius: 20px;
    min-height: 420px;
    width: 100%;
    object-fit: cover;
    box-shadow: var(--shadow-2);
}

.detail-about {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 26px;
    align-items: center;
}

.detail-about-image img {
    border-radius: 22px;
    min-height: 380px;
    width: 100%;
    object-fit: cover;
    box-shadow: var(--shadow-1);
}

.detail-about-copy h2 {
    font-size: clamp(2.1rem, 3.8vw, 3.7rem);
}

.quote-box {
    margin-top: 0.9rem;
    border: 1px solid #d7dbe8;
    border-radius: 13px;
    background: #fff;
    padding: 0.7rem 0.85rem;
    color: #313852;
}

.amenity-detail {
    background:
        radial-gradient(circle at 85% 80%, rgba(223, 228, 246, 0.9) 0%, rgba(223, 228, 246, 0) 35%),
        #fff;
}

.amenity-card-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.amenity-card {
    background: #fff;
    border: 1px solid #dee2ef;
    border-radius: 14px;
    padding: 0.95rem;
    text-align: center;
    box-shadow: var(--shadow-1);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.amenity-card:hover {
    transform: translateY(-4px);
    border-color: #cad2e7;
}

.amenity-card h3 {
    font-size: 1.08rem;
    color: var(--navy-800);
    margin-bottom: 0.2rem;
}

.amenity-card p {
    margin: 0;
    font-size: 0.9rem;
}

.location-split {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 20px;
    align-items: stretch;
}

.nearby-card,
.map-panel {
    background: #fff;
    border: 1px solid #dee2ef;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-1);
}

.nearby-card {
    padding: 1rem;
}

.nearby-card h2 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.nearby-list {
    display: grid;
    gap: 10px;
    margin-top: 0.9rem;
}

.nearby-list li {
    background: #f7f8fc;
    border: 1px solid #e2e4f0;
    border-radius: 12px;
    padding: 0.7rem;
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
    align-items: center;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.nearby-list li:hover {
    border-color: #d4d9e8;
    transform: translateX(2px);
}

.nearby-list span {
    color: var(--pink-600);
    font-family: "Outfit", sans-serif;
    font-weight: 600;
}

.map-panel iframe {
    width: 100%;
    height: 100%;
    min-height: 430px;
    border: 0;
}

.gallery-mosaic {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.gallery-mosaic figure {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #dbe0ed;
    box-shadow: var(--shadow-1);
    min-height: 200px;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.gallery-mosaic figure:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 36px rgba(20, 31, 71, 0.15);
}

.gallery-mosaic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
}

.contact-card,
.contact-info-card {
    background: #fff;
    border: 1px solid #dee2ef;
    border-radius: 16px;
    padding: 1rem;
    box-shadow: var(--shadow-1);
}

.contact-card h2,
.contact-info-card h2 {
    font-size: clamp(2rem, 3.2vw, 2.8rem);
}

.contact-form {
    display: grid;
    gap: 11px;
}

.field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

label {
    display: inline-block;
    margin-bottom: 0.38rem;
    color: #313951;
    font-family: "Outfit", sans-serif;
    font-size: 0.92rem;
    font-weight: 500;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid #d2d6e6;
    border-radius: 10px;
    padding: 0.7rem 0.75rem;
    font-family: "Questrial", sans-serif;
    color: #28304a;
    background: #fff;
}

textarea {
    min-height: 132px;
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: #cc0f72;
    outline: none;
    box-shadow: 0 0 0 4px rgba(204, 15, 114, 0.14);
}

.errorlist {
    margin-top: 0.3rem;
    color: #ad2e1b;
    font-size: 0.84rem;
}

.contact-side {
    display: grid;
    gap: 12px;
}

.contact-list {
    display: grid;
    gap: 8px;
}

.contact-list li {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 0.8rem;
    border-bottom: 1px solid #eceef5;
    padding-bottom: 0.55rem;
}

.contact-list span {
    color: #5d6376;
    font-size: 0.9rem;
}

.contact-list strong {
    text-align: right;
    max-width: 62%;
    color: #202840;
}

/* FAQ */
.faq-columns {
    column-count: 2;
    column-gap: 14px;
}

.faq-item {
    display: inline-block;
    width: 100%;
    margin: 0 0 12px;
    border: 1px solid #d9ddec;
    border-radius: 12px;
    background: #fff;
    padding: 0.9rem;
    transition: border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.faq-item:hover {
    border-color: #cfd5e8;
    box-shadow: 0 10px 22px rgba(16, 28, 64, 0.08);
    transform: translateY(-2px);
}

.faq-item summary {
    cursor: pointer;
    font-family: "Outfit", sans-serif;
    font-size: 1rem;
    list-style: none;
    position: relative;
    padding-left: 1rem;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::before {
    content: "+";
    position: absolute;
    left: 0;
    top: -0.08rem;
    color: var(--pink-600);
    font-family: "Outfit", sans-serif;
    font-weight: 700;
}

.faq-item p {
    margin-top: 0.7rem;
}

/* Footer */
.site-footer {
    margin-top: 70px;
    background: linear-gradient(160deg, #131a44 0%, #1b2357 100%);
    color: #cfd4ef;
}

.footer-grid {
    padding: 54px 0;
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 1fr;
    gap: 20px;
}

.footer-brand {
    margin-bottom: 0.9rem;
}

.site-footer h4 {
    color: #fff;
}

.site-footer li {
    margin-bottom: 0.42rem;
}

.site-footer p,
.site-footer a {
    color: #d5daef;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding: 0.9rem 0;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(214, 219, 238, 0.8);
}

/* Motion */
@keyframes revealUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes revealLeft {
    from {
        opacity: 0;
        transform: translateX(-12px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes revealRight {
    from {
        opacity: 0;
        transform: translateX(12px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.reveal-up {
    animation: revealUp 0.65s ease both;
}

.reveal-left {
    animation: revealLeft 0.65s ease both;
}

.reveal-right {
    animation: revealRight 0.65s ease both;
}

.property-grid > *:nth-child(2),
.testimonial-grid > *:nth-child(2),
.amenity-card-grid > *:nth-child(2),
.timeline-grid > *:nth-child(2),
.gallery-mosaic > *:nth-child(2) {
    animation-delay: 0.08s;
}

.property-grid > *:nth-child(3),
.testimonial-grid > *:nth-child(3),
.amenity-card-grid > *:nth-child(3),
.timeline-grid > *:nth-child(3),
.gallery-mosaic > *:nth-child(3) {
    animation-delay: 0.16s;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}

/* Responsive */
@media (max-width: 1100px) {
    .counter-grid,
    .amenity-grid,
    .amenity-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .property-grid,
    .testimonial-grid,
    .timeline-grid,
    .gallery-mosaic {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-quick {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-quick-field {
        border-right: 0;
        border-bottom: 1px solid #e7e9f3;
    }

    .hero-quick-cta {
        min-height: 58px;
        grid-column: span 2;
    }

    .about-split,
    .feature-block,
    .about-layout,
    .two-panel,
    .detail-hero-grid,
    .detail-about,
    .location-split,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        grid-template-columns: 1fr;
        min-height: 560px;
        padding-top: 48px;
        padding-bottom: 28px;
    }

    .hero-side {
        display: none;
    }

    .property-layout {
        grid-template-columns: 1fr;
    }

    .property-sidebar {
        position: static;
    }

    .pagination {
        border-radius: 16px;
    }

    .faq-columns {
        column-count: 1;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 880px) {
    .container {
        width: min(1180px, 94vw);
    }

    .nav-wrap {
        min-height: 78px;
    }

    .brand strong {
        font-size: 1.16rem;
    }

    .brand small {
        font-size: 0.64rem;
        letter-spacing: 0.1em;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: absolute;
        top: 98px;
        right: 4vw;
        width: min(320px, 92vw);
        background: #1f275d;
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: 12px;
        padding: 0.8rem;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0.2rem;
        box-shadow: var(--shadow-1);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        padding: 0.55rem 0.6rem;
        border-radius: 10px;
    }

    .site-nav a:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .site-nav a.is-active {
        background: rgba(255, 255, 255, 0.1);
    }

    .site-nav .btn {
        width: 100%;
        margin-top: 0.35rem;
    }

    .detail-copy h1,
    .hero-copy h1,
    .banner-content h1,
    .section-head h2 {
        line-height: 1.1;
    }

    .field-grid {
        grid-template-columns: 1fr;
    }

    .floating-enquire {
        top: auto;
        bottom: 78px;
        right: 10px;
        transform: none;
        writing-mode: horizontal-tb;
        text-orientation: initial;
        border-radius: 999px;
        font-size: 0.68rem;
        letter-spacing: 0.04em;
        padding: 0.5rem 0.68rem;
        z-index: 80;
    }

    .scroll-top {
        right: 14px;
        bottom: 18px;
        width: 48px;
        height: 48px;
    }

    .hero-content {
        padding-top: 36px;
    }

    .hero-copy h1 {
        font-size: clamp(1.95rem, 6.6vw, 3.2rem);
        max-width: 14ch;
    }

    .hero-quick-wrap {
        margin-top: 14px;
    }

    .counter-strip {
        margin-top: 12px;
        padding-bottom: 30px;
    }

    .counter-card {
        padding: 0.95rem;
    }
}

@media (max-width: 560px) {
    .section {
        padding: 52px 0;
    }

    .home-hero {
        min-height: auto;
    }

    .hero-content {
        min-height: auto;
        align-items: start;
        padding-top: 30px;
        padding-bottom: 14px;
        gap: 12px;
    }

    .hero-kicker-wrap {
        margin-bottom: 0.5rem;
    }

    .hero-copy h1 {
        font-size: 1.8rem;
        line-height: 1.08;
        margin-bottom: 0.65rem;
        max-width: 16ch;
    }

    .hero-lead {
        font-size: 0.98rem;
        margin-bottom: 0.75rem;
    }

    .hero-actions {
        margin-top: 0.7rem;
    }

    .counter-strip {
        margin-top: 10px;
        padding-bottom: 34px;
    }

    .counter-grid,
    .amenity-grid,
    .amenity-card-grid,
    .property-grid,
    .testimonial-grid,
    .timeline-grid,
    .gallery-mosaic {
        grid-template-columns: 1fr;
    }

    .hero-quick-wrap {
        margin-top: 10px;
    }

    .hero-quick {
        grid-template-columns: 1fr;
        border-radius: 14px;
    }

    .hero-quick-field {
        padding: 0.82rem 0.9rem;
        border-bottom: 1px solid #e7e9f3;
    }

    .hero-quick-cta {
        grid-column: auto;
        min-height: 50px;
    }

    .floating-enquire {
        top: auto;
        bottom: 84px;
        right: 10px;
        transform: none;
        writing-mode: horizontal-tb;
        border-radius: 999px;
        font-size: 0.64rem;
        letter-spacing: 0.04em;
        padding: 0.48rem 0.62rem;
    }

    .pagination {
        gap: 6px;
        padding: 0.45rem;
    }

    .page-link {
        min-width: 38px;
        height: 38px;
        font-size: 0.84rem;
        padding: 0 0.7rem;
    }

    .scroll-top {
        width: 44px;
        height: 44px;
        font-size: 1.35rem;
    }
}

/* Theme Refresh */
:root {
    --navy-900: #0f3b54;
    --navy-800: #175674;
    --navy-700: #1e6f8c;
    --pink-600: #ff6b3d;
    --pink-500: #ff865a;
    --pink-100: #ffe8df;
    --bg: #edf5f8;
    --surface: #ffffff;
    --surface-soft: #f6fbfd;
    --text: #122433;
    --muted: #537082;
    --line: #d4e3eb;
    --shadow-1: 0 14px 36px rgba(11, 49, 70, 0.1);
    --shadow-2: 0 28px 62px rgba(10, 43, 62, 0.18);
}

body {
    background:
        radial-gradient(circle at 92% 7%, rgba(255, 174, 145, 0.26), transparent 34%),
        radial-gradient(circle at 7% 84%, rgba(92, 182, 212, 0.16), transparent 33%),
        var(--bg);
}

.nav-shell {
    background:
        linear-gradient(115deg, rgba(15, 59, 84, 0.94), rgba(21, 86, 116, 0.92)),
        url("/media/seo/pages/seo-home.jpg") center / cover no-repeat;
}

.brand-mark {
    background:
        radial-gradient(circle at 24% 22%, #7df0d6 0%, #7df0d6 20%, transparent 21%),
        radial-gradient(circle at 74% 76%, #ffd66e 0%, #ffd66e 19%, transparent 20%),
        linear-gradient(140deg, #009ecb 0%, #ff6b3d 80%);
}

.site-nav a::after,
.btn,
.page-link.is-current,
.hero-quick-cta,
.floating-enquire,
.scroll-top {
    background: linear-gradient(120deg, #ff6b3d 0%, #ff8f50 100%);
}

.btn,
.page-link.is-current {
    box-shadow: 0 14px 28px rgba(255, 107, 61, 0.27);
}

.site-nav a:hover,
.site-nav a.is-active {
    color: #ffd1bc;
}

.text-link,
.property-meta strong,
.nearby-list span,
.faq-item summary::before {
    color: var(--pink-600);
}

.section-light {
    background: linear-gradient(180deg, #f7fbfd 0%, #f3f9fc 100%);
}

.home-hero {
    background:
        linear-gradient(82deg, rgba(10, 47, 68, 0.9) 0%, rgba(17, 72, 98, 0.78) 46%, rgba(22, 94, 125, 0.64) 100%),
        var(--hero-image, radial-gradient(circle at 60% 24%, #3f98ba 0%, #1d5c7b 36%, #0f3b54 100%));
}

.home-hero::before {
    background: radial-gradient(circle, rgba(255, 129, 89, 0.38) 0%, rgba(255, 129, 89, 0) 72%);
}

.home-hero::after {
    background: radial-gradient(circle, rgba(122, 223, 196, 0.34) 0%, rgba(122, 223, 196, 0) 70%);
}

.hero-overlay {
    background: linear-gradient(180deg, rgba(9, 39, 56, 0.16) 0%, rgba(9, 39, 56, 0.54) 100%);
}

.hero-property-tag {
    background: rgba(255, 255, 255, 0.16);
}

.hero-spotlight {
    background: rgba(7, 45, 66, 0.62);
}

.hero-side-media {
    min-height: 300px;
    background: linear-gradient(145deg, rgba(24, 91, 123, 0.44), rgba(16, 56, 80, 0.65));
}

.hero-side-media::after {
    background: linear-gradient(180deg, rgba(9, 40, 59, 0) 0%, rgba(9, 40, 59, 0.84) 100%);
}

.hero-quick {
    background: rgba(248, 252, 255, 0.86);
    border-color: rgba(206, 225, 236, 0.95);
}

.hero-quick-field label {
    color: #547286;
}

.hero-quick-field input,
.hero-quick-field select {
    color: #174f6b;
}

.hero-quick-field input::placeholder {
    color: rgba(23, 79, 107, 0.55);
}

.counter-card,
.property-card,
.about-card,
.hex-panel,
.timeline-item,
.faq-item,
.faq-list details,
.contact-card,
.contact-info-card,
.sidebar-box,
.pagination,
.quote-box,
.nearby-card,
.map-panel,
.gallery-mosaic figure {
    border-color: #d8e7ef;
    box-shadow: var(--shadow-1);
}

.amenities-band {
    background:
        linear-gradient(0deg, rgba(11, 54, 76, 0.94), rgba(11, 54, 76, 0.94)),
        radial-gradient(circle at 17% 22%, rgba(255, 118, 77, 0.42), transparent 34%),
        radial-gradient(circle at 84% 78%, rgba(95, 190, 214, 0.42), transparent 32%),
        #0f3b54;
}

.testimonial-wave {
    background:
        radial-gradient(circle at 18% 22%, rgba(255, 118, 77, 0.3), transparent 34%),
        radial-gradient(circle at 82% 78%, rgba(95, 190, 214, 0.32), transparent 34%),
        linear-gradient(160deg, #0f3b54 0%, #164f6b 100%);
}

.ribbon-grid,
.sidebar-contact {
    background: linear-gradient(130deg, #11455f 0%, #196080 70%, #247a98 100%);
}

.page-banner {
    background:
        linear-gradient(90deg, rgba(10, 43, 61, 0.84) 0%, rgba(10, 43, 61, 0.7) 100%),
        var(--banner-image, radial-gradient(circle at 40% 30%, #3c97ba 0%, #1d5c7b 44%, #0f3b54 100%));
}

.banner-overlay {
    background:
        radial-gradient(circle at 70% 18%, rgba(255, 128, 87, 0.24), transparent 34%),
        radial-gradient(circle at 14% 80%, rgba(124, 223, 198, 0.22), transparent 32%);
}

.detail-hero {
    background:
        radial-gradient(circle at 74% 22%, rgba(255, 121, 83, 0.34), transparent 34%),
        radial-gradient(circle at 22% 82%, rgba(116, 220, 196, 0.34), transparent 34%),
        linear-gradient(130deg, #0f3b54 0%, #195a78 82%);
}

input:focus,
select:focus,
textarea:focus {
    border-color: #ff7a4a;
    box-shadow: 0 0 0 4px rgba(255, 122, 74, 0.18);
}

.site-footer {
    background: linear-gradient(150deg, #0c3349 0%, #14516f 100%);
}

.footer-bottom {
    border-top-color: rgba(255, 255, 255, 0.2);
}
