@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;0,9..40,800;1,9..40,400&family=Instrument+Serif:ital@0;1&display=swap');

:root {
    --primary: #0066ff;
    --primary-dark: #0052cc;
    --primary-light: #e8f1ff;
    --secondary: #0a1628;
    --accent: #00c2a8;
    --success: #059669;
    --warning: #d97706;
    --danger: #dc2626;
    --radius: 10px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 2px rgba(10, 22, 40, 0.06);
    --shadow: 0 4px 20px rgba(10, 22, 40, 0.08);
    --shadow-lg: 0 20px 50px rgba(10, 22, 40, 0.12);
    --font: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Instrument Serif', Georgia, serif;
    --bg: #f4f6f9;
    --bg-card: #ffffff;
    --bg-soft: #eef2f7;
    --text: #0a1628;
    --text-muted: #5c6b7f;
    --border: #dde3ec;
    --nav-bg: rgba(255, 255, 255, 0.92);
    --footer-bg: #0a1628;
    --footer-text: #94a3b8;
    --hero-bg: linear-gradient(180deg, #ffffff 0%, #f4f6f9 100%);
    --hero-glow: radial-gradient(ellipse 80% 60% at 70% 20%, rgba(0, 102, 255, 0.08), transparent);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    transition: background var(--transition), color var(--transition);
    min-height: 100vh;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 { letter-spacing: -0.02em; }

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }

.container { max-width: 1200px; }

.main-content { min-height: calc(100vh - 72px); }
.main-content.has-bottom-nav { padding-bottom: 84px; }

/* ── Navigation ── */
.mobile-appbar {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: var(--nav-bg);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding-top: env(safe-area-inset-top, 0);
}
.appbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 60px;
}
.appbar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text);
}
.appbar-logo .logo-mark {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}
.appbar-actions { display: flex; align-items: center; gap: 2px; }
.appbar-actions .btn-link { color: var(--text-muted); padding: 10px; border-radius: 10px; }
.appbar-actions .btn-link:hover { background: var(--bg-soft); color: var(--text); }

.desktop-navbar {
    background: var(--nav-bg) !important;
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
}
.desktop-navbar .navbar-brand {
    color: var(--text) !important;
    font-size: 1.15rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}
.desktop-navbar .logo-mark {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}
.logo-link { display: inline-flex; align-items: center; text-decoration: none; }
.site-logo { height: 58px; width: auto; max-width: 200px; display: block; object-fit: contain; }
.site-logo-sm { height: 48px; max-width: 160px; }
.desktop-navbar .nav-link {
    color: var(--text-muted) !important;
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 8px 18px !important;
    border-radius: 8px;
    transition: all var(--transition);
}
.desktop-navbar .nav-link:hover,
.desktop-navbar .nav-link.active {
    color: var(--primary) !important;
    background: var(--primary-light);
}

.cart-badge {
    position: absolute;
    top: -2px;
    right: -6px;
    background: var(--primary);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
}

.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    display: flex;
    background: var(--nav-bg);
    backdrop-filter: blur(16px);
    border-top: 1px solid var(--border);
    padding-bottom: env(safe-area-inset-bottom, 0);
    box-shadow: 0 -8px 30px rgba(10, 22, 40, 0.06);
}
.bottom-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 4px 12px;
    color: var(--text-muted);
    font-size: 10px;
    font-weight: 600;
    gap: 4px;
    position: relative;
    transition: color var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.bottom-nav-item i { font-size: 21px; }
.bottom-nav-item.active { color: var(--primary); }
.bottom-badge {
    position: absolute;
    top: 6px;
    right: calc(50% - 24px);
    background: var(--primary);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-list { list-style: none; padding: 8px; margin: 0; }
.mobile-menu-list li a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    color: var(--text);
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: background var(--transition);
}
.mobile-menu-list li a:hover { background: var(--bg-soft); color: var(--primary); }
.mobile-menu-list li a i { width: 20px; color: var(--primary); }

.flash-container {
    position: fixed;
    top: 76px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    width: 90%;
    max-width: 420px;
}

/* ── Hero ── */
.hero-section {
    background: var(--hero-bg);
    position: relative;
    overflow: hidden;
    padding: 72px 0 64px;
}
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--hero-glow);
    pointer-events: none;
}
.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(10, 22, 40, 0.04) 1px, transparent 0);
    background-size: 28px 28px;
    pointer-events: none;
    opacity: 0.6;
}
.hero-content { position: relative; z-index: 1; }
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: var(--text-muted);
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 50px;
    margin-bottom: 28px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.hero-eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 4px rgba(0, 194, 168, 0.15);
}
.hero-title {
    font-size: clamp(1.875rem, 3.8vw, 2.75rem);
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 1.25rem;
    color: var(--secondary);
    letter-spacing: -0.02em;
    max-width: 520px;
}
.hero-highlight {
    color: var(--primary);
}
.hero-gradient-text {
    color: var(--primary);
}
.hero-lead {
    font-size: 1.0625rem;
    color: var(--text-muted);
    max-width: 480px;
    margin-bottom: 32px;
    line-height: 1.7;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}
.hero-btn-primary {
    display: inline-flex !important;
    align-items: center;
    padding-left: 28px !important;
    padding-right: 28px !important;
}
.hero-trust-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.hero-trust-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}
.hero-trust-list li i {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(0, 194, 168, 0.12);
    color: var(--accent);
    font-size: 0.625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Hero panel (right side) */
.hero-panel {
    position: relative;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 24px 60px rgba(10, 22, 40, 0.1);
    overflow: hidden;
}
.hero-panel-glow {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.12), transparent 70%);
    pointer-events: none;
}
.hero-panel-top {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}
.hero-panel-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, #0066ff, #0044aa);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.25);
}
.hero-panel-label {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin: 0 0 6px;
}
.hero-panel-title {
    font-size: 1.35rem;
    font-weight: 800;
    margin: 0 0 8px;
    color: var(--text);
    letter-spacing: -0.02em;
}
.hero-panel-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.55;
}
.hero-panel-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}
.hero-metric {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px 12px;
    text-align: center;
}
.hero-metric-value {
    display: block;
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 6px;
}
.hero-metric-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--text-muted);
    line-height: 1.35;
}
.hero-panel-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8125rem;
    color: var(--text-muted);
}
.hero-panel-tag {
    background: var(--primary-light);
    color: var(--primary);
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Hero dual panel */
.hero-dual-panel {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.hero-panel-re { border-top: 3px solid #0066ff; }
.hero-panel-dm { border-top: 3px solid #ea580c; }
.hero-panel-icon.re { background: linear-gradient(135deg, #0066ff, #0044aa); box-shadow: 0 8px 20px rgba(0, 102, 255, 0.25); }
.hero-panel-icon.dm { background: linear-gradient(135deg, #ea580c, #c2410c); box-shadow: 0 8px 20px rgba(234, 88, 12, 0.25); }
.hero-panel-label.marketing { color: #ea580c; }
.hero-panel-glow.dm { background: radial-gradient(circle, rgba(234, 88, 12, 0.12), transparent 70%); }
.hero-panel-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--primary);
    margin-top: 4px;
    transition: gap var(--transition);
}
.hero-panel-dm .hero-panel-link { color: #ea580c; }
.hero-panel-link:hover { gap: 12px; color: var(--primary-dark); }
.hero-panel-dm .hero-panel-link:hover { color: #c2410c; }
.hero-dual-panel .hero-panel-metrics { grid-template-columns: repeat(2, 1fr); }

/* Dual path section — premium cards */
.dual-path-section {
    padding: 72px 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
}
.dual-path-header {
    max-width: 560px;
    margin: 0 auto 48px;
}
.dual-path-header .section-title { margin-bottom: 12px; }
.dual-path-subtitle {
    color: var(--text-muted);
    font-size: 1.0625rem;
    line-height: 1.65;
    margin: 0;
}

.path-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 24px rgba(10, 22, 40, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.path-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(10, 22, 40, 0.12);
}

.path-card-top {
    position: relative;
    padding: 36px 32px 32px;
    display: flex;
    align-items: center;
    gap: 18px;
}
.path-card-re .path-card-top {
    background: linear-gradient(135deg, #0066ff 0%, #0044aa 100%);
}
.path-card-dm .path-card-top {
    background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
}
.path-card-top::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.12) 0%, transparent 50%);
    pointer-events: none;
}
.path-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}
.path-card-badge {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    z-index: 1;
}

.path-card-body {
    padding: 32px 32px 36px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.path-card-body h3 {
    font-size: 1.375rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    color: var(--text);
    line-height: 1.3;
}
.path-card-body > p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.65;
    margin-bottom: 24px;
}

.path-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    flex: 1;
}
.path-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.9375rem;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}
.path-features li:last-child { border-bottom: none; }
.path-features li i {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.5625rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.path-card-re .path-features li i {
    background: rgba(0, 102, 255, 0.1);
    color: #0066ff;
}
.path-card-dm .path-features li i {
    background: rgba(234, 88, 12, 0.1);
    color: #ea580c;
}

.path-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.25s ease;
    margin-top: auto;
}
.path-card-btn i { transition: transform 0.25s ease; font-size: 0.8125rem; }
.path-card-btn:hover i { transform: translateX(4px); }
.path-btn-re {
    background: #0066ff;
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(0, 102, 255, 0.3);
}
.path-btn-re:hover {
    background: #0052cc;
    color: #fff !important;
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.4);
}
.path-btn-dm {
    background: #ea580c;
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(234, 88, 12, 0.3);
}
.path-btn-dm:hover {
    background: #c2410c;
    color: #fff !important;
    box-shadow: 0 6px 20px rgba(234, 88, 12, 0.4);
}

@media (max-width: 575.98px) {
    .dual-path-section { padding: 48px 0; }
    .path-card-top { padding: 28px 24px 24px; }
    .path-card-body { padding: 24px 24px 28px; }
    .path-card-icon { width: 52px; height: 52px; font-size: 1.25rem; }
}

@media (max-width: 991.98px) {
    .hero-section { padding: 48px 0 40px; }
    .hero-panel { margin-top: 8px; }
    .hero-panel-metrics { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 575.98px) {
    .hero-panel-metrics { grid-template-columns: 1fr; }
    .hero-metric { display: flex; align-items: center; justify-content: space-between; text-align: left; padding: 14px 16px; }
    .hero-metric-value { margin-bottom: 0; font-size: 1.25rem; }
}

/* Buttons - sentence case */
.btn { text-transform: none !important; letter-spacing: 0 !important; }

.trust-bar {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-card);
    padding: 28px 0;
}
.trust-bar-label {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 20px;
}
.trust-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 32px 48px;
}
.trust-logos span {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-muted);
    opacity: 0.5;
    letter-spacing: -0.02em;
}

/* ── Sections ── */
.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary);
    margin-bottom: 12px;
}
.section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.15;
}
.section-subtitle {
    color: var(--text-muted);
    font-size: 1.0625rem;
    max-width: 560px;
    line-height: 1.7;
}

/* ── Service cards ── */
.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    height: 100%;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform var(--transition);
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 102, 255, 0.2);
}
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 20px;
}
.service-icon.realestate { background: #e8f1ff; color: #0066ff; }
.service-icon.marketing { background: #fef3e8; color: #ea580c; }
.service-icon.webdev { background: #e6faf5; color: #059669; }
.service-card h4 { font-weight: 700; font-size: 1.125rem; margin-bottom: 10px; }
.service-card p { color: var(--text-muted); font-size: 0.9375rem; margin-bottom: 20px; line-height: 1.65; }
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--primary);
}
.service-link i { transition: transform var(--transition); }
.service-link:hover i { transform: translateX(4px); }

/* ── What we do ── */
.section-alt {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.what-we-do-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px 24px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    height: 100%;
    transition: all var(--transition);
}
.what-we-do-item:hover {
    border-color: rgba(0, 102, 255, 0.25);
    box-shadow: var(--shadow);
}
.what-we-do-item i {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}
.what-we-do-item strong { display: block; font-size: 0.9375rem; margin-bottom: 4px; }

/* ── Product cards ── */
.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.product-visual {
    aspect-ratio: 16/10;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.product-visual-icon {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    z-index: 1;
}
.product-visual-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.15;
    background-image: radial-gradient(circle at 20% 80%, #fff 1px, transparent 1px);
    background-size: 20px 20px;
}
.product-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.product-category {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    margin-bottom: 8px;
}
.product-card-title {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--text);
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-card-desc {
    color: var(--text-muted);
    font-size: 0.875rem;
    flex: 1;
    margin-bottom: 16px;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-price { font-size: 1.125rem; font-weight: 800; color: var(--text); }
.product-price .old-price {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-decoration: line-through;
    font-weight: 500;
    margin-left: 8px;
}
.product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #fff;
    color: var(--text);
    font-size: 10px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
    box-shadow: var(--shadow);
}
.product-badge.sale { background: #dc2626; color: #fff; }
.product-badge.featured { background: var(--primary); color: #fff; }
.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    margin-top: auto;
}
.btn-add-cart {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--bg);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
}
.btn-add-cart:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

@media (max-width: 991.98px) {
    .products-grid { display: flex; flex-direction: column; gap: 14px; }
    .product-card { flex-direction: row; }
    .product-visual { width: 110px; aspect-ratio: unset; min-height: 110px; flex-shrink: 0; }
    .product-visual-icon { font-size: 1.5rem; }
    .product-card-body { padding: 14px 16px; }
    .product-card-desc { display: none; }
    .product-card-footer { border-top: none; padding-top: 0; }
}

@media (min-width: 992px) {
    .products-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}
@media (min-width: 1200px) {
    .products-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ── Process ── */
.process-step {
    text-align: center;
    padding: 24px 16px;
}
.process-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-weight: 800;
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.process-step h5 { font-weight: 700; font-size: 1rem; margin-bottom: 8px; }
.process-step p { color: var(--text-muted); font-size: 0.875rem; margin: 0; }

/* ── Testimonials ── */
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    height: 100%;
}
.testimonial-stars { color: #fbbf24; font-size: 0.875rem; margin-bottom: 16px; }
.testimonial-text { color: var(--text-muted); font-size: 0.9375rem; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.testimonial-author strong { display: block; font-size: 0.9375rem; }
.testimonial-author small { color: var(--text-muted); }

/* ── Page header ── */
.page-header {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    padding: 32px 0 28px;
    margin-bottom: 32px;
}
.page-header h1 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; margin: 0 0 6px; }
.page-header p { color: var(--text-muted); margin: 0; font-size: 0.9375rem; }
.breadcrumb { margin-bottom: 12px; font-size: 0.8125rem; }
.breadcrumb-item a { color: var(--text-muted); }
.breadcrumb-item.active { color: var(--text-muted); }

/* ── Forms ── */
.form-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
}
.form-control, .form-select {
    background: var(--bg) !important;
    border: 1px solid var(--border) !important;
    color: var(--text) !important;
    border-radius: var(--radius) !important;
    padding: 13px 16px !important;
    font-size: 0.9375rem !important;
}
.form-control:focus, .form-select:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.12) !important;
}
.form-label { font-weight: 600; font-size: 0.875rem; color: var(--text); margin-bottom: 8px; }

/* ── Buttons ── */
.btn-primary {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    border-radius: var(--radius) !important;
    font-weight: 600 !important;
    font-size: 0.9375rem !important;
    padding: 12px 24px !important;
    box-shadow: 0 2px 8px rgba(0, 102, 255, 0.25);
    transition: all var(--transition) !important;
}
.btn-primary:hover {
    background: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 102, 255, 0.35);
}
.btn-outline-primary {
    border: 1.5px solid var(--primary) !important;
    color: var(--primary) !important;
    border-radius: var(--radius) !important;
    font-weight: 600 !important;
    background: transparent !important;
}
.btn-outline-primary:hover {
    background: var(--primary) !important;
    color: #fff !important;
}
.btn-dark-custom {
    background: var(--secondary) !important;
    border-color: var(--secondary) !important;
    color: #fff !important;
    border-radius: var(--radius) !important;
    font-weight: 600 !important;
    padding: 12px 24px !important;
}
.btn-lg-touch { min-height: 50px; padding-left: 28px !important; padding-right: 28px !important; }

/* ── Cart ── */
.cart-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    align-items: center;
}
.cart-item-visual {
    width: 88px;
    height: 66px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
    font-size: 1.25rem;
}
.cart-summary {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    position: sticky;
    top: 100px;
    box-shadow: var(--shadow-sm);
}

/* ── Profile ── */
.profile-layout { display: flex; gap: 28px; }
.profile-sidebar {
    width: 260px;
    flex-shrink: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 12px;
    height: fit-content;
    position: sticky;
    top: 100px;
}
.profile-sidebar .nav-link {
    color: var(--text-muted);
    padding: 12px 16px;
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.profile-sidebar .nav-link.active,
.profile-sidebar .nav-link:hover {
    background: var(--primary-light);
    color: var(--primary);
}
@media (max-width: 991.98px) {
    .profile-sidebar { display: none; }
    .profile-tabs-mobile { display: flex; overflow-x: auto; gap: 8px; margin-bottom: 24px; }
}

/* ── FAQ ── */
.accordion-item {
    background: var(--bg-card) !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--radius-md) !important;
    margin-bottom: 10px;
    overflow: hidden;
}
.accordion-button {
    background: var(--bg-card) !important;
    color: var(--text) !important;
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 18px 22px !important;
    box-shadow: none !important;
}
.accordion-button:not(.collapsed) { color: var(--primary) !important; }
.accordion-body { color: var(--text-muted); font-size: 0.9375rem; line-height: 1.7; padding: 0 22px 20px !important; }

.order-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 16px;
}

/* ── Footer ── */
.site-footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 64px 0 32px;
    margin-top: 0;
}
.site-footer h5, .site-footer h6 { color: #fff; font-weight: 700; }
.site-footer p { color: var(--footer-text); line-height: 1.7; font-size: 0.9375rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a, .footer-links li { color: var(--footer-text); font-size: 0.875rem; transition: color var(--transition); }
.footer-links a:hover { color: #fff; }
.footer-divider { border-color: rgba(255, 255, 255, 0.08); margin: 40px 0 24px; }
.footer-bottom { font-size: 0.8125rem; color: var(--footer-text); }
.social-links { display: flex; gap: 10px; margin-top: 20px; }
.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    font-size: 0.9rem;
}
.social-links a:hover { background: var(--primary); }

/* ── Chatbot ── */
.chatbot-widget { position: fixed; bottom: 92px; right: 20px; z-index: 1040; }
@media (min-width: 992px) { .chatbot-widget { bottom: 28px; } }
.chatbot-toggle {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--primary);
    border: none;
    color: #fff;
    font-size: 1.25rem;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.35);
    transition: transform var(--transition);
}
.chatbot-toggle:hover { transform: scale(1.06); }
.chatbot-panel {
    display: none;
    position: absolute;
    bottom: 66px;
    right: 0;
    width: 340px;
    max-width: calc(100vw - 32px);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}
.chatbot-panel.open { display: block; animation: slideUp 0.3s ease; }
@keyframes slideUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.chatbot-header {
    background: var(--secondary);
    color: #fff;
    padding: 16px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 0.9375rem;
}
.chatbot-messages { height: 280px; overflow-y: auto; padding: 16px; }
.chat-msg { padding: 11px 15px; border-radius: 14px; margin-bottom: 10px; font-size: 0.875rem; max-width: 88%; line-height: 1.5; }
.chat-msg.bot { background: var(--bg-soft); color: var(--text); border-bottom-left-radius: 4px; }
.chat-msg.user { background: var(--primary); color: #fff; margin-left: auto; border-bottom-right-radius: 4px; }
.chatbot-input { display: flex; padding: 14px; border-top: 1px solid var(--border); gap: 10px; }
.chatbot-input input {
    flex: 1;
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 10px 18px;
    background: var(--bg);
    color: var(--text);
    outline: none;
    font-size: 0.875rem;
}
.chatbot-input button {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary);
    border: none;
    color: #fff;
    cursor: pointer;
}

/* ── CTA ── */
.cta-section {
    background: var(--secondary);
    border-radius: var(--radius-xl);
    padding: clamp(40px, 6vw, 64px);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.3), transparent 70%);
    pointer-events: none;
}
.cta-section h2 { font-weight: 800; font-size: clamp(1.5rem, 3vw, 2.25rem); margin-bottom: 12px; position: relative; }
.cta-section p { opacity: 0.8; margin-bottom: 28px; max-width: 980px; margin-left: auto; margin-right: auto; position: relative; }
.cta-section .btn-light {
    background: #fff !important;
    color: var(--secondary) !important;
    font-weight: 600 !important;
    border-radius: var(--radius) !important;
}
.cta-section .btn-outline-light {
    border: 1.5px solid rgba(255,255,255,0.4) !important;
    color: #fff !important;
    border-radius: var(--radius) !important;
    font-weight: 600 !important;
}



/* ── Product detail ── */
.product-detail-visual {
    border-radius: var(--radius-xl);
    aspect-ratio: 16/10;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.product-detail-visual i { font-size: 4rem; color: rgba(255,255,255,0.9); z-index: 1; }
.feature-list { list-style: none; padding: 0; margin: 0; }
.feature-list li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.9375rem;
    border-bottom: 1px solid var(--border);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li i { color: var(--accent); width: 20px; }

.filter-chips { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 8px; margin-bottom: 28px; }
.filter-chip {
    padding: 9px 18px;
    border-radius: 50px;
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text-muted);
    font-size: 0.8125rem;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
    transition: all var(--transition);
}
.filter-chip.active, .filter-chip:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.empty-state { text-align: center; padding: 72px 24px; color: var(--text-muted); }
.empty-state i { font-size: 3.5rem; opacity: 0.25; margin-bottom: 16px; }

.fade-in { animation: fadeIn 0.7s ease forwards; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.stagger-1 { animation-delay: 0.08s; opacity: 0; }
.stagger-2 { animation-delay: 0.16s; opacity: 0; }
.stagger-3 { animation-delay: 0.24s; opacity: 0; }

.offcanvas { background: var(--bg-card) !important; color: var(--text); }
.dropdown-menu { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); box-shadow: var(--shadow-lg); padding: 8px; }
.dropdown-item { color: var(--text); border-radius: 8px; padding: 10px 14px; font-size: 0.9375rem; }
.dropdown-item:hover { background: var(--primary-light); color: var(--primary); }

.input-group-text { background: var(--bg) !important; border-color: var(--border) !important; color: var(--text-muted) !important; }

/* ── Top Bar (ClouDigital / agency style) ── */
.top-bar {
    background: var(--secondary);
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.8125rem;
    padding: 10px 0;
}
.top-bar a { color: rgba(255, 255, 255, 0.85); margin-right: 24px; }
.top-bar a:hover { color: #fff; }
.top-bar i { opacity: 0.7; }

/* ── Mega Menu (Mind Manthan style) ── */
.navbar-brand span small {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    line-height: 1;
}
.mega-menu {
    min-width: 640px;
    border: 1px solid var(--border) !important;
    border-radius: var(--radius-lg) !important;
    box-shadow: var(--shadow-lg) !important;
    margin-top: 12px !important;
    overflow: hidden;
}
.mega-menu-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1.1fr;
    gap: 0;
}
.mega-col {
    padding: 24px;
    border-right: 1px solid var(--border);
}
.mega-col:last-child { border-right: none; }
.mega-col h6 {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 14px;
}
.mega-col a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    color: var(--text);
    font-size: 0.9375rem;
    font-weight: 500;
}
.mega-col a i { color: var(--primary); width: 18px; }
.mega-col a:hover { color: var(--primary); }
.mega-cta { background: var(--bg-soft); }
.mega-cta p { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 14px; line-height: 1.6; }
.nav-cta { font-weight: 600 !important; border-radius: 8px !important; }

/* Mobile drawer */
.mobile-drawer .offcanvas-body { display: flex; flex-direction: column; }
.mobile-drawer-cta { margin-top: auto; padding-top: 24px; border-top: 1px solid var(--border); }
.mobile-submenu-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border: none;
    background: none;
    color: var(--text);
    font-weight: 500;
    border-radius: var(--radius-md);
    cursor: pointer;
}
.mobile-submenu-toggle i:first-child { width: 20px; color: var(--primary); }
.mobile-submenu-list {
    list-style: none;
    padding: 0 0 0 50px;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.mobile-submenu.open .mobile-submenu-list { max-height: 200px; }
.mobile-submenu.open .mobile-submenu-toggle .fa-chevron-down { transform: rotate(180deg); }
.mobile-submenu-list a {
    display: block;
    padding: 10px 0;
    color: var(--text-muted);
    font-size: 0.9375rem;
}
.mobile-submenu-list a:hover { color: var(--primary); }

/* Logo marquee (Mind Manthan) */
.logo-marquee {
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-card);
    padding: 20px 0;
}
.logo-marquee-track {
    display: flex;
    gap: 48px;
    animation: marquee 28s linear infinite;
    width: max-content;
}
.logo-marquee-track span {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-muted);
    opacity: 0.45;
    white-space: nowrap;
    letter-spacing: -0.02em;
}
@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Stats band (Marquey / ClouDigital) */
.stats-band {
    background: var(--secondary);
    color: #fff;
    padding: 48px 0;
}
.stat-box { text-align: center; padding: 16px; }
.stat-box .stat-num {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
    color: #fff;
}
.stat-box .stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
}

/* About page */
.about-visual-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    box-shadow: var(--shadow);
}
.about-visual-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

/* Service blocks (Mind Manthan award services) */
.service-block {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    height: 100%;
    transition: all var(--transition);
}
.service-block:hover {
    border-color: rgba(0, 102, 255, 0.3);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.service-block-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 20px;
}
.service-block h4 { font-weight: 700; font-size: 1.125rem; margin-bottom: 10px; }
.service-block p { color: var(--text-muted); font-size: 0.9375rem; margin-bottom: 16px; line-height: 1.65; }
.service-block-link { font-weight: 600; font-size: 0.875rem; color: var(--primary); }

/* Showcase / Case studies */
.showcase-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    transition: all var(--transition);
}
.showcase-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.showcase-visual {
    height: 200px;
    display: flex;
    align-items: flex-end;
    padding: 24px;
    color: #fff;
    position: relative;
}
.showcase-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}
.showcase-num {
    position: absolute;
    top: 16px;
    left: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    opacity: 0.8;
    z-index: 1;
}
.showcase-visual h4 { position: relative; z-index: 1; font-weight: 700; margin: 0; font-size: 1.125rem; }
.showcase-body { padding: 22px 24px; }
.showcase-body p { color: var(--text-muted); font-size: 0.875rem; margin: 0 0 12px; }
.showcase-tag { font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--primary); }

/* Why choose us */
.why-section {
    background: var(--bg-soft);
    border-radius: var(--radius-xl);
    padding: clamp(32px, 5vw, 56px);
}
.why-list { list-style: none; padding: 0; margin: 0; }
.why-list li {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9375rem;
    color: var(--text-muted);
}
.why-list li:last-child { border-bottom: none; }
.why-list li i { color: var(--accent); margin-top: 3px; }

/* Tech stack pills */
.tech-stack { display: flex; flex-wrap: wrap; gap: 10px; }
.tech-pill {
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* Featured quote */
.featured-quote {
    background: var(--bg-card);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    padding: 32px 36px;
    box-shadow: var(--shadow);
}
.featured-quote blockquote {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.75;
    margin: 0 0 20px;
}

/* Contact CTA split (Mind Manthan / Marquey) */
.contact-cta-section {
    background: var(--secondary);
    color: #fff;
    padding: clamp(48px, 6vw, 80px) 0;
}
.contact-cta-section h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
}
.contact-cta-section p { color: rgba(255,255,255,0.75); margin-bottom: 24px; }
.contact-info-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.85);
}
.contact-info-item i {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-mini-form {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px;
    color: var(--text);
}
.contact-mini-form h5 { font-weight: 700; margin-bottom: 20px; }

/* Footer mobile visible */
.site-footer { padding: 48px 0 28px; margin-bottom: 0; }
@media (max-width: 991.98px) {
    .site-footer { padding-bottom: 100px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .mega-menu { min-width: auto; }
}
@media (min-width: 992px) {
    .desktop-navbar { top: 0; }
}

.section-head-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
    margin-bottom: 40px;
}

.page-hero-contact {
    background: var(--secondary);
    color: #fff;
    padding: 40px 0 48px;
    margin-bottom: 40px;
}
.page-hero-contact h1 { font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 800; margin-bottom: 8px; }
.page-hero-contact p { color: rgba(255,255,255,0.75); margin: 0; }
.page-hero-contact .breadcrumb-item a { color: rgba(255,255,255,0.6); }
.page-hero-contact .breadcrumb-item.active { color: rgba(255,255,255,0.5); }
.page-hero-contact .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }
.form-card .contact-info-item i { background: var(--primary-light) !important; color: var(--primary) !important; }
.service-detail-visual {
    border-radius: var(--radius-xl);
    aspect-ratio: 16/10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 4rem;
    box-shadow: var(--shadow-lg);
}


.service-detail-block { scroll-margin-top: 100px; }
