/* ═══════════════════════════════════════
   MANCHESTER CITY PARKING — style.css
   ═══════════════════════════════════════ */

:root {
    --copper: #c8834a;
    --copper-dark: #a0612e;
    --copper-light: #e2a876;
    --charcoal: #1e1b18;
    --charcoal-mid: #2a2520;
    --off-white: #f5f2ee;
    --warm-white: #fdf9f5;
    --text-muted: #9a8f82;
    --border: rgba(200, 131, 74, 0.18);
    --shadow: 0 8px 40px rgba(200, 131, 74, 0.18);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Raleway', sans-serif;
    background: var(--warm-white);
    color: var(--charcoal);
    overflow-x: hidden
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif
}

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

img {
    max-width: 100%
}

/* ── NAVBAR ── */
.navbar-c {
    background: rgba(30, 27, 24, 0.97);
    border-bottom: 1px solid var(--border);
    padding: 5px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(12px);
}

.brand-wrap {
    display: flex;
    align-items: center;
    gap: .65rem;
    cursor: pointer
}

.head-logo img {
    height: 90px;
    width: auto;
    display: block
}

.nav-btn {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: rgba(255, 255, 255, .7) !important;
    padding: .3rem .85rem !important;
    transition: color .2s;
    cursor: pointer;
    border: none;
    background: none;
    text-decoration: none;
    display: inline-block;
}

.nav-btn:hover {
    color: var(--copper) !important
}

.nav-cta {
    background: var(--copper);
    color: var(--charcoal) !important;
    font-weight: 700;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    padding: .55rem 1.3rem !important;
    border-radius: 2px;
    transition: all .2s;
}

.nav-cta:hover {
    background: var(--copper-light);
    transform: translateY(-1px)
}

.tog {
    border: 1px solid var(--border);
    background: transparent;
    padding: .4rem .6rem;
    border-radius: 2px;
    cursor: pointer
}

.tog span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--copper);
    margin: 4px 0
}

/* ── MOBILE MENU ── */
.mob-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--charcoal);
    z-index: 9999;
    flex-direction: column;
    padding: 2rem
}

.mob-menu.open {
    display: flex
}

.mob-close {
    align-self: flex-end;
    background: none;
    border: none;
    color: var(--copper);
    font-size: 1.5rem;
    cursor: pointer;
    margin-bottom: 2rem
}

.mob-link {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .7);
    padding: .8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    cursor: pointer;
    transition: color .2s;
    text-decoration: none;
    display: block;
}

.mob-link:hover {
    color: var(--copper)
}

/* ── BUTTONS ── */
.btn-c {
    background: var(--copper);
    color: var(--charcoal) !important;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .15em;
    padding: .9rem 2rem;
    border-radius: 2px;
    border: 2px solid var(--copper);
    transition: all .25s;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    text-decoration: none;
}

.btn-c:hover {
    background: var(--copper-light);
    border-color: var(--copper-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(200, 131, 74, .3)
}

.btn-g {
    background: transparent;
    color: rgba(255, 255, 255, .85) !important;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .15em;
    padding: .9rem 2rem;
    border-radius: 2px;
    border: 2px solid rgba(255, 255, 255, .25);
    transition: all .25s;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-g:hover {
    border-color: var(--copper);
    color: var(--copper) !important
}

.btn-outline-copper {
    background: transparent;
    color: var(--copper) !important;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .13em;
    padding: .85rem 1.8rem;
    border-radius: 2px;
    border: 2px solid var(--copper);
    transition: all .25s;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-copper:hover {
    background: var(--copper);
    color: var(--charcoal) !important
}

.btn-outline-dark-sm {
    background: transparent;
    color: var(--charcoal) !important;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .13em;
    padding: .7rem 1.4rem;
    border-radius: 2px;
    border: 1.5px solid #ccc;
    transition: all .25s;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-dark-sm:hover {
    border-color: var(--copper);
    color: var(--copper) !important
}

/* ── SECTION LABELS / TITLES ── */
.sl {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: .25em;
    color: var(--copper);
    font-weight: 700;
    margin-bottom: .7rem;
    display: flex;
    align-items: center;
    gap: .7rem;
}

.sl::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--copper);
    flex-shrink: 0
}

.st {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.7rem);
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1.18;
    margin-bottom: 1rem
}

.sd {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.85;
    max-width: 520px
}

section {
    padding: 5rem 0
}

/* ── HERO ── */
.hero {
    position: relative;
    min-height: 96vh;
    display: flex;
    align-items: center;
    overflow: hidden
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://manchestercityparking.co.uk/wp-content/uploads/2026/04/Deansgate.png') center/cover;
}

.hero-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(20, 17, 14, .94) 0%, rgba(26, 21, 16, .82) 45%, rgba(20, 17, 14, .5) 100%);
}

.hero-line {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, transparent 5%, var(--copper) 40%, var(--copper-dark) 70%, transparent 95%)
}

.badge-live {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(200, 131, 74, .15);
    border: 1px solid rgba(200, 131, 74, .35);
    color: var(--copper);
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .2em;
    font-weight: 700;
    padding: .45rem 1rem;
    border-radius: 2px;
    margin-bottom: 1.8rem;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: #5cb85c;
    border-radius: 50%;
    animation: blink 2s infinite;
    flex-shrink: 0
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .4
    }
}

.hero h1 {
    font-size: clamp(2.3rem, 5vw, 4rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.08;
    letter-spacing: -.02em;
    margin-bottom: 1rem
}

.hero h1 em {
    font-style: normal;
    color: var(--copper)
}

.hero-price-line {
    font-size: 1.25rem;
    color: var(--copper-light);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    margin-bottom: .9rem;
    font-weight: 600
}

.hero-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, .6);
    line-height: 1.75;
    max-width: 480px;
    margin-bottom: 2.2rem
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, .1)
}

.hs-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--copper)
}

.hs-lbl {
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: rgba(255, 255, 255, .4);
    font-weight: 600;
    margin-top: .1rem
}

/* HERO PANEL */
.hero-panel {
    position: relative
}

.hero-panel-img {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
    border: 1px solid rgba(200, 131, 74, .2)
}

.hero-panel-img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block
}

.hero-panel-ov {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(20, 17, 14, .95), transparent)
}

.hp-tag {
    font-size: .63rem;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--copper);
    font-weight: 700;
    margin-bottom: .4rem
}

.hp-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: #fff;
    font-weight: 600
}

.hp-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--copper);
    font-weight: 700
}

.hp-price span {
    font-size: .7rem;
    color: rgba(255, 255, 255, .4);
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    margin-left: .3rem
}

.chip {
    position: absolute;
    background: rgba(26, 21, 16, .9);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: .65rem .9rem;
    font-size: .73rem;
    color: rgba(255, 255, 255, .8);
    white-space: nowrap;
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    gap: .4rem;
}

.chip i {
    color: var(--copper)
}

.chip-tl {
    top: -16px;
    left: -20px
}

.chip-br {
    bottom: -16px;
    right: -20px
}

/* ── TRUST STRIP ── */
.trust {
    background: var(--charcoal-mid);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.2rem 0
}

.t-item {
    display: flex;
    align-items: center;
    gap: .6rem;
    color: rgba(255, 255, 255, .6);
    font-size: .77rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 600
}

.t-item i {
    color: var(--copper);
    font-size: .95rem
}

.t-sep {
    color: rgba(200, 131, 74, .3)
}

/* ── SPLIT SECTION ── */
.split-img {
    height: 500px;
    object-fit: cover;
    border-radius: 6px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .12)
}

.split-frame {
    position: relative
}

.split-frame::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: 12px;
    bottom: 12px;
    border: 2px solid rgba(200, 131, 74, .35);
    border-radius: 6px;
    z-index: 0
}

.split-frame img {
    position: relative;
    z-index: 1
}

.split-badge {
    position: absolute;
    bottom: 2rem;
    left: -1.5rem;
    z-index: 2;
    background: var(--charcoal);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 1rem 1.2rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .3);
}

.sb-n {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--copper);
    line-height: 1
}

.sb-l {
    font-size: .67rem;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: rgba(255, 255, 255, .4);
    font-weight: 600;
    margin-top: .2rem
}

/* ── WHY CHOOSE US CARDS ── */
.why-card {
    background: #fff;
    border: 1px solid #ece8e2;
    border-radius: 6px;
    padding: 1.8rem 1.6rem;
    height: 100%;
    transition: all .25s;
}

.why-card:hover {
    border-color: var(--copper);
    box-shadow: var(--shadow);
    transform: translateY(-4px)
}

.why-card--highlight {
    background: rgba(200, 131, 74, .04);
    border-color: rgba(200, 131, 74, .3)
}

.why-ico {
    font-size: 1.6rem;
    color: var(--copper);
    margin-bottom: 1rem
}

.why-t {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: .5rem
}

.why-d {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.65
}

/* ── BENEFITS (mini) ── */
.ben-card {
    display: flex;
    gap: 1.2rem;
    padding: 1.6rem;
    border: 1px solid transparent;
    border-radius: 4px;
    background: #fff;
    transition: all .25s;
    height: 100%
}

.ben-card:hover {
    border-color: var(--copper);
    box-shadow: var(--shadow);
    transform: translateY(-3px)
}

.ben-ico {
    width: 48px;
    height: 48px;
    background: rgba(200, 131, 74, .1);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--copper);
    font-size: 1.25rem;
    flex-shrink: 0
}

.ben-t {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: .3rem
}

.ben-d {
    font-size: .81rem;
    color: var(--text-muted);
    line-height: 1.65
}

/* ── MINI BENEFITS (Request page) ── */
.mini-ben {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: #fff;
    border: 1px solid #ece8e2;
    border-radius: 4px;
    padding: 1.2rem;
    margin-bottom: .5rem;
    transition: all .2s;
}

.mini-ben:hover {
    border-color: var(--copper);
    transform: translateY(-2px)
}

.mini-ben i {
    font-size: 1.4rem;
    color: var(--copper);
    flex-shrink: 0;
    margin-top: 2px
}

.mini-ben strong {
    display: block;
    font-weight: 700;
    margin-bottom: .25rem;
    font-size: .9rem
}

.mini-ben p {
    font-size: .8rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5
}

/* ── IMAGE STRIP ── */
.img-strip {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 4px;
    height: 340px
}

.is-item {
    overflow: hidden;
    position: relative
}

.is-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
    display: block
}

.is-item:hover img {
    transform: scale(1.05)
}

.is-label {
    position: absolute;
    bottom: .8rem;
    left: .8rem;
    background: rgba(20, 17, 14, .82);
    color: var(--copper);
    font-size: .6rem;
    text-transform: uppercase;
    letter-spacing: .18em;
    font-weight: 700;
    padding: .2rem .6rem;
    border-radius: 2px
}

.is-item:first-child {
    border-radius: 8px 0 0 8px
}

.is-item:last-child {
    border-radius: 0 8px 8px 0
}

/* ── HOW IT WORKS ── */
.how-s {
    background: var(--charcoal);
    position: relative;
    overflow: hidden
}

.how-s::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://iamdeveloper.in/steven-dev/wp-content/uploads/2026/04/image-5.jpg') center/cover;
    opacity: .05;
}

.how-s .st {
    color: #fff
}

.step-b {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(200, 131, 74, .15);
    border-radius: 6px;
    padding: 2.2rem 1.8rem;
    text-align: center;
    transition: all .3s;
    height: 100%
}

.step-b:hover {
    background: rgba(200, 131, 74, .08);
    border-color: var(--copper);
    transform: translateY(-4px)
}

.step-n {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(200, 131, 74, .12);
    line-height: 1;
    margin-bottom: .3rem
}

.step-ico {
    width: 60px;
    height: 60px;
    background: rgba(200, 131, 74, .12);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.4rem;
    color: var(--copper)
}

.step-t {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #fff;
    margin-bottom: .7rem
}

.step-d {
    font-size: 16px;
    color: rgba(255, 255, 255, 1);
    line-height: 1.75
}

/* ── WHO CARDS ── */
.who-c {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
    transition: transform .3s
}

.who-c:hover {
    transform: translateY(-6px)
}

.who-c img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s
}

.who-c:hover img {
    transform: scale(1.07)
}

.who-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20, 17, 14, .92) 0%, rgba(20, 17, 14, .5) 60%, transparent 100%);
    transition: all .3s
}

.who-cnt {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem
}

.who-ic {
    font-size: 1.6rem;
    color: var(--copper);
    margin-bottom: .5rem
}

.who-t {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #fff;
    font-weight: 700;
    margin-bottom: .35rem
}

.who-d {
    font-size: 14px;
    color: rgba(255, 255, 255, 1);
    line-height: 1.6
}

/* ── SPACE CARDS ── */
.sp-card {
    background: #fff;
    border: 1px solid #ece8e2;
    border-radius: 6px;
    overflow: hidden;
    transition: all .28s;
    height: 100%
}

.sp-card:hover {
    border-color: var(--copper);
    box-shadow: var(--shadow);
    transform: translateY(-5px)
}

.sp-card--more {
    background: #fff;
    border: 2px dashed #ddd;
    border-radius: 6px
}

.sp-img {
    position: relative;
    height: 300px;
    overflow: hidden
}

.sp-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
    display: block
}

.sp-card:hover .sp-img img {
    transform: scale(1.07)
}

.sp-img-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20, 17, 14, .55), transparent 60%)
}

.sp-tag {
    position: absolute;
    top: .8rem;
    left: .8rem;
    background: rgba(20, 17, 14, .85);
    color: var(--copper);
    font-size: .6rem;
    text-transform: uppercase;
    letter-spacing: .15em;
    font-weight: 800;
    padding: .25rem .7rem;
    border-radius: 2px;
    border: 1px solid rgba(200, 131, 74, .3)
}

.sp-loc-badge {
    position: absolute;
    bottom: .8rem;
    right: .8rem;
    background: rgba(20, 17, 14, .85);
    color: rgba(255, 255, 255, .7);
    font-size: .62rem;
    font-weight: 600;
    padding: .2rem .6rem;
    border-radius: 2px
}

.sp-area {
    font-size: .66rem;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--copper);
    font-weight: 700;
    margin-bottom: .4rem
}

.sp-name {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--charcoal);
    font-weight: 700
}

.sp-desc {
    font-size: .79rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: .5rem
}

.sp-body {
    padding: 1.3rem 1.4rem
}

.sp-f {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: .45rem
}

.sp-f i {
    color: var(--copper);
    font-size: .85rem;
    width: 14px
}

.sp-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.4rem;
    border-top: 1px solid #ece8e2
}

.sp-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--copper);
    line-height: 1
}

.sp-unit {
    font-size: 14px;
    color: var(--text-muted);
    display: block;
    font-family: 'Raleway';
    margin-top: 2px
}

.btn-enq {
    background: var(--charcoal);
    color: var(--copper);
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 700;
    padding: .5rem 1.1rem;
    border-radius: 2px;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all .2s;
    font-family: 'Raleway', sans-serif;
    text-decoration: none;
    display: inline-block
}

.btn-enq:hover {
    background: var(--copper);
    color: var(--charcoal)
}

/* ── LOCATION FILTER TABS ── */
.loc-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem
}

.loc-tab {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 2px;
    padding: .5rem 1rem;
    font-size: .76rem;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--text-muted);
    cursor: pointer;
    transition: all .2s
}

.loc-tab:hover,
.loc-tab.active {
    background: var(--copper);
    color: var(--charcoal);
    border-color: var(--copper)
}

/* ── MAP ── */
.map-wrap {
    position: relative
}

.map-legend {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(26, 21, 16, .92);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 1rem 1.2rem;
    min-width: 180px;
    backdrop-filter: blur(8px);
}

.map-legend-title {
    font-size: .65rem;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--copper);
    font-weight: 700;
    margin-bottom: .7rem
}

.map-pin-row {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .78rem;
    color: rgba(255, 255, 255, .7);
    margin-bottom: .35rem
}

.map-dot {
    width: 8px;
    height: 8px;
    background: var(--copper);
    border-radius: 50%;
    flex-shrink: 0
}

/* ── PRICING TABLE ── */
.pricing-table {
    background: #fff;
    border: 1px solid #ece8e2;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .06)
}

.pt-row {
    display: grid;
    grid-template-columns: 1.5fr 1.5fr 1fr 1fr;
    padding: .9rem 1.4rem;
    border-bottom: 1px solid #ece8e2;
    align-items: center;
    font-size: .85rem
}

.pt-row:last-child {
    border-bottom: none
}

.pt-header {
    background: var(--charcoal);
    color: rgba(255, 255, 255, .5);
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .15em;
    font-weight: 700
}

.pt-price {
    font-family: 'Playfair Display', serif;
    color: var(--copper);
    font-weight: 700;
    font-size: 1rem
}

.text-copper {
    color: var(--copper) !important
}

/* ── TESTIMONIALS ── */
.testi-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(200, 131, 74, .15);
    border-radius: 8px;
    padding: 2rem;
    height: 100%;
    transition: all .25s
}

.testi-card:hover {
    border-color: var(--copper);
    background: rgba(200, 131, 74, .06)
}

.testi-stars {
    color: var(--copper);
    margin-bottom: 1rem;
    font-size: .9rem
}

.testi-stars i {
    margin-right: 2px
}

.testi-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 1);
    line-height: 1.75;
    margin-bottom: 1.2rem;
    font-style: italic
}

.testi-author {
    display: flex;
    align-items: center;
    gap: .8rem
}

.testi-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--copper), var(--copper-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .8rem;
    color: var(--charcoal);
    flex-shrink: 0
}

.testi-name {
    font-weight: 700;
    font-size: 18px;
    color: #fff
}

.testi-loc {
    font-size: 14px;
    color: rgba(255, 255, 255, 1)
}

/* ── CTA BAND ── */
.cta-band {
    position: relative;
    overflow: hidden;
    background: var(--charcoal)
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1449824913935-59a10b8d2000?w=1600&q=70&fit=crop') center/cover;
    opacity: .12
}

.cta-inner {
    position: relative;
    padding: 6rem 0;
    z-index: 1
}

.cta-t {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    color: #fff
}

.cta-t em {
    font-style: normal;
    color: var(--copper)
}

/* ── PAGE HEADER ── */
.ph {
    background: var(--charcoal);
    padding: 4.5rem 0 3.5rem;
    position: relative;
    overflow: hidden
}

.ph::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--copper) 35%, var(--copper-dark) 65%, transparent)
}

.ph-bg {
    position: absolute;
    inset: 0;
/*     background-size: cover; */
    background-position: center;
    opacity: .4
}

.ph .st {
    color: #fff
}

.breadcumb-detail,
.list-details {
    position: relative;
    z-index: 1
}

.breadcumb-detail h1,
.list-details h1 {
    color: #fff
}

.breadcumb-detail p,
.list-details p {
    color: rgba(255, 255, 255, .55);
    max-width: 560px;
    margin-top: .5rem;
    font-size: 16px;
    line-height: 1.7
}

/* ── FORMS ── */
.f-card {
    background: #fff;
    border: 1px solid #ece8e2;
    border-radius: 8px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .08)
}

.f-label {
    font-size: .74rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 700;
    color: #3a332b;
    margin-bottom: .4rem;
    display: block
}

.f-input {
    border: 1px solid #ddd;
    border-radius: 2px;
    padding: .75rem 1rem;
    font-family: 'Raleway', sans-serif;
    font-size: .88rem;
    color: var(--charcoal);
    background: #fafafa;
    width: 100%;
    transition: all .2s
}

.f-input:focus {
    outline: none;
    border-color: var(--copper);
    box-shadow: 0 0 0 3px rgba(200, 131, 74, .12);
    background: #fff
}

.f-sel {
    border: 1px solid #ddd;
    border-radius: 2px;
    padding: .75rem 2.5rem .75rem 1rem;
    font-family: 'Raleway', sans-serif;
    font-size: .88rem;
    color: var(--charcoal);
    background: #fafafa url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23c8834a' stroke-width='1.5'/%3E%3C/svg%3E") no-repeat right 1rem center;
    width: 100%;
    appearance: none
}

.f-sel:focus {
    outline: none;
    border-color: var(--copper);
    box-shadow: 0 0 0 3px rgba(200, 131, 74, .12)
}

.f-div {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--copper);
    font-weight: 700;
    padding-bottom: .5rem;
    border-bottom: 1px solid #ece8e2;
    margin-bottom: 1.4rem
}

.ok-msg {
    display: none;
    background: rgba(200, 131, 74, .07);
    border: 1px solid var(--copper);
    border-radius: 4px;
    padding: 2rem;
    text-align: center
}

.ok-msg i {
    font-size: 2.8rem;
    color: var(--copper);
    display: block;
    margin-bottom: .8rem
}

/* ── PHOTO UPLOAD ── */
.photo-upload-box {
    border: 2px dashed #ddd;
    border-radius: 4px;
    background: #fafafa;
    transition: all .2s;
    cursor: pointer;
    overflow: hidden
}

.photo-upload-box:hover {
    border-color: var(--copper);
    background: rgba(200, 131, 74, .04)
}

.photo-preview-wrap {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    gap: .5rem
}

.photo-preview-wrap i {
    font-size: 1.6rem;
    color: var(--copper)
}

.photo-preview-wrap span {
    font-size: .75rem;
    color: var(--text-muted)
}

.photo-preview-wrap img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 2px;
    display: block
}

/* ── EARN INCOME CARDS (List page) ── */
.earn-card {
    background: #fff;
    border: 1px solid #ece8e2;
    border-radius: 6px;
    padding: 1.5rem;
    height: 100%;
    transition: all .25s
}

.earn-card:hover {
    border-color: var(--copper);
    box-shadow: var(--shadow);
    transform: translateY(-3px)
}

.earn-card i {
    font-size: 1.5rem;
    color: var(--copper);
    margin-bottom: .8rem;
    display: block
}

.earn-t {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: .4rem
}

.earn-d {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6
}

/* ── INCOME CALCULATOR ── */
.income-calc {
    background: var(--charcoal);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 2rem;
    margin: 1.5rem 0 0
}

.ic-label {
    font-size: .65rem;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: var(--copper);
    font-weight: 700;
    margin-bottom: .3rem
}

.ic-range {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #fff;
    font-weight: 700;
    line-height: 1
}

.ic-range span {
    font-size: .8rem;
    color: rgba(255, 255, 255, .4);
    font-family: 'Raleway';
    font-weight: 400
}

.ic-note {
    font-size: .75rem;
    color: rgba(255, 255, 255, .4);
    margin-top: .3rem
}

.ic-cta-note {
    font-size: .85rem;
    color: rgba(255, 255, 255, .6);
    line-height: 1.6;
    font-style: italic
}

/* ── SIDEBAR ── */
.sdb {
    background: var(--charcoal);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 2rem;
    position: sticky;
    top: 90px
}

.ci-row {
    display: flex;
    gap: 1rem;
    padding: 1.1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.ci-row:last-of-type {
    border-bottom: none
}

.ci-ico {
    width: 40px;
    height: 40px;
    background: rgba(200, 131, 74, .12);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--copper);
    flex-shrink: 0
}

.ci-lbl {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: var(--copper);
    font-weight: 700;
    margin-bottom: .2rem
}

.ci-val {
    font-size: .85rem;
    color: rgba(255, 255, 255, .7);
    line-height: 1.5
}

.why-list {
    margin-top: 1.2rem
}

.why-list-item {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: 15px;
    color: rgba(255, 255, 255, .65);
    padding: .35rem 0
}

.why-list-item i {
    color: var(--copper);
    font-size: .85rem;
    flex-shrink: 0
}

/* ── ABOUT VALUES ── */
.val-s {
    border-left: 3px solid var(--copper);
    padding: 1.3rem 1.5rem;
    background: #fff;
    border-radius: 0 4px 4px 0;
    margin-bottom: 1.2rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
    transition: all .2s
}

.val-s:hover {
    box-shadow: 0 4px 20px rgba(200, 131, 74, .12);
    transform: translateX(4px)
}

.val-t {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: .3rem
}

.val-d {
    font-size: .81rem;
    color: var(--text-muted);
    line-height: 1.65
}

/* ── ABOUT STAT BLOCKS ── */
.stat-b {
    text-align: center;
    padding: 1.8rem 1rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: rgba(200, 131, 74, .06)
}

.stat-n {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--copper)
}

.stat-l {
    font-size: .67rem;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: rgba(255, 255, 255, .4);
    font-weight: 600;
    margin-top: .3rem
}

/* ── PHOTO SHOWCASE ── */
.photo-showcase {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    height: 415px
}

.photo-showcase img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s
}

.photo-showcase:hover img {
    transform: scale(1.04)
}

.ps-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: .7rem 1rem;
    background: linear-gradient(to top, rgba(20, 17, 14, .9), transparent);
    color: rgba(255, 255, 255, .8);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .1em
}

/* ── BLOG CARDS ── */
.bl-card {
    background: #fff;
    border: 1px solid #ece8e2;
    border-radius: 6px;
    overflow: hidden;
    height: 100%;
    transition: all .25s
}

.bl-card:hover {
    border-color: var(--copper);
    transform: translateY(-4px);
    box-shadow: var(--shadow)
}

.bl-img {
    height: 180px;
    overflow: hidden
}

.bl-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
    display: block
}

.bl-card:hover .bl-img img {
    transform: scale(1.07)
}

.bl-body {
    padding: 1.4rem
}

.bl-cat {
    font-size: .62rem;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--copper);
    font-weight: 700;
    margin-bottom: .5rem
}

.bl-t {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--charcoal);
    line-height: 1.4;
    margin-bottom: .65rem
}

.bl-e {
    font-size: .79rem;
    color: var(--text-muted);
    line-height: 1.65
}

.bl-more {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: var(--copper);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: .4rem;
    margin-top: .9rem
}

/* ── FOOTER ── */
footer {
    background: var(--charcoal);
    border-top: 1px solid var(--border);
    padding: 4rem 0 2rem
}

.main-ft-col p {
    font-size: 14px;
    color: rgba(255, 255, 255, 1);
    line-height: 1.75;
        max-width: 340px;
    margin-top: .8rem
}

.ft-logo img {
    height: 100px;
    width: auto;
}

.ft {
    font-size: 18px;
    text-transform: uppercase;
        letter-spacing: .1em;
    color: var(--copper);
    font-weight: 700;
    margin-bottom: 1rem
}

.fl {
    display: block;
    font-size: 16px;
    color: rgba(255, 255, 255, 1);
    margin-bottom: .5rem;
    cursor: pointer;
    transition: color .2s;
    text-decoration: none
}

.fl:hover {
    color: var(--copper)
}

.fbot {
    border-top: 1px solid rgba(255, 255, 255, .06);
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: .5rem
}

.fc {
    font-size: 16px;
    color: rgba(255, 255, 255, 1)
}

/* ── RESPONSIVE ── */
@media(max-width:992px) {

    .chip,
    .split-badge {
        display: none
    }

    .map-legend {
        position: static;
        margin-top: 1rem;
        display: flex;
        flex-wrap: wrap;
        gap: .5rem;
        background: var(--charcoal);
        border-radius: 6px
    }

    .map-pin-row {
        flex-basis: 45%
    }
}

@media(max-width:768px) {
    .hero {
        min-height: auto;
        padding: 4.5rem 0 3rem
    }

    .img-strip {
        grid-template-columns: 1fr 1fr;
        height: 260px
    }

    .is-item:last-child {
        display: none
    }

    .is-item:first-child {
        grid-column: 1/-1;
        border-radius: 8px 8px 0 0
    }

    .split-img {
        height: 300px
    }

    .pt-row {
        grid-template-columns: 1fr 1fr;
        gap: .3rem
    }

    .pt-header div:nth-child(3),
    .pt-row div:nth-child(3) {
        display: none
    }

    section {
        padding: 3.5rem 0
    }

    .hero-stats {
        gap: 1.5rem
    }
}

.need-details {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, .06);
}

.type-title {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: var(--copper);
    font-weight: 700;
    margin-bottom: .6rem;
}

.price-data {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--copper);
    font-weight: 700;
    line-height: 1;
}

.claender {
    font-size: 14px;
    color: rgba(255, 255, 255, .4);
    margin-top: .3rem;
}

/* ═══════════════════════════════════════
   NEW COMPONENTS — Badge System, Modals,
   Bay Cards, Contact Paths
   ═══════════════════════════════════════ */

/* ── STATUS BAR (Spaces page) ── */
.status-bar {
    background: var(--charcoal-mid);
    border-bottom: 1px solid var(--border);
    padding: .9rem 0;
}

.status-key {
    display: flex;
    align-items: center;
    gap: .7rem;
    font-size: .78rem;
    color: rgba(255, 255, 255, .6);
}

.status-note {
    font-size: .78rem;
    color: rgba(255, 255, 255, .45);
}

.status-note a {
    font-size: .78rem
}

/* Small status badges (for status bar key) */
.badge-available-sm {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: #1a7a3a;
    color: #fff;
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .1em;
    padding: .22rem .7rem;
    border-radius: 4px;
    white-space: nowrap;
}

.badge-rented-sm {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: #555;
    color: #fff;
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .1em;
    padding: .22rem .7rem;
    border-radius: 4px;
    white-space: nowrap;
}

/* ── BAY CARDS ── */
.bay-card {
    background: #fff;
    border: 2px solid #e8e4df;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all .28s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.bay-card--available:hover {
    border-color: #1a7a3a;
    box-shadow: 0 8px 40px rgba(26, 122, 58, .18);
    transform: translateY(-5px);
}

.bay-card--rented {
    background: #fafafa;
    border-color: #ddd;
    opacity: .88;
}

.bay-card--rented:hover {
    border-color: #999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
    transform: translateY(-3px);
    opacity: 1;
}

/* Bay image */
.bay-img {
    position: relative;
    height: 210px;
    overflow: hidden;
    flex-shrink: 0
}

.bay-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s
}

.bay-card--available:hover .bay-img img {
    transform: scale(1.06)
}

.bay-img-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .5) 0%, transparent 55%)
}

.bay-photo--rented {
    filter: grayscale(35%) brightness(.9)
}

/* Bay badge — top left, consistent position */
.bay-badge {
    position: absolute;
    top: .75rem;
    left: .75rem;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-family: 'Raleway', sans-serif;
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .08em;
    padding: .3rem .75rem;
    border-radius: 4px;
    white-space: nowrap;
    z-index: 2;
}

.bay-badge--available {
    background: rgba(26, 122, 58, .92);
    color: #fff;
    backdrop-filter: blur(4px);
}

.bay-badge--rented {
    background: rgba(80, 80, 80, .92);
    color: #fff;
    backdrop-filter: blur(4px);
}

.badge-dot-green {
    width: 6px;
    height: 6px;
    background: #6eea90;
    border-radius: 50%;
    display: inline-block;
    animation: blink 2s infinite;
}

.badge-dot-grey {
    width: 6px;
    height: 6px;
    background: #bbb;
    border-radius: 50%;
    display: inline-block;
}

/* Bay number */
.bay-num {
    position: absolute;
    bottom: .75rem;
    right: .75rem;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .8);
    background: rgba(0, 0, 0, .4);
    padding: .1rem .5rem;
    border-radius: 3px;
    backdrop-filter: blur(4px);
}

.bay-num--rented {
    color: rgba(255, 255, 255, .5)
}

/* Bay body */
.bay-body {
    padding: 1.2rem 1.3rem;
    flex: 1
}

.bay-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: .5rem;
}

.bay-short {
    font-size: .8rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: .8rem;
}

/* Bay tag pills */
.bay-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem
}

.bay-tag-pill {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    background: rgba(200, 131, 74, .08);
    color: var(--copper-dark);
    font-size: .68rem;
    font-weight: 600;
    padding: .2rem .6rem;
    border-radius: 20px;
}

.bay-tag-pill i {
    font-size: .65rem
}

.bay-tag-pill--muted {
    background: rgba(0, 0, 0, .04);
    color: var(--text-muted);
}

/* Bay footer */
.bay-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .9rem 1.3rem;
    border-top: 1px solid #ece8e2;
}

.bay-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--copper);
}

.bay-price span {
    font-size: .7rem;
    color: var(--text-muted);
    font-family: 'Raleway'
}

/* Bay CTA buttons */
.bay-btn {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    padding: .55rem 1rem;
    border-radius: 4px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all .2s;
    white-space: nowrap;
}

.bay-btn--available {
    background: #1a7a3a;
    color: #fff;
    border-color: #1a7a3a;
}

.bay-btn--available:hover {
    background: #156030;
    border-color: #156030;
    transform: translateY(-1px)
}

.bay-btn--rented {
    background: transparent;
    color: #666;
    border-color: #bbb;
}

.bay-btn--rented:hover {
    background: #555;
    color: #fff;
    border-color: #555
}

/* Bay sub-CTA line */
.bay-cta-sub {
    font-size: .71rem;
    color: var(--text-muted);
    text-align: center;
    padding: .4rem 1.3rem .8rem;
    font-style: italic;
}

/* Similar prompt banner */
.similar-prompt {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
    background: #fff;
    border: 1px solid #ece8e2;
    border-radius: 6px;
    padding: 1.4rem 1.8rem;
    margin-top: 2rem;
    font-size: .88rem;
    color: var(--charcoal);
}

.similar-prompt strong {
    font-weight: 700
}

/* ── BAY MODAL ── */
.bay-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: rgba(0, 0, 0, .75);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.bay-modal-overlay.open {
    display: flex
}

.bay-modal {
    background: #fff;
    border-radius: 10px;
    max-width: 680px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .4);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, .8);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    color: #fff;
    transition: background .2s;
    z-index: 10;
}

.modal-close:hover {
    background: rgba(0, 0, 0, .15)
}

/* Modal image */
.modal-img-wrap {
    position: relative;
    height: 250px;
    overflow: hidden
}

.modal-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.modal-img-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .6) 0%, transparent 60%)
}

.modal-img-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-family: 'Raleway', sans-serif;
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .08em;
    padding: .3rem .8rem;
    border-radius: 4px;
}

.modal-img-badge--available {
    background: rgba(26, 122, 58, .92);
    color: #fff
}

.modal-img-badge--rented {
    background: rgba(80, 80, 80, .92);
    color: #fff
}

/* Modal body */
.modal-body-inner {
    padding: 1.8rem
}

.modal-bay-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: .4rem;
}

.modal-desc {
    font-size: .85rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.modal-features {
    margin-bottom: 1.2rem
}

.modal-feat {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    font-size: .82rem;
    color: var(--charcoal);
    padding: .3rem 0;
}

.modal-feat i {
    color: var(--copper);
    margin-top: 2px;
    flex-shrink: 0
}

/* Modal form */
.modal-form-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 1rem;
    padding-bottom: .5rem;
    border-bottom: 1px solid #ece8e2;
}

.modal-ok {
    display: none;
    background: rgba(26, 122, 58, .07);
    border: 1px solid #1a7a3a;
    border-radius: 4px;
    padding: 1.5rem;
    text-align: center
}

.modal-ok i {
    font-size: 2rem;
    color: #1a7a3a;
    display: block;
    margin-bottom: .5rem
}

.modal-ok--waitlist {
    background: rgba(100, 100, 100, .07);
    border-color: #999
}

.modal-ok--waitlist i {
    color: #555
}

/* ── CONTACT PAGE PATHS ── */
.contact-path {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fff;
    border: 2px solid #ece8e2;
    border-radius: 6px;
    padding: 1.4rem 1.5rem;
    cursor: pointer;
    transition: all .2s;
}

.contact-path:hover {
    border-color: var(--copper);
    box-shadow: var(--shadow)
}

.contact-path--active {
    border-color: var(--copper);
    background: rgba(200, 131, 74, .04)
}

.cp-icon {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    background: rgba(200, 131, 74, .1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--copper);
}

.cp-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--charcoal)
}

.cp-desc {
    font-size: .8rem;
    color: var(--text-muted);
    margin-top: .2rem
}

.cp-arrow {
    margin-left: auto;
    color: var(--copper);
    font-size: 1rem
}

.contact-path-note {
    font-size: .78rem;
    color: var(--text-muted);
    text-align: center;
    padding: .6rem 0
}

/* Form path header */
.form-path-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(200, 131, 74, .05);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 1rem 1.2rem;
    margin-bottom: 1.5rem;
}

.fph-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    background: rgba(200, 131, 74, .15);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--copper);
}

.fph-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--charcoal)
}

.fph-sub {
    font-size: .79rem;
    color: var(--text-muted);
    margin-top: .2rem
}

/* ── RESPONSIVE ── */
@media(max-width:768px) {
    .bay-img {
        height: 180px
    }

    .modal-img-wrap {
        height: 180px
    }

    .status-note {
        display: none
    }

    .similar-prompt {
        flex-direction: column;
        align-items: flex-start;
        gap: .8rem
    }

    .contact-path {
        padding: 1rem
    }
}

.approach-para p{
	color:var(--text-muted);
	line-height:1.9;
	font-size:.95rem;
	margin-bottom:1.5rem;
}
.private{
	font-size:.62rem;
	text-transform:uppercase;
	letter-spacing:.15em;
	color:var(--copper);
	font-weight:700;
	margin-bottom:.3rem;
}
.form-bottom{
	margin-top:1.5rem;
	padding:1.2rem;
	background:rgba(200,131,74,.08);
	border:1px solid var(--border);
	border-radius:4px;
}
.form-bottom p{
	font-size:.82rem;
	color:rgba(255,255,255,.6);
	line-height:1.65;
	margin:0
}
.sure-title{
	font-size:.68rem;
	text-transform:uppercase;
	letter-spacing:.15em;
	color:var(--copper);
	font-weight:700;
	margin-bottom:.5rem;
}

.quick-msg{
	font-size:.75rem;
	padding:.65rem 1rem;
}
section.about-us-part ul {
    padding-left: 15px;
}
section.about-us-part ul li {
	font-size: 16px;
    color: var(--text-muted);
    line-height: 1.85;
}
section.about-us-part p a.about-btn {
    color: #c8834a;
    font-weight: 700;
}
.ph .breadcumb-detail h4 {
    color: #fff;
}
.ph .breadcumb-detail ul li
{
	color: rgba(255, 255, 255, .55);
   
    margin-top: .5rem;
    font-size: 16px;
    line-height: 1.7;
}
.ph .breadcumb-detail ul
{
	padding-left:15px;
}
.availability-highlight {
    background: linear-gradient(135deg, #fff7ed, #fde7c7);
    border: 1px solid #f0c27b;
    padding: 30px;
    border-radius: 10px;
    margin: 50px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}



.availability-highlight p {
    font-size: 18px;
	font-weight: 700;
    color: #c8834a;
    margin-bottom: 8px;
}
.ph .list-details h4
{
	color: #fff;
}
.ph .list-details ul li 
{
	
	color: rgba(255, 255, 255, .55);
  
    margin-top: .5rem;
    font-size: 16px;
    line-height: 1.7;
}
.ph .list-details ul 
{
	padding-left:15px;
}
.top-marquee {
  width: 100%;
  background: linear-gradient(90deg, #000, #111, #000);
  overflow: hidden;
  padding: 10px 0;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Glow edges (premium effect) */
.top-marquee::before,
.top-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
}

.top-marquee::before {
  left: 0;
  background: linear-gradient(to right, #000, transparent);
}

.top-marquee::after {
  right: 0;
  background: linear-gradient(to left, #000, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: scroll 40s linear infinite;
}

.marquee-content {
  display: flex;
  align-items: center;
}

/* TEXT STYLE 🔥 */
.marquee-content span {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  margin-right: 100px;
  white-space: nowrap;
  letter-spacing: 0.6px;
  position: relative;
}

/* GOLD ICON DOT */
.marquee-content span::before {
  content: "●";
  color: #c8834a;
  margin-right: 10px;
  font-size: 14px;
  vertical-align: middle;
}

/* Hover effect */
.marquee-content span:hover {
  color: #c8834a;
  transform: scale(1.05);
  transition: 0.3s;
}

/* Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Pause on hover */
.top-marquee:hover .marquee-track {
  animation-play-state: paused;
}

/* Responsive */
@media (max-width: 768px) {
  .marquee-content span {
    font-size: 13px;
    margin-right: 60px;
  }
}
.modal-overlay .modal-box span.modal-close {
    display: none;
}

.sidebar-sticky {
  background: #000;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

/* Title */
.sidebar-sticky h4 {
  color: #c8834a;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}

/* underline */
.sidebar-sticky h4::after {
  content: "";
  width: 40px;
  height: 3px;
  background: #c8834a;
  position: absolute;
  left: 0;
  bottom: -8px;
}

/* list reset */
.sidebar-sticky ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* list item */
.sidebar-sticky ul li {
  margin-bottom: 12px;
}

/* links */
.sidebar-sticky ul li a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 14.5px;
  line-height: 1.6;
  padding: 10px 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

/* arrow */
.sidebar-sticky ul li a::before {
  content: "→";
  color: #c8834a;
  margin-right: 8px;
}

/* hover 🔥 */
.sidebar-sticky ul li a:hover {
  background: #c8834a;
  color: #000;
  transform: translateX(6px);
}

.sidebar-sticky ul li a:hover::before {
  color: #000;
}
.blog-data {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* Image */
.blog-data img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
  transition: 0.4s ease;
}

.blog-data img:hover {
  transform: scale(1.02);
}

/* Title */
.blog-data h2 {
  font-size: 26px;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
  line-height: 1.3;
}

/* Content */
.blog-data div {
  font-size: 16px;
  color: #444;
  line-height: 1.8;
}

/* Headings inside content */
.blog-data h3 {
  font-size: 20px;
  margin-top: 25px;
  margin-bottom: 10px;
  color: #c8834a;
  font-weight: 600;
  position: relative;
}

/* underline accent */
.blog-data h3::after {
  content: "";
  width: 35px;
  height: 2px;
  background: #c8834a;
  position: absolute;
  left: 0;
  bottom: -5px;
}

/* List */
.blog-data ul {
  padding-left: 20px;
  margin-bottom: 15px;
}

.blog-data ul li {
  margin-bottom: 8px;
  color: #333;
  position: relative;
}

/* custom bullet */
.blog-data ul li::marker {
  color: #c8834a;
}

/* Paragraph */
.blog-data p {
  margin-bottom: 12px;
}

/* Highlight important line */
.blog-data p:last-child {
  font-weight: 500;
  color: #000;
}

/* Responsive */
@media (max-width: 768px) {
  .blog-data {
    padding: 18px;
  }

  .blog-data h2 {
    font-size: 22px;
  }

  .blog-data h3 {
    font-size: 18px;
  }

  .blog-data div {
    font-size: 15px;
  }
}
/* ===== PREMIUM CARD ===== */
.section-area .card-pro{
    background:#fff;
    border-radius:14px;
    padding:30px;
    height:100%;
    position:relative;
    overflow:hidden;
    transition:0.35s ease;
    border:1px solid rgba(0,0,0,0.05);
}

.section-area .card-pro::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:3px;
    background:linear-gradient(90deg,#c8834a,transparent);
}

.section-area .card-pro:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

section.section-area .card-icon{
    width:60px;
    height:60px;
    background:rgba(200,131,74,0.1);
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    font-size: 30px;
    margin-bottom:15px;
    transition:0.3s;
}

.section-area .card-pro:hover .card-icon{
    background:#c8834a;
    color:#fff;
}

.section-area .card-pro h6{
    font-weight:600;
    margin-bottom:10px;
}

.section-area .card-pro p{
    color:#666;
    font-size:14px;
}

/* ===== PRICE CARD ===== */
.section-area .price-card{
    background:#fff;
    border-radius:14px;
    padding:40px;
    text-align:center;
    border:1px solid rgba(0,0,0,0.05);
    transition:0.3s;
}

.section-area .price-card:hover{
    transform:scale(1.03);
    box-shadow:0 20px 60px rgba(0,0,0,0.08);
}

.section-area .price-card h2{
    font-size:40px;
    color:#c8834a;
    font-weight:700;
}

/* ===== SOLUTION ===== */
.section-area .solution{
    background:#fff;
    padding:45px;
    border-radius:16px;
    border:1px solid rgba(0,0,0,0.05);
    transition:0.3s;
}

.section-area .solution:hover{
    box-shadow:0 20px 50px rgba(0,0,0,0.06);
}

/* ===== CTA ===== */
.section-area .cta{
    background:linear-gradient(135deg,#c8834a,#a96d3b);
    padding:60px;
    border-radius:15px;
    text-align:center;
    color:#fff;
}

.section-area .btn-main{
    background:#000;
    color:#fff;
    padding:12px 25px;
    border:none;
    margin:5px;
}

.section-area .btn-alt{
    background:#fff;
    color:#000;
    padding:12px 25px;
    border:none;
}

/* ===== MAP ===== */
.section-area .map iframe{
    width:100%;
    height:400px;
    border:0;
    border-radius:10px;
}

section.section-area {
    padding-bottom: 0px;
}
.container-narrow{
    max-width:900px;
    margin:auto;
}
/* ===== FORM SECTION ===== */
.section-area .form-wrap{
    background:#fff;
    padding:50px;
    border-radius:16px;
   
    margin:auto;
    box-shadow:0 15px 50px rgba(0,0,0,0.05);
}

/* inputs */
.section-area .custom-input{
    height:50px;
    border-radius:8px;
    border:1px solid #ddd;
    padding:10px 15px;
    transition:0.3s;
}

/* textarea fix */
.section-area textarea.custom-input{
    height:auto;
}

/* focus effect */
.section-area .custom-input:focus{
    border-color:#c8834a;
    box-shadow:0 0 0 3px rgba(200,131,74,0.1);
}

/* button */
.section-area .btn-submit{
    background:#c8834a;
    color:#fff;
    padding:12px 30px;
    border:none;
    border-radius:30px;
    transition:0.3s;
}

.section-area .btn-submit:hover{
    background:#a96d3b;
}
/* ===== CUSTOM DROPDOWN ===== */

.custom-dropdown{
    position:relative;
}

/* dropdown box */
.dropdown-menu-custom{
    position:absolute;
    top:120%;
    left:0;
    background:#fff;
    min-width:220px;
    border-radius:8px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    
    opacity:0;
    visibility:hidden;
    transform:translateY(10px);
    transition:all 0.3s ease;
    z-index:999;
}

/* links */
.dropdown-menu-custom a{
    display:block;
    padding:12px 18px;
    color:#222;
    text-decoration:none;
    transition:0.3s;
}

/* hover effect */
.dropdown-menu-custom a:hover{
    background:#f5f5f5;
    color:#d4ae1a;
}

/* SHOW ON HOVER */
.custom-dropdown:hover .dropdown-menu-custom{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}
/* icon style */
.dropdown-icon{
    font-size:14px;
    transition:0.3s ease;
}

/* rotate on hover */
.custom-dropdown:hover .dropdown-icon{
    transform:rotate(180deg);
}
/* mobile dropdown */
.mobile-dropdown{
    width:100%;
}

/* hidden by default */
.mob-dropdown-menu{
    max-height:0;
    overflow:hidden;
    transition:max-height 0.4s ease;
}

/* active state */
.mobile-dropdown.active .mob-dropdown-menu{
    max-height:300px;
}

/* links */
.mob-dropdown-menu a{
    display:block;
    padding:10px 15px;
   color: #ffffff;
    text-decoration:none;
    border-bottom:1px solid #eee;
}

/* arrow */
.arrow{
    float:right;
    transition:0.3s;
}

/* rotate arrow */
.mobile-dropdown.active .arrow{
    transform:rotate(180deg);
}
/* mega dropdown layout */
.mega-dropdown{
    display:flex;
    gap:40px;
    padding:25px;
    min-width:450px;
}

/* column */
.dropdown-col{
    flex:1;
}

/* heading */
.dropdown-col h6{
    font-weight:600;
    margin-bottom:10px;
    color:#222;
}

/* links */
.dropdown-col a{
    display:block;
    padding:6px 0;
    color:#444;
    text-decoration:none;
    font-size:14px;
    transition:0.3s;
}

/* hover */
.dropdown-col a:hover{
    color:#d4ae1a;
    transform:translateX(4px);
}
/* dropdown */
.mob-dropdown-menu{
    max-height:0;
    overflow:hidden;
    transition:max-height 0.4s ease;
}

/* open */
.mobile-dropdown.active .mob-dropdown-menu{
    max-height:600px;
}

/* group */
.mob-group{
    padding:10px 0;
}

/* heading */
.mob-group h6{
    font-weight:600;
    margin:10px 0;
       color: #ffffff;
}

/* links */
.mob-group a{
    display:block;
    padding:8px 10px;
    color:#fff;
    text-decoration:none;
    font-size:14px;
    border-bottom:1px solid #eee;
}

/* hover */
.mob-group a:hover{
    color:#d4ae1a;
    padding-left:15px;
}
.mob-menu.open {
    display: flex;
    height: 600px;
    overflow: auto;
}
/* arrow */
.arrow{
    float:right;
    transition:0.3s;
}

/* rotate */
.mobile-dropdown.active .arrow{
    transform:rotate(180deg);
}

.areas-section {
  padding: 70px 20px;
  background: #f9f7f4;
  text-align: center;
}

.section-heading h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.section-heading p {
  color: #666;
  margin-bottom: 40px;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.area-card {
  display: block;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  text-decoration: none;
  color: #000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.area-card h3 {
  margin-bottom: 10px;
}

.area-card p {
  font-size: 14px;
  color: #666;
}

.area-card span {
  display: inline-block;
  margin-top: 10px;
  font-weight: 600;
  color: #c47a3a;
}

.area-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.areas-cta {
  margin-top: 40px;
}

.cta-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 25px;
  background: #c47a3a;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
}

.cta-btn:hover {
  background: #a8642f;
}

/* Responsive */
@media (max-width: 992px) {
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .areas-grid {
    grid-template-columns: 1fr;
  }
}
/* privacy */
.privacy-page {
  max-width: 80%;
  margin: 80px auto;
  padding: 40px;
  background: #0f0f0f;
  border-radius: 12px;
  color: #eaeaea;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
  line-height: 1.7;
}

/* Main Heading */
.privacy-page h2 {
  font-size: 28px;
  color: #c8834a;
  margin-bottom: 15px;
  border-left: 4px solid #c8834a;
  padding-left: 12px;
}

/* Sub Headings */
.privacy-page h3 {
  font-size: 22px;
  color: #fff;
  margin-top: 30px;
  margin-bottom: 20px;
}

/* Paragraph */
.privacy-page p {
  font-size: 15px;
  color: #bbb;
  margin-bottom: 15px;
}

/* Lists */
.privacy-page ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.privacy-page ul li {
  font-size: 15px;
  color: #ddd;
  margin-bottom: 8px;
  position: relative;
}

/* Custom bullet */
.privacy-page ul li::marker {
  color: #c8834a;
}

/* Highlight important lines */
.privacy-page p.isSelectedEnd {
  background: rgba(200,131,74,0.08);
  padding: 12px 15px;
  border-left: 3px solid #c8834a;
  border-radius: 6px;
}

/* Section spacing */
.privacy-page h3 + p {
  margin-top: 5px;
}

/* Hover effect (subtle premium feel) */
.privacy-page:hover {
  box-shadow: 0 15px 50px rgba(0,0,0,0.6);
}

/* Responsive */
@media(max-width:768px){
  .privacy-page {
    padding: 25px;
	  max-width:100%;
    margin: 40px 15px;
  }
.container-fluid.px-3.pb-1 {
    padding: 50px 0px;
}
.container-fluid.px-3.pb-1 .img-strip .is-item:last-child
	{
		display:block !important;
	}

  .privacy-page h2 {
    font-size: 24px;
  }

  .privacy-page h3 {
    font-size: 18px;
  }
}

/* terms */
.terms {
  max-width: 80%;
  margin: 80px auto;
  padding: 40px;
  background: #0f0f0f;
  border-radius: 12px;
  color: #eaeaea;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
  line-height: 1.7;
}

/* Main Heading */
.terms h2 {
  font-size: 28px;
  color: #c8834a;
  margin-bottom: 15px;
  border-left: 4px solid #c8834a;
  padding-left: 12px;
}

/* Sub Headings */
.terms h3 {
  font-size: 22px;
  color: #fff;
  margin-top: 30px;
  margin-bottom: 20px;
}

/* Paragraph */
.terms p {
  font-size: 15px;
  color: #bbb;
  margin-bottom: 15px;
}

/* Lists */
.terms ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.terms ul li {
  font-size: 15px;
  color: #ddd;
  margin-bottom: 8px;
}

/* Bullet color */
.terms ul li::marker {
  color: #c8834a;
}

/* Highlight important text */
.terms p.isSelectedEnd {
  background: rgba(200,131,74,0.08);
  padding: 12px 15px;
  border-left: 3px solid #c8834a;
  border-radius: 6px;
}

/* Section spacing */
.terms h3 + p {
  margin-top: 5px;
}

/* Hover subtle effect */
.terms:hover {
  box-shadow: 0 15px 50px rgba(0,0,0,0.6);
}

/* Responsive */
@media(max-width:768px){
  .terms {
    padding: 25px;
    margin: 40px 15px;
  }
.terms {
  max-width: 100%;
 
}
  .terms h2 {
    font-size: 24px;
  }

  .terms h3 {
    font-size: 18px;
  }
	.split-badge
	{
	
    left: 0.5rem !important;
   
	}
}
.cta-band {
    margin-bottom: 50px;
}


/* PAGE */
.pricing-page {
  background: #f8f8f8;
}

/* HEADER */
.pricing-title {
  font-size: 32px;
  font-weight: 600;
  color: #1e1b18;
}

.pricing-sub {
  color: #666;
  max-width: 600px;
  margin: auto;
}

/* CARDS */
.pricing-card {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  border: 1px solid #eee;
  height: 100%;
  transition: 0.3s;
}

.pricing-card:hover {
  border-color: #c8834a;
  transform: translateY(-5px);
}

/* HIGHLIGHT CARD */
.pricing-card.highlight {
  border: 2px solid #c8834a;
}

/* TEXT */
.pricing-card h3 {
  color: #1e1b18;
  margin-bottom: 10px;
}

.pricing-card ul {
  padding-left: 0;
  list-style: none;
}

.pricing-card ul li {
  margin-bottom: 8px;
  color: #555;
}

/* BENEFITS */
.benefit-box {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #eee;
  text-align: center;
}

/* FINAL LINE */
.final-line {
  color: #1e1b18;
  font-weight: 600;
}

/* BUTTONS (MAIN BRAND USE HERE 🔥) */
.btn-main {
  background: #c8834a;
  color: #fff;
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  margin-right: 10px;
  font-weight: 600;
}

.btn-main:hover {
  background: #a96a3c;
}

.btn-outline {
  border: 2px solid #1e1b18;
  color: #1e1b18;
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
}

.btn-outline:hover {
  background: #1e1b18;
  color: #fff;
}

@media(min-width: 1200px){
  .container{ 
    max-width:1240px;
  }
}

/* page-template-mediacity */

.page-template-mediacity .section-block {
    padding: 80px 0;
    border-bottom: 1px solid rgba(200,131,74,0.15);
  }

  /* HERO */
 .page-template-mediacity  .hero-section {
    position: relative;
/*     min-height: 86vh; */
    display: flex;
    align-items: center;
        padding: 50px 0 50px;
    overflow: hidden;
  }
.page-template-mediacity  .hero-bg {
    position: absolute; inset: 0;
    background:
      linear-gradient(135deg, rgba(15,15,15,0.97) 0%, rgba(18,10,3,0.90) 55%, rgba(200,131,74,0.06) 100%),
      url('https://manchestercityparking.co.uk/wp-content/uploads/2026/04/image-1-1.jpg') center/cover no-repeat;
    z-index: 0;
  }
.page-template-mediacity  .hero-bg::after {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 55% 70% at 75% 50%, rgba(200,131,74,0.05) 0%, transparent 70%);
  }
.page-template-mediacity  .hero-content { position: relative; z-index: 1; }

 .page-template-mediacity .hero-eyebrow {
    display: inline-flex; align-items: center; gap: .55rem;
    background: rgba(200,131,74,0.1);
    border: 1px solid rgba(200,131,74,0.28);
    color: #c8834a;
    font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
    padding: .4rem 1rem; border-radius: 2px;
    margin-bottom: 1.4rem;
  }
.page-template-mediacity  .hero-eyebrow span { width: 5px; height: 5px; background: #c8834a; border-radius: 50%; display: inline-block; }

.page-template-mediacity  .hero-title em { font-style: normal; color: #c8834a; }

.page-template-mediacity  .hero-intro {
    font-size: 1.1rem; color: #fff;
       max-width: 100%; margin-top: 1.1rem; line-height: 1.85;
  }
.page-template-mediacity  .hero-support {
    font-size: .96rem; color: #fff;
     max-width: 100%; margin-top: 1rem; line-height: 1.8;
  }

.page-template-mediacity  .cta-row { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: .9rem; }

.page-template-mediacity  .btn-solid {
    background: #c8834a; border: none; color: #fff;
    font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: .92rem;
    letter-spacing: .03em; padding: .85rem 2rem; border-radius: 2px;
    text-decoration: none; display: inline-block;
    transition: background .25s, transform .2s;
  }
.page-template-mediacity  .btn-solid:hover { background: #a8632a; transform: translateY(-2px); color: #fff; }

.page-template-mediacity  .btn-outline {
    background: transparent;
    border: 1px solid rgba(200,131,74,0.45);
    color: #c8834a;
    font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: .92rem;
    padding: .85rem 2rem; border-radius: 2px;
    text-decoration: none; display: inline-block;
    transition: all .25s;
  }
 .page-template-mediacity .btn-outline:hover { background: rgba(200,131,74,0.08); border-color: #c8834a; color: #c8834a; }

.page-template-mediacity  .btn-ghost {
    background: transparent;
    border: 1px solid rgba(200,131,74,0.2);
    color: #9a9590;
    font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: .9rem;
    padding: .85rem 2rem; border-radius: 2px;
    text-decoration: none; display: inline-block;
    transition: all .25s;
  }
 .page-template-mediacity .btn-ghost:hover { border-color: #c8834a; color: #c8834a; }

  /* SECTION LABEL */
 .page-template-mediacity .sec-label {
    font-size: .7rem; letter-spacing: .18em; text-transform: uppercase;
    color: #c8834a; font-weight: 600; margin-bottom: .5rem;
    font-family: 'DM Sans', sans-serif;
  }
  .page-template-mediacity .accent-bar {
    display: block; width: 44px; height: 3px;
    background: #c8834a; border-radius: 2px; margin-bottom: 1.1rem;
  }

  /* CARDS */
.page-template-mediacity  .dark-card {
    background: #161616;
    border: 1px solid rgba(200,131,74,0.15);
    border-radius: 2px;
    padding: 1.8rem 1.6rem;
    height: 100%;
    transition: border-color .3s, transform .3s;
  }
.page-template-mediacity  .dark-card:hover { border-color: rgba(200,131,74,0.4); transform: translateY(-3px); }
.page-template-mediacity  .dark-card h3 { font-size: 1rem; margin-bottom: .5rem; color: #e8e4df; }
.page-template-mediacity  .dark-card p { font-size: .9rem; color: #9a9590; }

  /* STYLED LIST */
 .page-template-mediacity .slist { list-style: none; padding: 0; margin: 0; }
  .page-template-mediacity .slist { list-style: none; padding: 0; margin: 0; }
 .page-template-mediacity .slist li {
    display: flex; gap: .75rem; align-items: flex-start;
    padding: .65rem 0;
    border-bottom: 1px solid rgba(200,131,74,0.12);
    font-size: .95rem; color: #9a9590;
  }
.page-template-mediacity  .slist li:last-child { border-bottom: none; }
.page-template-mediacity  .slist li::before { content: '›'; color: #c8834a; font-size: 1.05rem; font-weight: 700; flex-shrink: 0; line-height: 1.6; }

  /* SECTION BG ALT */
 .page-template-mediacity .bg-surface { background: #161616; }

  /* QUOTE BLOCK */
.page-template-mediacity  .quote-block {
    border-left: 3px solid #c8834a;
    background: #1a1a1a;
    padding: 1.4rem 1.6rem;
    border-radius: 0 2px 2px 0;
    margin-top: 1.2rem;
  }
.page-template-mediacity  .quote-block p { color: #e8e4df; font-style: italic; font-size: .97rem; }

  /* NUMBERED ROW */
.page-template-mediacity  .num-row {
    display: flex; gap: 1.1rem; align-items: flex-start;
    background: #161616;
    border: 1px solid rgba(200,131,74,0.13);
    border-radius: 2px;
    padding: 1.3rem 1.5rem;
    margin-bottom: .7rem;
    transition: border-color .3s;
  }
.page-template-mediacity  .num-row:hover { border-color: rgba(200,131,74,0.35); }
.page-template-mediacity  .num-row .n { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 900;     color: rgb(200 131 74); flex-shrink: 0; line-height: 1; margin-top: .1rem; }
.page-template-mediacity  .num-row h3 { font-size: .97rem; color: #e8e4df; margin-bottom: .25rem; }
.page-template-mediacity  .num-row p { font-size: .88rem; color: #9a9590; }

  /* IMAGE GRID */
.page-template-mediacity  .img-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4px; border-radius: 2px; overflow: hidden; }
.page-template-mediacity  .img-grid img { width: 100%; height: 260px; object-fit: cover; display: block; transition: transform .4s; }
.page-template-mediacity  .img-grid img:hover { transform: scale(1.04); }

  /* NEARBY TAGS */
.page-template-mediacity  .area-tag {
    display: inline-block;
    background: rgba(200,131,74,0.08);
    border: 1px solid rgba(200,131,74,0.22);
    color: #c8834a;
    font-size: .74rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase;
    padding: .28rem .7rem; border-radius: 2px; margin: .22rem;
    transition: background .2s;
  }
.page-template-mediacity  .area-tag:hover { background: rgba(200,131,74,0.16); }

  /* CTA CARDS */
.page-template-mediacity  .cta-card {
    background: #161616;
    border: 1px solid rgba(200,131,74,0.15);
    border-radius: 2px; padding: 2.2rem 1.8rem; text-align: center; height: 100%;
    transition: border-color .3s, transform .3s;
  }
.page-template-mediacity  .cta-card:hover { border-color: rgba(200,131,74,0.45); transform: translateY(-4px); }
.page-template-mediacity  .cta-card .card-label { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: #c8834a; font-weight: 600; font-family: 'DM Sans', sans-serif; }
.page-template-mediacity  .cta-card h3 { font-size: 1.3rem; margin: .5rem 0 .7rem; color: #e8e4df; }
.page-template-mediacity  .cta-card p { font-size: .88rem; color: #9a9590; margin-bottom: 1.4rem; }

  /* DIFF TABLE */
 .page-template-mediacity .dtable { width: 100%; border-collapse: collapse; }
.page-template-mediacity  .dtable th {
    background: rgba(200,131,74,0.07); color: #c8834a;
    font-size: .75rem; letter-spacing: .1em; text-transform: uppercase;
    padding: .75rem 1.1rem; text-align: left;
    border-bottom: 1px solid rgba(200,131,74,0.18);
    font-family: 'DM Sans', sans-serif; font-weight: 600;
  }
.page-template-mediacity  .dtable td {
    padding: .75rem 1.1rem; font-size: .91rem;
    border-bottom: 1px solid rgba(200,131,74,0.1); color: #9a9590; vertical-align: top;
  }
.page-template-mediacity  .dtable tr:last-child td { border-bottom: none; }
.page-template-mediacity  .dtable .col-label { color: #e8e4df; font-weight: 600; }
.page-template-mediacity  .tick { color: #c8834a; font-weight: 700; }
.page-template-mediacity  .cross { color: #444; }

  /* FOOTER LINKS */
.page-template-mediacity  .footer-links-sec { background: #161616; padding: 55px 0; border-top: 1px solid rgba(200,131,74,0.15); }
.page-template-mediacity  .fl-title { font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: #c8834a; font-weight: 700; font-family: 'DM Sans', sans-serif; margin-bottom: .9rem; }
.page-template-mediacity  .fl-list { list-style: none; padding: 0; }
.page-template-mediacity  .fl-list li { margin-bottom: .45rem; }
.page-template-mediacity  .fl-list a { color: #9a9590; text-decoration: none; font-size: .9rem; transition: color .2s; }
.page-template-mediacity  .fl-list a:hover { color: #c8834a; }

  /* NEXT STEP */
.page-template-mediacity  .next-box {
    background: rgba(200,131,74,0.06);
    border: 1px solid rgba(200,131,74,0.25);
    border-radius: 2px; padding: 2rem 2.2rem;
  }
.page-template-mediacity  .check-row { display: flex; gap: .65rem; margin-bottom: .55rem; font-size: .93rem; color: #e8e4df; align-items: flex-start; }
 .page-template-mediacity .check-row::before { content: '✓'; color: #c8834a; font-weight: 700; flex-shrink: 0; }

  /* BOTTOM CTA BG */
.page-template-mediacity  .cta-section-bg {
    background: linear-gradient(135deg, #170d04 0%, #0f0f0f 65%);
    border-top: 1px solid rgba(200,131,74,0.15);
    padding: 80px 0;
    position: relative; overflow: hidden;
  }
.page-template-mediacity  .cta-section-bg::before {
    content: '';
    position: absolute; top: -40%; right: -5%;
    width: 460px; height: 460px;
    background: radial-gradient(circle, rgba(200,131,74,0.05) 0%, transparent 65%);
    pointer-events: none;
  }

  @media (max-width: 768px) {
  .page-template-mediacity  .img-grid { grid-template-columns: 1fr; }
   .page-template-mediacity .img-grid img { height: 200px; }
  }
.page-template-mediacity .bg-surface h2 {
    color: #fff;
}
.page-template-mediacity section#why p {
    color: #fff;
}
.page-template-mediacity section#find-rent h3.mt-4.mb-2 {
    color: #c8834a !important;
}
.page-template-mediacity section#convert h2 {
    color: #fff;
}
.page-template-mediacity section#convert p.mt-2 {
    color: #fff;
}
.page-template-mediacity .hero-content h1.hero-title {
    color: #fff;
}