:root {
    --bg-primary: #f7f6f3;
    --bg-secondary: #ffffff;
    --bg-tertiary: #f2f2ee;
    --bg-panel: #ffffff;
    --bg-card: #ffffff;
    --bg-overlay: rgba(255, 255, 255, 0.92);
    
    --accent-gold: #b38b40;
    --accent-gold-soft: rgba(179, 139, 64, 0.16);
    --accent-gold-border: rgba(179, 139, 64, 0.22);
    --text-gold: #b38b40;
    --bg-glass: rgba(255, 255, 255, 0.85);
    --border-gold-glaze: rgba(179, 139, 64, 0.10);
    
    --text-light: #374151;
    --text-dark: #111827;
    --text-muted: #6b7280;
    --text-subtle: #4b5563;
    
    --border-hairline: rgba(15, 23, 42, 0.08);
    --border-soft: rgba(15, 23, 42, 0.06);
    
    --font-heading: 'Fraunces', serif;
    --font-body: 'Inter', sans-serif;
    --font-logo: 'Italiana', serif;
    
    --radius-sm: 10px;
    --radius-md: 20px;
    --radius-lg: 28px;
    
    --transition-base: 0.28s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    --shadow-subtle: 0 24px 60px rgba(0, 0, 0, 0.18);
    --shadow-premium: 0 30px 80px rgba(0, 0, 0, 0.22);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-dark);
    font-family: var(--font-body);
    line-height: 1.75;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-gold-border);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

/* Layout Shell */
.shell {
    width: 90%;
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 140px 0;
    position: relative;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    background-color: #fff;
}

.section-alt {
    background-color: #f7f6f3;
}

/* Editorial Title Header */
.section-header {
    margin-bottom: 56px;
    position: relative;
}

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

.eyebrow {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--text-gold);
    margin-bottom: 14px;
    display: inline-block;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 16px;
}

.section-title span {
    font-style: italic;
    color: var(--accent-gold);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    margin: 0 auto;
}

.about-body {
    max-width: 980px;
    margin: 24px auto 0;
    padding: 30px 36px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(15,23,42,0.04);
    color: var(--text-dark);
    line-height: 1.9;
    text-align: center;
    font-size: 1rem;
}

.about-body p { margin-bottom: 18px; }

.faq-list {
    display: grid;
    gap: 14px;
    margin-top: 32px;
}

.faq-item {
    background-color: var(--bg-panel);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-base);
}

.faq-item:hover {
    border-color: rgba(179, 139, 64, 0.18);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: left;
}

.faq-question:hover {
    color: var(--accent-gold);
}

.faq-toggle-icon {
    color: var(--text-muted);
    font-size: 1rem;
    transition: transform var(--transition-base);
}

.faq-item.open .faq-toggle-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    color: var(--text-muted);
    line-height: 1.8;
    transition: max-height 0.32s ease, padding 0.32s ease;
}

.faq-item.open .faq-answer {
    max-height: 240px;
    padding: 16px 24px 24px;
}

.life-at-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 24px;
    margin-top: 40px;
}

.life-at-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 24px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--radius-md);
    background-color: var(--bg-panel);
    transition: var(--transition-base);
}

.life-at-item:hover {
    transform: translateY(-2px);
    border-color: rgba(179, 139, 64, 0.24);
}

.life-at-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background-color: var(--accent-gold-soft);
    color: var(--accent-gold);
    font-size: 0.9rem;
}

.life-at-copy {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .life-at-list { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .section-title { font-size: 2.35rem; }
    section { padding: 70px 0; }
    .life-at-item { padding: 18px 18px; gap: 14px; }
    .life-at-icon { width: 38px; height: 38px; font-size: 0.85rem; }
}

/* Grids */
.grid {
    display: grid;
    gap: 40px;
}

@media (min-width: 768px) {
    .grid-2 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(4, 1fr); }
    .grid-hero { grid-template-columns: 1.15fr 0.85fr; }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    cursor: pointer;
    transition: var(--transition-base);
    border: 1px solid transparent;
    border-radius: 999px;
    text-decoration: none;
}

.btn-primary {
    background-color: #fff;
    color: var(--accent-gold);
    border-color: var(--accent-gold);
}

.btn-primary:hover {
    background-color: #f4eba3;
    transform: translateY(-2px);
    box-shadow: var(--shadow-subtle);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-dark);
    border: 1px solid rgba(15, 23, 42, 0.12);
}

.btn-secondary:hover {
    background-color: rgba(15, 23, 42, 0.06);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* Premium Form Elements */
.field-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.field-label {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.field {
    width: 100%;
    padding: 12px 0;
    background-color: transparent;
    border: none;
    border-bottom: 1.5px solid var(--border-hairline);
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 14px;
    transition: var(--transition-base);
    outline: none;
}

.field:focus {
    border-color: var(--accent-gold);
}

.field::placeholder {
    color: #9ca3af;
}

/* Header Navbar */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    transition: var(--transition-base);
}

.header-scrolled {
    padding: 0;
    background: rgba(255, 255, 255, 0.97);
    border-bottom-color: rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    gap: 24px;
    transition: var(--transition-base);
}

.header-scrolled .header-inner {
    padding: 13px 0;
}

.brand-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-decoration: none;
}

.brand-title {
    font-family: var(--font-logo);
    font-size: 1.55rem;
    font-weight: 400;
    color: var(--text-dark);
    letter-spacing: 0.02em;
    line-height: 1.1;
    transition: var(--transition-base);
}

.header-scrolled .brand-title {
    font-size: 1.25rem;
}

.brand-partner-badge {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-gold);
    line-height: 1;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 4px;
}

@media (min-width: 1024px) {
    .nav-links { display: flex; }
}

.header-actions {
    display: none;
    align-items: center;
    gap: 20px;
    padding-left: 20px;
    border-left: 1px solid var(--border-hairline);
}

@media (min-width: 640px) {
    .header-actions { display: flex; }
}

.header-cta {
    padding: 11px 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    background: var(--accent-gold);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: none;
}

.header-cta:hover {
    background: #9f782d;
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(179, 139, 64, 0.28);
}

.nav-item {
    position: relative;
    display: flex;
    align-items: center;
    color: var(--text-subtle);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.01em;
    text-transform: none;
    padding: 10px 16px;
    border-radius: 999px;
    transition: var(--transition-base);
}

.nav-item:hover {
    color: var(--text-dark);
    background: var(--bg-tertiary);
}

.nav-item.active {
    color: var(--text-dark);
}

.nav-item.active::after {
    content: '';
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 4px;
    height: 2px;
    border-radius: 2px;
    background: var(--accent-gold);
}

.menu-trigger {
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 18px;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.menu-trigger:hover {
    background: var(--bg-tertiary);
}

@media (min-width: 1024px) {
    .menu-trigger { display: none; }
}

/* Sidebar Navigation Menu */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(340px, 86vw);
    height: 100%;
    background-color: var(--bg-panel);
    z-index: 1010;
    padding: 24px 28px 20px;
    box-shadow: -10px 0 40px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
    transition: right var(--transition-slow);
    border-left: 1px solid var(--border-hairline);
}

.mobile-nav.open {
    right: 0;
}

.mobile-nav-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.mobile-nav-eyebrow {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: var(--text-gold);
}

.mobile-nav-close {
    align-self: flex-end;
    background: var(--bg-tertiary);
    border: none;
    color: var(--text-dark);
    font-size: 14px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
}

.mobile-nav-close:hover {
    background: var(--accent-gold-soft);
    color: var(--accent-gold);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
}

.mobile-nav-links .nav-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 500;
    padding: 11px 2px;
    border-radius: 0;
    border-bottom: 1px solid var(--border-hairline);
    color: var(--text-dark);
    transition: var(--transition-base);
}

.mobile-nav-links .nav-item::after {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 13px;
    color: var(--accent-gold);
    opacity: 0;
    transform: translateX(-6px);
    transition: var(--transition-base);
}

.mobile-nav-links .nav-item:hover {
    background: none;
    color: var(--accent-gold);
    padding-left: 8px;
}

.mobile-nav-links .nav-item:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.mobile-nav-footer {
    margin-top: auto;
    padding-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-nav-footer .btn {
    font-size: 11.5px;
    letter-spacing: 0.05em;
    padding: 12px 20px;
    white-space: nowrap;
}

.mobile-nav-cta {
    background: var(--accent-gold);
    color: #ffffff;
    border: 1px solid var(--accent-gold);
}

.mobile-nav-cta:hover {
    background: #9f782d;
    border-color: #9f782d;
    color: #ffffff;
}

.menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(27, 30, 36, 0.15);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: none;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 140px;
    padding-bottom: 80px;
    position: relative;
    background: url('images/img1.jpg') center/cover no-repeat;
    color: #ffffff;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8, 11, 16, 0.55) 0%, rgba(8, 11, 16, 0.35) 32%, rgba(8, 11, 16, 0.62) 72%, rgba(6, 8, 12, 0.88) 100%),
        linear-gradient(90deg, rgba(6, 8, 12, 0.35) 0%, rgba(6, 8, 12, 0) 30%, rgba(6, 8, 12, 0) 70%, rgba(6, 8, 12, 0.35) 100%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
}

.hero-content {
    gap: 56px;
    justify-items: center;
}

.grid-hero {
    gap: 56px;
    align-items: center;
    justify-content: center;
    justify-items: center;
    grid-template-columns: 1fr;
    max-width: 980px;
    margin: 0 auto;
}

.hero-copy {
    max-width: 760px;
    text-align: center;
}

.hero-badge {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: #ffffff;
    margin-bottom: 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 20px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(6px);
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-gold);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
    color: #ffffff;
    text-shadow: 0 12px 50px rgba(0, 0, 0, 0.35);
}

.hero-title span {
    font-style: italic;
    color: var(--accent-gold);
}

.hero-description {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.4;
    letter-spacing: 0;
}

.hero-subtitle {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.68);
    margin-bottom: 8px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-price-block {
    margin-top: 36px;
    display: grid;
    gap: 20px;
    justify-items: center;
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-price-pretitle {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.hero-price-value {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.03em;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 4px;
}

.hero-cta {
    padding: 15px 36px;
    font-size: 0.85rem;
    background-color: var(--accent-gold);
    color: #ffffff;
    border-color: var(--accent-gold);
}

.hero-cta:hover {
    background-color: #9f782d;
    border-color: #9f782d;
    color: #ffffff;
}

.hero-cta-secondary {
    padding: 15px 30px;
    font-size: 0.85rem;
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.hero-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.hero-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    margin-top: 8px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.hero-feature {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    padding: 26px 20px;
    min-height: 118px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: var(--transition-base);
}

.hero-feature:hover {
    background: rgba(255, 255, 255, 0.12);
}

.hero-feature strong {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2.4vw, 1.9rem);
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 6px;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.hero-feature span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    line-height: 1.5;
}

.hero-scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    z-index: 2;
}

.hero-scroll-cue i {
    animation: hero-scroll-bounce 1.8s ease-in-out infinite;
}

@keyframes hero-scroll-bounce {
    0%, 100% { transform: translateY(0); opacity: 0.6; }
    50% { transform: translateY(6px); opacity: 1; }
}

.hero-enquiry {
    max-width: 460px;
    background-color: #ffffff;
    color: var(--text-dark);
    border-radius: var(--radius-lg);
    padding: 42px;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.panel-card-title {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.panel-card-subtitle {
    font-size: 0.95rem;
    color: var(--text-subtle);
    margin-bottom: 24px;
    line-height: 1.75;
}

.field {
    background-color: transparent;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
    font-family: var(--font-body);
    font-size: 14px;
}

.field:focus {
    border-color: rgba(215, 183, 109, 0.65);
}

.form-note {
    margin-top: 18px;
    font-size: 12px;
    color: var(--text-subtle);
    text-align: center;
}

@media (max-width: 1024px) {
    .grid-hero { grid-template-columns: 1fr; gap: 36px; }
    .hero-feature-grid { grid-template-columns: 1fr 1fr; }
    .hero { padding-top: 100px; min-height: auto; }
}

@media (max-width: 768px) {
    .hero-description { font-size: 1.15rem; margin-bottom: 10px; }
    .hero-subtitle { font-size: 0.75rem; margin-bottom: 8px; }
    .hero { padding-top: 90px; padding-bottom: 60px; }
    .hero-feature-grid { grid-template-columns: 1fr 1fr; }
    .hero-feature { padding: 18px 16px; min-height: 96px; }
    .hero-price-block { gap: 14px; margin-top: 24px; padding-top: 24px; }
    .hero-price-value { font-size: 2.2rem; }
    .hero-cta-group { flex-direction: column; width: 100%; gap: 12px; }
    .hero-cta, .hero-cta-secondary { width: 100%; }
    .hero-scroll-cue { display: none; }
    .hero-enquiry { max-width: 100%; padding: 30px 22px; }
}

/* Floating Callback Card */
.panel-card {
    background-color: var(--bg-panel);
    color: var(--text-dark);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--radius-sm);
    padding: 40px;
    box-shadow: var(--shadow-subtle);
}

.panel-card-title {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 400;
    margin-bottom: 6px;
}

.panel-card-subtitle {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 28px;
}

/* Hero stats row */
.hero-stats-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

@media (min-width: 640px) {
    .hero-stats-row {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    border-top: 2px solid var(--accent-gold-border);
    padding-top: 16px;
    transition: var(--transition-base);
}

.stat-item:hover {
    border-top-color: var(--accent-gold);
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 2.35rem;
    font-weight: 500;
    color: var(--text-gold);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* RERA Banner */
.rera-bar {
    background-color: var(--bg-tertiary);
    border-top: 1px solid var(--border-hairline);
    border-bottom: 1px solid var(--border-hairline);
    padding: 16px 0;
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
}

.rera-bar i {
    color: var(--accent-gold);
    font-size: 15px;
    margin-right: 12px;
}

/* Editorial Overview Block */
.overview-watermark-wrap {
    position: relative;
    overflow: hidden;
}

.watermark-text {
    position: absolute;
    top: -20px;
    left: -20px;
    font-family: var(--font-heading);
    font-size: 12rem;
    font-weight: 700;
    color: rgba(179, 139, 64, 0.06);
    pointer-events: none;
    line-height: 1;
    user-select: none;
}

/* Card details (Editorial grid replaces lists/boxes) */
.editorial-card {
    background-color: var(--bg-panel);
    border-left: 2px solid var(--accent-gold-border);
    padding: 32px;
    transition: var(--transition-base);
}

.editorial-card:hover {
    border-left-color: var(--accent-gold);
    background-color: #fff;
}

.editorial-card-num {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-style: italic;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 14px;
}

.editorial-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.editorial-card-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
}

/* Premium Typology Cards */
.typology-grid {
    display: grid;
    gap: 32px;
}

@media (min-width: 768px) {
    .typology-grid { grid-template-columns: repeat(2, 1fr); }
}

.typology-premium-card {
    background-color: var(--bg-panel);
    border: 1px solid var(--border-hairline);
    border-radius: var(--radius-sm);
    padding: 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: var(--shadow-subtle);
    transition: var(--transition-base);
}

.typology-premium-card:hover {
    border-color: var(--accent-gold-border);
    box-shadow: var(--shadow-premium);
    transform: translateY(-2px);
}

.typology-tag {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.typology-card-title {
    font-family: var(--font-heading);
    font-size: 2.15rem;
    font-weight: 400;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.typology-card-size {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.typology-card-price {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-gold);
    margin-bottom: 28px;
    font-weight: 500;
}

.typology-card-price span {
    font-size: 14px;
    font-family: var(--font-body);
    color: var(--text-muted);
    font-weight: 400;
}

.typology-details-list {
    list-style: none;
    border-top: 1px solid var(--border-hairline);
    padding-top: 24px;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.typology-details-list li {
    font-size: 14px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.typology-details-list li i {
    color: var(--accent-gold);
    font-size: 12px;
}

.typology-premium-card .btn {
    margin-top: auto;
}

/* Locked Blueprint Cards */
.blueprint-card {
    background-color: var(--bg-panel);
    border: 1px solid var(--border-hairline);
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
    transition: var(--transition-base);
}

.blueprint-card:hover {
    border-color: var(--accent-gold-border);
    box-shadow: var(--shadow-premium);
}

.blueprint-media {
    position: relative;
    height: 260px;
    overflow: hidden;
    background-color: var(--bg-panel);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blueprint-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #0d0d0d;
}

.blueprint-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.82);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    gap: 16px;
}

.lock-badge {
    width: 52px;
    height: 52px;
    background-color: var(--bg-secondary);
    border: 1px solid var(--accent-gold-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 18px;
    box-shadow: 0 6px 20px rgba(197,160,89,0.12);
    animation: goldPulse 2.5s infinite;
}

@keyframes goldPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.04); box-shadow: 0 8px 24px rgba(197, 160, 89, 0.25); }
    100% { transform: scale(1); }
}

.blueprint-body {
    padding: 24px;
    border-top: 1px solid var(--border-hairline);
}

.blueprint-title {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 400;
    margin-bottom: 4px;
}

.blueprint-size {
    font-size: 13.5px;
    color: var(--text-muted);
}

/* Hide blueprint overlay (lock badge + unlock button) as requested */
.blueprint-overlay {
    display: none !important;
}

.blueprint-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
    filter: none !important;
    transform: none !important;
    background-color: #ffffff;
}

/* Media Slideshow Carousel */
.media-slides-container {
    position: relative;
    border: 1px solid var(--border-hairline);
    border-radius: var(--radius-sm);
    padding: 8px;
    background-color: var(--bg-tertiary);
    box-shadow: var(--shadow-subtle);
}

.media-slides-viewport {
    position: relative;
    height: 500px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .media-slides-viewport { height: 320px; }
}

.media-slide-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity var(--transition-slow);
    z-index: 1;
}

.media-slide-item.active {
    opacity: 1;
    z-index: 2;
}

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

.media-slide-badge {
    /* Hidden per user request: remove overlay badge above slideshow */
    display: none !important;
    position: absolute;
    bottom: 24px;
    left: 24px;
    background-color: var(--bg-panel);
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-subtle);
    z-index: 5;
    border-left: 2px solid var(--accent-gold);
}

.media-slide-badge strong {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 400;
    display: block;
    color: var(--text-dark);
}

.media-slide-badge span {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
}

.media-slides-controls {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 20px;
    padding-right: 8px;
}

.control-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background-color: rgba(255, 255, 255, 0.72);
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.control-btn:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.gallery-grid {
    margin-top: 16px;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE 10+ */
}

.gallery-grid::-webkit-scrollbar {
    display: none;
}

.gallery-thumb {
    position: relative;
    flex: 0 0 65px;
    width: 65px;
    height: 65px;
    overflow: hidden;
    border-radius: 10px;
    /* box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16); */
    scroll-snap-align: start;
    cursor: pointer;
    transition: var(--transition-base);
}

.gallery-thumb:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
}

.gallery-thumb img {
    width: 65px;
    height: 65px;
    object-fit: cover;
    display: block;
    transition: var(--transition-base);
}

.gallery-thumb:hover img {
    transform: scale(1.08);
}

.gallery-thumb span {
    display: none;
}

/* Gallery Lightbox */
.lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(6, 8, 12, 0.92);
    z-index: 1100;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.lightbox-overlay.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: min(90vw, 1000px);
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 0.02em;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
}

.lightbox-close:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
}

.lightbox-nav:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

@media (max-width: 640px) {
    .lightbox-nav { width: 40px; height: 40px; font-size: 15px; }
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
    .lightbox-close { top: 14px; right: 14px; width: 38px; height: 38px; }
}

/* Make mailto links show pointer and a subtle hover highlight */
a[href^="mailto:"] {
    cursor: pointer;
    color: var(--text-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
}

a[href^="mailto:"]:hover {
    color: var(--accent-gold);
}

.control-btn:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

/* Luxury Amenities */
.amenity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    align-items: stretch;
}

.amenity-grid-item {
    background-color: var(--bg-panel);
    border: 1px solid var(--border-hairline);
    border-radius: var(--radius-md);
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    min-height: 150px;
    transition: var(--transition-base);
}

.amenity-grid-item:hover {
    border-color: var(--accent-gold-border);
    box-shadow: var(--shadow-subtle);
    transform: translateY(-4px);
}

.amenity-icon-block {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--accent-gold-soft);
    border: 1px solid var(--accent-gold-border);
    color: var(--accent-gold);
    font-size: 24px;
    margin-bottom: 18px;
    transition: var(--transition-base);
}

.amenity-grid-item:hover .amenity-icon-block {
    background: var(--accent-gold);
    color: #ffffff;
    transform: scale(1.08);
}

.amenity-label {
    font-size: 0.92rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    line-height: 1.4;
    color: var(--text-dark);
    text-align: center;
}

@media (max-width: 768px) {
    .amenity-grid { gap: 14px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .amenity-icon-block { width: 54px; height: 54px; font-size: 20px; margin-bottom: 14px; }
    .amenity-grid-item { min-height: 130px; padding: 22px 14px; }
}

/* Location list & travel badges */
.travel-badge-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.travel-badge {
    background-color: var(--bg-panel);
    border: 1px solid var(--border-hairline);
    padding: 16px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 12px;
}

.travel-badge-icon {
    font-size: 18px;
    color: var(--accent-gold);
}

.travel-badge-details strong {
    font-size: 14px;
    display: block;
    color: var(--text-dark);
}

.travel-badge-details span {
    font-size: 11px;
    color: var(--text-muted);
}

.location-points-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.location-point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14.5px;
    color: var(--text-muted);
}

.location-point i {
    color: var(--accent-gold);
    font-size: 14px;
    margin-top: 4px;
}

.location-point strong {
    color: var(--text-dark);
}

.location-map-frame {
    height: 100%;
    min-height: 420px;
    background-color: var(--bg-panel);
    border: 1px solid var(--border-hairline);
    border-radius: var(--radius-sm);
    position: relative;
    overflow: hidden;
}

.location-map-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
    background: radial-gradient(circle at center, rgba(197, 160, 89, 0.04) 0%, transparent 80%);
}

.map-locator-ring {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 1px solid var(--accent-gold-border);
    background-color: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--accent-gold);
    margin-bottom: 24px;
    box-shadow: var(--shadow-subtle);
}

.map-locator-title {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-weight: 400;
    margin-bottom: 6px;
}

.map-locator-desc {
    font-size: 13.5px;
    color: var(--text-muted);
    max-width: 280px;
    margin-bottom: 24px;
}

/* Footer layout details */
.footer {
    background-color: #f7f6f3;
    color: #4b5563;
    padding: 80px 0 40px 0;
    font-size: 13.5px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.footer h4, .footer h5 {
    color: var(--text-dark);
}

.footer-grid {
    display: grid;
    gap: 48px;
    margin-bottom: 64px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1.25fr 0.75fr 1fr;
    }
}

.footer-brand h4 {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    margin-bottom: 16px;
    font-weight: 400;
}

.footer-brand h4 span {
    font-style: italic;
    color: var(--accent-gold);
}

.footer-brand-desc {
    margin-bottom: 24px;
    line-height: 1.6;
}

.footer-links-title {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-list a {
    color: #4b5563;
    text-decoration: none;
    transition: var(--transition-base);
}

.footer-links-list a:hover {
    color: var(--accent-gold);
}

.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
}

.footer-contact-list i {
    color: var(--accent-gold);
    font-size: 14px;
    margin-top: 3px;
}

.footer-disclaimer {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 32px;
    font-size: 11px;
    line-height: 1.75;
    text-align: justify;
}

.footer-copyright {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
    font-size: 11.5px;
    align-items: center;
}

@media (min-width: 640px) {
    .footer-copyright {
        flex-direction: row-reverse;
        justify-content: space-between;
    }
}

.footer-copyright-links {
    display: flex;
    gap: 24px;
}

.footer-copyright-links a {
    color: #9299a5;
    text-decoration: none;
}

.footer-copyright-links a:hover {
    color: var(--accent-gold);
}

/* Modal Popup Window */
.modal-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(27, 30, 36, 0.4);
    backdrop-filter: blur(6px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-container {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-gold-glaze);
    border-radius: var(--radius-sm);
    width: 100%;
    max-width: 460px;
    position: relative;
    transform: scale(0.95);
    transition: transform var(--transition-base);
    box-shadow: var(--shadow-premium);
    overflow: hidden;
}

.modal-overlay.active .modal-container {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--bg-primary);
    border: 1px solid var(--border-hairline);
    color: var(--text-dark);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    transition: var(--transition-base);
    z-index: 10;
}

.modal-close:hover {
    background-color: var(--text-dark);
    color: var(--bg-secondary);
    border-color: var(--text-dark);
}

.modal-body {
    padding: 40px;
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 1.95rem;
    margin-bottom: 6px;
    line-height: 1.25;
    font-weight: 400;
}

.modal-subtitle {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 28px;
}

/* Sticky Floating Action Buttons (Call + WhatsApp) */
.floating-actions {
    position: fixed;
    right: 24px;
    bottom: 28px;
    z-index: 998;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

@media (max-width: 767px) {
    .floating-actions { display: none; }
}

.floating-action-btn {
    position: relative;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #ffffff;
    text-decoration: none;
    box-shadow: var(--shadow-subtle);
    transition: var(--transition-base);
}

.floating-action-btn:hover {
    transform: translateY(-3px) scale(1.05);
}

.floating-action-btn.call {
    background: var(--text-dark);
    border: 1px solid rgba(179, 139, 64, 0.4);
}

.floating-action-btn.call i {
    color: var(--accent-gold);
}

.floating-action-btn.call:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
}

.floating-action-btn.call:hover i {
    color: #ffffff;
}

.floating-action-btn.whatsapp {
    background: #25d366;
}

.floating-action-btn.whatsapp::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #25d366;
    animation: whatsapp-pulse 2.2s ease-out infinite;
    z-index: -1;
}

@keyframes whatsapp-pulse {
    0% { transform: scale(1); opacity: 0.55; }
    100% { transform: scale(1.9); opacity: 0; }
}

/* Floating Actions Fixed Mobile Bar */
.mobile-action-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-glass);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--border-hairline);
    display: flex;
    z-index: 999;
    padding-bottom: env(safe-area-inset-bottom, 0);
}

@media (min-width: 768px) {
    .mobile-action-bar { display: none; }
}

@media (max-width: 767px) {
    .footer {
        padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
    }
}

.mobile-action-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 12px 6px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-right: 1px solid var(--border-hairline);
}

.mobile-action-item:last-child {
    border-right: none;
}

.mobile-action-item i {
    font-size: 16px;
}

.mobile-action-item.whatsapp-link {
    color: #16a34a;
}

.mobile-action-item.enquire-link {
    background-color: var(--text-dark);
    color: var(--bg-secondary);
}

.mobile-action-item.enquire-link i {
    color: var(--bg-secondary);
}

/* Margin and Flex Utilities */
.text-center { text-align: center; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.d-flex { display: flex; }
.w-full { width: 100%; }

.m-t-16 { margin-top: 16px; }
.m-t-24 { margin-top: 24px; }
.m-t-32 { margin-top: 32px; }

.m-b-16 { margin-bottom: 16px; }
.m-b-32 { margin-bottom: 32px; }
.m-b-48 { margin-bottom: 48px; }
.gap-12 { gap: 12px; }
.gradient-text {
    background: linear-gradient(135deg, var(--text-gold) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Payment Plans Section Styles */
.payment-tabs-container {
    max-width: 900px;
    margin: 0 auto;
}

.payment-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border-hairline);
    padding-bottom: 16px;
}

.payment-tab-btn {
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--text-muted);
    padding: 8px 24px;
    cursor: pointer;
    position: relative;
    transition: var(--transition-base);
}

.payment-tab-btn::after {
    content: '';
    position: absolute;
    bottom: -17px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-gold);
    transform: scaleX(0);
    transition: var(--transition-base);
}

.payment-tab-btn:hover {
    color: var(--text-dark);
}

.payment-tab-btn.active {
    color: var(--accent-gold);
}

.payment-tab-btn.active::after {
    transform: scaleX(1);
}

.payment-tab-content {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(10px);
}

.payment-tab-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.payment-table-wrapper {
    background-color: var(--bg-panel);
    border: 1px solid var(--border-hairline);
    border-radius: var(--radius-sm);
    overflow-x: auto;
    box-shadow: var(--shadow-subtle);
}

.payment-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    text-align: left;
    min-width: 500px;
}

.payment-table th,
.payment-table td {
    padding: 18px 24px;
    border-bottom: 1px solid var(--border-soft);
    line-height: 1.5;
}

.payment-table th {
    background-color: var(--bg-tertiary);
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.1em;
}

.payment-table tr {
    transition: var(--transition-base);
}

.payment-table tbody tr:hover {
    background-color: rgba(179, 139, 64, 0.03);
}

.payment-table td.highlight-pct {
    color: var(--text-gold);
    font-weight: 600;
    white-space: nowrap;
}

.payment-table .text-right {
    text-align: right;
}

.payment-table tfoot tr.total-row {
    background-color: var(--bg-tertiary);
}

.payment-table tfoot tr.total-row td {
    border-bottom: none;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 16px;
}

.payment-note {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    padding: 16px 24px;
    background-color: var(--accent-gold-soft);
    border-left: 4px solid var(--accent-gold);
    border-radius: 4px;
    font-size: 14px;
    color: var(--text-subtle);
}

.payment-note i {
    color: var(--accent-gold);
    font-size: 16px;
}

.discount-badge {
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.12) 0%, rgba(22, 163, 74, 0.04) 100%);
    color: #16a34a;
    font-size: 10px;
    font-family: var(--font-body);
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
    margin-left: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border: 1px solid rgba(22, 163, 74, 0.22);
    box-shadow: 0 2px 4px rgba(22, 163, 74, 0.05);
    transition: var(--transition-base);
    animation: badgePulse 2.5s infinite ease-in-out;
}

@keyframes badgePulse {
    0% {
        transform: scale(1);
        box-shadow: 0 2px 4px rgba(22, 163, 74, 0.05);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 4px 10px rgba(22, 163, 74, 0.15);
        border-color: rgba(22, 163, 74, 0.35);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 2px 4px rgba(22, 163, 74, 0.05);
    }
}

.payment-tab-btn:hover .discount-badge {
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.18) 0%, rgba(22, 163, 74, 0.08) 100%);
    border-color: rgba(22, 163, 74, 0.35);
}

/* Adjustments for mobile viewports */
@media (max-width: 576px) {
    .payment-tab-btn {
        font-size: 1.05rem;
        padding: 8px 12px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }
    .discount-badge {
        margin-left: 0;
    }
    .payment-table th,
    .payment-table td {
        padding: 14px 16px;
        font-size: 14px;
    }
    .payment-note {
        padding: 14px 16px;
    }
}
