/* 
========================================================================
   DK LEGAL & ASSOCIATES — SINGLE-FRAME 100VH VIEWPORT EDITION
   Every element fits perfectly on a single screen without scrolling.
   Other sections (About, Services, Tax Tool, Contact) open as luxury modal overlays.
========================================================================
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

:root {
    --color-bg-warm: #faf8f3;
    --color-bg-card: #fdfbf7;
    --color-primary: #0b2317;
    --color-primary-rgb: 11, 35, 23;
    --color-primary-light: #0f2d1e;
    --color-gold: #c19a6b;
    --color-gold-rgb: 193, 154, 107;
    --color-gold-light: #dfc8a7;
    --color-text: #2c3835;
    --color-text-muted: #62726f;
    --color-white: #ffffff;
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-subtle: 0 4px 30px rgba(11, 35, 23, 0.02);
    --shadow-premium: 0 20px 45px rgba(11, 35, 23, 0.06);
    --border-radius-pill: 50px;
}

/* Base Styles - Lock to 100vh */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    -webkit-font-smoothing: antialiased;
    overflow-y: auto;
}

body {
    background-color: var(--color-bg-warm);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.4;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 0;
}

/* Concentric Background Decor Rings */
.hero-bg-decor {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.bg-ring-1 {
    position: absolute;
    top: 2%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    border: 1px solid rgba(193, 154, 107, 0.1);
    border-radius: 50%;
}

.bg-ring-2 {
    position: absolute;
    top: -5%;
    left: 50%;
    transform: translateX(-50%);
    width: 850px;
    height: 850px;
    border: 1px solid rgba(193, 154, 107, 0.07);
    border-radius: 50%;
}

.bg-ring-3 {
    position: absolute;
    top: -15%;
    left: 50%;
    transform: translateX(-50%);
    width: 1100px;
    height: 1100px;
    border: 1px dashed rgba(193, 154, 107, 0.05);
    border-radius: 50%;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-weight: 600;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

/* Header & Navbar - Slimmer padding */
header {
    width: 100%;
    z-index: 100;
    background: var(--color-bg-warm);
    position: sticky;
    top: 0;
    flex-shrink: 0;
}

.nav-container {
    max-width: 1380px;
    margin: 0 auto;
    padding: 16px 24px 8px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-monogram {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 300;
    color: var(--color-primary);
    letter-spacing: -2px;
    line-height: 1;
}

.logo-divider {
    width: 1px;
    height: 30px;
    background-color: rgba(193, 154, 107, 0.35);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 1px;
    color: var(--color-primary);
    line-height: 1.1;
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-gold);
    font-weight: 700;
    margin-top: 1px;
}

/* Nav Links - Slimmer gap */
.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
}

.nav-link {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 13px;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 0;
}

.nav-link:hover {
    color: var(--color-gold);
}

.nav-item.active .nav-link {
    position: relative;
}

.nav-item.active .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-gold);
}

.btn-nav {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 10px 20px;
    border-radius: var(--border-radius-pill);
    font-size: 12.5px;
    font-weight: 700;
    border: 1.5px solid var(--color-primary);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-nav:hover {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.menu-toggle {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
}

.hero {
    flex: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px 0 0 0;
    text-align: center;
    position: relative;
    z-index: 1;
    height: calc(100vh - 70px);
    min-height: 600px;
    overflow: hidden;
}

.hero-text-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 900px;
    padding: 0 24px;
    position: relative;
    z-index: 2;
    margin-top: -180px;
    margin-bottom: 40px;
}

/* Tagline with arrows (Precise margin) */
.tagline {
    font-family: var(--font-body);
    font-size: clamp(9px, 1.3vw, 11px);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-gold);
    font-weight: 700;
    margin-bottom: 10px;
}

/* Headline: compact font size to avoid overflow */
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(24px, 3.6vw, 44px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 6px;
    color: var(--color-primary);
}

.hero-title span {
    color: var(--color-gold);
}

/* Diamond Symbol */
.diamond-separator {
    color: var(--color-gold);
    font-size: 9px;
    margin-bottom: 8px;
    display: block;
}

/* Compact Hero Paragraph */
.hero-desc {
    font-family: var(--font-body);
    font-size: clamp(12.5px, 1.8vw, 14.5px);
    color: var(--color-text);
    max-width: 610px;
    margin: 0 auto 24px auto;
    line-height: 1.4;
    font-weight: 700;
}

/* CTA Pill Buttons */
.hero-btns {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 10px 24px;
    border-radius: var(--border-radius-pill);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 13px;
    border: 1.5px solid var(--color-primary);
    box-shadow: 0 8px 20px rgba(11, 35, 23, 0.1);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--color-primary-light);
    transform: translateY(-2px);
}

.btn-primary-icon {
    width: 16px;
    height: 16px;
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-primary-icon svg {
    stroke: var(--color-primary);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--color-gold);
    padding: 10px 24px;
    border-radius: var(--border-radius-pill);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 13px;
    border: 1.5px solid rgba(193, 154, 107, 0.5);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-secondary:hover {
    background: rgba(193, 154, 107, 0.05);
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-2px);
}

.btn-secondary svg {
    stroke: var(--color-gold);
}

.btn-secondary:hover svg {
    stroke: var(--color-primary);
}

/* Symmetrical U-Shape Wave Arched Gallery Container */
.gallery-container {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1440px;
    padding: 0 16px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    pointer-events: none;
    z-index: 1;
}

/* Left side shade fade (Commented out to remove fades) */
/*
.gallery-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 180px;
    height: 100%;
    background: linear-gradient(to right, var(--color-bg-warm) 0%, rgba(250, 248, 243, 0.85) 40%, transparent 100%);
    z-index: 3;
    pointer-events: none;
}
*/

/* Right side shade fade (Commented out to remove fades) */
/*
.gallery-container::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 180px;
    height: 100%;
    background: linear-gradient(to left, var(--color-bg-warm) 0%, rgba(250, 248, 243, 0.85) 40%, transparent 100%);
    z-index: 3;
    pointer-events: none;
}
*/

.gallery-grid {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 8px;
    width: 100%;
    margin-top: 0;
}

.gallery-spacer {
    flex: 0 0 clamp(260px, 24vw, 360px);
    height: 1px;
    pointer-events: none;
}

.arch-card {
    flex: 1;
    min-width: 80px;
    max-width: 160px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    background: var(--color-bg-card);
    box-shadow: var(--shadow-subtle);
    cursor: pointer;
    pointer-events: auto;
    border-radius: 16px;
    transform: skewY(var(--card-skew, 0deg));
    transform-origin: center center;
}

/* Card Group Skews */
.arch-card.c1, .arch-card.c2, .arch-card.c3 {
    --card-skew: 10deg;
}
.arch-card.c4, .arch-card.c5, .arch-card.c6, .arch-card.c7 {
    --card-skew: -10deg;
}

/* Card Heights */
.arch-card.c1, .arch-card.c7 {
    height: 370px;
}
.arch-card.c2, .arch-card.c6 {
    height: 320px;
}
.arch-card.c3, .arch-card.c5 {
    height: 275px;
}
.arch-card.c4 {
    height: 230px;
}

/* ─── Service Icon Background ─── */
.arch-svc-bg {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    overflow: hidden;
    transition: var(--transition-smooth);
    z-index: 1;
    padding: 8px;
}

.arch-bg-icon {
    position: absolute;
    inset: -10%;
    width: 120%;
    height: 120%;
    opacity: 0.45;
    transition: var(--transition-smooth);
    transform: skewY(calc(-1 * var(--card-skew, 0deg)));
    transform-origin: center center;
}

.arch-svc-icon-wrap {
    position: relative;
    z-index: 2;
    width: 48px;
    height: 48px;
    background: rgba(193, 154, 107, 0.18);
    border: 1.5px solid rgba(193, 154, 107, 0.35);
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.arch-svc-icon-wrap svg {
    width: 26px;
    height: 26px;
    stroke: #c19a6b;
    transition: var(--transition-smooth);
}

/* ─── Always-visible label at TOP ─── */
.arch-svc-label {
    position: absolute;
    top: 14px;
    left: 0;
    right: 0;
    z-index: 3;
    background: linear-gradient(to bottom, rgba(5, 15, 10, 0.95) 0%, rgba(5, 15, 10, 0.6) 70%, transparent 100%);
    padding: 10px 10px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    text-align: center;
    transition: var(--transition-smooth);
}

.arch-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 35, 23, 0.9) 0%, rgba(11, 35, 23, 0.3) 70%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 12px 8px;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.arch-card:hover {
    transform: translateY(-10px) skewY(var(--card-skew, 0deg));
    box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}

.arch-card:hover .arch-svc-bg {
    filter: brightness(1.2);
}

.arch-card:hover .arch-svc-icon-wrap {
    background: rgba(193, 154, 107, 0.3);
    border-color: rgba(193, 154, 107, 0.65);
    transform: scale(1.1);
}

.arch-card:hover .arch-svc-icon-wrap svg {
    stroke: #e8c27a;
}

.arch-card:hover .arch-bg-icon {
    opacity: 0.85;
    transform: scale(1.08) rotate(6deg);
}

.arch-card-icon {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
}

.arch-card:hover .arch-card-icon {
    background: var(--color-white);
}

.arch-card-icon svg {
    stroke: var(--color-white);
}

.arch-card:hover .arch-card-icon svg {
    stroke: var(--color-primary);
}

.arch-title {
    font-family: var(--font-heading);
    color: var(--color-white);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-shadow: 0 1px 8px rgba(0,0,0,0.9);
    margin-top: -178px;
    padding-bottom: 160px;
}

.arch-subtitle {
    font-family: var(--font-body);
    font-size: 7px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #c19a6b;
    margin-top: 1px;
    font-weight: 600;
    opacity: 0.9;
    text-align: center;
}

.arch-card:hover .arch-subtitle {
    color: #e8c27a;
    opacity: 1;
}

/* Bottom Curved Container */
.bottom-container {
    background-color: var(--color-bg-warm);
    position: relative;
    z-index: 5;
    margin-top: -65px; /* Overlap the gallery bottom */
    width: 100%;
}

.curve-divider {
    width: 100%;
    height: 60px;
    position: relative;
    z-index: 10;
    pointer-events: none;
}

.curve-divider svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Services Grid Bar (Bottom Section - Spans Full Width) */
.services-bar-section {
    padding: 5px 0;
    background-color: var(--color-bg-warm);
}

.services-bar-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

.services-section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 48px;
    margin-bottom: 28px;
}

.services-section-subtitle {
    font-family: var(--font-body);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-gold);
    font-weight: 700;
    margin-bottom: 8px;
}

.services-section-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 400;
    color: var(--color-primary);
    line-height: 1.25;
    margin-bottom: 12px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    background: var(--color-white);
    border: 1px solid rgba(193, 154, 107, 0.25);
    border-radius: 12px;
    padding: 12px 10px;
    box-shadow: var(--shadow-subtle);
}

.service-bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 8px 4px;
    cursor: pointer;
    border-right: 1px solid rgba(193, 154, 107, 0.15);
    transition: var(--transition-smooth);
}

.service-bar-item:last-child {
    border-right: none;
}

.service-bar-item:hover {
    transform: translateY(-2px);
}

.service-bar-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
}

.service-bar-icon svg {
    stroke: var(--color-gold);
    stroke-width: 1.5px;
    width: 22px;
    height: 22px;
}

.service-bar-item:hover .service-bar-icon svg {
    stroke: var(--color-primary);
}

.service-bar-label {
    font-family: var(--font-body);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.3;
}

/* Statistics Bar (Absolute Bottom Bar) */
.stats-bar-section {
    padding: 12px 0 16px 0;
    background-color: var(--color-bg-warm);
}

.stats-bar-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--color-white);
    border: 1px solid rgba(193, 154, 107, 0.25);
    border-radius: 12px;
    padding: 14px 16px;
    box-shadow: var(--shadow-subtle);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    border-right: 1px solid rgba(193, 154, 107, 0.15);
}

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

.stat-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(193, 154, 107, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon svg {
    stroke: var(--color-gold);
    stroke-width: 1.8px;
    width: 18px;
    height: 18px;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.1;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 11px;
    color: var(--color-text-muted);
    font-weight: 700;
}


/* ========================================================================
   MODAL REGION: DYNAMIC GLASSMORPHIC SLIDE-IN OVERLAY MODALS
   All other sections now open dynamically inside a single frame.
   ======================================================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(11, 35, 23, 0.55);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content-card {
    background: var(--color-bg-warm);
    border: 1.5px solid rgba(193, 154, 107, 0.35);
    border-radius: 24px;
    width: 90%;
    max-width: 950px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    transform: scale(0.9) translateY(20px);
    transition: var(--transition-smooth);
    padding: 40px;
}

.modal-overlay.active .modal-content-card {
    transform: scale(1) translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(11, 35, 23, 0.05);
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 10;
}

.modal-close-btn:hover {
    background: var(--color-primary);
}

.modal-close-btn svg {
    stroke: var(--color-primary);
    transition: var(--transition-smooth);
}

.modal-close-btn:hover svg {
    stroke: var(--color-white);
}
/* Sub-Section Modals Content Elements */
.about-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.about-text {
    color: var(--color-text-muted);
    font-size: 15px;
    margin-bottom: 24px;
}

.about-bullets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

.about-bullet {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 600;
}

.about-bullet-icon {
    width: 24px;
    height: 24px;
    background: rgba(193, 154, 107, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-bullet-icon svg {
    stroke: var(--color-gold);
}

.about-badge-card {
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(193, 154, 107, 0.25);
}

.about-badge-logo {
    font-size: 36px;
    font-weight: 400;
    color: var(--color-gold);
    margin-bottom: 16px;
}

.about-badge-quote {
    font-size: 16px;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 20px;
}

.about-founder-name {
    font-size: 14.5px;
    font-weight: 700;
}

.about-founder-title {
    font-size: 11px;
    color: var(--color-gold-light);
}

/* Practice grid inside Modal */
.practice-modal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.practice-card {
    background: var(--color-white);
    border: 1px solid rgba(193, 154, 107, 0.2);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.practice-card-icon {
    width: 44px;
    height: 44px;
    background: rgba(193, 154, 107, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.practice-card-icon svg {
    stroke: var(--color-gold);
}

.practice-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 500;
}

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

.practice-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-gold);
    font-weight: 700;
    font-size: 12.5px;
    margin-top: 16px;
}

/* Tax Estimator Tool Modal elements */
.tool-card {
    border-radius: 16px;
    border: 1.5px solid rgba(193, 154, 107, 0.2);
    overflow: hidden;
}

.tool-header {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tool-header-left h3 {
    color: var(--color-white);
    font-size: 20px;
}

.tool-header-left p {
    color: var(--color-gold-light);
    font-size: 11px;
}

.tool-toggle-btns {
    display: flex;
    background: rgba(255, 255, 255, 0.08);
    padding: 3px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tool-toggle-btn {
    border: none;
    background: none;
    color: rgba(255, 255, 255, 0.6);
    padding: 6px 14px;
    border-radius: 16px;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
}

.tool-toggle-btn.active {
    background: var(--color-gold);
    color: var(--color-primary);
}

.tool-body {
    padding: 30px;
}

.tool-form-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
}

/* Contact form modal */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
}

.contact-info-top h2 {
    font-size: 32px;
    margin-bottom: 12px;
}

.contact-info-desc {
    color: var(--color-text-muted);
    font-size: 14.5px;
    margin-bottom: 24px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    gap: 16px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(193, 154, 107, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    stroke: var(--color-gold);
}

.contact-detail-text h4 {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 2px;
}

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

.contact-form-card {
    background: var(--color-white);
    border: 1px solid rgba(193, 154, 107, 0.15);
    border-radius: 16px;
    padding: 30px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 12px;
    font-weight: 700;
    color: var(--color-primary);
}

.form-control {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid rgba(193, 154, 107, 0.25);
    border-radius: 8px;
    font-size: 13px;
    background: var(--color-bg-warm);
    outline: none;
}

.form-control:focus {
    border-color: var(--color-gold);
    background: var(--color-white);
}

textarea.form-control {
    min-height: 80px;
}

.btn-form-submit {
    padding: 12px;
    font-size: 13.5px;
}

.form-success-msg {
    margin-top: 12px;
    padding: 10px;
    font-size: 12.5px;
}

/* Custom Monogram Styling */
.mono-d {
    color: var(--color-primary);
}
.mono-k {
    color: var(--color-gold);
    margin-left: -5px; /* Slight elegant overlap */
}

/* Elegant Diamond Separator with Horizontal Lines */
.diamond-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--color-gold);
    font-size: 10px;
    margin-bottom: 8px;
}
.diamond-separator::before,
.diamond-separator::after {
    content: '';
    width: 32px;
    height: 1.5px;
    background-color: var(--color-gold);
    opacity: 0.6;
}

/* Scroll To Top Base Styles */
.scroll-top-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: var(--color-primary);
    color: var(--color-white);
    border: 1px solid rgba(193, 154, 107, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(11, 35, 23, 0.25);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.scroll-top-btn.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    background: var(--color-gold);
    color: var(--color-primary);
    transform: translateY(-3px);
}

/* Modal Title Base Responsive Styles */
.modal-title {
    font-size: 32px;
    margin: 12px 0;
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-weight: 600;
    line-height: 1.2;
}

.modal-title.font-serif {
    font-size: 30px;
    font-family: var(--font-heading);
}

#contact-modal .modal-title {
    font-size: 28px;
}

header.scrolled {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(250, 248, 243, 0.9) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid rgba(193, 154, 107, 0.15);
    box-shadow: 0 10px 30px rgba(11, 35, 23, 0.03);
    animation: slideDownHeader 0.4s ease-out forwards;
}

@keyframes slideDownHeader {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Scroll To Top Hidden on Desktop since 100vh doesn't scroll */
@media (min-width: 993px) {
    .scroll-top-btn {
        display: none !important;
    }
}


/* ========================================================================
   NEW SERVICES SECTION STYLING (TWO-COLUMN MOCKUP STYLE)
   ======================================================================== */
/* --- Services Scroll Reveal & Floating animations --- */
.reveal-item {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal-item.reveal-active {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Delays for Core Cards inside Services Grid */
.core-services-grid .core-service-card:nth-child(1) {
    transition-delay: 0.05s;
}
.core-services-grid .core-service-card:nth-child(2) {
    transition-delay: 0.15s;
}
.core-services-grid .core-service-card:nth-child(3) {
    transition-delay: 0.25s;
}
.core-services-grid .core-service-card:nth-child(4) {
    transition-delay: 0.35s;
}

/* Delay for Right Column container elements */
.services-image-container {
    transition-delay: 0.2s;
}
.other-services-card {
    transition-delay: 0.4s;
}

/* Gentle Floating Mockup Image Animation */
@keyframes floatMockup {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
    100% {
        transform: translateY(0px);
    }
}

.services-image-container img {
    animation: floatMockup 6s ease-in-out infinite;
}

/* Staggered Delays for Pillars in Trust Grid */
.pillars-grid .pillar-item:nth-child(1) {
    transition-delay: 0.05s;
}
.pillars-grid .pillar-item:nth-child(2) {
    transition-delay: 0.15s;
}
.pillars-grid .pillar-item:nth-child(3) {
    transition-delay: 0.25s;
}
.pillars-grid .pillar-item:nth-child(4) {
    transition-delay: 0.35s;
}

/* Delay for Trust right column and stats bar */
.trust-image-wrapper {
    transition-delay: 0.2s;
}
.trust-stats-bar {
    transition-delay: 0.1s;
}

/* Gentle Floating Quote Overlay Animation */
@keyframes floatQuote {
    0% {
        transform: translateX(-50%) translateY(0px);
    }
    50% {
        transform: translateX(-50%) translateY(-6px);
    }
    100% {
        transform: translateX(-50%) translateY(0px);
    }
}

.trust-quote-overlay {
    animation: floatQuote 6s ease-in-out infinite;
}

/* Staggered Delays for PAN Service Cards */
.pan-services-grid-v2 .pan-service-card-v2:nth-child(1) {
    transition-delay: 0.05s;
}
.pan-services-grid-v2 .pan-service-card-v2:nth-child(2) {
    transition-delay: 0.15s;
}
.pan-services-grid-v2 .pan-service-card-v2:nth-child(3) {
    transition-delay: 0.25s;
}
.pan-services-grid-v2 .pan-service-card-v2:nth-child(4) {
    transition-delay: 0.35s;
}

/* Delay for PAN Badge Card and Documents Checklist Card */
.pan-badge-card-wrapper {
    transition-delay: 0.2s;
}
.pan-docs-card-v2 {
    transition-delay: 0.4s;
}

/* Gentle Floating PAN Badge Card Animation */
.pan-badge-card {
    animation: floatMockup 6s ease-in-out infinite;
}

/* Staggered Delays for Tally Course Deck Cards */
.tally-course-deck .tally-deck-card:nth-child(1) {
    transition-delay: 0.05s;
}
.tally-course-deck .tally-deck-card:nth-child(2) {
    transition-delay: 0.15s;
}
.tally-course-deck .tally-deck-card:nth-child(3) {
    transition-delay: 0.25s;
}

/* Delay for Tally Authority Card and Roadmap Card */
.tally-authority-card-wrapper {
    transition-delay: 0.2s;
}
.tally-roadmap-card {
    transition-delay: 0.35s;
}

/* Delay for Tally Bottom Info Strip */
.tally-info-strip {
    transition-delay: 0.1s;
}

/* Gentle Floating Tally Authority Card Animation */
.tally-authority-card {
    animation: floatMockup 6s ease-in-out infinite;
}




.new-services-section {
    padding: 40px 0 30px 0;
    background-color: var(--color-bg-warm);
    width: 100%;
}

.new-services-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

/* Left Column */
.services-left-col {
    flex: 1;
    max-width: 50%;
}

.services-tagline {
    font-family: var(--font-body);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-gold);
    font-weight: 700;
    display: block;
    margin-bottom: 6px;
}

.services-main-title {
    font-family: var(--font-heading);
    font-size: clamp(26px, 3.2vw, 36px);
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.15;
    margin-bottom: 10px;
}

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

.services-desc {
    font-family: var(--font-body);
    font-size: 13.5px;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Core Services Grid (2x2) */
.core-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.core-service-card {
    background: var(--color-white);
    border: 1px solid rgba(193, 154, 107, 0.2);
    border-radius: 12px;
    padding: 16px;
    position: relative;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(11, 35, 23, 0.01);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.core-service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium);
    border-color: var(--color-gold);
}

.core-card-top-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
    width: 100%;
}

.core-card-icon-wrap {
    width: 42px;
    height: 42px;
    background: rgba(193, 154, 107, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    transition: var(--transition-smooth);
}

.core-service-card:hover .core-card-icon-wrap {
    background: var(--color-primary);
    color: var(--color-white);
}

.core-card-icon-wrap svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.core-card-num {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.core-card-title {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.25;
}

.core-card-subtitle {
    font-family: var(--font-body);
    font-size: 9.5px;
    color: var(--color-text-muted);
    font-weight: 500;
    margin-top: 2px;
}

.core-card-arrow-wrap {
    display: flex;
    justify-content: center;
    margin-top: auto;
    padding-top: 14px;
    width: 100%;
}

.core-card-arrow {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid rgba(193, 154, 107, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    transition: var(--transition-smooth);
}

.core-service-card:hover .core-card-arrow {
    background: var(--color-gold);
    color: var(--color-white);
    border-color: var(--color-gold);
}

.core-card-arrow svg {
    width: 12px;
    height: 12px;
    stroke: currentColor;
}

/* Right Column */
.services-right-col {
    flex: 1;
    max-width: 50%;
    position: relative;
    padding-bottom: 80px; /* Space for overlapping cards */
}

.services-image-container {
    width: 85%;
    margin: 0 auto;
    position: relative;
}

.services-image-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    mix-blend-mode: multiply;
}

/* Other Services Card (Mockup Style) */
.other-services-card {
    position: absolute;
    bottom: 0;
    left: 15px;
    right: 15px;
    background: var(--color-white);
    border: 1px solid rgba(193, 154, 107, 0.25);
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    z-index: 10;
}

.other-services-header {
    background: #0b2317;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.other-services-icon-badge {
    width: 22px;
    height: 22px;
    background: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
}

.other-services-icon-badge svg {
    width: 11px;
    height: 11px;
    fill: currentColor;
    stroke: currentColor;
}

.other-services-header h3 {
    font-family: var(--font-body);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--color-white);
    margin: 0;
}

.other-services-body {
    padding: 14px 16px;
    display: flex;
    gap: 16px;
}

.other-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.other-service-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 6px;
    border-radius: 6px;
    background: transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.other-service-item:hover {
    background: rgba(193, 154, 107, 0.08);
    transform: translateX(4px);
}

.other-item-icon {
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.other-item-text {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    color: var(--color-primary);
}

.other-services-footer {
    padding: 0 16px 14px 16px;
    display: flex;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
}

.btn-view-all-services {
    width: 100%;
    padding: 8px 16px;
    background: rgba(193, 154, 107, 0.08);
    border: none;
    border-radius: 20px;
    color: var(--color-gold);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: var(--transition-smooth);
}

.btn-view-all-services:hover {
    background: rgba(193, 154, 107, 0.15);
    color: var(--color-primary);
}

.btn-view-all-services svg {
    stroke: currentColor;
}


/* ========================================================================
   HOW IT WORKS (PROCESS ACCORDION) STYLING
   ======================================================================== */
.process-section {
    padding: 80px 0;
    background-color: var(--color-bg-warm);
    position: relative;
    z-index: 5;
    width: 100%;
}

.process-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.process-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.process-tagline {
    font-family: var(--font-body);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-gold);
    font-weight: 700;
    display: block;
    margin-bottom: 12px;
}

.process-title {
    font-family: var(--font-heading);
    font-size: clamp(30px, 3.5vw, 42px);
    font-weight: 600;
    color: var(--color-primary);
    line-height: 1.2;
    margin-bottom: 16px;
}

.process-desc {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.6;
    font-weight: 500;
}

.process-steps {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.process-step-item {
    border-bottom: 1px solid rgba(11, 35, 23, 0.1);
    padding: 24px 20px;
    transition: background-color 0.4s ease, border-color 0.4s ease;
    border-radius: 12px;
    margin-bottom: 4px;
}

.step-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 8px 0;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 400;
    color: var(--color-gold);
    width: 50px;
}

.step-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--color-primary);
    flex-grow: 1;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), color 0.4s ease;
}

.step-icon-indicator {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 300;
    color: var(--color-gold);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), color 0.4s ease;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Accordion transition behavior - CSS Grid Height Transition */
.step-content {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    overflow: hidden;
    transition: grid-template-rows 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease-out;
}

.step-content-inner {
    min-height: 0; /* Critical for transition to work */
    padding: 16px 0 16px 50px;
}

.step-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.step-text-col p {
    font-family: var(--font-body);
    font-size: 14.5px;
    color: var(--color-text);
    line-height: 1.6;
    font-weight: 500;
}

.step-image-col {
    display: flex;
    justify-content: flex-end;
}

.step-image-wrapper {
    width: 100%;
    max-width: 440px;
    height: 250px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(11, 35, 23, 0.08);
    border: 1px solid rgba(193, 154, 107, 0.2);
}

.step-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hover States for Interactive Accordion */
.process-step-item:hover {
    background: rgba(193, 154, 107, 0.04);
    border-bottom-color: var(--color-gold);
}

.process-step-item:hover .step-title {
    color: var(--color-gold);
    transform: translateX(6px);
}

.process-step-item:hover .step-icon-indicator {
    transform: rotate(45deg);
    color: var(--color-primary);
}

.process-step-item:hover .step-content {
    grid-template-rows: 1fr;
    opacity: 1;
}

.process-step-item:hover .step-image-wrapper img {
    transform: scale(1.05);
}

/* Responsive Styles for Process Section */
@media (max-width: 992px) {
    .step-layout {
        gap: 30px;
    }
    
    .step-image-wrapper {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .process-section {
        padding: 60px 0;
    }
    
    .step-header {
        gap: 12px;
    }
    
    .step-number {
        font-size: 20px;
        width: 35px;
    }
    
    .step-title {
        font-size: 18px;
    }
    
    .step-content-inner {
        padding-left: 35px;
    }
    
    .step-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .step-image-col {
        justify-content: center;
    }
    
    .step-image-wrapper {
        max-width: 100%;
        height: 180px;
    }
    
    .process-step-item:hover .step-content {
        grid-template-rows: 1fr;
    }
}

@media (max-width: 576px) {
    .process-section {
        padding: 48px 0 !important;
    }
    
    .process-container {
        padding: 0 16px !important;
    }
    
    .process-header {
        margin-bottom: 30px !important;
    }
    
    .process-title {
        font-size: 24px !important;
    }
    
    .process-desc {
        font-size: 12.5px !important;
    }
    
    .step-number {
        font-size: 17px !important;
        width: 28px !important;
    }
    
    .step-title {
        font-size: 15px !important;
    }
    
    .step-content-inner {
        padding-left: 28px !important;
        padding-top: 8px !important;
        padding-bottom: 8px !important;
    }
    
    .step-text-col p {
        font-size: 12.5px !important;
        line-height: 1.5 !important;
    }
    
    .process-step-item:hover .step-content {
        grid-template-rows: 1fr;
    }
}


/* ========================================================================
   TRUST & FOUNDATION SECTION STYLING
   ======================================================================== */
.trust-section {
    padding: 100px 0;
    background-color: var(--color-bg-warm);
    position: relative;
    z-index: 5;
    width: 100%;
}

.trust-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.trust-main-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.trust-tagline-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.trust-tagline-line {
    display: inline-block;
    width: 24px;
    height: 1.5px;
    background-color: var(--color-gold);
    opacity: 0.6;
}

.trust-tagline {
    font-family: var(--font-body);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-gold);
    font-weight: 700;
}

.trust-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 3.8vw, 44px);
    font-weight: 600;
    color: var(--color-primary);
    line-height: 1.15;
    margin-bottom: 24px;
}

.gold-underline {
    color: var(--color-gold);
    position: relative;
    display: inline-block;
}

.gold-underline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 2px;
    background-color: var(--color-gold);
    opacity: 0.7;
}

.trust-desc-wrapper {
    border-left: 2px solid var(--color-gold);
    padding-left: 20px;
    margin-bottom: 40px;
}

.trust-desc {
    font-family: var(--font-body);
    font-size: 14.5px;
    color: var(--color-text-muted);
    line-height: 1.6;
    font-weight: 500;
}

.pillars-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.pillar-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.pillar-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(193, 154, 107, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    background-color: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(11, 35, 23, 0.02);
}

.pillar-icon svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.pillar-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pillar-info h4 {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    color: var(--color-primary);
}

.pillar-info p {
    font-family: var(--font-body);
    font-size: 11.5px;
    color: var(--color-text-muted);
    line-height: 1.4;
}

.trust-right-col {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.trust-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 520px;
    border-radius: 24px;
    overflow: visible;
}

.trust-image-wrapper img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 24px;
    border: 1px solid rgba(193, 154, 107, 0.25);
    display: block;
    box-shadow: var(--shadow-premium);
}

.trust-quote-overlay {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    background-color: var(--color-primary);
    border: 1px solid var(--color-gold);
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(11, 35, 23, 0.25);
    z-index: 10;
}

.quote-icon-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--color-primary);
    border: 1px solid var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
}

.quote-icon-badge svg {
    width: 16px;
    height: 16px;
}

.quote-text {
    font-family: var(--font-heading);
    font-size: 20px;
    font-style: italic;
    color: var(--color-white);
    line-height: 1.4;
    margin-top: 8px;
    margin-bottom: 8px;
}

.quote-text .gold-text {
    color: var(--color-gold);
    font-weight: 600;
}

.quote-diamond {
    color: var(--color-gold);
    font-size: 10px;
    display: block;
}

/* Stats Counter Bar */
.trust-stats-bar {
    margin-top: 90px;
    margin-bottom: 40px;
    width: 100%;
}

.trust-stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    background-color: var(--color-white);
    border: 1px solid rgba(193, 154, 107, 0.25);
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: var(--shadow-premium);
}

.trust-stat-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border-right: 1px solid rgba(193, 154, 107, 0.15);
}

.trust-stat-item:last-child {
    border-right: none;
}

.trust-stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(193, 154, 107, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    flex-shrink: 0;
}

.trust-stat-icon svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.trust-stat-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.trust-stat-num {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.1;
}

.trust-stat-label {
    font-family: var(--font-body);
    font-size: 11px;
    color: var(--color-text-muted);
    font-weight: 700;
}

/* Testimonials Bar */
.trust-testimonials-bar {
    background-color: #FAF5ED;
    border: 1px solid rgba(193, 154, 107, 0.2);
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: var(--shadow-subtle);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.trust-testimonials-bar::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(circle, rgba(193, 154, 107, 0.08) 1px, transparent 1px);
    background-size: 8px 8px;
    opacity: 0.7;
    pointer-events: none;
}

.testimonials-container-grid {
    display: grid;
    grid-template-columns: 1fr auto 1.1fr auto 1.1fr auto 1.1fr;
    gap: 0;
    align-items: flex-start;
}

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

.rated-quote-badge {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

.rated-quote-badge svg {
    width: 14px;
    height: 14px;
}

.rated-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.25;
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 2px;
}

.star {
    color: var(--color-gold);
    font-size: 12px;
}

.rating-score {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    color: var(--color-primary);
    margin-left: 6px;
}

.rating-reviews {
    font-family: var(--font-body);
    font-size: 10px;
    color: var(--color-text-muted);
    font-weight: 600;
}

.testimonial-vertical-divider {
    width: 1px;
    align-self: stretch;
    background-color: rgba(193, 154, 107, 0.2);
    margin: 0 24px;
}

.testimonial-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}

.testi-quote-mark {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--color-gold);
    line-height: 1;
    height: 16px;
    opacity: 0.5;
}

.testi-text {
    font-family: var(--font-body);
    font-size: 11.5px;
    color: var(--color-text);
    line-height: 1.5;
    font-weight: 600;
    font-style: italic;
}

.testi-author {
    font-family: var(--font-body);
    font-size: 10px;
    color: var(--color-gold);
    font-weight: 700;
    line-height: 1.3;
    margin-top: auto;
}

.testi-author small {
    color: var(--color-text-muted);
    font-weight: 500;
}

/* Responsive Overrides for Trust Section */
@media (max-width: 1100px) {
    .testimonials-container-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .testimonial-vertical-divider {
        display: none;
    }
    .trust-stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px 0;
    }
    .trust-stat-item:nth-child(3) {
        border-right: none;
    }
}

@media (max-width: 992px) {
    .trust-main-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .trust-right-col {
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
        justify-content: center;
    }
    .trust-image-wrapper img {
        height: 380px;
    }
}

@media (max-width: 768px) {
    .trust-section {
        padding: 60px 0;
    }
    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .trust-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .trust-stat-item {
        border-right: none;
        justify-content: flex-start;
    }
}

@media (max-width: 576px) {
    .trust-section {
        padding: 48px 0 !important;
    }
    .trust-container {
        padding: 0 16px !important;
    }
    .trust-title {
        font-size: 26px !important;
    }
    .trust-desc {
        font-size: 12.5px !important;
    }
    .trust-image-wrapper img {
        height: 280px !important;
        border-radius: 16px !important;
    }
    .trust-quote-overlay {
        width: 90% !important;
        padding: 16px !important;
        bottom: -30px !important;
    }
    .quote-text {
        font-size: 14px !important;
    }
    .trust-stats-bar {
        margin-top: 60px !important;
    }
    .trust-stats-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        padding: 20px 16px !important;
    }
    .trust-stat-item {
        padding-bottom: 12px !important;
        border-bottom: 1px solid rgba(193, 154, 107, 0.15) !important;
        width: 100% !important;
        border-right: none !important;
    }
    .trust-stat-item:last-child {
        border-bottom: none !important;
        padding-bottom: 0 !important;
    }
    .trust-testimonials-bar {
        padding: 24px 16px !important;
    }
}


/* ========================================================================
   DARK GREEN FEATURES BANNER STYLING
   ======================================================================== */
.features-dark-banner {
    background: #0b2317;
    background-image: radial-gradient(circle at 10% 20%, rgba(193, 154, 107, 0.06) 0%, transparent 60%);
    border-top: 1px solid rgba(193, 154, 107, 0.2);
    border-bottom: 1px solid rgba(193, 154, 107, 0.2);
    padding: 40px 0;
    width: 100%;
}

.features-banner-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.feature-banner-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 0 16px;
    border-right: 1px solid rgba(193, 154, 107, 0.15);
}

.feature-banner-item:last-child {
    border-right: none;
}

.feature-icon-badge {
    width: 44px;
    height: 44px;
    background: rgba(193, 154, 107, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    flex-shrink: 0;
}

.feature-icon-badge svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.feature-info {
    display: flex;
    flex-direction: column;
}

.feature-info h4 {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.2;
}

.feature-lbl {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--color-gold-light);
    font-weight: 700;
    margin-top: 2px;
}

.feature-desc {
    font-family: var(--font-body);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    line-height: 1.35;
    margin-top: 4px;
}


/* ========================================================================
   BOTTOM CTA BANNER STYLING WITH SKYLINE
   ======================================================================== */
.cta-bottom-banner {
    background-color: var(--color-bg-warm);
    padding: 50px 0;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.cta-banner-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    position: relative;
    z-index: 5;
}

.cta-left-decor {
    flex-shrink: 0;
}

.cta-badge-circle {
    width: 60px;
    height: 60px;
    background: rgba(11, 35, 23, 0.05);
    border: 1px dashed rgba(193, 154, 107, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.cta-badge-circle svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

.cta-center-content {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
}

.cta-text-wrapper h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.25;
}

.cta-text-wrapper p {
    font-family: var(--font-body);
    font-size: 13.5px;
    color: var(--color-text-muted);
    font-weight: 600;
    margin-top: 4px;
}

.cta-buttons-wrapper {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
    align-items: center;
}

.cta-buttons-wrapper .btn-primary,
.cta-buttons-wrapper .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--border-radius-pill);
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.cta-buttons-wrapper .btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
    border: 1.5px solid var(--color-primary);
    box-shadow: 0 6px 15px rgba(11, 35, 23, 0.1);
}

.cta-buttons-wrapper .btn-primary:hover {
    background: var(--color-primary-light);
    border-color: var(--color-primary-light);
}

.cta-buttons-wrapper .btn-secondary {
    background: transparent;
    color: var(--color-primary);
    border: 1.5px solid rgba(193, 154, 107, 0.6);
}

.cta-buttons-wrapper .btn-secondary:hover {
    background: rgba(193, 154, 107, 0.05);
    border-color: var(--color-primary);
}

.cta-right-skyline {
    position: absolute;
    right: 0;
    bottom: -15px;
    width: 250px;
    height: 100px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.85;
}

.cta-right-skyline svg {
    width: 100%;
    height: 100%;
    display: block;
}


/* ========================================================================
   RESPONSIVE DESIGN OVERRIDES FOR MOBILE
   ======================================================================== */
@media (max-width: 992px) {
    .new-services-container {
        flex-direction: column;
        gap: 40px;
    }

    .services-left-col,
    .services-right-col {
        max-width: 100%;
        width: 100%;
    }

    .services-right-col {
        padding-bottom: 0;
    }

    .other-services-card {
        position: relative;
        bottom: auto;
        left: 0;
        right: 0;
        margin-top: 30px;
    }

    .features-banner-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .feature-banner-item {
        border-right: none;
        padding: 0;
    }

    .cta-banner-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 24px;
    }

    .cta-center-content {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .cta-buttons-wrapper {
        width: 100%;
        justify-content: center;
    }

    .cta-right-skyline {
        display: none;
    }

    /* Original Services & Stats Grid Tablet Overrides */
    .services-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 8px;
    }
    .service-bar-item {
        border-right: none;
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .stat-item {
        border-right: none;
        justify-content: flex-start;
        padding-left: 10px;
    }
}

@media (max-width: 992px) {
    body {
        overflow-y: auto;
        /* Release body scroll on mobile viewport */
        height: auto;
    }

    .bottom-container {
        margin-top: -55px;
    }

    .hero {
        height: auto !important;
        padding-bottom: 0px !important;
        min-height: auto !important;
        justify-content: flex-start !important;
        gap: 16px !important;
    }

    .hero-text-block {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .nav-links {
        display: none;
    }

    .btn-nav-text {
        display: none;
    }

    .btn-nav {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 44px !important;
        height: 44px !important;
        padding: 0 !important;
        border-radius: 8px !important;
        background: #0b2317 !important;
        border: 1px solid rgba(193, 154, 107, 0.35) !important;
        color: var(--color-white) !important;
        margin-left: auto !important;
        margin-right: 12px !important;
        box-shadow: none !important;
        transition: var(--transition-smooth);
        cursor: pointer;
    }

    .btn-nav svg {
        width: 18px !important;
        height: 18px !important;
        stroke: var(--color-white) !important;
        margin: 0 !important;
    }

    .menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        background: #0b2317 !important;
        border-radius: 8px !important;
        width: 44px !important;
        height: 44px !important;
        padding: 0 !important;
        border: 1px solid rgba(193, 154, 107, 0.35) !important;
        transition: var(--transition-smooth);
        cursor: pointer;
    }

    .menu-toggle svg {
        stroke: var(--color-bg-warm) !important;
        width: 22px !important;
        height: 22px !important;
    }
    
    .menu-toggle:hover {
        opacity: 0.9;
        transform: scale(0.95);
    }

    /* Swipeable Horizontally Scrolling Arched Gallery */
    .gallery-container {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        transform: none !important;
        pointer-events: auto !important;
        margin: 0 auto 12px auto !important;
        overflow-x: auto;
        width: 100%;
        padding: 16px 24px 28px 24px;
        display: flex;
        justify-content: flex-start;
        align-items: flex-end;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Hide scrollbar for Firefox */
    }
    
    .gallery-container::-webkit-scrollbar {
        display: none; /* Hide scrollbar for Chrome/Safari */
    }

    .gallery-grid {
        display: flex;
        flex-wrap: nowrap; /* Prevent wrapping */
        justify-content: flex-start;
        align-items: flex-end;
        gap: 12px;
        width: max-content;
        margin-top: 0;
        padding: 10px 0;
    }

    .arch-card {
        flex: 0 0 115px; /* Stay fixed width in horizontal scroll row */
        min-width: 115px;
        max-width: 115px;
        cursor: pointer;
        transform: skewY(var(--card-skew, 0deg));
        border-radius: 12px !important;
        --card-skew: 0deg;
    }

    .arch-card img {
        transform: none !important;
    }

    .gallery-spacer {
        display: none !important;
    }

    /* Preserve wave arch shape heights perfectly on mobile */
    .arch-card.c1, .arch-card.c7 { height: 210px !important; }
    .arch-card.c2, .arch-card.c6 { height: 180px !important; }
    .arch-card.c3, .arch-card.c5 { height: 150px !important; }
    .arch-card.c4 { height: 110px !important; }

    /* Make Modals fullscreen standard layouts on mobile */
    .modal-content-card {
        padding: 28px 20px;
        max-height: 92vh;
        width: 95%; /* More breathing room */
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .practice-modal-grid {
        grid-template-columns: 1fr;
    }

    .tool-form-grid {
        grid-template-columns: 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .services-section-header {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        margin-top: 36px !important;
        margin-bottom: 20px !important;
        padding: 0 16px !important;
    }
    .services-section-subtitle {
        font-family: var(--font-body) !important;
        font-size: 9px !important;
        text-transform: uppercase !important;
        letter-spacing: 2px !important;
        color: var(--color-gold) !important;
        font-weight: 700 !important;
        margin-bottom: 8px !important;
    }
    .services-section-title {
        font-family: var(--font-heading) !important;
        font-size: 26px !important;
        font-weight: 400 !important;
        color: var(--color-primary) !important;
        line-height: 1.25 !important;
        margin-bottom: 12px !important;
    }
}

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

    .stats-grid {
        grid-template-columns: 1fr;
        padding: 10px;
    }

    .stat-item {
        justify-content: center;
        padding-left: 0;
    }

    /* Scale modal typography responsively */
    .modal-title {
        font-size: 25px !important;
    }
    .modal-title.font-serif {
        font-size: 24px !important;
    }
    #contact-modal .modal-title {
        font-size: 22px !important;
    }

    /* Hero section natural wrap */
    .hero-title br {
        display: none;
    }
    .hero-title {
        font-size: clamp(28px, 6vw, 36px);
        line-height: 1.2;
    }
}

@media (max-width: 576px) {
    .bottom-container {
        margin-top: -45px !important;
    }

    /* New Services Section mobile overrides (Reordered to match screenshot layout) */
    .new-services-container {
        display: flex !important;
        flex-direction: column !important;
        gap: 24px !important;
        padding: 0 16px !important;
    }

    .services-left-col,
    .services-right-col {
        display: contents !important;
    }

    .services-text-wrapper {
        order: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        width: 100% !important;
    }

    .services-main-title {
        font-size: 26px !important;
        text-align: center !important;
        margin-bottom: 10px !important;
    }
    
    .services-desc {
        text-align: center !important;
        font-size: 12.5px !important;
        margin-bottom: 12px !important;
    }

    .services-image-container {
        order: 2 !important;
        width: 100% !important;
        margin-bottom: 16px !important;
    }

    /* Core services grid in a 2x2 grid */
    .core-services-grid {
        order: 3 !important;
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        width: 100% !important;
        margin-bottom: 16px !important;
    }

    .core-service-card {
        padding: 12px 8px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: space-between !important;
        min-height: 145px !important;
        box-sizing: border-box !important;
    }

    .core-card-top-row {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 6px !important;
        margin-bottom: 8px !important;
        width: 100% !important;
    }

    .core-card-icon-wrap {
        width: 32px !important;
        height: 32px !important;
        margin-bottom: 0 !important;
    }

    .core-card-icon-wrap svg {
        width: 16px !important;
        height: 16px !important;
    }

    .core-card-num {
        font-size: 13px !important;
    }

    .core-card-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        flex-grow: 1 !important;
        justify-content: center !important;
    }

    .core-card-title {
        font-size: 11px !important;
        line-height: 1.25 !important;
        margin-bottom: 2px !important;
    }

    .core-card-subtitle {
        font-size: 8.5px !important;
        line-height: 1.2 !important;
        margin-top: 0 !important;
    }

    .core-card-arrow-wrap {
        display: flex !important;
        justify-content: center !important;
        margin-top: auto !important;
        padding-top: 8px !important;
        width: 100% !important;
    }

    .core-card-arrow {
        width: 20px !important;
        height: 20px !important;
    }

    .core-card-arrow svg {
        width: 9px !important;
        height: 9px !important;
    }

    /* Other Services card below the 2x2 grid */
    .other-services-card {
        order: 4 !important;
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
        bottom: auto !important;
        margin-top: 0 !important;
        width: 100% !important;
    }

    .other-services-body {
        flex-direction: row !important; /* side by side columns like screenshot */
        gap: 16px !important;
        padding: 14px 10px !important;
    }

    .other-col {
        gap: 6px !important;
    }

    .other-service-item {
        padding: 4px 6px !important;
        gap: 6px !important;
    }

    .other-item-icon {
        font-size: 10.5px !important;
    }

    .other-item-text {
        font-size: 9.5px !important;
    }

    /* Dark Green Features Banner - 2x2 grid */
    .features-banner-container {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
        padding: 0 12px !important;
    }

    .feature-banner-item {
        border-right: none !important;
        border-bottom: none !important;
        padding: 0 !important;
        gap: 8px !important;
    }

    .feature-icon-badge {
        width: 30px !important;
        height: 30px !important;
        flex-shrink: 0 !important;
    }

    .feature-icon-badge svg {
        width: 14px !important;
        height: 14px !important;
    }

    .feature-info {
        display: flex !important;
        flex-direction: column !important;
    }

    .feature-info h4 {
        font-size: 15px !important;
        margin-bottom: 2px !important;
    }

    .feature-lbl {
        font-size: 10px !important;
        margin-bottom: 2px !important;
    }

    .feature-desc {
        font-size: 9px !important;
        line-height: 1.25 !important;
    }

    .cta-buttons-wrapper {
        flex-direction: column !important;
        width: 100% !important;
        gap: 12px !important;
    }

    .cta-buttons-wrapper .btn-primary,
    .cta-buttons-wrapper .btn-secondary {
        width: 100% !important;
        justify-content: center !important;
    }

    /* Non-scrollable Side-by-Side Symmetrical Arched Gallery */
    .gallery-container {
        overflow: hidden !important; /* Disables scroll */
        padding: 0 12px 12px 12px !important;
        margin-top: -12px !important;
        justify-content: center !important;
        margin-bottom: 16px !important;
    }

    .gallery-grid {
        width: 100% !important;
        display: flex !important;
        flex-wrap: nowrap !important;
        justify-content: center !important;
        gap: 3px !important;
        padding: 0 !important;
        margin-top: 0 !important;
    }

    .arch-card {
        flex: 1 !important; /* Divides width equally */
        min-width: 0 !important;
        max-width: none !important;
        border: 1px solid rgba(193, 154, 107, 0.15) !important;
        border-bottom: none !important;
        box-shadow: none !important;
        transition: var(--transition-smooth) !important;
        transform: skewY(var(--card-skew, 0deg));
    }

    .arch-card img {
        transform: skewY(calc(-1 * var(--card-skew, 0deg))) scale(1.35) !important;
    }

    /* Scale wave heights and border-radius proportionally to fit perfectly */
    .arch-card.c1, .arch-card.c7 {
        height: 165px !important;
        border-radius: 8px !important;
    }
    .arch-card.c2, .arch-card.c6 {
        height: 140px !important;
        border-radius: 8px !important;
    }
    .arch-card.c3, .arch-card.c5 {
        height: 120px !important;
        border-radius: 8px !important;
    }
    .arch-card.c4 {
        height: 95px !important;
        border-radius: 8px !important;
    }

    .arch-overlay {
        padding: 8px 2px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-end !important;
        align-items: center !important;
        text-align: center !important;
        background: linear-gradient(to top, rgba(11, 35, 23, 0.95) 0%, rgba(11, 35, 23, 0.4) 65%, transparent 100%) !important;
    }

    .arch-card-icon {
        width: 18px !important;
        height: 18px !important;
        background: transparent !important;
        margin: 0 auto 3px auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .arch-card-icon svg {
        width: 13px !important;
        height: 13px !important;
        stroke: var(--color-white) !important;
    }

    .arch-title {
        font-size: 7px !important;
        font-weight: 700 !important;
        line-height: 1.1 !important;
        color: var(--color-white) !important;
        text-shadow: 0 1px 2px rgba(0,0,0,0.5) !important;
        margin-top: -93px !important;
        padding-bottom: 72px !important;
    }

    .arch-subtitle {
        /* display: none !important; Hide to maintain hyper-clean typography */
    }

    /* Stacked Hero buttons exactly like high-fidelity mockup */
    .hero-btns {
        flex-direction: column !important;
        gap: 10px !important;
        width: 100% !important;
        padding: 0 24px !important;
        margin-bottom: 8px !important;
    }

    .btn-primary,
    .btn-secondary {
        width: 100% !important;
        border-radius: var(--border-radius-pill) !important; /* Pill shaped buttons like mockup */
        padding: 12px 20px !important;
        font-size: 13.5px !important;
        font-weight: 700 !important;
        justify-content: center !important;
        white-space: nowrap !important;
        box-shadow: none !important;
    }

    .btn-primary {
        background: var(--color-primary) !important;
        color: var(--color-white) !important;
        border-color: var(--color-primary) !important;
    }
    
    .btn-primary-icon {
        width: 16px !important;
        height: 16px !important;
    }
    
    .btn-primary:hover {
        transform: none !important;
    }

    .btn-secondary {
        background: transparent !important;
        color: var(--color-gold) !important;
        border: 1.5px solid var(--color-gold) !important;
    }
    
    .btn-secondary svg {
        stroke: var(--color-gold) !important;
    }
    
    .btn-secondary:hover {
        background: rgba(193, 154, 107, 0.05) !important;
        transform: none !important;
    }

    /* Original Services & Stats Grid Mobile Overrides */
    .services-grid {
        display: flex !important;
        flex-wrap: wrap !important;
        padding: 0 !important;
        background: var(--color-white) !important;
        border: 1px solid rgba(193, 154, 107, 0.25) !important;
        border-radius: 12px !important;
        overflow: hidden !important;
        gap: 0 !important;
    }

    .service-bar-item {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        padding: 12px 2px !important;
        box-sizing: border-box !important;
    }

    .service-bar-icon {
        width: 24px !important;
        height: 24px !important;
        margin-bottom: 4px !important;
    }

    .service-bar-icon svg {
        width: 16px !important;
        height: 16px !important;
        stroke-width: 1.8px !important;
    }

    .service-bar-label {
        font-size: 8px !important;
        letter-spacing: 0.1px !important;
        line-height: 1.15 !important;
    }

    .service-bar-item:nth-child(-n+4) {
        width: 25% !important;
        flex: 0 0 25% !important;
        border-bottom: 1px solid rgba(193, 154, 107, 0.12) !important;
        border-right: 1px solid rgba(193, 154, 107, 0.12) !important;
    }

    .service-bar-item:nth-child(4) {
        border-right: none !important;
    }

    .service-bar-item:nth-child(n+5) {
        width: 20% !important;
        flex: 0 0 20% !important;
        border-right: 1px solid rgba(193, 154, 107, 0.12) !important;
    }

    .service-bar-item:nth-child(9) {
        border-right: none !important;
    }

    .stats-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important; /* 2x2 grid of boxes */
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
        gap: 12px !important;
        box-shadow: none !important;
    }

    .stat-item {
        display: flex !important;
        flex-direction: column !important; /* vertical stack inside card */
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        background: var(--color-white) !important;
        border: 1px solid rgba(193, 154, 107, 0.22) !important;
        border-radius: 12px !important;
        padding: 16px 8px !important;
        box-shadow: var(--shadow-subtle) !important;
        box-sizing: border-box !important;
    }

    .stat-icon {
        width: 32px !important;
        height: 32px !important;
        border-radius: 50% !important;
        background: rgba(193, 154, 107, 0.08) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 auto 8px auto !important;
    }

    .stat-icon svg {
        stroke: var(--color-gold) !important;
        width: 16px !important;
        height: 16px !important;
    }

    .stat-info {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .stat-number {
        font-family: var(--font-heading) !important;
        font-size: 19px !important;
        font-weight: 700 !important;
        color: var(--color-primary) !important;
        line-height: 1.15 !important;
    }

    .stat-label {
        font-family: var(--font-body) !important;
        font-size: 9.5px !important;
        color: var(--color-text-muted) !important;
        font-weight: 700 !important;
        margin-top: 3px !important;
        text-transform: uppercase !important;
        letter-spacing: 0.3px !important;
        text-align: center !important;
    }

    /* Form inputs stack vertically for comfort */
    .form-grid {
        grid-template-columns: 1fr !important;
        gap: 8px !important;
    }
    
    .nav-container {
        padding: 12px 16px !important;
    }

    .services-section-header {
        margin-top: 24px !important;
        margin-bottom: 16px !important;
    }
    .services-section-title {
        font-size: 22px !important;
        margin-bottom: 8px !important;
    }
}

/* Sidebar Drawer (Mobile Only) */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--color-bg-warm);
    border-left: 1px solid rgba(193, 154, 107, 0.2);
    z-index: 1001;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    transition: var(--transition-smooth);
}

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

.mobile-nav-close {
    align-self: flex-end;
    cursor: pointer;
    background: none;
    border: none;
}

.mobile-nav-close svg {
    stroke: var(--color-primary);
}

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

.mobile-link {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-primary);
}

.mobile-link:hover {
    color: var(--color-gold);
}

.mobile-nav-btn {
    margin-top: auto;
    width: 100%;
    justify-content: center;
}

.backdrop {
    position: fixed;
    inset: 0;
    background: rgba(11, 35, 23, 0.4);
    backdrop-filter: blur(4px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* ========================================================================
   PREMIUM SERVICES SECTION — "Our Services" with Featured Cards + Checklist
   ======================================================================== */

.premium-services-section {
    background-color: var(--color-bg-warm);
    padding: 60px 0 50px 0;
}

.premium-services-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Section Header */
.premium-services-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
}

.premium-services-subtitle-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.premium-subtitle-line {
    display: block;
    width: 36px;
    height: 1.5px;
    background-color: var(--color-gold);
    opacity: 0.7;
}

.premium-services-subtitle {
    font-family: var(--font-body);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--color-gold);
    font-weight: 700;
}

.premium-services-title {
    font-family: var(--font-heading);
    font-size: clamp(30px, 3.5vw, 42px);
    font-weight: 400;
    color: var(--color-primary);
    line-height: 1.15;
    margin-bottom: 10px;
}

/* Layout: Featured Cards + Other Services side by side */
.premium-services-layout {
    display: grid;
    grid-template-columns: 1fr 0.55fr;
    gap: 24px;
    align-items: stretch;
}

/* Featured 4-Card Grid */
.featured-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.featured-card {
    background: var(--color-white);
    border: 1px solid rgba(193, 154, 107, 0.2);
    border-radius: 12px;
    padding: 28px 16px 20px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
}

.featured-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(11, 35, 23, 0.08);
}

.featured-card-icon {
    width: 72px;
    height: 72px;
    background: rgba(193, 154, 107, 0.06);
    border: 1px solid rgba(193, 154, 107, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: var(--transition-smooth);
}

.featured-card:hover .featured-card-icon {
    background: rgba(193, 154, 107, 0.12);
    border-color: var(--color-gold);
}

.featured-card-icon svg {
    stroke: var(--color-primary);
    transition: var(--transition-smooth);
}

.featured-card:hover .featured-card-icon svg {
    stroke: var(--color-gold);
}

.featured-card-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 500;
    color: var(--color-primary);
    line-height: 1.3;
    margin-bottom: 4px;
}

.featured-card-sub {
    font-family: var(--font-body);
    font-size: 11px;
    color: var(--color-text-muted);
    font-weight: 500;
    margin-bottom: 16px;
    min-height: 16px;
}

.featured-card-line {
    width: 28px;
    height: 2px;
    background: var(--color-gold);
    border-radius: 2px;
    margin-top: auto;
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.featured-card:hover .featured-card-line {
    width: 44px;
    opacity: 1;
}

/* Other Services Panel */
.other-services-panel {
    background: var(--color-white);
    border: 1px solid rgba(193, 154, 107, 0.2);
    border-radius: 12px;
    padding: 28px 24px;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.other-services-panel:hover {
    border-color: var(--color-gold);
    box-shadow: 0 16px 40px rgba(11, 35, 23, 0.06);
}

.other-services-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.other-services-divider {
    width: 36px;
    height: 2px;
    background: var(--color-gold);
    border-radius: 2px;
    margin-bottom: 14px;
}

.other-services-desc {
    font-family: var(--font-body);
    font-size: 12.5px;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 500;
}

.other-services-lists {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 16px;
    flex: 1;
}

.other-services-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.other-services-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    color: var(--color-primary);
    line-height: 1.3;
}

.other-services-list li svg {
    flex-shrink: 0;
    stroke: var(--color-gold);
}

/* ========================================================================
   PREMIUM STATS BAR — Dark Green with Cityscape
   ======================================================================== */

.stats-bar-section {
    padding: 0 0 32px 0;
    background-color: var(--color-bg-warm);
}

.stats-bar-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.stats-premium-bar {
    background: var(--color-primary);
    border: 1px solid rgba(193, 154, 107, 0.4);
    border-radius: 16px;
    padding: 36px 48px;
    position: relative;
    overflow: hidden;
}

/* Cityscape SVG background */
.stats-cityscape-bg {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 42%;
    height: 100%;
    pointer-events: none;
    opacity: 0.8;
    display: flex;
    align-items: flex-end;
}

.stats-cityscape-bg svg {
    width: 100%;
    height: 100%;
}

/* 4 stats in a row */
.stats-premium-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    z-index: 1;
}

.stats-premium-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    padding: 0 28px 0 0;
    border-right: 1px solid rgba(193, 154, 107, 0.2);
    margin-right: 28px;
}

.stats-premium-item:last-child {
    border-right: none;
    margin-right: 0;
    padding-right: 0;
}

.stats-premium-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(193, 154, 107, 0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.stats-premium-icon svg {
    stroke: var(--color-gold);
}

.stats-premium-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stats-premium-number {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.1;
}

.stats-premium-label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.stats-premium-desc {
    font-family: var(--font-body);
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    font-weight: 400;
    max-width: 200px;
}

/* ========================================================================
   RESPONSIVE: Premium Services & Stats
   ======================================================================== */

@media (max-width: 1100px) {
    .featured-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .premium-services-layout {
        grid-template-columns: 1fr;
    }
    .other-services-panel {
        padding: 24px;
    }
}

@media (max-width: 992px) {
    .premium-services-section {
        padding: 40px 0 36px 0;
    }
    .premium-services-container {
        padding: 0 20px;
    }
    .stats-premium-bar {
        padding: 28px 24px;
    }
    .stats-premium-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .stats-premium-item {
        border-right: none;
        margin-right: 0;
        padding-right: 0;
    }
    .stats-cityscape-bg {
        display: none;
    }
    .stats-bar-container {
        padding: 0 16px;
    }
}

@media (max-width: 768px) {
    .featured-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .featured-card {
        padding: 20px 12px 16px 12px;
    }
    .featured-card-icon {
        width: 60px;
        height: 60px;
    }
    .featured-card-title {
        font-size: 14px;
    }
    .other-services-lists {
        grid-template-columns: 1fr 1fr;
    }
    .premium-services-title {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .premium-services-section {
        padding: 32px 0 28px 0;
    }
    .premium-services-container {
        padding: 0 16px;
    }
    .premium-services-header {
        margin-bottom: 28px;
    }
    .premium-services-title {
        font-size: 26px;
    }
    .featured-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .featured-card {
        padding: 18px 10px 14px 10px;
    }
    .featured-card-icon {
        width: 54px;
        height: 54px;
        margin-bottom: 12px;
    }
    .featured-card-icon svg {
        width: 28px;
        height: 28px;
    }
    .featured-card-title {
        font-size: 13px;
    }
    .featured-card-sub {
        font-size: 10px;
    }
    .other-services-panel {
        padding: 20px 16px;
    }
    .other-services-lists {
        grid-template-columns: 1fr 1fr;
        gap: 0 12px;
    }
    .other-services-list li {
        font-size: 11px;
        gap: 6px;
    }
    .stats-premium-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .stats-premium-bar {
        padding: 24px 16px;
        border-radius: 12px;
    }
    .stats-premium-number {
        font-size: 17px;
    }
    .stats-premium-label {
        font-size: 9px;
    }
    .stats-premium-desc {
        font-size: 10.5px;
        display: none;
    }
    .stats-premium-icon {
        width: 36px;
        height: 36px;
    }
    .stats-premium-icon svg {
        width: 18px;
        height: 18px;
    }
    .stats-bar-section {
        padding: 0 0 20px 0;
    }
}

/* ========================================================================
   GALLERY HERO REVEAL ANIMATIONS (GLOBAL)
   ======================================================================== */
/* Temporarily hide horizontal overflow on mobile container during reveal animation */
.gallery-container.reveal-active {
    overflow-x: hidden !important;
}

/* Set initial opacity to 0 for cards that will slide out to prevent flashing */
.gallery-grid.reveal-active .arch-card.c2,
.gallery-grid.reveal-active .arch-card.c3,
.gallery-grid.reveal-active .arch-card.c4,
.gallery-grid.reveal-active .arch-card.c5,
.gallery-grid.reveal-active .arch-card.c6 {
    opacity: 0;
}

/* Layering during animation: anchors (c1, c7) are on top */
.gallery-grid.reveal-active .arch-card.c1 {
    z-index: 5;
    animation: hero-fade-scale-left 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.gallery-grid.reveal-active .arch-card.c2 {
    z-index: 4;
    animation: hero-slide-out-left-c2 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
}

.gallery-grid.reveal-active .arch-card.c3 {
    z-index: 3;
    animation: hero-slide-out-left-c3 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.gallery-grid.reveal-active .arch-card.c4 {
    z-index: 1;
    animation: hero-slide-out-right-c4 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.45s forwards;
}

.gallery-grid.reveal-active .arch-card.c5 {
    z-index: 2;
    animation: hero-slide-out-right-c5 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.gallery-grid.reveal-active .arch-card.c6 {
    z-index: 3;
    animation: hero-slide-out-right-c6 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
}

.gallery-grid.reveal-active .arch-card.c7 {
    z-index: 5;
    animation: hero-fade-scale-right 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Keyframes for Left Anchor (c1) */
@keyframes hero-fade-scale-left {
    0% {
        opacity: 0;
        transform: scale(0.9) skewY(var(--card-skew, 0deg));
    }
    100% {
        opacity: 1;
        transform: scale(1) skewY(var(--card-skew, 0deg));
    }
}

/* Keyframes for Right Anchor (c7) */
@keyframes hero-fade-scale-right {
    0% {
        opacity: 0;
        transform: scale(0.9) skewY(var(--card-skew, 0deg));
    }
    100% {
        opacity: 1;
        transform: scale(1) skewY(var(--card-skew, 0deg));
    }
}

/* Keyframes for Left Slide-Out Cards (slide out to the right from behind c1) */
@keyframes hero-slide-out-left-c2 {
    0% {
        opacity: 0;
        transform: translateX(calc(-100% - 8px)) skewY(var(--card-skew, 0deg));
    }
    55% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
        transform: translateX(0) skewY(var(--card-skew, 0deg));
    }
}

@keyframes hero-slide-out-left-c3 {
    0% {
        opacity: 0;
        transform: translateX(calc(-200% - 16px)) skewY(var(--card-skew, 0deg));
    }
    55% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
        transform: translateX(0) skewY(var(--card-skew, 0deg));
    }
}

/* Keyframes for Right Slide-Out Cards (slide out to the left from behind c7) */
@keyframes hero-slide-out-right-c6 {
    0% {
        opacity: 0;
        transform: translateX(calc(100% + 8px)) skewY(var(--card-skew, 0deg));
    }
    55% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
        transform: translateX(0) skewY(var(--card-skew, 0deg));
    }
}

@keyframes hero-slide-out-right-c5 {
    0% {
        opacity: 0;
        transform: translateX(calc(200% + 16px)) skewY(var(--card-skew, 0deg));
    }
    55% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
        transform: translateX(0) skewY(var(--card-skew, 0deg));
    }
}

@keyframes hero-slide-out-right-c4 {
    0% {
        opacity: 0;
        transform: translateX(calc(300% + 24px)) skewY(var(--card-skew, 0deg));
    }
    55% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
        transform: translateX(0) skewY(var(--card-skew, 0deg));
    }
}

/* Typing Animation Cursor Styles */
.typing-cursor {
    font-weight: 300;
    color: var(--color-gold);
    animation: blink-cursor 0.7s infinite alternate;
    margin-left: 2px;
    display: inline-block;
}

@keyframes blink-cursor {
    0% { opacity: 1; }
    100% { opacity: 0; }
}


/* =====================================================
   PAN AUTHORIZED CENTRE SECTION
   ===================================================== */

.pan-centre-section {
    background: #f5f3ee;
    padding: 80px 0 70px 0;
    position: relative;
    overflow: visible;
    border-top: 1px solid rgba(193,154,107,0.15);
    z-index: 1;
}

/* Subtle background pattern */
.pan-centre-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse 700px 400px at 10% 50%, rgba(193,154,107,0.06) 0%, transparent 70%),
        radial-gradient(ellipse 500px 300px at 90% 20%, rgba(11,35,23,0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    border-radius: 0;
}

.pan-centre-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* --- Section Header --- */
.pan-centre-header {
    text-align: center;
    margin-bottom: 52px;
}

.pan-tagline {
    font-family: var(--font-body);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-gold);
    font-weight: 700;
    display: block;
    margin-bottom: 14px;
}

.pan-main-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.15;
    margin-bottom: 16px;
}

.pan-main-title span {
    color: var(--color-gold);
    position: relative;
}

.pan-main-title span::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0; right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--color-gold), transparent);
    border-radius: 2px;
}

.pan-desc {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--color-text-muted);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 500;
}

/* --- Main 2-column Grid Layout --- */
.pan-content-grid-v2 {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 32px;
    align-items: start;
    margin-bottom: 40px;
}

/* --- Left: Authorization Badge Card --- */
.pan-badge-card {
    background: linear-gradient(160deg, #0b2317 0%, #163a28 55%, #0d2c1d 100%);
    border-radius: 20px;
    padding: 32px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    min-height: 380px;
    border: 1px solid rgba(193,154,107,0.25);
    box-shadow: 0 20px 50px rgba(11,35,23,0.18);
    z-index: 2;
}

.pan-badge-glow {
    position: absolute;
    top: -30px; left: 50%;
    transform: translateX(-50%);
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(193,154,107,0.18) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.pan-badge-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.pan-badge-logo-ring {
    width: 80px; height: 80px;
    border: 2px solid rgba(193,154,107,0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(193,154,107,0.1);
    margin-bottom: 4px;
    box-shadow: 0 0 20px rgba(193,154,107,0.2), inset 0 0 20px rgba(193,154,107,0.05);
    position: relative;
}

.pan-badge-logo-ring::before {
    content: '';
    position: absolute;
    inset: -8px;
    border: 1px dashed rgba(193,154,107,0.2);
    border-radius: 50%;
    animation: pan-spin 20s linear infinite;
}

@keyframes pan-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.pan-badge-logo-ring svg {
    width: 38px; height: 38px;
    stroke: var(--color-gold);
}

.pan-badge-title {
    font-family: var(--font-body);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-gold);
    font-weight: 700;
}

.pan-badge-subtitle {
    font-family: var(--font-heading);
    font-size: 22px;
    color: #fff;
    font-weight: 600;
    line-height: 1.2;
}

.pan-badge-divider {
    width: 40px; height: 1px;
    background: rgba(193,154,107,0.35);
    margin: 6px 0;
}

.pan-badge-stats {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
}

.pan-badge-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.pan-stat-num {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1;
}

.pan-stat-lbl {
    font-family: var(--font-body);
    font-size: 9.5px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(255,255,255,0.55);
    font-weight: 600;
}

.pan-badge-stat-divider {
    width: 1px; height: 28px;
    background: rgba(193,154,107,0.25);
}

.pan-badge-trust {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    background: rgba(193,154,107,0.1);
    border: 1px solid rgba(193,154,107,0.2);
    border-radius: 20px;
    padding: 5px 12px;
    font-family: var(--font-body);
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.75);
}

.pan-trust-dot {
    width: 7px; height: 7px;
    background: #4caf82;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px #4caf82;
    animation: pan-pulse 2s ease-in-out infinite;
}

@keyframes pan-pulse {
    0%, 100% { box-shadow: 0 0 6px #4caf82; }
    50% { box-shadow: 0 0 14px #4caf82, 0 0 4px rgba(76,175,130,0.4); }
}

/* --- Left: Authorization Badge Card --- */
.pan-left-col-v2 {
    display: flex;
    flex-direction: column;
    z-index: 2;
}

.pan-badge-contact-v2 {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px dashed rgba(193, 154, 107, 0.25);
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.pan-badge-contact-lbl {
    font-family: var(--font-body);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 700;
}

.pan-badge-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-body);
    font-size: 12.5px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.pan-badge-contact-item:hover {
    color: var(--color-gold);
}

.pan-badge-contact-item svg {
    width: 13px;
    height: 13px;
    stroke: var(--color-gold);
}

/* --- Right Column: Services & Documents --- */
.pan-right-col-v2 {
    display: flex;
    flex-direction: column;
    gap: 24px;
    z-index: 2;
}

/* Services 2x2 Grid */
.pan-services-grid-v2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.pan-service-card-v2 {
    background: #ffffff;
    border: 1px solid rgba(193,154,107,0.22);
    border-radius: 14px;
    padding: 20px;
    display: flex;
    gap: 16px;
    cursor: default;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(11,35,23,0.04);
}

.pan-service-card-v2::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--color-gold), transparent);
    opacity: 0;
    transition: var(--transition-smooth);
}

.pan-service-card-v2:hover {
    border-color: rgba(193,154,107,0.4);
    box-shadow: 0 8px 28px rgba(11,35,23,0.07);
}

.pan-service-card-v2:hover::before {
    opacity: 1;
}

.pan-service-icon-wrap-v2 {
    width: 44px;
    height: 44px;
    background: rgba(193,154,107,0.08);
    border: 1px solid rgba(193,154,107,0.2);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.pan-service-icon-wrap-v2 svg {
    width: 22px;
    height: 22px;
    stroke: var(--color-gold);
    transition: var(--transition-smooth);
}

.pan-service-card-v2:hover .pan-service-icon-wrap-v2 {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.pan-service-card-v2:hover .pan-service-icon-wrap-v2 svg {
    stroke: #fff;
}

.pan-service-text-v2 h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 5px;
    line-height: 1.3;
    transition: var(--transition-smooth);
}

.pan-service-text-v2 p {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--color-text-muted);
    line-height: 1.5;
    font-weight: 500;
}

.pan-service-card-v2:hover .pan-service-text-v2 h4 {
    color: var(--color-gold);
}

/* Documents Checklist Card */
.pan-docs-card-v2 {
    background: #ffffff;
    border: 1px solid rgba(193,154,107,0.22);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(11,35,23,0.06);
}

.pan-docs-header-v2 {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(193,154,107,0.12);
}

.pan-docs-icon-v2 {
    width: 40px;
    height: 40px;
    background: rgba(193,154,107,0.08);
    border: 1px solid rgba(193,154,107,0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pan-docs-icon-v2 svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-gold);
}

.pan-docs-grid-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.pan-docs-list-v2 {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pan-docs-list-v2 li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 12.5px;
    color: var(--color-text);
    line-height: 1.45;
    font-weight: 500;
}

.pan-docs-list-v2 li span {
    color: var(--color-gold);
    font-weight: 800;
}

/* --- Bottom Info Strip --- */
.pan-info-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    background: #ffffff;
    border: 1px solid rgba(193,154,107,0.22);
    border-radius: 12px;
    padding: 16px 24px;
    box-shadow: 0 4px 20px rgba(11,35,23,0.06);
    position: relative;
    z-index: 2;
}

.pan-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 20px;
    font-family: var(--font-body);
    font-size: 12.5px;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
}

.pan-info-item:hover {
    color: var(--color-gold);
}

.pan-info-item svg {
    stroke: var(--color-gold);
    flex-shrink: 0;
}

.pan-info-divider {
    width: 1px; height: 22px;
    background: rgba(193,154,107,0.2);
}

/* --- Responsive Layout Rules --- */
@media (max-width: 991px) {
    .pan-content-grid-v2 {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .pan-centre-section {
        padding: 60px 0 40px 0;
    }
    .pan-services-grid-v2 {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .pan-docs-grid-v2 {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .pan-info-strip {
        gap: 8px;
        flex-direction: column;
        align-items: flex-start;
    }
    .pan-info-divider {
        display: none;
    }
    .pan-info-item {
        padding: 4px 0;
    }
}

/* ========================================================================
   TALLY SOLUTIONS EDUCATION CENTRE SECTION STYLING (NEW CUSTOM LAYOUT)
   ======================================================================== */
.tally-centre-section {
    background: var(--color-bg-warm);
    padding: 85px 0 80px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(193, 154, 107, 0.15);
    border-bottom: 1px solid rgba(193, 154, 107, 0.15);
    z-index: 1;
}

.tally-centre-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(193, 154, 107, 0.04) 0%, transparent 60%),
        radial-gradient(circle at 90% 80%, rgba(11, 35, 23, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.tally-centre-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* Header */
.tally-centre-header {
    text-align: center;
    margin-bottom: 50px;
}

.tally-tagline {
    font-family: var(--font-body);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-gold);
    font-weight: 700;
    display: block;
    margin-bottom: 14px;
}

.tally-main-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.15;
    margin-bottom: 16px;
}

.tally-main-title span {
    color: var(--color-gold);
    position: relative;
}

.tally-main-title span::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0; right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--color-gold), transparent);
    border-radius: 2px;
}

.tally-desc {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--color-text-muted);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Course Deck (3 columns) */
.tally-course-deck {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.tally-deck-card {
    background: #ffffff;
    border: 1px solid rgba(193, 154, 107, 0.15);
    border-radius: 18px;
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(11, 35, 23, 0.02);
}

.tally-card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(11, 35, 23, 0.06);
    color: var(--color-primary);
    font-family: var(--font-body);
    font-size: 9.5px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.8px;
}

.tally-card-badge.gold-badge {
    background: rgba(193, 154, 107, 0.15);
    color: var(--color-gold);
}

.tally-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(11, 35, 23, 0.05);
    border: 1px solid rgba(11, 35, 23, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.tally-card-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--color-primary);
    transition: var(--transition-smooth);
}

.tally-deck-card h3 {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 700;
    color: var(--color-primary);
    transition: var(--transition-smooth);
}

.tally-deck-card p {
    font-family: var(--font-body);
    font-size: 13.5px;
    color: var(--color-text-muted);
    line-height: 1.6;
    flex-grow: 1;
}

.tally-card-duration {
    font-family: var(--font-body);
    font-size: 11.5px;
    font-weight: 700;
    color: var(--color-gold);
    border-top: 1px solid rgba(11, 35, 23, 0.08);
    padding-top: 12px;
    margin-top: 8px;
}

/* Hover effects for Course Deck */
.tally-deck-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-gold-light);
    box-shadow: 0 12px 35px rgba(11, 35, 23, 0.06);
}

.tally-deck-card:hover h3 {
    color: var(--color-gold);
}

.tally-deck-card:hover .tally-card-icon {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.tally-deck-card:hover .tally-card-icon svg {
    stroke: #fff;
}

/* Premium Card variation styling */
.tally-deck-card.active-premium {
    border-color: rgba(193, 154, 107, 0.35);
    background: linear-gradient(180deg, #ffffff 0%, rgba(193, 154, 107, 0.02) 100%);
    box-shadow: 0 10px 30px rgba(193, 154, 107, 0.05);
}

.tally-deck-card.active-premium:hover {
    border-color: var(--color-gold);
    box-shadow: 0 15px 40px rgba(193, 154, 107, 0.1);
}

.tally-deck-card.active-premium .tally-card-icon {
    background: rgba(193, 154, 107, 0.08);
    border-color: rgba(193, 154, 107, 0.25);
}

.tally-deck-card.active-premium .tally-card-icon svg {
    stroke: var(--color-gold);
}

.tally-deck-card.active-premium:hover .tally-card-icon {
    background: var(--color-gold);
    border-color: var(--color-gold);
}

.tally-deck-card.active-premium:hover .tally-card-icon svg {
    stroke: #fff;
}

/* Lower Section Split Grid */
.tally-lower-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 32px;
    align-items: stretch;
}

/* Authority Card styling */
.tally-authority-card {
    background: linear-gradient(135deg, #0b2317 0%, #153e2a 100%);
    border: 1px solid rgba(193, 154, 107, 0.25);
    border-radius: 20px;
    padding: 36px 30px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 0 15px 40px rgba(11, 35, 23, 0.12);
}

.tally-auth-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.tally-auth-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(193, 154, 107, 0.15);
    border: 1.5px solid rgba(193, 154, 107, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tally-auth-logo svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-gold);
}

.tally-auth-header h4 {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

.tally-auth-header p {
    font-family: var(--font-body);
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.tally-auth-stats {
    display: flex;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 16px 20px;
}

.tally-auth-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tally-stat-val {
    font-family: var(--font-heading);
    font-size: 21px;
    font-weight: 700;
    color: var(--color-gold);
}

.tally-stat-lbl {
    font-family: var(--font-body);
    font-size: 9.5px;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tally-auth-contact {
    font-family: var(--font-body);
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.85);
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    padding-top: 14px;
}

.tally-auth-contact a {
    color: var(--color-gold);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.tally-auth-contact a:hover {
    color: #fff;
}

/* Roadmap Timeline Card */
.tally-roadmap-card {
    background: #ffffff;
    border: 1px solid rgba(193, 154, 107, 0.15);
    border-radius: 20px;
    padding: 36px 30px;
    box-shadow: 0 4px 25px rgba(11, 35, 23, 0.02);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tally-roadmap-card h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.tally-roadmap-timeline {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
}

.tally-timeline-step {
    display: flex;
    gap: 16px;
    position: relative;
}

.tally-timeline-step:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 17px;
    top: 36px;
    bottom: -16px;
    width: 1px;
    border-left: 1.5px dashed rgba(193, 154, 107, 0.35);
}

.tally-step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(11, 35, 23, 0.04);
    border: 1.5px solid rgba(11, 35, 23, 0.12);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 13.5px;
    font-weight: 700;
    flex-shrink: 0;
}

.tally-step-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    justify-content: center;
}

.tally-step-content h5 {
    font-family: var(--font-heading);
    font-size: 14.5px;
    font-weight: 700;
    color: var(--color-primary);
}

.tally-step-content p {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* Bottom Info Strip */
.tally-info-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    background: #ffffff;
    border: 1px solid rgba(193, 154, 107, 0.22);
    border-radius: 12px;
    padding: 16px 24px;
    box-shadow: 0 4px 20px rgba(11, 35, 23, 0.04);
    position: relative;
    z-index: 2;
    margin-top: 48px;
}

.tally-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 20px;
    font-family: var(--font-body);
    font-size: 12.5px;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
}

.tally-info-item:hover {
    color: var(--color-gold);
}

.tally-info-item svg {
    stroke: var(--color-gold);
    flex-shrink: 0;
}

.tally-info-divider {
    width: 1px; height: 22px;
    background: rgba(193, 154, 107, 0.2);
}

/* --- Responsive Layout --- */
@media (max-width: 991px) {
    .tally-course-deck {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .tally-lower-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .tally-centre-section {
        padding: 60px 0;
    }
    .tally-auth-stats {
        flex-direction: column;
        gap: 14px;
    }
    .tally-authority-card {
        padding: 28px 20px;
    }
    .tally-roadmap-card {
        padding: 28px 20px;
    }
    .tally-info-strip {
        gap: 8px;
        flex-direction: column;
        align-items: flex-start;
        padding: 16px 20px;
    }
    .tally-info-divider {
        display: none;
    }
    .tally-info-item {
        padding: 4px 0;
    }
}

/* ========================================================================
   FOOTER SECTION STYLING
   ======================================================================== */
.footer-section {
    background: linear-gradient(135deg, #05130c 0%, #0b2317 100%); /* Deep forest green gradient */
    padding: 70px 0 30px 0;
    color: rgba(255, 255, 255, 0.75);
    font-family: var(--font-body);
    border-top: 2px solid var(--color-gold);
    position: relative;
    z-index: 2;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr 0.9fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Brand logo styling inside footer */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #ffffff;
}

.footer-logo .logo-monogram {
    width: 36px;
    height: 36px;
    background: rgba(193, 154, 107, 0.15);
    border: 1px solid var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-gold);
    flex-shrink: 0;
}

.footer-logo .logo-monogram .mono-d {
    margin-right: -2px;
}

.footer-logo .logo-monogram .mono-k {
    margin-left: -2px;
}

.footer-logo .logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo .logo-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffffff;
    line-height: 1.1;
}

.footer-logo .logo-sub {
    font-size: 8px;
    letter-spacing: 0.5px;
    color: var(--color-gold);
    font-weight: 600;
    margin-top: 1px;
}

.footer-brand-desc {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    transition: var(--transition-smooth);
}

.footer-socials a:hover {
    background: var(--color-gold);
    color: #ffffff;
    border-color: var(--color-gold);
    transform: translateY(-2px);
}

.footer-socials svg {
    width: 15px;
    height: 15px;
}

/* Columns title & links */
.footer-col-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    position: relative;
    padding-bottom: 10px;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 1.5px;
    background: var(--color-gold);
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 13.5px;
    transition: var(--transition-smooth);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--color-gold);
    transform: translateX(4px);
}

/* Contact Info column */
.footer-contact-info {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-info li {
    display: flex;
    gap: 10px;
    font-size: 13px;
    line-height: 1.5;
}

.footer-contact-info svg {
    width: 16px;
    height: 16px;
    stroke: var(--color-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-info a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-contact-info a:hover {
    color: var(--color-gold);
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 40px 0 20px 0;
}

/* Bottom Bar */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

/* --- Responsive overrides --- */
@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

/* ========================================================================
   URGENT UPDATES & NOTIFICATION CENTER STYLING
   ======================================================================== */

.notification-container {
    position: relative;
    display: inline-block;
    margin-right: 12px;
}

.notification-bell-btn {
    background: transparent;
    border: 1.5px solid rgba(193, 154, 107, 0.25);
    color: var(--color-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    outline: none;
    padding: 0;
}

.notification-bell-btn:hover {
    background: rgba(193, 154, 107, 0.1);
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.notification-bell-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.notification-bell-btn:hover svg {
    animation: bellShake 0.5s ease-in-out;
}

@keyframes bellShake {
    0%, 100% { transform: rotate(0); }
    20%, 60% { transform: rotate(15deg); }
    40%, 80% { transform: rotate(-15deg); }
}

.notification-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background-color: #d32f2f;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 800;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #faf8f3;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    animation: pulseRed 2s infinite;
}

@keyframes pulseRed {
    0% {
        box-shadow: 0 0 0 0 rgba(211, 47, 47, 0.6);
    }
    70% {
        box-shadow: 0 0 0 6px rgba(211, 47, 47, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(211, 47, 47, 0);
    }
}

/* Glassmorphic Dropdown Panel */
.notification-dropdown-panel {
    position: absolute;
    top: 50px;
    right: 0;
    width: 360px;
    background: rgba(250, 248, 243, 0.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(193, 154, 107, 0.35);
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(11, 35, 23, 0.15);
    z-index: 1000;
    display: none;
    flex-direction: column;
    overflow: hidden;
    transform-origin: top right;
    animation: dropdownFadeIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.notification-dropdown-panel.active {
    display: flex;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(-10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.noti-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(11, 35, 23, 0.08);
    background: rgba(11, 35, 23, 0.02);
}

.noti-header h4 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0;
}

.noti-clear-btn {
    background: transparent;
    border: none;
    color: var(--color-gold);
    font-family: var(--font-body);
    font-size: 11.5px;
    font-weight: 700;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0;
}

.noti-clear-btn:hover {
    color: var(--color-primary);
    text-decoration: underline;
}

.noti-list {
    max-height: 380px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.noti-item {
    display: flex;
    gap: 14px;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(11, 35, 23, 0.06);
    transition: background 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.noti-item:last-child {
    border-bottom: none;
}

.noti-item:hover {
    background: rgba(193, 154, 107, 0.04);
}

.noti-icon-wrap {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.noti-item.urgent .noti-icon-wrap {
    background: rgba(211, 47, 47, 0.08);
    color: #d32f2f;
    border: 1px solid rgba(211, 47, 47, 0.2);
}

.noti-item.regulatory .noti-icon-wrap {
    background: rgba(193, 154, 107, 0.1);
    color: var(--color-gold);
    border: 1px solid rgba(193, 154, 107, 0.2);
}

.noti-item.educational .noti-icon-wrap {
    background: rgba(11, 35, 23, 0.05);
    color: var(--color-primary);
    border: 1px solid rgba(11, 35, 23, 0.1);
}

.noti-icon-wrap svg {
    width: 16px;
    height: 16px;
}

.noti-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.noti-content h5 {
    font-family: var(--font-heading);
    font-size: 13.5px;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0;
}

.noti-content p {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin: 0;
}

.noti-time {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.noti-item.urgent .noti-time { color: #d32f2f; }
.noti-item.regulatory .noti-time { color: var(--color-gold); }
.noti-item.educational .noti-time { color: var(--color-primary); }

/* --- Urgent Corner Toast Alert --- */
.urgent-toast-alert {
    position: fixed;
    bottom: 30px;
    right: -420px; /* Hidden initially */
    width: 380px;
    background: #0b2317;
    border: 1px solid var(--color-gold);
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(11, 35, 23, 0.3);
    z-index: 10000;
    overflow: hidden;
    transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.urgent-toast-alert.show {
    right: 30px;
}

.toast-progress-bar {
    height: 3px;
    background: var(--color-gold);
    width: 100%;
    animation: toastTimer 8s linear forwards;
}

@keyframes toastTimer {
    from { width: 100%; }
    to { width: 0%; }
}

.toast-body {
    display: flex;
    align-items: flex-start;
    padding: 16px 20px;
    gap: 14px;
    position: relative;
}

.toast-icon-wrap {
    background: rgba(193, 154, 107, 0.15);
    color: var(--color-gold);
    border: 1.5px solid rgba(193, 154, 107, 0.3);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.toast-icon-wrap svg {
    width: 18px;
    height: 18px;
}

.toast-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-right: 18px;
}

.toast-text h4 {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--color-gold);
    margin: 0;
}

.toast-text p {
    font-family: var(--font-body);
    font-size: 12.5px;
    color: rgba(255,255,255,0.85);
    line-height: 1.55;
    margin: 0;
}

.toast-close-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.5);
    font-size: 18px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: color 0.3s ease;
}

.toast-close-btn:hover {
    color: #ffffff;
}

/* Mobile responsive adjustments */
@media (max-width: 576px) {
    .notification-dropdown-panel {
        width: 300px;
        right: -60px;
    }
    .urgent-toast-alert {
        width: calc(100% - 40px);
        left: 20px;
        right: auto;
        bottom: 20px;
        transform: translateY(150px);
        transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .urgent-toast-alert.show {
        transform: translateY(0);
        left: 20px;
        right: auto;
    }
}

/* ========================================================================
   URGENT COMPLIANCE RIGHT-SIDE POPUP STYLING
   ======================================================================== */
.urgent-popup-right-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 2500;
    width: 90%;
    max-width: 360px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(50px) translateY(0);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, visibility 0.4s ease;
}

.urgent-popup-right-container.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0) translateY(0);
}

.urgent-popup-right-card {
    background: rgba(250, 248, 243, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid var(--color-gold);
    border-radius: 20px;
    padding: 24px;
    position: relative;
    box-shadow: 0 15px 40px rgba(11, 35, 23, 0.25);
    text-align: left;
}

.urgent-popup-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 20px;
    color: var(--color-text-muted);
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: color 0.3s ease;
}

.urgent-popup-close-btn:hover {
    color: var(--color-primary);
}

.urgent-popup-header {
    margin-bottom: 12px;
}

.urgent-popup-header h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--color-primary);
    margin: 8px 0 0 0;
    font-weight: 700;
}

.urgent-badge {
    background: #e63946;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    letter-spacing: 1.2px;
    display: inline-block;
}

.urgent-popup-body p {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin: 0 0 16px 0;
}

.urgent-popup-footer {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    width: 100%;
}

.btn-primary-action {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 11px;
    background: var(--color-primary);
    color: #ffffff !important;
    text-decoration: none !important;
    border-radius: 8px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 13.5px;
    transition: var(--transition-smooth);
    border: 1.5px solid var(--color-primary);
    box-shadow: 0 4px 10px rgba(11, 35, 23, 0.1);
}

.btn-primary-action:hover {
    background: #153e2a;
    border-color: #153e2a;
    transform: translateY(-1px);
}

.btn-dismiss-popup {
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--color-text-muted);
    text-decoration: underline;
    cursor: pointer;
    transition: var(--transition-smooth);
    padding: 4px 8px;
}

.btn-dismiss-popup:hover {
    color: var(--color-primary);
}

/* Mobile responsive adjustments */
@media (max-width: 576px) {
    .urgent-popup-right-container {
        width: calc(100% - 40px);
        left: 20px;
        right: auto;
        bottom: 20px;
        transform: translateY(50px);
    }
    .urgent-popup-right-container.active {
        transform: translateY(0);
    }
}



/* ========================================================================
   AI CHATBOT WIDGET (PREMIUM)
   ======================================================================== */
.chatbot-wrapper {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 10000;
}

.chatbot-toggle-btn {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gold) 0%, #a67b45 100%);
    color: #fff;
    border: 2px solid rgba(255,255,255,0.4);
    box-shadow: 0 10px 25px rgba(193,154,107,0.5), 0 0 0 10px rgba(193,154,107,0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: floatChat 3s ease-in-out infinite;
}

@keyframes floatChat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.chatbot-toggle-btn:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(193,154,107,0.7), 0 0 0 15px rgba(193,154,107,0.15);
    background: linear-gradient(135deg, #a67b45 0%, var(--color-gold) 100%);
}

.chatbot-toggle-btn svg {
    width: 32px;
    height: 32px;
    stroke-width: 1.5;
}

.chatbot-window {
    position: absolute;
    bottom: 90px;
    left: 0;
    width: 380px;
    height: 550px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(193,154,107,0.4);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2), inset 0 0 0 1px rgba(255,255,255,0.5);
    display: flex;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    transform: translateY(30px) scale(0.9);
    transform-origin: bottom left;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.chatbot-window.active {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0) scale(1);
}

.chatbot-header {
    background: linear-gradient(135deg, var(--color-dark) 0%, #1a3c2b 100%);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-gold);
    border-bottom: 2px solid rgba(193,154,107,0.3);
}

.chatbot-title-area {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.5px;
    font-family: var(--font-heading);
}

.chatbot-title-area svg {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.chatbot-close-btn {
    background: rgba(255,255,255,0.1);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chatbot-close-btn:hover {
    transform: rotate(90deg);
    background: var(--color-gold);
    color: var(--color-dark);
}

.chatbot-messages {
    flex: 1;
    padding: 25px 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: linear-gradient(to bottom, rgba(250, 248, 243, 0.8), rgba(255, 255, 255, 0.9));
}

/* Custom Scrollbar for Chat */
.chatbot-messages::-webkit-scrollbar {
    width: 6px;
}
.chatbot-messages::-webkit-scrollbar-track {
    background: transparent;
}
.chatbot-messages::-webkit-scrollbar-thumb {
    background: rgba(193,154,107,0.4);
    border-radius: 10px;
}

.chat-msg {
    display: flex;
    width: 100%;
    animation: messageSlideIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    opacity: 0;
    transform: translateY(15px);
}

@keyframes messageSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.msg-bubble {
    max-width: 85%;
    padding: 14px 18px;
    font-size: 14px;
    line-height: 1.6;
    word-wrap: break-word;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.bot-msg {
    justify-content: flex-start;
}

.bot-msg .msg-bubble {
    background: #fff;
    color: #2c3e38;
    border: 1px solid rgba(193,154,107,0.3);
    border-radius: 20px 20px 20px 4px;
}

.bot-msg .msg-bubble::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -8px;
    width: 15px;
    height: 15px;
    background: #fff;
    border-bottom: 1px solid rgba(193,154,107,0.3);
    border-left: 1px solid rgba(193,154,107,0.3);
    border-bottom-left-radius: 15px;
    z-index: -1;
}

.user-msg {
    justify-content: flex-end;
}

.user-msg .msg-bubble {
    background: linear-gradient(135deg, var(--color-gold) 0%, #a67b45 100%);
    color: #fff;
    border-radius: 20px 20px 4px 20px;
    font-weight: 500;
}

.chatbot-input-area {
    padding: 20px;
    background: rgba(255, 255, 255, 0.95);
    border-top: 1px solid rgba(193,154,107,0.2);
    display: flex;
    gap: 12px;
    align-items: center;
}

.chatbot-input-area input {
    flex: 1;
    border: 2px solid rgba(193,154,107,0.2);
    border-radius: 25px;
    padding: 14px 20px;
    outline: none;
    font-family: inherit;
    font-size: 14px;
    background: #fbf9f6;
    transition: all 0.3s ease;
}

.chatbot-input-area input:focus {
    border-color: var(--color-gold);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(193,154,107,0.1);
}

.chatbot-input-area button {
    background: var(--color-dark);
    color: var(--color-gold);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(11,35,23,0.2);
}

.chatbot-input-area button:hover {
    background: var(--color-gold);
    color: var(--color-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(193,154,107,0.4);
}

.chatbot-input-area button svg {
    width: 20px;
    height: 20px;
    margin-right: -2px; /* slight visual optical alignment */
}

/* Typing Indicator */
.typing-indicator .msg-bubble {
    display: flex;
    gap: 6px;
    align-items: center;
    padding: 16px 20px;
    background: rgba(255,255,255,0.8);
}

.typing-indicator .dot {
    width: 8px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out;
}

.typing-indicator .dot:nth-child(1) { animation-delay: -0.32s; }
.typing-indicator .dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes typing {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
    40% { transform: scale(1); opacity: 1; }
}

@media (max-width: 576px) {
    .chatbot-wrapper {
        bottom: 20px;
        left: 20px;
    }
    .chatbot-window {
        width: calc(100vw - 40px);
        height: 70vh;
        bottom: 80px;
    }
}

/* ========================================================================
   GMB REVIEWS MARQUEE
   ======================================================================== */
.gmb-marquee-section {
    background-color: #fbf9f6;
    border-top: 1px solid rgba(193,154,107,0.1);
    border-bottom: 1px solid rgba(193,154,107,0.1);
    overflow: hidden;
    position: relative;
    padding: 60px 0;
}

.gmb-marquee-container {
    display: flex;
    width: max-content;
    animation: scrollMarquee 40s linear infinite;
}

.gmb-marquee-container:hover {
    animation-play-state: paused;
}

@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.gmb-review-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    padding: 24px;
    margin: 0 15px;
    width: 320px;
    border: 1px solid rgba(193,154,107,0.15);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.3s ease;
}

.gmb-review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(193,154,107,0.15);
}

.gmb-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.gmb-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gold) 0%, #a67b45 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.gmb-user-info h4 {
    margin: 0;
    font-size: 15px;
    color: var(--color-dark);
    font-family: var(--font-heading);
}

.gmb-stars {
    color: #FFB400;
    font-size: 14px;
    margin-top: 2px;
    letter-spacing: 2px;
}

.gmb-review-text {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.6;
    font-style: italic;
}

.gmb-review-text strong {
    color: var(--color-primary);
    font-weight: 700;
}

.gmb-google-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    font-size: 12px;
    color: #777;
    font-weight: 600;
}

.gmb-google-logo svg {
    width: 16px;
    height: 16px;
}

/* ========================================================================
   SIMPLE TEXT MARQUEE
   ======================================================================== */
.simple-text-marquee {
    background: var(--color-primary);
    color: var(--color-gold);
    padding: 16px 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(193, 154, 107, 0.2);
    border-bottom: 1px solid rgba(193, 154, 107, 0.2);
    white-space: nowrap;
    display: flex;
}

.simple-text-marquee-content {
    display: flex;
    gap: 40px;
    padding-right: 40px;
    animation: simpleMarquee 30s linear infinite;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

@keyframes simpleMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.simple-text-marquee span {
    display: inline-flex;
    align-items: center;
}
