/* ==========================================================================
   Rishyan Consulting Group - Core Vanilla CSS Design System
   Theme: Authoritative Corporate (Deep Navy Blue & Gold)
   Inspired by: https://dangote.com/
   ========================================================================== */

/* Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap'); 
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
/* CSS Custom Properties / Variables */
:root {
    --primary: #0A0D1A;         /* Deep Navy Black */
    --primary-light: #151A33;   /* Lighter Navy for backgrounds */
    --accent: #C3963C;          /* Premium Gold Accent */
    --accent-hover: #E1B44B;    /* Bright Gold Hover */
    --bg-light: #FAF9F6;        /* Light Cream/Sand Section BG */
    --bg-white: #FFFFFF;
    --text-dark: #1E2022;       /* Heading/Body Text Dark */
    --text-muted: #6E707A;      /* Secondary Text Gray */
    --text-light: #E2E4E8;      /* White/Off-white body text */
    --border-color: #E2E4E8;    /* Light borders */
    --border-dark: rgba(255,255,255,0.12); /* Dark sections borders */
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Design tokens */
    --radius: 4px;              /* Clean, corporate sharp-edge style */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.04);
    --shadow-md: 0 8px 16px rgba(0,0,0,0.06);
    --shadow-lg: 0 16px 32px rgba(10,13,26,0.1);
    
    /* Containers */
    --container-width: 1200px;
}

/* Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

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

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
    line-height: 1.25;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #F1F1F1;
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: var(--radius);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* Layout Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.section {
    padding: 80px 0;
    position: relative;
}

.section.bg-light {
    background-color: var(--bg-light);
}

.section.bg-dark {
    background-color: var(--primary);
    color: var(--text-light);
}

.section.bg-dark h2 {
    color: var(--bg-white);
}

/* Flex / Grid Helper Classes */
.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Header Text Accent (Dangote style) */
.section-badge-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.section-badge-line {
    display: inline-block;
    width: 24px;
    height: 2px;
    background-color: var(--accent);
}

.section-badge {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    color: var(--accent);
    text-transform: uppercase;
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 600px;
    margin-bottom: 48px;
    font-weight: 400;
}

.section.bg-dark .section-subtitle {
    color: var(--text-light);
    opacity: 0.8;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--accent);
    color: var(--bg-white);
}

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

.btn-secondary {
    background-color: transparent;
    border-color: var(--bg-white);
    color: var(--bg-white);
}

.btn-secondary:hover {
    background-color: var(--bg-white);
    color: var(--primary);
    transform: translateY(-1px);
}

.btn-dark {
    background-color: var(--primary);
    color: var(--bg-white);
}

.btn-dark:hover {
    background-color: var(--accent);
    transform: translateY(-1px);
}

.btn-outline-accent {
    background-color: transparent;
    border-color: var(--accent);
    color: var(--accent);
}

.btn-outline-accent:hover {
    background-color: var(--accent);
    color: var(--bg-white);
}

/* TOP UTILITY BAR */
.top-bar {
    background-color: var(--primary);
    color: var(--bg-white);
    font-size: 12px;
    border-bottom: 1px solid var(--border-dark);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 40px;
    padding-top: 4px;
    padding-bottom: 4px;
}

.top-bar-contact {
    display: flex;
    gap: 24px;
    align-items: center;
}

.top-bar-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    opacity: 0.9;
}

.top-bar-link:hover {
    color: var(--accent);
    opacity: 1;
}

.top-bar-link i {
    width: 14px;
    height: 14px;
    color: var(--accent);
}

.top-bar-lang {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-switcher-pill {
    display: inline-flex;
    background-color: rgba(255,255,255,0.06);
    padding: 2px;
    border-radius: var(--radius);
    border: 1px solid var(--border-dark);
}

.lang-btn {
    background: none;
    border: none;
    color: rgba(255,255,255,0.6);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 2px;
    cursor: pointer;
    transition: var(--transition);
}

.lang-btn.active {
    background-color: var(--accent);
    color: var(--bg-white);
}

.lang-btn:hover:not(.active) {
    color: var(--bg-white);
}

/* HEADER NAVIGATION */
.header {
    background-color: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid #EAEAEA;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.header.shrink {
    box-shadow: var(--shadow-md);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    transition: var(--transition);
}

.header.shrink .container {
    height: 65px;
}

/* Logo Styles */
.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    border-radius: 2px;
}

.header.shrink .logo-img {
    height: 40px;
}

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

.brand-name {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 18px;
    letter-spacing: -0.01em;
    color: var(--primary);
    line-height: 1;
}

.brand-sub {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.16em;
    color: var(--accent);
    line-height: 1.4;
    text-transform: uppercase;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-item {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
    position: relative;
    padding: 8px 0;
}

.nav-item:hover {
    color: var(--accent);
}

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

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

/* Mobile Controls */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-toggle-btn {
    display: none;
    background: none;
    border: none;
    color: var(--primary);
    padding: 8px;
    cursor: pointer;
}

.mobile-toggle-btn i {
    width: 24px;
    height: 24px;
}

.mobile-lang-toggle {
    display: none;
    width: 32px;
    height: 32px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    background: none;
    font-size: 11px;
    font-weight: 800;
    color: var(--primary);
    cursor: pointer;
}

/* MOBILE DRAWER */
.mobile-drawer-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(10,13,26,0.6);
    backdrop-filter: blur(4px);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.mobile-drawer-overlay.opacity-100 {
    opacity: 1;
    pointer-events: auto;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 300px;
    max-width: 85vw;
    background-color: var(--primary);
    color: var(--bg-white);
    padding: 32px;
    z-index: 1001;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-drawer:not(.translate-x-full) {
    transform: translateX(0);
}

.mobile-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-dark);
    padding-bottom: 16px;
    margin-bottom: 32px;
}

.mobile-drawer-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--bg-white);
}

.mobile-close-btn {
    background: none;
    border: none;
    color: var(--bg-white);
    cursor: pointer;
    padding: 4px;
}

.mobile-close-btn:hover {
    color: var(--accent);
}

.mobile-drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-link {
    font-size: 16px;
    font-weight: 600;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: var(--bg-white);
}

.mobile-nav-link:hover {
    color: var(--accent);
    padding-left: 4px;
}

.mobile-drawer .btn {
    margin-top: 24px;
    width: 100%;
}

.mobile-drawer-footer {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid var(--border-dark);
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* HERO SECTION */
.hero {
    position: relative;
    min-height: 80vh;
    background-color: var(--primary);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px 0;
}

.hero-bg-wrapper {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.28;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary) 40%, rgba(10, 13, 26, 0.8) 70%, transparent 100%);
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 48px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-badge-pill {
    background-color: rgba(195,150,60,0.15);
    border: 1px solid rgba(195,150,60,0.3);
    color: var(--accent-hover);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--bg-white);
    text-transform: uppercase;
    margin-bottom: 24px;
    border-left: 4px solid var(--accent);
    padding-left: 20px;
}

.hero-desc {
    font-size: 17px;
    font-weight: 300;
    color: rgba(255,255,255,0.8);
    max-width: 620px;
    margin-bottom: 36px;
    line-height: 1.65;
}

.hero-actions-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Floating Market Panel */
.market-panel {
    background-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.market-panel-header {
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 16px;
    margin-bottom: 20px;
}

.market-panel-header i {
    color: var(--accent);
    width: 20px;
    height: 20px;
}

.market-panel-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-hover);
}

.market-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.market-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 8px;
    font-size: 13px;
}

.market-row:last-child {
    border: none;
    padding: 0;
}

.market-lbl {
    color: rgba(255,255,255,0.6);
}

.market-val {
    font-weight: 700;
    color: #4ade80; /* bright green for upward trends */
    display: flex;
    align-items: center;
    gap: 4px;
}

.market-val.stable {
    color: #a1a1aa;
}

.market-disclaimer {
    margin-top: 20px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 11px;
    font-style: italic;
    color: rgba(255,255,255,0.5);
}

/* MARQUEE TICKER */
.ticker-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #05060A;
    border-top: 1px solid var(--border-dark);
    padding: 12px 0;
    overflow: hidden;
    z-index: 4;
}

.ticker-wrap {
    display: flex;
    width: max-content;
}

.ticker-item-list {
    display: flex;
    gap: 48px;
    padding-right: 48px;
    white-space: nowrap;
    animation: tickerRun 35s linear infinite;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.7);
}

.ticker-item i {
    width: 14px;
    height: 14px;
    color: var(--accent);
}

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

/* TRUST STATS SECTION */
.stats-section {
    border-bottom: 1px solid #EAEAEA;
    background-color: var(--bg-light);
    padding: 48px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-card {
    background-color: var(--bg-white);
    border-left: 4px solid var(--accent);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.stat-card:nth-child(even) {
    border-left-color: var(--primary);
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.stat-bg-icon {
    position: absolute;
    right: -10px;
    bottom: -10px;
    color: rgba(10,13,26,0.03);
    pointer-events: none;
}

.stat-bg-icon i {
    width: 80px;
    height: 80px;
}

.stat-num {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 4px;
    font-family: var(--font-heading);
}

.stat-title {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-desc {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

/* ABOUT SECTION PREVIEW */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-border-accent-top {
    position: absolute;
    top: -12px;
    left: -12px;
    width: 64px;
    height: 64px;
    border-top: 4px solid var(--accent);
    border-left: 4px solid var(--accent);
}

.about-border-accent-bottom {
    position: absolute;
    bottom: -12px;
    right: -12px;
    width: 64px;
    height: 64px;
    border-bottom: 4px solid var(--primary);
    border-right: 4px solid var(--primary);
}

.about-image-card {
    position: relative;
    box-shadow: var(--shadow-lg);
    background-color: #EEE;
    overflow: hidden;
}

.about-image-card img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-image-card:hover img {
    transform: scale(1.04);
}

.about-experience-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background-color: rgba(255,255,255,0.96);
    backdrop-filter: blur(4px);
    border-left: 4px solid var(--accent);
    padding: 16px 20px;
    box-shadow: var(--shadow-md);
}

.about-exp-lbl {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 4px;
    letter-spacing: 0.1em;
}

.about-exp-title {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.3;
}

.about-desc {
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 400;
}

.about-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #EAEAEA;
    margin-bottom: 24px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
}

.about-feature i {
    color: var(--accent);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.read-more-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
}

.read-more-link:hover {
    color: var(--primary);
}

.read-more-link i {
    width: 14px;
    height: 14px;
    transition: transform 0.2s ease;
}

.read-more-link:hover i {
    transform: translateX(4px);
}

/* MISSION & VISION SECTION (Split Screen style) */
.vm-grid {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 64px;
    align-items: center;
}

.vm-tab-control-border {
    display: flex;
    gap: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 4px;
    margin-bottom: 24px;
}

.vm-tab-btn {
    background: none;
    border: none;
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding-bottom: 8px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.vm-tab-btn.active {
    color: var(--accent-hover);
    border-bottom-color: var(--accent);
}

.vm-tab-btn:hover:not(.active) {
    color: var(--bg-white);
}

.vm-tab-content-wrapper {
    min-height: 120px;
    display: flex;
    align-items: center;
}

.vm-tab-pane {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    animation: fadeIn 0.4s ease-out;
}

.vm-tab-pane.hidden {
    display: none;
}

.vm-tab-icon-box {
    background-color: rgba(195,150,60,0.15);
    border: 1px solid rgba(195,150,60,0.3);
    color: var(--accent-hover);
    padding: 12px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.vm-tab-icon-box i {
    width: 24px;
    height: 24px;
}

.vm-tab-text {
    font-size: 17px;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.6;
}

/* Quote Graphic Box */
.vm-graphic-box {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 40px;
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-lg);
}

.vm-graphic-bg-letters {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 80px;
    font-weight: 900;
    color: rgba(255,255,255,0.03);
    font-family: var(--font-heading);
    user-select: none;
}

.vm-quote-icon {
    color: var(--accent);
    opacity: 0.6;
    margin-bottom: 20px;
}

.vm-quote-text {
    font-size: 16px;
    font-style: italic;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    margin-bottom: 24px;
}

.vm-quote-author-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.vm-quote-line {
    width: 24px;
    height: 1px;
    background-color: var(--accent);
}

.vm-quote-author {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-hover);
}

/* INTERACTIVE ROI CALCULATOR */
.calc-grid {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 40px;
}

.calc-inputs-card {
    background-color: var(--bg-white);
    border: 1px solid #EAEAEA;
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.calc-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.calc-lbl {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
}

.calc-readout {
    font-size: 16px;
    font-weight: 700;
    color: var(--accent);
}

/* Range input styled custom */
.calc-range-input {
    width: 100%;
    height: 6px;
    background: #E8E8EC;
    border-radius: 4px;
    outline: none;
    -webkit-appearance: none;
}

.calc-range-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent);
    cursor: pointer;
    transition: transform 0.1s ease;
    box-shadow: 0 0 10px rgba(195,150,60,0.4);
}

.calc-range-input::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.calc-min-max-row {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 11px;
    color: var(--text-muted);
}

.calc-selectors-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.calc-select-group {
    display: flex;
    flex-direction: column;
}

.calc-select {
    padding: 12px;
    border: 1px solid #D5D7DC;
    background-color: var(--bg-light);
    color: var(--primary);
    font-weight: 600;
    font-size: 13px;
    border-radius: var(--radius);
    outline: none;
    cursor: pointer;
}

.calc-select:focus {
    border-color: var(--primary);
}

/* Projections Output card */
.calc-projections-card {
    background-color: var(--primary-light);
    color: var(--bg-white);
    padding: 40px;
    border: 1px solid var(--border-dark);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.calc-proj-header {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 24px;
    display: block;
}

.calc-returns-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    border-bottom: 1px solid var(--border-dark);
    padding-bottom: 24px;
    margin-bottom: 24px;
}

.calc-return-lbl {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 6px;
    display: block;
}

.calc-return-val {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--bg-white);
}

.calc-return-val.accented {
    color: var(--accent-hover);
}

.calc-total-box {
    margin-bottom: 24px;
}

.calc-total-lbl {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 6px;
    display: block;
}

.calc-total-val {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: var(--bg-white);
    line-height: 1;
}

.calc-total-usd {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    margin-top: 4px;
    display: block;
}

/* SVG Chart wrapper */
.calc-chart-box {
    background-color: rgba(5,6,10,0.4);
    border: 1px solid var(--border-dark);
    padding: 16px;
    border-radius: var(--radius);
    margin-bottom: 24px;
}

.calc-advisor-box {
    font-size: 12px;
    color: var(--text-light);
    opacity: 0.85;
    font-style: italic;
    border-top: 1px solid var(--border-dark);
    padding-top: 20px;
    margin-bottom: 28px;
    line-height: 1.5;
}

/* SERVICES SECTION */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background-color: var(--bg-white);
    border: 1px solid #EBEBEB;
    padding: 40px;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: transparent;
    border-bottom: 3px solid var(--accent);
    box-shadow: var(--shadow-md);
}

.service-icon-box {
    width: 48px;
    height: 48px;
    background-color: rgba(10,13,26,0.04);
    border-radius: var(--radius);
    color: var(--primary);
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-card:hover .service-icon-box {
    background-color: rgba(195,150,60,0.12);
    color: var(--accent);
}

.service-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--primary);
    margin-bottom: 12px;
}

.service-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 32px;
    font-weight: 400;
}

.service-btn {
    background: none;
    border: none;
    color: var(--accent);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    padding-top: 16px;
    border-top: 1px solid #F0F0F0;
    width: 100%;
}

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

.service-btn i {
    width: 14px;
    height: 14px;
}

.services-cta-row {
    margin-top: 48px;
    text-align: center;
}

/* CORE VALUES / PILLARS */
.values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.value-card {
    background-color: rgba(255,255,255,0.04);
    border-left: 2px solid rgba(195,150,60,0.3);
    padding: 24px;
    cursor: pointer;
    transition: var(--transition);
}

.value-card:hover, .value-card.active {
    background-color: rgba(255,255,255,0.08);
    border-left-color: var(--accent);
}

.value-num {
    font-size: 11px;
    font-family: monospace;
    color: rgba(195,150,60,0.6);
    margin-bottom: 12px;
    display: block;
}

.value-card:hover .value-num, .value-card.active .value-num {
    color: var(--accent-hover);
}

.value-card-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.value-card-desc {
    font-size: 11px;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
}

.value-detail-box {
    margin-top: 32px;
    background-color: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 24px;
    border-radius: var(--radius);
    animation: fadeIn 0.4s ease-out;
}

.value-detail-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.value-detail-header i {
    color: var(--accent);
    width: 18px;
    height: 18px;
}

.value-detail-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--bg-white);
}

.value-detail-desc {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
}

/* PORTFOLIO / PROJECTS SECTION */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    border-bottom: 1px solid #EAEAEA;
    padding-bottom: 24px;
    margin-bottom: 40px;
}

.filter-btn {
    background-color: var(--bg-light);
    border: none;
    color: var(--primary);
    padding: 10px 20px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active {
    background-color: var(--primary);
    color: var(--bg-white);
}

.filter-btn:hover:not(.active) {
    background-color: #E2E4E8;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.project-card {
    background-color: var(--bg-white);
    border: 1px solid #EAEAEA;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.project-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.project-visual {
    position: relative;
    background-color: #EEE;
    overflow: hidden;
    aspect-ratio: 4/3;
}

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

.project-card:hover .project-visual img {
    transform: scale(1.05);
}

.project-city-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: var(--primary);
    color: var(--bg-white);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 8px;
    border-radius: 2px;
}

.project-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.project-yield-badge {
    color: var(--accent);
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.project-name {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    line-height: 1.3;
}

.project-desc {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
}

.project-actions {
    padding: 0 24px 24px 24px;
}

.project-actions .btn {
    width: 100%;
    padding: 10px 16px;
    font-size: 11px;
}

/* TESTIMONIALS SECTION */
.testimonial-card-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-white);
    border: 1px solid #EAEAEA;
    padding: 48px;
    position: relative;
    box-shadow: var(--shadow-md);
    border-radius: var(--radius);
}

.testimonial-bg-icon {
    position: absolute;
    right: 32px;
    top: 32px;
    color: #F1F1F4;
    pointer-events: none;
}

.testimonial-bg-icon i {
    width: 80px;
    height: 80px;
}

.testimonial-fade-container {
    transition: opacity 0.25s ease;
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 32px;
    font-weight: 300;
}

.testimonial-client-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.client-avatar-initials {
    width: 48px;
    height: 48px;
    background-color: var(--primary);
    color: var(--bg-white);
    border-radius: 50%;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-meta {
    display: flex;
    flex-direction: column;
}

.client-name {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
}

.client-role {
    font-size: 11px;
    color: var(--text-muted);
}

.testimonial-controls {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    max-width: 800px;
    margin: 16px auto 0 auto;
}

.testimonial-arrow-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    background: none;
    color: var(--primary);
    cursor: pointer;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.testimonial-arrow-btn:hover {
    background-color: var(--primary);
    color: var(--bg-white);
    border-color: var(--primary);
}

/* FAQ ACCORDION SECTION */
.faq-accordion-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1px solid #EAEAEA;
    background-color: var(--bg-white);
    border-radius: var(--radius);
    overflow: hidden;
}

.faq-btn {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--primary);
    cursor: pointer;
    transition: var(--transition);
}

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

.faq-question {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding-right: 16px;
}

.faq-btn i {
    width: 20px;
    height: 20px;
    color: var(--primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-answer-pane {
    max-height: 0;
    overflow: hidden;
    background-color: var(--bg-light);
    transition: max-height 0.3s ease-in-out;
}

.faq-answer-text {
    padding: 20px 24px;
    font-size: 13.5px;
    color: var(--text-dark);
    line-height: 1.6;
    font-weight: 400;
}

/* BRIEFING FORM / CONTACT SECTION */
.contact-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 64px;
    align-items: start;
}

.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-card {
    background-color: var(--bg-white);
    border: 1px solid #EAEAEA;
    padding: 20px 24px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-sm);
}

.contact-icon-box-wrapper {
    width: 44px;
    height: 44px;
    background-color: rgba(10,13,26,0.04);
    border-radius: var(--radius);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card-lbl {
    font-size: 9px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 2px;
    display: block;
}

.contact-card-val {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
}

.contact-card-val:hover {
    color: var(--accent);
}

/* Form Styling */
.form-wrapper {
    background-color: var(--bg-white);
    border: 1px solid #EAEAEA;
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.form-layout {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-lbl {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    margin-bottom: 8px;
}

.form-control {
    padding: 12px 16px;
    background-color: var(--bg-light);
    border: 1px solid #D5D7DC;
    color: var(--primary);
    font-weight: 600;
    font-size: 13px;
    border-radius: var(--radius);
    outline: none;
    transition: var(--transition);
}

.form-control::placeholder {
    color: #A0A2AB;
    font-weight: 400;
}

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

textarea.form-control {
    resize: vertical;
    font-family: inherit;
}

.form-wrapper .btn {
    width: 100%;
    padding: 14px 20px;
}

/* FOOTER SECTION */
.footer {
    background-color: var(--primary);
    color: var(--bg-white);
    padding-top: 80px;
    padding-bottom: 40px;
    border-top: 2px solid var(--accent);
}

.footer-main-grid {
    display: grid;
    grid-template-columns: 5fr 3fr 4fr;
    gap: 64px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border-dark);
}

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

.footer .brand-name {
    color: var(--bg-white);
}

.footer-desc {
    font-size: 13.5px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    max-width: 360px;
}

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

.social-btn {
    width: 36px;
    height: 36px;
    background-color: rgba(255,255,255,0.04);
    border-radius: var(--radius);
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-btn:hover {
    background-color: var(--accent);
    color: var(--bg-white);
}

.social-btn i {
    width: 16px;
    height: 16px;
}

.footer-col-title {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-hover);
    margin-bottom: 24px;
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
}

.footer-links-list a:hover {
    color: var(--accent-hover);
    padding-left: 2px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    flex-wrap: wrap;
    gap: 16px;
}

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

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

/* ABOUT PAGE TIMELINE */
.timeline-buttons-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    max-width: 800px;
    margin: 0 auto 32px auto;
}

.timeline-btn {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    color: var(--primary);
    padding: 12px 16px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

.timeline-btn.active {
    background-color: var(--primary);
    color: var(--bg-white);
    border-color: var(--primary);
}

.timeline-btn:hover:not(.active) {
    background-color: var(--bg-light);
}

.timeline-card-display {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-white);
    border: 1px solid #EAEAEA;
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    min-height: 160px;
    display: flex;
    align-items: center;
}

.timeline-pane {
    animation: fadeIn 0.4s ease-out;
}

.timeline-pane.hidden {
    display: none;
}

.timeline-pane-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.timeline-pane-desc {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Leadership / Team section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.team-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.team-visual {
    aspect-ratio: 3/4;
    background-color: #EEE;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-sm);
}

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

.team-card:hover .team-visual img {
    transform: scale(1.03);
}

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

.team-name {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
}

.team-role {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
}

.team-bio {
    font-size: 12.5px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-top: 8px;
}

/* Corporate details for About Page */
.compliance-panel {
    background-color: var(--bg-light);
    border: 1px solid #D5D7DC;
    padding: 32px;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.compliance-header {
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #D5D7DC;
    padding-bottom: 12px;
}

.compliance-header i {
    color: var(--accent);
    width: 24px;
    height: 24px;
}

.compliance-header-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
}

.compliance-info-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-family: monospace;
    font-size: 11px;
    color: #4A4D55;
}

.compliance-row {
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding-bottom: 8px;
}

.compliance-row:last-child {
    border: none;
    padding: 0;
}

.compliance-lbl {
    color: var(--text-muted);
    text-transform: uppercase;
    font-size: 9px;
    font-weight: bold;
    display: block;
    margin-bottom: 2px;
}

.compliance-val {
    font-weight: 700;
    color: var(--primary);
}

.compliance-badge {
    background-color: var(--primary);
    color: var(--bg-white);
    padding: 10px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* MODALS STYLING */
.modal-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(10, 13, 26, 0.7);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    padding: 20px;
}

.modal-overlay:not(.hidden) {
    opacity: 1;
    pointer-events: auto;
}

.modal-overlay.hidden {
    display: none !important;
}

.modal-content {
    background-color: var(--bg-white);
    max-width: 600px;
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transform: scale(0.95);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.modal-overlay:not(.hidden) .modal-content {
    transform: scale(1);
}

.modal-header {
    background-color: var(--primary);
    color: var(--bg-white);
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-dark);
}

.modal-header-title {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-hover);
}

.modal-close-btn {
    background: none;
    border: none;
    color: var(--bg-white);
    cursor: pointer;
    padding: 4px;
}

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

.modal-body {
    padding: 32px;
    overflow-y: auto;
    max-height: 70vh;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.modal-service-subtitle {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 8px;
}

.modal-service-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

.modal-section-title {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    margin-bottom: 12px;
}

.modal-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
}

.modal-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.modal-list li i {
    color: var(--accent);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.modal-summary-box {
    background-color: var(--bg-light);
    border: 1px solid #D5D7DC;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: var(--radius);
}

.modal-summary-lbl {
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 2px;
    display: block;
}

.modal-summary-val {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
}

/* Success Modal specific */
.success-modal-header {
    background-color: var(--accent);
}

.success-icon-wrapper {
    width: 64px;
    height: 64px;
    background-color: #DEF7EC;
    color: #03543F;
    border-radius: 50%;
    font-weight: 800;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-icon-wrapper i {
    width: 32px;
    height: 32px;
}

.success-message-text {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    text-align: center;
}

.success-data-table {
    font-family: monospace;
    font-size: 11.5px;
    background-color: var(--bg-light);
    border: 1px solid #D5D7DC;
    padding: 20px;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: #4A4D55;
    text-align: left;
}

.success-data-row {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding-bottom: 6px;
}

.success-data-row:last-child {
    border: none;
    padding: 0;
}

.success-data-lbl {
    font-weight: normal;
}

.success-data-val {
    font-weight: 700;
    color: var(--primary);
}

.success-data-val.colored {
    color: var(--accent);
}

/* Base animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Micro-interaction translation styles */
.translation-fade-out {
    opacity: 0;
    transition: opacity 0.1s ease;
}

/* RESPONSIVE DESIGN - MEDIA QUERIES */

/* Large Screens (1200px and up) */
@media (min-width: 992px) {
    .hero .container {
        grid-template-columns: 7fr 5fr;
    }
}

/* Medium Screens (Tablets / small desktops, max-width: 992px) */
@media (max-width: 992px) {
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .header .container {
        height: 70px;
    }
    
    .nav-menu {
        display: none; /* Hide standard menu */
    }
    
    .mobile-toggle-btn {
        display: block; /* Show hamburger button */
    }
    
    .mobile-lang-toggle {
        display: block; /* Show mobile lang toggler button */
    }
    
    /* Hero layout stacks */
    .hero {
        padding: 60px 0 100px 0;
    }
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 38px;
    }
    
    .hero-desc {
        font-size: 15px;
        max-width: 100%;
    }
    
    /* Stats grid */
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    /* About Us grid */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    /* Mission & Vision grid */
    .vm-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Calculator Grid */
    .calc-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    /* Services grid */
    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    
    /* Value pillars */
    .values-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .value-card:last-child {
        grid-column: span 2;
    }
    
    /* Projects Grid */
    .projects-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    /* Contact grid */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    /* Timeline buttons */
    .timeline-buttons-row {
        gap: 8px;
    }
    
    /* Team grid */
    .team-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    
    /* Footer grid */
    .footer-main-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Small Screens (Smartphones, max-width: 767px) */
@media (max-width: 767px) {
    .section {
        padding: 48px 0;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .top-bar {
        display: none; /* Hide top utility bar on mobile to keep it simple */
    }
    
    .logo-img {
        height: 38px;
    }
    
    .brand-name {
        font-size: 16px;
    }
    
    .brand-sub {
        font-size: 9px;
    }
    
    .hero-title {
        font-size: 32px;
        padding-left: 12px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .value-card:last-child {
        grid-column: span 1;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-buttons-row {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .timeline-btn:nth-child(4) {
        grid-column: span 1;
    }
    
    .timeline-btn:nth-child(5) {
        grid-column: span 2;
    }
    
    .testimonial-card-wrapper {
        padding: 32px 24px;
    }
    
    .testimonial-text {
        font-size: 15px;
    }
    
    .calc-selectors-row {
        grid-template-columns: 1fr;
    }
    
    .form-row-2 {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal-links {
        justify-content: center;
        width: 100%;
    }
}
