:root {
    --brand-green: #c4a265;
    --brand-blue: #12352c;
    --brand-magenta: #1a6b4a;
    --bg-main: #f7faf7;
    --bg-alt: #eaf2ec;
    --text-dark: #15241f;
    --text-gray: #5a6b64;
    --text-light: #ffffff;
    --border-color: #d7e4db;
    --cream: #efe3c6;
    --wine-mid: #1c4d3d;
    --shadow-soft: 0 8px 24px rgba(18, 53, 44, 0.08);
    --shadow-hover: 0 14px 32px rgba(18, 53, 44, 0.14);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: "Outfit", Arial, sans-serif;
    background: var(--bg-main);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
h1, h2, h3, h4 {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-weight: 700;
    color: var(--brand-blue);
    line-height: 1.15;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; }

.anim-slide-up { opacity: 0; transform: translateY(28px); transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1); }
.anim-slide-up.is-visible { opacity: 1; transform: none; }
.anim-fade { opacity: 0; transition: opacity 0.9s ease; }
.anim-fade.is-visible { opacity: 1; }
.anim-scale { opacity: 0; transform: scale(0.97); transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1); }
.anim-scale.is-visible { opacity: 1; transform: none; }

@keyframes kenBurnsEffect {
    0% { transform: scale(1); }
    100% { transform: scale(1.06); }
}

.btn-solid {
    background: var(--brand-magenta);
    color: var(--text-light);
    padding: 14px 28px;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(26, 107, 74, 0.28);
}
.btn-solid:hover {
    background: var(--brand-blue);
    transform: translateY(-1px);
}

.btn-outline {
    border: 1.5px solid var(--brand-blue);
    padding: 12px 26px;
    background: transparent;
    color: var(--brand-blue);
    font-size: 11px;
    letter-spacing: 1.5px;
    cursor: pointer;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    transition: 0.3s ease;
    font-weight: 600;
}
.btn-outline:hover { background: var(--bg-alt); }

.btn-outline-dark {
    border: 1px solid var(--text-dark);
    color: var(--text-dark);
    background: transparent;
    padding: 14px 0;
    width: 100%;
    text-align: center;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 30px;
    transition: 0.3s ease;
    font-weight: 600;
    margin-top: 15px;
    display: block;
}
.btn-outline-dark:hover { background: var(--text-dark); color: #fff; }

.tag {
    display: inline-block;
    background: rgba(196, 162, 101, 0.12);
    color: var(--brand-magenta);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
    border: 1px solid rgba(196, 162, 101, 0.28);
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
}

.top-bar {
    background: linear-gradient(90deg, var(--brand-blue) 0%, var(--brand-magenta) 100%);
    color: #fff;
    text-align: center;
    font-size: 10px;
    letter-spacing: 2.5px;
    padding: 12px 16px;
    text-transform: uppercase;
    font-weight: 600;
    position: sticky;
    top: 0;
    z-index: 1101;
}

header {
    background: var(--bg-main);
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 36px;
    z-index: 1000;
    border-bottom: 3px solid var(--brand-green);
    box-shadow: var(--shadow-soft);
}
.brand-logo-group { display: flex; align-items: center; }
.main-logo-img { height: 50px; width: auto; object-fit: contain; }

nav {
    display: flex;
    gap: 22px;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    align-items: center;
}
nav a { position: relative; padding-bottom: 6px; }
nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--brand-green);
    transition: width 0.3s ease;
}
nav a:hover { color: var(--brand-magenta); }
nav a:hover::after { width: 100%; }
.mobile-only-btn { display: none; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.hamburger span { width: 24px; height: 3px; background: var(--brand-blue); border-radius: 2px; }

.hero {
    position: relative;
    min-height: calc(100vh - 110px);
    display: flex;
    align-items: center;
    padding: 48px 6%;
    overflow: hidden;
    background: var(--brand-blue);
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: url("assets/banner-dmic.jpeg") center/cover no-repeat;
    animation: kenBurnsEffect 25s ease-out infinite alternate;
}
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(18, 53, 44, 0.9) 0%, rgba(26, 107, 74, 0.28) 100%);
}
.hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
}
.hero-content::before {
    content: "";
    display: block;
    width: 72px;
    height: 3px;
    background: var(--brand-green);
    margin-bottom: 22px;
    border-radius: 4px;
}
.highlight-tag {
    display: inline-block;
    background: rgba(196, 162, 101, 0.22);
    border: 1px solid rgba(248, 228, 231, 0.45);
    color: var(--cream);
    padding: 8px 18px;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 30px;
    margin-bottom: 22px;
    font-weight: 700;
}
.hero-content h1 {
    font-size: 56px;
    color: #fff;
    margin-bottom: 12px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
.hero-content h2 {
    font-size: 22px;
    color: var(--cream);
    margin-bottom: 18px;
    font-weight: 600;
    font-family: "Outfit", Arial, sans-serif;
}
.hero-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 24px;
    max-width: 520px;
}
.hero-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.hero-pills span {
    border: 1px solid rgba(248, 228, 231, 0.4);
    color: var(--cream);
    padding: 7px 14px;
    border-radius: 30px;
    font-size: 11px;
    letter-spacing: 0.8px;
    font-weight: 600;
    background: rgba(18, 53, 44, 0.4);
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-actions .btn-outline { border-color: rgba(255, 255, 255, 0.5); color: #fff; }
.hero-actions .btn-outline:hover { background: #fff; color: var(--text-dark); }

.hero-card {
    background: #fff;
    border-radius: 22px;
    padding: 28px 26px 22px;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
    border-top: 4px solid var(--brand-green);
}
.hero-card-kicker {
    font-size: 10px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--brand-magenta);
    font-weight: 700;
    margin-bottom: 6px;
}
.hero-card h3 { font-size: 28px; margin-bottom: 6px; }
.hero-card-sub {
    font-size: 12px;
    color: var(--text-gray);
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-color);
}

.lead-form { display: flex; flex-direction: column; text-align: left; }
.lead-form label {
    font-size: 10px;
    letter-spacing: 1px;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 6px;
    text-transform: uppercase;
}
.lead-form input,
.lead-form select {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 12px 14px;
    margin-bottom: 12px;
    font-size: 14px;
    background: var(--bg-alt);
    outline: none;
    font-family: inherit;
    color: var(--text-dark);
}
.lead-form input:focus,
.lead-form select:focus { border-color: var(--brand-blue); background: #fff; }
.lead-form .btn-solid { width: 100%; margin-top: 4px; }
.form-note { font-size: 11px; color: var(--text-gray); margin-top: 10px; line-height: 1.5; text-align: center; }

.stats-bar {
    background: var(--brand-blue);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    padding: 38px 20px;
}
.stat-item { border-right: 1px solid rgba(248, 228, 231, 0.18); }
.stat-item:last-child { border-right: none; }
.stat-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 6px; color: var(--cream); font-weight: 600; }
.stat-value { font-size: 24px; font-weight: 700; color: #fff; }
.stat-value .accent { color: var(--cream); }

.about-section,
.connectivity,
.promise,
.showcase,
.prices-section { padding: 90px 40px; max-width: 1200px; margin: 0 auto; }

.about-section { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-images { position: relative; min-height: 450px; }
.img-large { width: 85%; height: 90%; object-fit: cover; position: absolute; top: 0; left: 0; border-radius: 22px; }
.img-small {
    width: 65%;
    height: 60%;
    object-fit: cover;
    position: absolute;
    bottom: 0;
    right: 0;
    border: 8px solid var(--bg-main);
    outline: 2px solid var(--brand-green);
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
}
.about-text h2,
.history-text h2,
.conn-header h2,
.sc-header h2,
.promise h2,
.section-intro h2 { font-size: 38px; margin-bottom: 16px; }
.about-text h2::before,
.history-text h2::before,
.conn-header h2::before,
.sc-header h2::before,
.promise h2::before,
.section-intro h2::before {
    content: "";
    display: block;
    width: 48px;
    height: 3px;
    background: var(--brand-green);
    margin-bottom: 16px;
    border-radius: 4px;
}
.about-text p { font-size: 15px; margin-bottom: 18px; color: var(--text-gray); }
.quote {
    font-style: italic;
    color: var(--brand-blue);
    border-left: 4px solid var(--brand-green);
    margin-bottom: 22px;
    font-size: 16px;
    background: var(--bg-alt);
    padding: 15px;
    font-weight: 500;
    border-radius: 0 12px 12px 0;
}
.amenities-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px; }
.amenities-grid li {
    font-size: 12px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    background: var(--bg-alt);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    padding: 8px 12px;
}
.amenities-grid li::before { content: "✔"; color: var(--brand-green); }

.prices-section { padding-top: 70px; }
.section-intro { text-align: center; margin-bottom: 32px; }
.section-intro h2::before { margin-left: auto; margin-right: auto; }
.section-intro p { color: var(--text-gray); max-width: 640px; margin: 0 auto; }

.price-table-wrapper {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}
.custom-price-table { width: 100%; border-collapse: collapse; }
.custom-price-table thead { background: var(--brand-blue); }
.custom-price-table th {
    color: var(--brand-green);
    font-size: 11px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 16px 18px;
    text-align: left;
}
.custom-price-table td {
    padding: 14px 18px;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}
.custom-price-table tbody tr:hover { background: var(--bg-alt); }
.typo-name { font-weight: 700; color: var(--brand-blue); }
.price-val { font-weight: 700; color: var(--brand-magenta); }
.table-action-btn {
    background: var(--brand-blue);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 8px 16px;
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
}
.table-action-btn:hover { background: var(--brand-magenta); }

.token-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin: 24px 0 16px;
}
.token-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-top: 4px solid var(--brand-green);
    border-radius: 16px;
    padding: 18px 12px;
    text-align: center;
    box-shadow: var(--shadow-soft);
}
.token-card span { display: block; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--text-gray); margin-bottom: 6px; }
.token-card strong { color: var(--brand-magenta); font-size: 20px; }
.price-note { font-size: 12px; color: var(--text-gray); text-align: center; max-width: 820px; margin: 0 auto 22px; }
.center-cta { text-align: center; margin-top: 22px; }

.history-section {
    background: var(--bg-alt);
    border-radius: 28px;
    margin: 20px 24px;
    box-shadow: var(--shadow-soft);
}
.history-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
}
.history-text p { font-size: 15px; margin-bottom: 18px; color: var(--text-gray); }
.history-images { position: relative; min-height: 450px; }
.hist-img-main { width: 85%; height: 90%; object-fit: cover; position: absolute; top: 0; right: 0; border-radius: 22px; }
.hist-img-sub {
    width: 65%;
    height: 60%;
    object-fit: cover;
    position: absolute;
    bottom: 0;
    left: 0;
    border: 8px solid var(--bg-alt);
    outline: 2px solid var(--brand-green);
    border-radius: 18px;
    box-shadow: var(--shadow-hover);
}

.conn-header { text-align: center; margin-bottom: 40px; }
.conn-header h2::before { margin-left: auto; margin-right: auto; }
.conn-header p { font-size: 15px; max-width: 600px; margin: 0 auto; color: var(--text-gray); }
.conn-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.map-box {
    background: #fff;
    padding: 8px;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}
.map-box img { width: 100%; height: 100%; object-fit: cover; border-radius: 14px; min-height: 320px; }
.accordion-item {
    border: 1px solid var(--border-color);
    margin-bottom: 10px;
    border-radius: 14px;
    background: #fff;
    overflow: hidden;
    border-left: 3px solid var(--brand-green);
}
.accordion-header {
    padding: 18px 20px;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--brand-blue);
    font-weight: 700;
    cursor: pointer;
    list-style: none;
}
.accordion-header::-webkit-details-marker { display: none; }
.accordion-content { padding: 0 20px 18px; font-size: 14px; color: var(--text-gray); }
.dist-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px dashed var(--border-color); align-items: center; }
.dist-row:last-child { border-bottom: none; }
.dist-row span:last-child {
    font-weight: 700;
    font-size: 11px;
    background: var(--brand-blue);
    color: var(--cream);
    padding: 4px 10px;
    border-radius: 20px;
}

.distance-bar {
    background: linear-gradient(90deg, var(--brand-blue), var(--wine-mid));
    color: #fff;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    padding: 36px 20px;
    margin-top: 40px;
    border-radius: 22px;
}
.dist-box { border-right: 1px solid rgba(255, 255, 255, 0.2); }
.dist-box:last-child { border-right: none; }
.dist-box span { font-size: 10px; letter-spacing: 1.5px; color: rgba(255, 255, 255, 0.8); display: block; margin-bottom: 6px; text-transform: uppercase; font-weight: 600; }
.dist-box strong { font-size: 20px; color: var(--brand-green); }

.sc-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 30px; }
.sc-counter { color: var(--brand-blue); font-size: 12px; letter-spacing: 1.5px; display: flex; align-items: center; gap: 10px; font-weight: 700; }
.carousel-nav-btn,
.inner-btn {
    background: var(--bg-alt);
    border: 1px solid var(--border-color);
    color: var(--brand-blue);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
}
.carousel-nav-btn:hover,
.inner-btn:hover { background: var(--brand-magenta); color: #fff; border-color: var(--brand-magenta); }
.carousel-container { position: relative; width: 100%; height: 500px; border-radius: 24px; overflow: hidden; background: #000; box-shadow: var(--shadow-soft); }
.carousel-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.6s ease; }
.carousel-slide.active { opacity: 1; z-index: 1; }
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; }
.sc-overlay { position: absolute; bottom: 0; left: 0; width: 100%; background: linear-gradient(to top, rgba(42, 49, 56, 0.9), transparent); padding: 40px; }
.pill-group { display: flex; gap: 8px; flex-wrap: wrap; }
.pill {
    border: 1px solid rgba(248, 228, 231, 0.55);
    padding: 6px 16px;
    font-size: 10px;
    border-radius: 30px;
    font-weight: 600;
    color: #fff;
    background: rgba(18, 53, 44, 0.55);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.inner-nav { position: absolute; top: 50%; transform: translateY(-50%); display: flex; justify-content: space-between; width: 100%; padding: 0 20px; z-index: 10; }
.inner-btn { background: #fff; width: 45px; height: 45px; }

.promise { text-align: center; }
.gallery-row {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    margin-bottom: 50px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 10px;
    cursor: grab;
}
.gallery-row::-webkit-scrollbar { display: none; }
.gallery-item {
    flex: 0 0 280px;
    height: 380px;
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    scroll-snap-align: start;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.image-label {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand-blue);
    color: var(--cream);
    padding: 8px 20px;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 30px;
    z-index: 5;
    white-space: nowrap;
}
.promise > p { font-size: 16px; color: var(--text-gray); margin-bottom: 40px; }
.promise h2::before { margin-left: auto; margin-right: auto; }
.promise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.promise-card {
    background: #fff;
    padding: 46px 22px;
    border-radius: 22px;
    border: 1px solid var(--border-color);
    border-top: 4px solid var(--brand-green);
    box-shadow: var(--shadow-soft);
    transition: 0.3s ease;
}
.promise-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.promise-card h3 { font-size: 40px; color: var(--brand-magenta); margin-bottom: 8px; }
.auth-tag { font-size: 11px; color: var(--text-dark); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }

.footer-cta {
    padding: 100px 40px;
    color: #fff;
    text-align: center;
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-magenta) 120%);
}
.footer-cta-content { max-width: 700px; margin: 0 auto; }
.footer-cta-content::before {
    content: "";
    display: block;
    width: 56px;
    height: 3px;
    background: var(--brand-green);
    margin: 0 auto 20px;
    border-radius: 4px;
}
.footer-cta h2 { font-size: 38px; margin-bottom: 15px; color: #fff; }
.footer-cta p { font-size: 16px; margin-bottom: 30px; opacity: 0.9; }
.footer-cta .btn-solid { background: var(--brand-green); color: var(--brand-blue); }
.footer-cta .btn-solid:hover { background: #fff; color: var(--brand-blue); }

footer {
    background: radial-gradient(circle at top, var(--wine-mid) 0%, #081410 48%);
    color: #fff;
    padding: 60px 40px 20px;
    text-align: center;
}
.footer-logo { display: flex; justify-content: center; margin-bottom: 16px; }
.footer-logo img { background: #fff; padding: 10px 18px; border-radius: 12px; height: 45px; }
.footer-legacy { margin-top: 8px; font-size: 11px; color: rgba(255, 255, 255, 0.7); }
.footer-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    font-weight: 600;
    color: var(--brand-green);
}
.footer-disclaimer { font-size: 10px; color: rgba(255, 255, 255, 0.5); max-width: 700px; margin: 0 auto 24px; line-height: 1.5; }
.footer-contact-row { display: flex; justify-content: center; align-items: center; gap: 20px; font-size: 13px; margin-bottom: 30px; }
.footer-visit-btn { border-color: rgba(255, 255, 255, 0.4); color: #fff; }
.copyright { font-size: 10px; padding-top: 15px; border-top: 1px solid rgba(255, 255, 255, 0.1); color: rgba(255, 255, 255, 0.5); }

.widget-group { position: fixed; bottom: 25px; right: 25px; display: flex; flex-direction: column; gap: 10px; z-index: 999; }
.widget-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background: var(--brand-blue);
    border: 2px solid #fff;
    box-shadow: var(--shadow-soft);
}
.widget-btn:hover { background: var(--brand-magenta); }
.w-wa { background: #128c7e; }
.widget-btn svg { fill: #fff; width: 20px; height: 20px; }

.float-enquire {
    position: fixed;
    bottom: 25px;
    left: 25px;
    background: var(--brand-magenta);
    color: #fff;
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 10px;
    letter-spacing: 1.5px;
    z-index: 999;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    text-transform: uppercase;
    border: 2px solid #fff;
    box-shadow: var(--shadow-hover);
}
.float-enquire svg { fill: #fff; width: 14px; height: 14px; }
.float-enquire:hover { background: var(--brand-blue); }

.right-enquiry-btn {
    position: fixed;
    top: 42%;
    right: 0;
    background: var(--brand-magenta);
    color: #fff;
    padding: 18px 10px;
    writing-mode: vertical-rl;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-size: 10px;
    font-weight: 700;
    cursor: pointer;
    z-index: 999;
    border: none;
    border-radius: 6px 0 0 6px;
    border-left: 3px solid var(--brand-blue);
}

.mobile-cta-bar { display: none; }

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(18, 53, 44, 0.86);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
}
.modal-overlay.show { opacity: 1; display: flex; }
.modal-content {
    background: var(--bg-main);
    width: 100%;
    max-width: 650px;
    border-radius: 22px;
    overflow: hidden;
    border-top: 4px solid var(--brand-green);
    display: flex;
    max-height: 90vh;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}
.modal-image { flex: 0.8; background: url("assets/dmic-pop.jpg") center/cover no-repeat; min-height: 200px; }
.modal-form-wrap { flex: 1.2; padding: 36px 28px; background: #fff; position: relative; text-align: center; }
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    color: var(--text-gray);
    cursor: pointer;
    background: none;
    border: none;
    z-index: 10;
}
.modal-logo img { height: 40px; margin: 0 auto 8px; }
.modal-form-wrap h3 { font-size: 26px; margin-bottom: 4px; }
.modal-subtitle {
    font-size: 10px;
    letter-spacing: 1px;
    color: var(--text-gray);
    text-transform: uppercase;
    margin: 8px 0 18px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
    font-weight: 600;
}

.thankyou-card {
    background: #fff;
    max-width: 420px;
    width: 100%;
    border-radius: 22px;
    padding: 40px 28px;
    text-align: center;
    position: relative;
    border-top: 4px solid var(--brand-green);
}
.thankyou-card h3 { font-size: 30px; margin: 8px 0 12px; }
.thankyou-card p { color: var(--text-gray); margin-bottom: 22px; }
.thankyou-card .btn-solid { width: 100%; }

@media (max-width: 1024px) {
    header { padding: 12px 24px; }
    .desktop-book-btn { display: none; }
    .hamburger { display: flex; }
    nav {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        gap: 16px;
        position: absolute;
        top: 100%;
        left: 0;
        background: #fff;
        padding: 18px 0 22px;
        border-top: 1px solid var(--border-color);
    }
    nav.active { display: flex; }
    .mobile-only-btn { display: block; margin: 8px auto 0; width: min(220px, 80%); }
    .hero { padding: 40px 24px 48px; }
    .hero-inner { grid-template-columns: 1fr; }
    .hero-content { text-align: center; }
    .hero-content::before,
    .hero-content p { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-pills { justify-content: center; }
    .hero::after { background: linear-gradient(to bottom, rgba(18, 53, 44, 0.82), rgba(18, 53, 44, 0.62)); }
    .about-section,
    .history-content,
    .conn-grid { grid-template-columns: 1fr; gap: 36px; }
    .about-images,
    .history-images { min-height: 380px; }
    .stats-bar,
    .distance-bar,
    .token-row { grid-template-columns: 1fr 1fr; gap: 12px; }
    .stat-item:nth-child(2),
    .dist-box:nth-child(2) { border-right: none; }
    .promise-grid { grid-template-columns: 1fr; }
    .right-enquiry-btn { display: none; }
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 34px; }
    .hero-content h2 { font-size: 18px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn-solid,
    .hero-actions .btn-outline { width: 100%; }
    .about-section,
    .connectivity,
    .promise,
    .showcase,
    .prices-section { padding: 60px 20px; }
    .history-content { padding: 48px 20px; }
    .history-section { margin: 12px; }
    .about-text h2,
    .history-text h2,
    .conn-header h2,
    .promise h2,
    .section-intro h2,
    .sc-header h2,
    .footer-cta h2 { font-size: 30px; }
    .carousel-container { height: 340px; }
    .gallery-item { flex: 0 0 240px; height: 320px; }
    .price-table-wrapper { overflow-x: auto; }
    .custom-price-table { min-width: 560px; }
    .footer-links { flex-wrap: wrap; }
    .footer-contact-row { flex-direction: column; }
    .sep { display: none; }
    .widget-group { bottom: 78px; right: 14px; }
    .float-enquire { display: none; }
    .modal-content { flex-direction: column; max-width: 92%; }
    .modal-image { display: none; }
    .mobile-cta-bar {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--brand-blue);
    }
    .mobile-cta-bar a,
    .mobile-cta-bar button {
        color: #fff;
        background: transparent;
        border: none;
        padding: 14px 8px;
        font-size: 11px;
        letter-spacing: 1px;
        text-transform: uppercase;
        font-weight: 700;
        cursor: pointer;
    }
    .mobile-cta-bar a:nth-child(2) { background: #128c7e; }
    .mobile-cta-bar button { background: var(--brand-magenta); }
    body { padding-bottom: 58px; }
}
