/* ============================================
   Business Hub Hospitality — Premium Design System
   ============================================ */

:root {
    --navy: #0F1B2D;
    --navy-light: #1E293B;
    --navy-dark: #020617;
    --gold: #C9A227;
    --gold-light: #E0BA43;
    --gold-dark: #A68010;
    --emerald: #16A085;
    --emerald-light: #1ABC9C;
    --white: #FFFFFF;
    --bg-light: #F8FAFC;
    --bg-muted: #F5F7FA;
    --text-primary: #0F1B2D;
    --text-secondary: #64748B;
    --text-muted: #94A3B8;
    --border: rgba(15, 27, 45, 0.08);
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
    --shadow-sm: 0 2px 8px rgba(15, 27, 45, 0.04);
    --shadow-md: 0 8px 30px rgba(15, 27, 45, 0.08);
    --shadow-lg: 0 20px 60px rgba(15, 27, 45, 0.12);
    --shadow-gold: 0 8px 30px rgba(201, 162, 39, 0.25);
    --radius: 18px;
    --radius-sm: 10px;
    --radius-btn: 8px; /* rounded-md corners */
    --font-heading: 'Outfit', sans-serif;
    --font-serif: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --section-padding: clamp(50px, 6vw, 80px);
}

*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy);
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; transition: var(--transition); }

.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--navy);
    padding: 8px 24px;
    border-radius: var(--radius-sm);
    z-index: 10000;
    font-weight: 600;
}
.skip-link:focus { top: 10px; }

.container-xl { max-width: 1320px; margin: 0 auto; padding: 0 24px; }

/* ---- Buttons ---- */
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--navy);
    background: transparent;
    border: 2px solid var(--gold);
    border-radius: var(--radius-btn);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: var(--transition);
}
.btn-gold::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    background-size: 200% 200%;
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}
.btn-gold:hover, .btn-gold:focus {
    color: var(--navy);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}
.btn-gold:hover::before { opacity: 1; background-position: 100% 100%; }
.btn-gold .btn-icon { width: 18px; height: 18px; transition: transform var(--transition); }
.btn-gold:hover .btn-icon { transform: translateX(4px); }

.btn-gold-filled {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-color: var(--gold);
    color: var(--navy);
}
.btn-gold-filled::before { opacity: 1; }
.btn-gold-filled:hover { color: var(--white); border-color: var(--navy); }
.btn-gold-filled:hover::before { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); opacity: 1; }

.btn-emerald {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-weight: 600;
    color: var(--white);
    background: var(--emerald);
    border: 2px solid var(--emerald);
    border-radius: var(--radius-btn);
    transition: var(--transition);
}
.btn-emerald:hover {
    background: var(--emerald-light);
    border-color: var(--emerald-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(22, 160, 133, 0.3);
    color: var(--white);
}

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-weight: 600;
    color: var(--white);
    background: transparent;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: var(--radius-btn);
    transition: var(--transition);
}
.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-2px);
}

/* ---- Section Utilities ---- */
.section-padding { padding: var(--section-padding) 0; }
.section-bg-light { background: var(--bg-light); }
.section-bg-muted { background: var(--bg-muted); }

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}
.section-label::before {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 640px;
    line-height: 1.8;
}

/* ---- Navigation ---- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}
.site-header .navbar {
    padding: 20px 0;
    transition: var(--transition);
}
.site-header.scrolled .navbar {
    padding: 12px 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}
.site-header.transparent .navbar { background: transparent; }
.site-header.scrolled.transparent .navbar {
    background: rgba(15, 23, 42, 0.95);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--white);
}
.brand-sub {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}

/* Logo image styles */
.nav-logo {
    height: 70px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: opacity 0.3s ease, height 0.3s ease;
}
.nav-logo:hover { opacity: 0.85; }
.site-header.scrolled .nav-logo,
.site-header.page-header-active .nav-logo {
    height: 58px;
}
@media (max-width: 767px) {
    .nav-logo { height: 58px; }
}

.footer-logo-img {
    height: 100px;
    width: auto;
    object-fit: contain;
    display: block;
    margin-bottom: 16px;
}
@media (max-width: 575px) {
    .footer-logo-img { height: 80px; }
}
.site-header.page-header-active .navbar {
    padding: 12px 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}
.site-header.page-header-active .brand-name { color: var(--white); }
.site-header.page-header-active .nav-link,
.site-header.scrolled .nav-link {
    color: rgba(255, 255, 255, 0.85);
}
.site-header.page-header-active .nav-link:hover,
.site-header.page-header-active .nav-link.active,
.site-header.scrolled .nav-link:hover,
.site-header.scrolled .nav-link.active {
    color: var(--gold);
}
.site-header.scrolled .brand-name { color: var(--white); }

/* Header CTA on dark backgrounds */
.site-header.transparent .btn-gold,
.site-header.page-header-active .btn-gold,
.site-header.scrolled .btn-gold {
    color: var(--gold);
}
.site-header.transparent .btn-gold:hover,
.site-header.page-header-active .btn-gold:hover,
.site-header.scrolled .btn-gold:hover {
    color: var(--navy);
}

.navbar-nav .nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    padding: 8px 18px !important;
    position: relative;
}
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
    transform: translateX(-50%);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--gold);
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { width: 24px; }

.navbar-toggler {
    border: none;
    padding: 8px;
}
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28200, 169, 106, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(20px);
        padding: 24px;
        border-radius: var(--radius);
        margin-top: 16px;
    }
    .nav-cta { margin-top: 16px; }
    .navbar-nav .nav-link { color: rgba(255,255,255,0.85) !important; }
}

/* ---- Hero ---- */
.hero {
    position: relative;
    padding: clamp(110px, 10vw, 130px) 0;
    min-height: 75vh;
    min-height: 75dvh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg-img {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 35%, rgba(15, 27, 45, 0.95) 0%, rgba(15, 27, 45, 0.7) 50%, rgba(15, 27, 45, 0.2) 100%);
    z-index: 1;
}
.hero-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
    opacity: 0.3;
    mix-blend-mode: overlay;
}
.hero-shapes {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}
.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.12;
    animation: floatShape 25s ease-in-out infinite;
}
.hero-shape-1 {
    width: 420px;
    height: 420px;
    background: var(--gold);
    top: -5%;
    right: 5%;
}
.hero-shape-2 {
    width: 320px;
    height: 320px;
    background: var(--emerald);
    bottom: 15%;
    left: 40%;
    animation-delay: -10s;
}
@keyframes floatShape {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -20px); }
}

.hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero-content {
    padding: 0;
}
.hero-eyebrow {
    display: inline-flex;
    flex-direction: column;
    margin-bottom: 28px;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    position: relative;
    padding-bottom: 8px;
}
.hero-eyebrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45px;
    height: 1px;
    background-color: var(--gold);
}
.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5.5vw, 4.25rem);
    color: var(--white);
    font-weight: 400;
    letter-spacing: -0.01em;
    margin-bottom: 24px;
    line-height: 1.15;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}
.hero-title .text-gold {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--gold);
    background: none;
    -webkit-text-fill-color: initial;
    background-clip: initial;
    animation: none;
}
.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.8vw, 1.125rem);
    color: rgba(255, 255, 255, 0.75);
    max-width: 580px;
    margin-bottom: 36px;
    line-height: 1.8;
}
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}
.hero-buttons .btn {
    border-radius: var(--radius-btn) !important;
    padding: 14px 32px;
    font-size: 0.9375rem;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.hero-buttons .btn-gold-filled {
    background: var(--gold) !important;
    border-color: var(--gold) !important;
    color: var(--navy) !important;
    box-shadow: 0 4px 14px rgba(201, 162, 39, 0.2);
}
.hero-buttons .btn-gold-filled::before {
    display: none;
}
.hero-buttons .btn-gold-filled:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(201, 162, 39, 0.35);
    background: var(--gold-light) !important;
    border-color: var(--gold-light) !important;
    color: var(--navy) !important;
}
.hero-buttons .btn-outline-light {
    border: 1.5px solid rgba(255, 255, 255, 0.5) !important;
    background: transparent !important;
    color: var(--white) !important;
}
.hero-buttons .btn-outline-light:hover {
    border-color: var(--white) !important;
    background: rgba(255, 255, 255, 0.08) !important;
    transform: translateY(-3px);
}
.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.hero-tag {
    padding: 8px 18px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    cursor: default;
}
.hero-tag:hover {
    border-color: var(--gold);
    background: rgba(201, 162, 39, 0.08);
    color: var(--white);
    box-shadow: 0 0 15px rgba(201, 162, 39, 0.25);
    transform: translateY(-2px);
}

.hero-stats-panel {
    background: rgba(15, 27, 45, 0.45);
    backdrop-filter: blur(24px) saturate(120%);
    -webkit-backdrop-filter: blur(24px) saturate(120%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    padding: 36px 32px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}
.hero-stats-heading {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.hero-stats .stat-card:last-child:nth-child(3) {
    grid-column: 1 / -1;
}
.stat-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: border-color var(--transition), background var(--transition), box-shadow var(--transition), transform var(--transition);
}
.stat-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(201, 162, 39, 0.35);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}
.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: rgba(201, 162, 39, 0.15);
    border-radius: 8px;
    color: var(--gold);
}
.stat-icon svg {
    width: 16px;
    height: 16px;
}
.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0;
}
.stat-label {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 400;
    line-height: 1.4;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition);
}
.hero-scroll svg {
    width: 20px;
    height: 20px;
    animation: heroScrollBounce 2s ease-in-out infinite;
}
.hero-scroll:hover {
    color: var(--gold);
}
@keyframes heroScrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

@media (max-width: 991px) {
    .hero {
        display: block !important;
        min-height: unset !important;
        padding-top: 160px !important;
        padding-bottom: 60px !important;
    }
    .hero-content {
        padding: 40px 0 0 !important;
        margin: 0 !important;
        text-align: center;
    }
    .hero-eyebrow { margin-left: auto; margin-right: auto; margin-bottom: 20px; }
    .hero-eyebrow::after { left: 50%; transform: translateX(-50%); }
    .hero-title { font-size: clamp(2.25rem, 7vw, 3.25rem); }
    .hero-subtitle { margin-left: auto; margin-right: auto; padding: 0 16px; margin-bottom: 32px; }
    .hero-buttons { justify-content: center; margin-bottom: 32px; }
    .hero-tags { justify-content: center; }
    .hero-stats-panel {
        margin-top: 40px;
        padding: 28px;
    }
    .hero-scroll { bottom: 20px; }
}

@media (max-width: 575px) {
    .hero {
        padding-top: 140px !important;
        padding-bottom: 50px !important;
    }
    .hero-content {
        padding: 30px 0 0 !important;
        margin: 0 !important;
    }
    .hero-stats { grid-template-columns: 1fr; gap: 12px; }
    .hero-stats .stat-card:last-child:nth-child(3) { grid-column: auto; }
    .hero-stats-panel { padding: 24px 20px; }
    .stat-card { 
        display: flex; 
        flex-direction: column;
        align-items: center; 
        text-align: center;
        padding: 24px;
        gap: 8px;
    }
    .stat-icon { margin-bottom: 8px; }
    .stat-number { flex: none; text-align: center; margin-bottom: 4px; font-size: 2rem; }
    .stat-label { width: auto; padding-left: 0; }
    
    /* General mobile typography adjustments */
    .section-title { font-size: clamp(2rem, 8vw, 2.5rem); }
    .section-subtitle { font-size: 1rem; }
}

/* ---- Trusted By ---- */
.trusted-section {
    padding: 60px 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}
.trusted-label {
    text-align: center;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 32px;
}
.trusted-marquee {
    display: flex;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.trusted-track {
    display: flex;
    align-items: center;
    gap: 80px;
    animation: marquee 35s linear infinite;
    flex-shrink: 0;
    padding-right: 80px;
}
.trusted-logo {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-muted);
    white-space: nowrap;
    opacity: 0.5;
    transition: var(--transition);
    letter-spacing: 0.05em;
}
.trusted-logo:hover { opacity: 1; color: var(--gold); }
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ---- About ---- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-images {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.about-img-main {
    grid-row: span 2;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.about-img-main:hover img { transform: scale(1.05); }
.about-img-secondary {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.about-img-secondary img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.about-img-secondary:hover img { transform: scale(1.05); }
.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--navy);
    color: var(--white);
    padding: 24px 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    z-index: 2;
}
.about-badge-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}
.about-badge-text {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.7);
    margin-top: 4px;
}

.ceo-message {
    background: var(--bg-light);
    border-left: 4px solid var(--gold);
    padding: 24px 28px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 32px 0;
    font-style: italic;
    color: var(--text-secondary);
}
.ceo-name {
    font-style: normal;
    font-weight: 600;
    color: var(--navy);
    margin-top: 12px;
    font-size: 0.9375rem;
}

.about-counters {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.counter-item { text-align: center; }
.counter-value {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--gold);
}
.counter-label {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.mvv-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: var(--transition);
}
.mvv-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.mvv-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(200,169,106,0.15), rgba(200,169,106,0.05));
    border-radius: 12px;
    margin-bottom: 16px;
    color: var(--gold);
}
.mvv-card h4 { font-size: 1.125rem; margin-bottom: 8px; }
.mvv-card p { font-size: 0.9375rem; color: var(--text-secondary); margin: 0; }

@media (max-width: 991px) {
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .mvv-grid { grid-template-columns: 1fr; }
    .about-counters { grid-template-columns: repeat(3, 1fr); }
}

/* ---- Services ---- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    group: service;
}
.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    padding: 2px;
    background: linear-gradient(135deg, var(--gold), var(--emerald), var(--gold));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
    pointer-events: none;
}
.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
}
.service-card:hover::before { opacity: 1; }
.service-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.service-card:hover .service-card-image img { transform: scale(1.08); }
.service-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,23,42,0.6), transparent);
}
.service-icon {
    position: absolute;
    bottom: -24px;
    left: 28px;
    width: 56px;
    height: 56px;
    background: var(--white);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    color: var(--gold);
    z-index: 2;
    transition: var(--transition);
}
.service-card:hover .service-icon {
    background: var(--gold);
    color: var(--navy);
}
.service-card-body { padding: 40px 28px 28px; }
.service-card-body h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}
.service-card-body p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--gold);
}
.service-link i { width: 16px; height: 16px; transition: transform var(--transition); }
.service-link:hover { color: var(--navy); }
.service-link:hover i { transform: translateX(4px); }

@media (max-width: 991px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .services-grid { grid-template-columns: 1fr; } }

/* ---- Why Choose Us ---- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.why-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(15, 23, 42, 0.2) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(200, 169, 106, 0.15);
    border-top: 2px solid rgba(200, 169, 106, 0.25);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.why-section { background: var(--navy); }
.why-section .section-title { color: var(--white); }
.why-section .section-subtitle { color: rgba(255,255,255,0.65); }
.why-section .section-label { color: var(--gold); }

.why-card:hover {
    background: linear-gradient(135deg, rgba(200, 169, 106, 0.06) 0%, rgba(15, 23, 42, 0.4) 100%) !important;
    border-color: var(--gold) !important;
    border-top-color: var(--gold) !important;
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(200, 169, 106, 0.15) !important;
}
.why-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200, 169, 106, 0.1);
    border: 1px solid rgba(200, 169, 106, 0.3);
    border-radius: 50%;
    color: var(--gold);
    transition: all var(--transition);
    box-shadow: 0 0 15px rgba(200, 169, 106, 0.1);
}
.why-card:hover .why-icon {
    background: var(--gold);
    color: var(--navy);
    box-shadow: 0 0 25px rgba(200, 169, 106, 0.45);
    transform: rotate(360deg);
}
.why-icon svg {
    width: 22px;
    height: 22px;
}
.why-card h4 { color: var(--white); font-size: 1.125rem; margin-bottom: 10px; }
.why-card p { color: rgba(255,255,255,0.6); font-size: 0.9375rem; margin: 0; }

@media (max-width: 991px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .why-grid { grid-template-columns: 1fr; } }

/* ---- Portfolio ---- */
.portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 48px;
}
.filter-btn {
    padding: 10px 24px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.portfolio-grid {
    columns: 3;
    column-gap: 24px;
}
.portfolio-item {
    break-inside: avoid;
    margin-bottom: 24px;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.portfolio-item img {
    width: 100%;
    transition: transform 0.8s ease;
}
.portfolio-item:hover img { transform: scale(1.08); }
.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,23,42,0.9) 0%, rgba(15,23,42,0.4) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    opacity: 0;
    transition: var(--transition);
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-category {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}
.portfolio-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}
.portfolio-excerpt {
    font-size: 0.875rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.portfolio-metrics {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}
.portfolio-metric {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.7);
}
.portfolio-metric strong { color: var(--gold); }
.portfolio-view {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
    border-bottom: 1px solid var(--gold);
    padding-bottom: 2px;
    width: fit-content;
}

@media (max-width: 991px) { .portfolio-grid { columns: 2; } }
@media (max-width: 575px) { .portfolio-grid { columns: 1; } }

/* ---- Metrics ---- */
.metrics-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    position: relative;
    overflow: hidden;
}
.metrics-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200,169,106,0.1) 0%, transparent 70%);
    top: -200px;
    right: -200px;
}
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}
.metric-item { text-align: center; }
.metric-value {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}
.metric-label {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

@media (max-width: 767px) { .metrics-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---- Testimonials ---- */
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    height: auto;
    transition: var(--transition);
}
.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}
.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    color: var(--gold);
}
.testimonial-stars i { width: 18px; height: 18px; fill: var(--gold); }
.testimonial-text {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 28px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}
.testimonial-author img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold);
}
.testimonial-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--navy);
}
.testimonial-role {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 24px;
}
.testimonial-nav {
    display: flex;
    gap: 12px;
}
.testimonial-nav button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--navy);
}
.testimonial-nav button:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-light);
    padding: 12px 24px;
    border-radius: 50px;
    margin-top: 32px;
}
.google-badge .rating { font-weight: 700; color: var(--navy); }
.google-badge .stars { color: var(--gold); display: flex; gap: 2px; }

/* ---- Process Timeline ---- */
.process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    padding: 40px 0;
}
.process-timeline::before {
    content: '';
    position: absolute;
    top: 72px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(to right, var(--gold), var(--emerald), var(--gold));
}
.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}
.process-number {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 3px solid var(--gold);
    border-radius: 50%;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--gold);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}
.process-step:hover .process-number {
    background: var(--gold);
    color: var(--navy);
    transform: scale(1.1);
}
.process-step h4 {
    font-size: 1.125rem;
    margin-bottom: 8px;
}
.process-step p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    max-width: 180px;
    margin: 0 auto;
}
.process-arrow {
    display: none;
}

@media (max-width: 767px) {
    .process-timeline {
        flex-direction: column;
        gap: 32px;
        align-items: center;
    }
    .process-timeline::before { display: none; }
}

/* ---- Blog ---- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}
.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.blog-card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}
.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.blog-card:hover .blog-card-image img { transform: scale(1.08); }
.blog-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gold);
    color: var(--navy);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.blog-card-body { padding: 28px; }
.blog-meta {
    display: flex;
    gap: 16px;
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}
.blog-card-body h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    transition: color var(--transition);
}
.blog-card:hover h3 { color: var(--gold); }
.blog-card-body p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}
.blog-read-more {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

@media (max-width: 991px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .blog-grid { grid-template-columns: 1fr; } }

/* ---- FAQ ---- */
.faq-accordion .accordion-item {
    border: 1px solid var(--border);
    border-radius: var(--radius) !important;
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--white);
}
.faq-accordion .accordion-button {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.0625rem;
    color: var(--navy);
    padding: 24px 28px;
    background: var(--white);
    box-shadow: none !important;
}
.faq-accordion .accordion-button:not(.collapsed) {
    background: var(--bg-light);
    color: var(--gold);
}
.faq-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23C8A96A'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.faq-accordion .accordion-body {
    padding: 0 28px 24px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ---- CTA Section ---- */
.cta-section {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C8A96A' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}
.cta-section .section-title { color: var(--white); }
.cta-section .section-subtitle { color: rgba(255,255,255,0.65); margin: 0 auto 40px; }

/* ---- Page Hero ---- */
.page-hero {
    position: relative;
    padding: 180px 0 100px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1566073771259-6a8506099945?w=1920&q=80') center/cover;
    opacity: 0.15;
}
.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}
.page-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 16px;
}
.page-breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 0.9375rem;
}
.page-breadcrumb a { color: var(--gold); }
.page-breadcrumb span { color: rgba(255,255,255,0.5); }

/* ---- Contact ---- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}
.contact-info-card {
    background: var(--navy);
    color: var(--white);
    border-radius: var(--radius);
    padding: 48px;
}
.contact-info-card h3 {
    color: var(--white);
    margin-bottom: 32px;
}
.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}
.contact-item-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200,169,106,0.15);
    border-radius: 12px;
    color: var(--gold);
}
.contact-item-text h5 {
    color: var(--white);
    font-size: 0.9375rem;
    margin-bottom: 4px;
}
.contact-item-text p {
    color: rgba(255,255,255,0.65);
    margin: 0;
    font-size: 0.9375rem;
}
.contact-social {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}
.contact-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    color: var(--white);
    transition: var(--transition);
}
.contact-social a svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}
.contact-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

/* Social icons on light contact cards */
.value-card .contact-social,
.contact-social.is-light {
    justify-content: center;
    margin-top: 0;
}
.value-card .contact-social a,
.contact-social.is-light a {
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: var(--white);
    color: var(--navy);
    box-shadow: var(--shadow-sm);
}
.value-card .contact-social a:hover,
.contact-social.is-light a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
    box-shadow: var(--shadow-gold);
}
.contact-item-icon svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.contact-form-wrap {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 48px;
    box-shadow: var(--shadow-md);
}
.contact-form-wrap h3 { margin-bottom: 32px; }

.form-floating-custom {
    position: relative;
    margin-bottom: 24px;
}
.form-floating-custom input,
.form-floating-custom textarea,
.form-floating-custom select {
    width: 100%;
    padding: 20px 16px 8px;
    font-size: 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}
.form-floating-custom textarea { min-height: 140px; resize: vertical; }
.form-floating-custom label {
    position: absolute;
    top: 16px;
    left: 16px;
    font-size: 1rem;
    color: var(--text-muted);
    pointer-events: none;
    transition: var(--transition);
}
.form-floating-custom input:focus,
.form-floating-custom textarea:focus,
.form-floating-custom select:focus,
.form-floating-custom input:not(:placeholder-shown),
.form-floating-custom textarea:not(:placeholder-shown) {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200,169,106,0.15);
}
.form-floating-custom input:focus + label,
.form-floating-custom textarea:focus + label,
.form-floating-custom input:not(:placeholder-shown) + label,
.form-floating-custom textarea:not(:placeholder-shown) + label {
    top: 6px;
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 600;
}

.form-success {
    display: none;
    text-align: center;
    padding: 60px 20px;
}
.form-success.show { display: block; }
.form-success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: rgba(22,160,133,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald);
    animation: successPop 0.6s ease;
}
@keyframes successPop {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

@media (max-width: 991px) {
    .contact-grid { grid-template-columns: 1fr; }
}

/* ---- About Page ---- */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
.leader-card {
    text-align: center;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.leader-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.leader-image {
    height: 280px;
    overflow: hidden;
}
.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.leader-card:hover .leader-image img { transform: scale(1.05); }
.leader-info { padding: 24px; }
.leader-info h4 { font-size: 1.125rem; margin-bottom: 4px; }
.leader-info p { font-size: 0.875rem; color: var(--gold); margin: 0; font-weight: 600; }

.timeline-vertical {
    position: relative;
    padding-left: 40px;
}
.timeline-vertical::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), var(--emerald));
}
.timeline-event {
    position: relative;
    margin-bottom: 40px;
    padding-left: 32px;
}
.timeline-event::before {
    content: '';
    position: absolute;
    left: -36px;
    top: 4px;
    width: 16px;
    height: 16px;
    background: var(--gold);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: var(--shadow-sm);
}
.timeline-year {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--gold);
    margin-bottom: 4px;
}
.timeline-event h4 { font-size: 1.125rem; margin-bottom: 8px; }
.timeline-event p { color: var(--text-secondary); font-size: 0.9375rem; margin: 0; }

.awards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.award-card {
    text-align: center;
    padding: 32px 20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}
.award-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.award-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}
.award-card h5 { font-size: 0.9375rem; margin-bottom: 4px; }
.award-card p { font-size: 0.8125rem; color: var(--text-muted); margin: 0; }

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.value-card {
    padding: 36px;
    background: var(--bg-light);
    border-radius: var(--radius);
    border: 1px solid transparent;
    transition: var(--transition);
}
.value-card:hover {
    background: var(--white);
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
}
.value-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: rgba(200,169,106,0.2);
    line-height: 1;
    margin-bottom: 12px;
}
.value-card h4 { margin-bottom: 8px; }
.value-card p { color: var(--text-secondary); font-size: 0.9375rem; margin: 0; }

@media (max-width: 991px) {
    .leadership-grid { grid-template-columns: repeat(2, 1fr); }
    .awards-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: 1fr; }
}

/* ---- Service Detail ---- */
.service-detail-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.service-detail-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 400px;
}
.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.benefits-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9375rem;
}
.benefits-list li i { color: var(--emerald); width: 20px; height: 20px; flex-shrink: 0; }
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.feature-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.9375rem;
}
.feature-tag i { color: var(--gold); width: 18px; height: 18px; }

.pricing-card {
    background: var(--navy);
    color: var(--white);
    border-radius: var(--radius);
    padding: 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.pricing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(200,169,106,0.1) 0%, transparent 70%);
}
.pricing-card h3 { color: var(--white); margin-bottom: 8px; position: relative; }
.pricing-card .price {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold);
    margin: 24px 0;
    position: relative;
}
.pricing-card p { color: rgba(255,255,255,0.65); position: relative; }

@media (max-width: 991px) {
    .service-detail-hero { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
}

/* ---- Portfolio Modal ---- */
.modal-content {
    border: none;
    border-radius: var(--radius);
    overflow: hidden;
}
.modal-header {
    border: none;
    padding: 24px 28px 0;
}
.modal-body { padding: 24px 28px 32px; }
.modal-case-image {
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 24px;
    height: 300px;
}
.modal-case-image img { width: 100%; height: 100%; object-fit: cover; }
.modal-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 24px 0;
}
.modal-metric {
    text-align: center;
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
}
.modal-metric strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gold);
}

/* ---- Footer ---- */
.site-footer {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.65);
}
.footer-top { padding: 80px 0 60px; }
.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.footer-brand .brand-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--white);
}
.footer-desc {
    font-size: 0.9375rem;
    line-height: 1.8;
    margin-bottom: 24px;
    max-width: 320px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    color: rgba(255,255,255,0.65);
    transition: var(--transition);
}
.footer-social a svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}
.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}
.footer-heading {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.55);
    transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }

.newsletter-form .form-control {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--white);
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    padding: 12px 16px;
}
.newsletter-form .form-control::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form .form-control:focus {
    background: rgba(255,255,255,0.12);
    border-color: var(--gold);
    box-shadow: none;
    color: var(--white);
}
.newsletter-form .btn { border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 12px 16px; }
.footer-newsletter-text { font-size: 0.875rem; margin-bottom: 16px; }
.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    margin-bottom: 8px;
}
.footer-contact i { width: 16px; height: 16px; color: var(--gold); }

.footer-map {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: var(--navy-light);
}
.footer-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(0.6) contrast(1.05) brightness(0.85);
    pointer-events: none;
}
.footer-map-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.55) 0%, rgba(15, 23, 42, 0.35) 100%);
    z-index: 1;
    text-decoration: none;
    transition: var(--transition);
}
.footer-map-overlay:hover {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.65) 0%, rgba(15, 23, 42, 0.45) 100%);
}
.footer-map-overlay svg {
    width: 32px;
    height: 32px;
    color: var(--gold);
}
.footer-map-overlay span {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--white);
    font-size: 1.125rem;
}
.footer-map-overlay .btn-gold {
    color: var(--gold);
    margin-top: 4px;
}
.footer-map-overlay .btn-gold:hover {
    color: var(--navy);
}

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.copyright { font-size: 0.875rem; margin: 0; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.45);
}
.footer-legal a:hover { color: var(--gold); }

/* ---- Floating Elements ---- */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 28px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}
.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--white);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}
.whatsapp-float i { width: 28px; height: 28px; }

.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 48px;
    height: 48px;
    background: var(--navy);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-4px);
}

.floating-cta {
    position: fixed;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    font-size: 0.875rem;
    border-radius: 50px;
    box-shadow: var(--shadow-gold);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.floating-cta.visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}
.floating-cta:hover {
    background: var(--navy);
    color: var(--gold);
    transform: translateX(-50%) translateY(-4px);
}
.floating-cta i { width: 18px; height: 18px; }

/* ---- Image Reveal ---- */
.reveal-image {
    overflow: hidden;
    border-radius: var(--radius);
}
.reveal-image img {
    transform: scale(1.2);
    transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-image.revealed img { transform: scale(1); }

/* ---- Lazy Loading ---- */
img[loading="lazy"] { opacity: 0; transition: opacity 0.5s ease; }
img[loading="lazy"].loaded { opacity: 1; }

/* ---- Page Transitions ---- */
.page-transition {
    animation: pageFadeIn 0.6s ease;
}
@keyframes pageFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ---- Responsive Hero ---- */
@media (max-width: 575px) {
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn-gold,
    .hero-buttons .btn-outline-light { width: 100%; justify-content: center; }
    .about-counters { grid-template-columns: 1fr; gap: 16px; }
    .about-images { grid-template-columns: 1fr; }
    .about-img-main { grid-row: auto; height: 300px; }
}

/* ============================================
   NEW SECTIONS — HOMEPAGE & DEDICATED PAGES
   ============================================ */

/* ---- Pre-Opening Section ---- */
.preopening-section { background: var(--bg-light); }
.preopening-features { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.preopening-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: border-color var(--transition), box-shadow var(--transition);
}
.preopening-feature:hover { border-color: var(--gold); box-shadow: 0 4px 20px rgba(201,162,39,0.1); }
.po-icon {
    flex-shrink: 0;
    width: 40px; height: 40px;
    background: rgba(201,162,39,0.1);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
}
.po-icon svg { width: 18px; height: 18px; }
.preopening-feature strong { display: block; font-size: 0.9375rem; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.preopening-feature p { font-size: 0.875rem; color: var(--text-muted); margin: 0; line-height: 1.6; }
.preopening-image-wrap { position: relative; border-radius: var(--radius); overflow: hidden; }
.preopening-image-wrap img { width: 100%; height: 520px; object-fit: cover; display: block; }
.preopening-badge {
    position: absolute; bottom: 24px; left: 24px;
    background: var(--gold);
    color: var(--navy);
    font-weight: 700; font-size: 0.875rem;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    display: flex; align-items: center; gap: 10px;
    box-shadow: 0 8px 24px rgba(201,162,39,0.4);
}
.preopening-badge svg { width: 20px; height: 20px; }
@media (max-width: 991px) {
    .preopening-image-wrap img { height: 320px; }
    .preopening-features { gap: 12px; }
}

/* ---- All Hospitality Solutions ---- */
.all-solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
}
.solution-compact-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: var(--navy);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all var(--transition);
}
.solution-compact-card:hover {
    border-color: var(--gold);
    background: rgba(201,162,39,0.04);
    color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(201,162,39,0.12);
}
.sc-icon {
    flex-shrink: 0;
    width: 36px; height: 36px;
    background: rgba(201,162,39,0.1);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    transition: background var(--transition);
}
.sc-icon svg { width: 16px; height: 16px; }
.solution-compact-card:hover .sc-icon { background: var(--gold); color: var(--white); }
.sc-title { flex: 1; line-height: 1.3; }
.sc-arrow { flex-shrink: 0; width: 16px; height: 16px; color: var(--gold); opacity: 0; transition: opacity var(--transition); }
.solution-compact-card:hover .sc-arrow { opacity: 1; }
@media (max-width: 575px) { .all-solutions-grid { grid-template-columns: 1fr; } }

/* ---- Revenue Strategy Section ---- */
.revenue-strategy-section { background: var(--navy); }
.revenue-strategy-section .section-label { color: var(--gold); }
.revenue-strategy-section .section-title { color: var(--white); }
.revenue-strategy-section .section-title span.text-gold {
    background: linear-gradient(135deg, var(--gold) 30%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}
.revenue-strategy-section .section-subtitle { color: rgba(255,255,255,0.75); }
.revenue-pillars-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.revenue-pillar {
    display: flex; align-items: flex-start; gap: 16px;
    padding: 24px 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 3px solid rgba(201, 162, 39, 0.3) !important;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}
.revenue-pillar:hover {
    border-color: rgba(201, 162, 39, 0.2) rgba(201, 162, 39, 0.2) rgba(201, 162, 39, 0.2) var(--gold) !important;
    border-left-width: 3px !important;
    background: rgba(201, 162, 39, 0.04) !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2) !important;
    transform: translateX(4px);
}
.rp-icon {
    flex-shrink: 0;
    width: 42px; height: 42px;
    background: rgba(201, 162, 39, 0.1) !important;
    border: 1px solid rgba(201, 162, 39, 0.2) !important;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    transition: all var(--transition);
}
.revenue-pillar:hover .rp-icon {
    background: var(--gold) !important;
    color: var(--navy) !important;
    box-shadow: 0 0 15px rgba(201, 162, 39, 0.35);
}
.rp-icon svg { width: 18px; height: 18px; }
.revenue-pillar h5 { font-size: 0.9rem; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.revenue-pillar p { font-size: 0.8125rem; color: rgba(255,255,255,0.6); margin: 0; line-height: 1.5; }
@media (max-width: 767px) { .revenue-pillars-grid { grid-template-columns: 1fr; } }

/* ---- Performance-Based Commercial Model ---- */
.performance-model-section {
    background: linear-gradient(135deg, #0F1B2D 0%, #1a2d4a 50%, #0F1B2D 100%);
}
.performance-model-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(15, 27, 45, 0.45) 100%) !important;
    border: 1px solid rgba(201, 162, 39, 0.25) !important;
    border-radius: var(--radius);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35) !important;
    position: relative;
}
.performance-model-inner::before {
    content: '';
    position: absolute;
    top: 0; left: 50%; transform: translateX(-50%);
    width: 150px; height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.pm-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(201,162,39,0.15);
    border: 1px solid rgba(201,162,39,0.3);
    border-radius: 100px;
    color: var(--gold);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.pm-badge svg { width: 16px; height: 16px; }
.performance-model-inner .section-title { color: var(--white); margin-bottom: 20px; }
.pm-desc { color: rgba(255,255,255,0.75); font-size: 1.0625rem; line-height: 1.8; margin-bottom: 32px; }
.pm-points { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; text-align: left; }
.pm-point {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.02) !important;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    transition: all var(--transition);
}
.pm-point:hover {
    background: rgba(201, 162, 39, 0.03) !important;
    border-color: rgba(201, 162, 39, 0.2) !important;
    transform: translateY(-2px);
}
.pm-point svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; margin-top: 1px; }
.pm-point span { font-size: 0.9375rem; color: rgba(255,255,255,0.85); line-height: 1.5; }
@media (max-width: 575px) { .performance-model-inner { padding: 36px 24px; } }

/* ---- Software Promo Section ---- */
.software-promo-section { background: var(--bg-light); }
.software-promo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.software-promo-item {
    display: flex; align-items: center; gap: 14px;
    padding: 18px 20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}
.software-promo-item:hover {
    border-color: var(--gold);
    box-shadow: 0 4px 20px rgba(201,162,39,0.12);
    transform: translateY(-2px);
}
.spi-icon {
    width: 42px; height: 42px;
    background: rgba(201,162,39,0.1);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
    transition: background var(--transition);
}
.spi-icon svg { width: 20px; height: 20px; }
.software-promo-item:hover .spi-icon { background: var(--gold); color: var(--navy); }
.spi-info { display: flex; flex-direction: column; }
.spi-name { font-size: 0.875rem; font-weight: 600; color: var(--navy); line-height: 1.3; }
.spi-abbr { font-size: 0.75rem; color: var(--gold); font-weight: 500; margin-top: 2px; }
@media (max-width: 575px) { .software-promo-grid { grid-template-columns: 1fr; } }

/* ---- Corporate Promo Section ---- */
.corporate-promo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.corporate-promo-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: all var(--transition);
}
.corporate-promo-card:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 32px rgba(201,162,39,0.12);
    transform: translateY(-4px);
}
.cp-icon {
    width: 48px; height: 48px;
    background: rgba(201,162,39,0.1);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    margin-bottom: 16px;
    transition: all var(--transition);
}
.cp-icon svg { width: 22px; height: 22px; }
.corporate-promo-card:hover .cp-icon { background: var(--gold); color: var(--navy); }
.corporate-promo-card h4 { font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.corporate-promo-card p { font-size: 0.875rem; color: var(--text-muted); margin: 0; line-height: 1.6; }
@media (max-width: 991px) { .corporate-promo-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 575px) { .corporate-promo-grid { grid-template-columns: 1fr; } }

/* ---- Free Consultation CTA ---- */
.free-consult-section {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #1a2d4a 100%);
    position: relative;
    overflow: hidden;
}
.free-consult-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(201,162,39,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.free-consult-inner {
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.fc-tag {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 20px;
    background: rgba(201,162,39,0.15);
    border: 1px solid rgba(201,162,39,0.3);
    border-radius: 100px;
    color: var(--gold);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}
.fc-tag svg { width: 14px; height: 14px; }
.free-consult-inner h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
}
.free-consult-inner p {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.75;
    margin-bottom: 40px;
}
.fc-contact-options {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 36px;
}
.fc-option {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 24px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius);
    text-decoration: none;
    transition: all var(--transition);
    min-width: 210px;
}
.fc-option:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--gold);
    transform: translateY(-3px);
}
.fc-option.fc-whatsapp:hover { border-color: #25D366; background: rgba(37,211,102,0.08); }
.fc-option-icon {
    width: 44px; height: 44px;
    background: rgba(201,162,39,0.15);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}
.fc-option.fc-whatsapp .fc-option-icon { background: rgba(37,211,102,0.15); color: #25D366; }
.fc-option-icon svg { width: 20px; height: 20px; }
.fc-option-label { display: block; font-size: 0.75rem; color: rgba(255,255,255,0.55); font-weight: 500; margin-bottom: 2px; text-align: left; }
.fc-option-value { display: block; font-size: 0.9375rem; color: var(--white); font-weight: 600; text-align: left; }
@media (max-width: 767px) {
    .fc-contact-options { flex-direction: column; align-items: center; }
    .fc-option { width: 100%; max-width: 320px; }
}

/* ---- Page Hero (for hotel-software & corporate pages) ---- */
.page-hero {
    position: relative;
    padding: 160px 0 100px;
    background: linear-gradient(135deg, var(--navy-dark) 0%, #1a3050 60%, var(--navy) 100%);
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A227' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-overlay {
    position: absolute; inset: 0;
    background: radial-gradient(circle at 70% 50%, rgba(201,162,39,0.08) 0%, transparent 60%);
}
.page-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    color: var(--white);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
}
.page-hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.125rem);
    color: rgba(255,255,255,0.75);
    max-width: 600px;
    line-height: 1.8;
    margin-bottom: 0;
}
.page-hero-content { position: relative; z-index: 1; }
@media (max-width: 767px) { .page-hero { padding: 130px 0 70px; } }

/* ---- Software Stats Bar ---- */
.software-stats-bar {
    background: var(--gold);
    padding: 24px 0;
}
.software-stats-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
}
.sw-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 40px;
    border-right: 1px solid rgba(15,27,45,0.15);
}
.sw-stat:last-child { border-right: none; }
.sw-stat-val { font-size: 1.75rem; font-weight: 800; color: var(--navy); line-height: 1; }
.sw-stat-label { font-size: 0.75rem; font-weight: 600; color: rgba(15,27,45,0.7); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 4px; text-align: center; }
@media (max-width: 767px) {
    .sw-stat { padding: 12px 20px; border-right: none; border-bottom: 1px solid rgba(15,27,45,0.15); width: 50%; }
    .sw-stat:nth-child(even) { border-left: 1px solid rgba(15,27,45,0.15); }
    .sw-stat:nth-last-child(-n+2) { border-bottom: none; }
}

/* ---- Software Solutions Grid (dedicated page) ---- */
.software-solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.software-solution-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: all var(--transition);
}
.software-solution-card:hover {
    border-color: var(--gold);
    box-shadow: 0 12px 40px rgba(201,162,39,0.12);
    transform: translateY(-4px);
}
.software-solution-featured {
    background: linear-gradient(135deg, var(--navy) 0%, #1a3050 100%);
    border-color: var(--gold);
}
.software-solution-featured h3,
.software-solution-featured p { color: var(--white); }
.software-solution-featured p { color: rgba(255,255,255,0.8); }
.ss-icon {
    width: 52px; height: 52px;
    background: rgba(201,162,39,0.1);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    margin-bottom: 20px;
}
.ss-icon svg { width: 24px; height: 24px; }
.software-solution-card h3 { font-size: 1.125rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.software-solution-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.ss-features { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.ss-features li { display: flex; align-items: center; gap: 10px; font-size: 0.875rem; color: var(--text-muted); }
.ss-features li svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }
.software-solution-featured .ss-features li { color: rgba(255,255,255,0.75); }
.software-solution-featured .ss-icon { background: rgba(201,162,39,0.2); }
@media (max-width: 991px) { .software-solutions-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 575px) { .software-solutions-grid { grid-template-columns: 1fr; } }

/* ---- Tech Process Grid (software page) ---- */
.tech-process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.tech-process-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    transition: all var(--transition);
    position: relative;
}
.tech-process-card:hover { border-color: var(--gold); box-shadow: 0 8px 30px rgba(201,162,39,0.1); }
.tech-process-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(201,162,39,0.12);
    line-height: 1;
    margin-bottom: 12px;
}
.tech-process-icon {
    width: 48px; height: 48px;
    background: rgba(201,162,39,0.1);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    margin: 0 auto 16px;
}
.tech-process-icon svg { width: 22px; height: 22px; }
.tech-process-card h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.tech-process-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; margin: 0; }
@media (max-width: 991px) { .tech-process-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 575px) { .tech-process-grid { grid-template-columns: 1fr; } }

/* ---- Corporate Solutions Grid (dedicated page) ---- */
.corporate-solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.corporate-solution-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: all var(--transition);
}
.corporate-solution-card:hover {
    border-color: var(--gold);
    box-shadow: 0 12px 40px rgba(201,162,39,0.12);
    transform: translateY(-4px);
}
.corporate-solution-featured {
    background: linear-gradient(135deg, var(--navy) 0%, #1a3050 100%);
    border-color: var(--gold);
    grid-column: span 1;
}
.corporate-solution-featured h3 { color: var(--white); }
.corporate-solution-featured p { color: rgba(255,255,255,0.8); }
.cs-icon {
    width: 52px; height: 52px;
    background: rgba(201,162,39,0.1);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    margin-bottom: 20px;
}
.cs-icon svg { width: 24px; height: 24px; }
.corporate-solution-card h3 { font-size: 1.0625rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.corporate-solution-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.cs-features { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.cs-features li { display: flex; align-items: center; gap: 10px; font-size: 0.875rem; color: var(--text-muted); }
.cs-features li svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }
.corporate-solution-featured .cs-features li { color: rgba(255,255,255,0.75); }
.corporate-solution-featured .cs-icon { background: rgba(201,162,39,0.2); }
@media (max-width: 991px) { .corporate-solutions-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 575px) { .corporate-solutions-grid { grid-template-columns: 1fr; } }
/* ---- Lead Popup Modal Styles ---- */
.lead-modal-content {
    max-width: 440px;
    margin: 0 auto;
    background: rgba(15, 27, 45, 0.85) !important;
    backdrop-filter: blur(20px) saturate(140%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(140%) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: var(--radius) !important;
    color: var(--white) !important;
    box-shadow: 0 24px 60px rgba(0,0,0,0.5) !important;
    overflow: hidden;
    position: relative;
}
.lead-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    width: 28px;
    height: 28px;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white) !important;
    opacity: 0.8;
    transition: all var(--transition) !important;
    z-index: 10;
}
.lead-close-btn:hover {
    background: var(--gold) !important;
    color: var(--navy) !important;
    opacity: 1;
    transform: rotate(90deg);
}
.lead-close-btn svg { width: 14px; height: 14px; }
.lead-modal-body {
    padding: 36px 28px 28px !important;
}
.lead-modal-header {
    margin-bottom: 20px;
}
.lead-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: rgba(201, 162, 39, 0.15);
    border: 1px solid rgba(201, 162, 39, 0.25);
    border-radius: 100px;
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}
.lead-badge svg { width: 10px; height: 10px; }
.lead-modal-header h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 6px;
}
.lead-modal-subtitle {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.4;
    margin: 0;
}

/* Custom modern form controls */
.input-group-custom {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}
.input-icon {
    position: absolute;
    left: 14px;
    color: var(--gold);
    pointer-events: none;
    width: 14px;
    height: 14px;
}
.form-control-custom {
    width: 100%;
    padding: 10px 14px 10px 38px;
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: var(--radius-sm) !important;
    color: var(--white) !important;
    font-size: 0.875rem;
    transition: all var(--transition) !important;
}
.form-control-custom:focus {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: var(--gold) !important;
    outline: none;
    box-shadow: 0 0 10px rgba(201, 162, 39, 0.2) !important;
}
.form-control-custom::placeholder {
    color: rgba(255,255,255,0.3) !important;
}
.select-custom option {
    background: var(--navy);
    color: var(--white);
}

.mb-3 { margin-bottom: 0.85rem !important; }
.form-label { font-size: 0.8rem; margin-bottom: 0.35rem; font-weight: 500; color: rgba(255,255,255,0.85); }
.py-3 { padding-top: 0.75rem !important; padding-bottom: 0.75rem !important; }

.success-check-icon {
    font-size: 3rem;
    color: #25D366;
    margin-bottom: 12px;
}
.success-check-icon svg { width: 50px; height: 50px; }
.lead-success-msg h4 {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    margin-bottom: 6px;
}
.lead-success-msg p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
}
@media (max-width: 575px) {
    .lead-modal-body { padding: 36px 20px 24px !important; }
}

/* ---- Premium Corporate & International Stay Styles ---- */
.corporate-premium-section {
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}
.corporate-split-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 32px;
    margin-bottom: 48px;
}
.corporate-split-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.corporate-split-card:hover {
    border-color: var(--gold);
    box-shadow: 0 12px 40px rgba(201,162,39,0.08);
}
.corporate-card-img {
    height: 260px;
    position: relative;
    overflow: hidden;
}
.corporate-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}
.corporate-split-card:hover .corporate-card-img img {
    transform: scale(1.05);
}
.corporate-card-content {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.corporate-card-badge {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(201,162,39,0.1);
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 50px;
    margin-bottom: 16px;
}
.corporate-card-badge.jp-badge {
    background: rgba(234, 67, 53, 0.1);
    color: #EA4335;
    border: 1px solid rgba(234, 67, 53, 0.2);
}
.corporate-card-badge.project-badge {
    background: rgba(66, 133, 244, 0.1);
    color: #4285F4;
    border: 1px solid rgba(66, 133, 244, 0.2);
}
.corporate-card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 14px;
}
.corporate-card-content p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}
.corporate-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.corporate-card-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--navy);
    font-weight: 500;
}
.corporate-card-features li svg {
    width: 16px;
    height: 16px;
    color: var(--gold);
    flex-shrink: 0;
}
.corporate-card-meta {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.flexible-contracts-card {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    border: 1px solid rgba(201,162,39,0.3);
    color: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.flexible-contracts-card::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -20%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(201,162,39,0.1) 0%, transparent 70%);
    pointer-events: none;
}
.flexible-contracts-card h3 {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 12px;
}
.flexible-contracts-card p {
    color: rgba(255,255,255,0.75);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 28px;
}
.contract-badge-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}
.contract-pill {
    padding: 10px 18px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition);
}
.contract-pill:hover {
    background: rgba(201,162,39,0.15);
    border-color: var(--gold);
    color: var(--gold);
    transform: scale(1.05);
}
.contract-pill svg {
    width: 14px;
    height: 14px;
}

@media (max-width: 991px) {
    .corporate-split-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .corporate-card-features {
        grid-template-columns: 1fr;
    }
}

/* ---- Hero Swiper & Image Slider ---- */
.hero-swiper {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
}
.hero-slide {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.08);
    transition: transform 6s cubic-bezier(0.16, 1, 0.3, 1);
}
.swiper-slide-active .hero-slide-bg {
    transform: scale(1);
}
.hero-swiper-pagination {
    position: absolute;
    bottom: 30px !important;
    right: 40px !important;
    left: auto !important;
    width: auto !important;
    z-index: 10;
    display: flex;
    gap: 8px;
}
.hero-swiper-pagination .swiper-pagination-bullet {
    width: 24px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
    transition: all var(--transition);
}
.hero-swiper-pagination .swiper-pagination-bullet-active {
    background: var(--gold);
    width: 36px;
}

/* ---- Post-Hero CTA Bar ---- */
.post-hero-cta-bar {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    border-bottom: 2px solid var(--gold);
    padding: 24px 0;
    position: relative;
    z-index: 10;
}
.cta-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.cta-bar-text h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 4px 0;
}
.cta-bar-text p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}
.cta-bar-btn {
    flex-shrink: 0;
}

/* ---- Services Showcase Slider ---- */
.services-showcase-section {
    background: var(--white);
    position: relative;
    padding: var(--section-padding) 0;
}
.services-swiper-container {
    position: relative;
    padding: 20px 0 40px 0;
}
.service-showcase-card {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.service-showcase-card:hover {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 12px 40px rgba(201,162,39,0.08);
    transform: translateY(-5px);
}
.ssc-icon {
    width: 48px;
    height: 48px;
    background: rgba(201,162,39,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-bottom: 24px;
    transition: all var(--transition);
}
.service-showcase-card:hover .ssc-icon {
    background: var(--gold);
    color: var(--white);
}
.ssc-icon svg {
    width: 22px;
    height: 22px;
}
.service-showcase-card h3 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.4;
}
.service-showcase-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}
.ssc-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: color var(--transition);
    margin-top: auto;
}
.ssc-link:hover {
    color: var(--navy);
}
.ssc-link svg {
    width: 14px;
    height: 14px;
    transition: transform var(--transition);
}
.ssc-link:hover svg {
    transform: translateX(4px);
}

.services-swiper-nav {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 30px;
}
.services-swiper-prev,
.services-swiper-next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
}
.services-swiper-prev:hover,
.services-swiper-next:hover {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}
.services-swiper-prev svg,
.services-swiper-next svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 767px) {
    .cta-bar-content {
        flex-direction: column;
        text-align: center;
    }
    .cta-bar-btn {
        width: 100%;
    }
    .cta-bar-btn button {
        width: 100%;
        justify-content: center;
    }
}

/* ---- Homepage Spacing Compression Overrides ---- */
.page-home section.section-padding,
.page-home .services-showcase-section,
.page-home .corporate-premium-section,
.page-home .preopening-section,
.page-home .why-section,
.page-home .revenue-strategy-section,
.page-home .performance-model-section,
.page-home .software-promo-section,
.page-home .metrics-section,
.page-home .testimonials-section,
.page-home .free-consult-section,
.page-home .cta-section {
    padding-top: clamp(24px, 3.5vw, 44px) !important;
    padding-bottom: clamp(24px, 3.5vw, 44px) !important;
}

/* Rededuce spacer gaps around headings and lists */
.page-home .mb-5 {
    margin-bottom: 2rem !important; /* Tightens space below section titles */
}
.page-home .mt-5 {
    margin-top: 1.8rem !important; /* Tightens space above bottom CTAs */
}
.page-home .section-title {
    margin-bottom: 8px !important;
}
.page-home .about-grid, 
.page-home .mvv-grid {
    margin-top: 2rem !important;
}
.page-home .corporate-split-grid {
    margin-bottom: 2rem !important;
}
.page-home .all-solutions-grid {
    margin-top: 1rem !important;
}
.page-home .why-grid {
    margin-top: 1.5rem !important;
}

/* Premium Card Hover Improvements - subtle glowing gold borders & soft drop shadows */
.service-showcase-card:hover,
.corporate-split-card:hover,
.corporate-promo-card:hover,
.preopening-feature:hover,
.why-card:hover,
.software-promo-item:hover {
    border-color: var(--gold) !important;
    box-shadow: 0 10px 30px rgba(200, 169, 106, 0.12) !important;
    transform: translateY(-4px);
}
