/* ==========================================================================
   TILER HOLDINGS, LLC - MAIN STYLESHEET
   Luxury Corporate & Strategic Investment Theme
   ========================================================================== */

:root {
    /* Color Palette */
    --bg-main: #090e17;
    --bg-secondary: #0f172a;
    --bg-card: rgba(18, 26, 43, 0.75);
    --bg-card-hover: rgba(26, 38, 63, 0.85);
    --bg-glass: rgba(255, 255, 255, 0.03);
    
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-highlight: rgba(197, 160, 89, 0.35);
    --border-gold: #c5a059;

    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;

    --gold-primary: #c5a059;
    --gold-light: #dfba73;
    --gold-glow: rgba(197, 160, 89, 0.25);
    --gold-gradient: linear-gradient(135deg, #dfba73 0%, #c5a059 50%, #9e7935 100%);
    --blue-gradient: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);

    --accent-blue: #38bdf8;
    --accent-emerald: #10b981;
    --accent-purple: #a855f7;

    /* Typography */
    --font-ar: 'Cairo', system-ui, -apple-system, sans-serif;
    --font-en: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --font-serif: 'Cinzel', serif;

    /* Elevation & Transitions */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 10px 30px -5px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 45px -10px rgba(0, 0, 0, 0.6);
    --shadow-gold: 0 0 25px rgba(197, 160, 89, 0.2);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 9999px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-en);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

.logo-title,
.logo-subtitle,
.badge-core-text,
.badge-core-sub {
    font-family: var(--font-serif);
}

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

ul {
    list-style: none;
}

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

/* Container */
.container {
    width: 100%;
    max-width: 1240px;
    margin-inline: auto;
    padding-inline: 1.5rem;
}

/* Ambient Background Lights */
.ambient-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(140px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.35;
}

.glow-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.25) 0%, transparent 70%);
    top: -100px;
    right: -100px;
}

.glow-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(14, 116, 144, 0.25) 0%, transparent 70%);
    top: 40%;
    left: -150px;
}

.glow-3 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.15) 0%, transparent 70%);
    bottom: 50px;
    right: 15%;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: var(--transition);
    background: transparent;
}

.header.scrolled {
    padding: 0.85rem 0;
    background: rgba(9, 14, 23, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    z-index: 1001;
}

.logo-mark {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
    position: relative;
}

.logo-symbol {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 800;
    color: #090e17;
}

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

.logo-title {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text-primary);
    line-height: 1.1;
}

.logo-subtitle {
    font-size: 0.68rem;
    letter-spacing: 2.5px;
    color: var(--gold-primary);
    font-weight: 600;
}

/* Menu Items */
.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 0.4rem 0;
}

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

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

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.lang-switch-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.lang-switch-btn:hover {
    background: rgba(197, 160, 89, 0.15);
    border-color: var(--border-highlight);
    color: var(--gold-light);
}

.lang-switch-btn i {
    color: var(--gold-primary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 0.75rem 1.6rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

body[dir="ltr"] .cta-icon,
body[dir="ltr"] .btn i.fa-arrow-left {
    transform: rotate(180deg);
}

.btn-primary {
    background: var(--gold-gradient);
    color: #090e17;
    box-shadow: 0 4px 20px rgba(197, 160, 89, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 28px rgba(197, 160, 89, 0.5);
    transform: translateY(-2px);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--border-highlight);
    color: var(--gold-light);
    transform: translateY(-2px);
}

.btn-gold {
    background: var(--gold-gradient);
    color: #090e17;
    font-weight: 700;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-lg {
    padding: 0.95rem 2.2rem;
    font-size: 1.05rem;
}

.btn-block {
    width: 100%;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-toggle span {
    width: 26px;
    height: 2.5px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}
.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    position: relative;
    padding: 9rem 0 5rem;
    overflow: hidden;
    z-index: 1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3.5rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(197, 160, 89, 0.1);
    border: 1px solid var(--border-highlight);
    color: var(--gold-light);
    padding: 0.45rem 1.1rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-badge i {
    color: var(--gold-primary);
}

.hero-title {
    font-size: 3.2rem;
    line-height: 1.25;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.text-gradient {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 580px;
}

.hero-description strong {
    color: var(--text-primary);
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-bottom: 3.5rem;
}

.hero-stats-row {
    display: flex;
    gap: 1.5rem;
    border-top: 1px solid var(--border-subtle);
    padding-top: 2rem;
}

.stat-card {
    flex: 1;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gold-light);
    line-height: 1.1;
    margin-bottom: 0.35rem;
    font-family: var(--font-en);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Hero Visual Graphic */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-card-wrapper {
    position: relative;
    width: 380px;
    height: 380px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.central-badge-display {
    position: relative;
    width: 240px;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(197, 160, 89, 0.4);
    animation: rotateSlow 30s linear infinite;
}

.ring-outer {
    width: 100%;
    height: 100%;
    border-color: rgba(197, 160, 89, 0.3);
}

.ring-mid {
    width: 80%;
    height: 80%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: rotateSlowReverse 20s linear infinite;
}

.badge-core {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, #1e293b 0%, #090e17 100%);
    border: 2px solid var(--gold-primary);
    box-shadow: 0 0 35px rgba(197, 160, 89, 0.35);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    text-align: center;
}

.badge-core i {
    font-size: 2.2rem;
    color: var(--gold-light);
    margin-bottom: 0.3rem;
}

.badge-core-text {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #ffffff;
}

.badge-core-sub {
    font-size: 0.65rem;
    color: var(--gold-primary);
    letter-spacing: 1.5px;
    font-weight: 600;
}

/* Floating Glass Cards */
.glass-feature-card {
    position: absolute;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--border-highlight);
    border-radius: var(--radius-md);
    padding: 1rem 1.3rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-lg);
    z-index: 3;
    animation: floatAnimation 4s ease-in-out infinite;
}

.card-top-right {
    top: 10px;
    right: -20px;
}

.card-bottom-left {
    bottom: 15px;
    left: -20px;
    animation-delay: 2s;
}

.card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(56, 189, 248, 0.12);
    color: var(--accent-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.card-icon.gold {
    background: rgba(197, 160, 89, 0.15);
    color: var(--gold-light);
}

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

.card-num {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-primary);
}

.card-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
}

@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rotateSlowReverse {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

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

/* ==========================================================================
   Trust Banner / Official Registration Bar
   ========================================================================== */
.trust-banner {
    position: relative;
    z-index: 2;
    background: rgba(15, 23, 42, 0.6);
    border-block: 1px solid var(--border-subtle);
    padding: 1.8rem 0;
    backdrop-filter: blur(10px);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.trust-item i {
    font-size: 1.8rem;
    color: var(--gold-primary);
    background: rgba(197, 160, 89, 0.1);
    padding: 0.8rem;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.trust-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.15rem;
}

.trust-item p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.trust-item p strong {
    color: var(--gold-light);
}

/* ==========================================================================
   Section Headers & Common Layout
   ========================================================================== */
section {
    padding: 6rem 0;
    position: relative;
    z-index: 1;
}

.section-header {
    margin-bottom: 3.5rem;
}

.section-header.text-center {
    text-align: center;
    max-width: 760px;
    margin-inline: auto;
    margin-bottom: 3.5rem;
}

.section-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: rgba(197, 160, 89, 0.1);
    border: 1px solid var(--border-highlight);
    border-radius: var(--radius-full);
    color: var(--gold-light);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.08rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-section {
    background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.3) 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.about-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2.8rem 2.2rem;
    backdrop-filter: blur(16px);
    transition: var(--transition);
}

.about-card:hover {
    border-color: var(--border-highlight);
    background: var(--bg-card-hover);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.about-icon-box {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #090e17;
    margin-bottom: 1.8rem;
    box-shadow: var(--shadow-gold);
}

.about-card h3 {
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.about-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
    margin-bottom: 0.85rem;
    font-size: 0.95rem;
}

.feature-list li i {
    color: var(--gold-primary);
    font-size: 0.9rem;
}

/* Entity Details Box */
.entity-details-box {
    background: rgba(9, 14, 23, 0.7);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    margin-top: 1.5rem;
}

.entity-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.88rem;
}

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

.entity-row .e-label {
    color: var(--text-muted);
    font-weight: 600;
}

.entity-row .e-val {
    color: var(--gold-light);
    font-weight: 600;
    text-align: end;
}

/* ==========================================================================
   Investment Sectors
   ========================================================================== */
.sectors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
}

.sector-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.sector-card:hover {
    border-color: var(--border-highlight);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.sector-img-wrap {
    height: 150px;
    background: linear-gradient(135deg, #1e293b 0%, #090e17 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sector-img-wrap.tech-bg {
    background: linear-gradient(135deg, #1e1b4b 0%, #0f172a 100%);
}

.sector-img-wrap.equity-bg {
    background: linear-gradient(135deg, #14302c 0%, #0a1816 100%);
}

.sector-img-wrap.energy-bg {
    background: linear-gradient(135deg, #242918 0%, #0f140a 100%);
}

.sector-bg-icon {
    font-size: 6rem;
    opacity: 0.12;
    color: #ffffff;
    transition: var(--transition);
}

.sector-card:hover .sector-bg-icon {
    transform: scale(1.15) rotate(-5deg);
    opacity: 0.2;
}

.sector-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(9, 14, 23, 0.85);
    border: 1px solid var(--border-subtle);
    color: var(--gold-light);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
}

body[dir="ltr"] .sector-tag {
    right: auto;
    left: 15px;
}

.sector-content {
    padding: 1.8rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.sector-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: rgba(197, 160, 89, 0.12);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
}

.sector-content h3 {
    font-size: 1.18rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.sector-content p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.sector-link {
    color: var(--gold-light);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.sector-link:hover {
    color: #ffffff;
}

/* ==========================================================================
   Portfolio Showcase
   ========================================================================== */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 0.85rem;
    margin-bottom: 2.8rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    padding: 0.6rem 1.4rem;
    border-radius: var(--radius-full);
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold-gradient);
    color: #090e17;
    border-color: transparent;
    box-shadow: var(--shadow-gold);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.portfolio-item {
    transition: var(--transition);
}

.portfolio-item.hide {
    display: none;
}

.portfolio-box {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2.2rem;
    position: relative;
    transition: var(--transition);
}

.portfolio-box:hover {
    border-color: var(--border-highlight);
    background: var(--bg-card-hover);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.port-icon-top {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: rgba(56, 189, 248, 0.1);
    color: var(--accent-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
}

.port-badge {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background: rgba(197, 160, 89, 0.15);
    color: var(--gold-light);
    border: 1px solid var(--border-highlight);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-full);
}

body[dir="ltr"] .port-badge {
    left: auto;
    right: 2rem;
}

.portfolio-box h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.6rem;
}

.portfolio-box p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.port-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-subtle);
    padding-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.port-meta .highlight {
    color: var(--accent-emerald);
    font-weight: 700;
    background: rgba(16, 185, 129, 0.1);
    padding: 0.25rem 0.6rem;
    border-radius: var(--radius-sm);
}

/* ==========================================================================
   Governance & Leadership
   ========================================================================== */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.leader-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    display: flex;
    gap: 1.8rem;
    transition: var(--transition);
}

.leader-card:hover {
    border-color: var(--border-highlight);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.leader-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border: 2px solid var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--gold-light);
    flex-shrink: 0;
}

.leader-avatar.agent-avatar {
    border-color: var(--accent-blue);
    color: var(--accent-blue);
    background: linear-gradient(135deg, #0c4a6e 0%, #075985 100%);
}

.leader-info {
    flex-grow: 1;
}

.leader-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

.leader-title {
    font-size: 0.9rem;
    color: var(--gold-light);
    font-weight: 600;
    display: block;
    margin-bottom: 0.9rem;
}

.leader-desc {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.leader-contact-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.leader-contact-tags span {
    font-size: 0.78rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.3rem 0.7rem;
    border-radius: var(--radius-sm);
    color: var(--text-muted);
}

.leader-contact-tags span i {
    color: var(--gold-primary);
    margin-inline-end: 0.3rem;
}

/* ==========================================================================
   Advantage Banner Section
   ========================================================================== */
.advantage-banner {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.9) 0%, rgba(15, 23, 42, 0.9) 100%);
    border: 1px solid var(--border-highlight);
    border-radius: var(--radius-lg);
    padding: 3.5rem;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3.5rem;
    align-items: center;
    box-shadow: var(--shadow-lg);
}

.gold-badge {
    background: rgba(197, 160, 89, 0.2);
}

.advantage-text h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.adv-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.adv-point {
    display: flex;
    gap: 1.2rem;
}

.adv-point i {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(197, 160, 89, 0.15);
    color: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.adv-point h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.adv-point p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.advantage-action-box {
    background: rgba(9, 14, 23, 0.85);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.gold-giant-icon {
    font-size: 3rem;
    color: var(--gold-light);
    margin-bottom: 1.2rem;
}

.advantage-action-box h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
}

.advantage-action-box p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    margin-bottom: 1.8rem;
}

/* ==========================================================================
   Contact Section & Forms
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
}

.contact-form-container {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2.8rem;
    backdrop-filter: blur(16px);
}

.custom-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

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

.form-group label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon i {
    position: absolute;
    left: 1.1rem;
    color: var(--text-muted);
    font-size: 1rem;
    pointer-events: none;
}

.custom-form input,
.custom-form select,
.custom-form textarea {
    width: 100%;
    background: rgba(9, 14, 23, 0.7);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 0.85rem 1.1rem;
    padding-inline-start: 2.8rem;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.92rem;
    transition: var(--transition);
    outline: none;
}

.custom-form textarea {
    padding-inline-start: 1.1rem;
    resize: vertical;
}

.custom-form input:focus,
.custom-form select:focus,
.custom-form textarea:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.2);
    background: rgba(9, 14, 23, 0.95);
}

.custom-form select option {
    background: #090e17;
    color: #ffffff;
}

/* Contact Info Box */
.contact-info-container .info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2.8rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.info-card h3 {
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.info-sub {
    color: var(--text-secondary);
    font-size: 0.92rem;
    margin-bottom: 2rem;
}

.office-box {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1.6rem;
    padding-bottom: 1.4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.office-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(197, 160, 89, 0.12);
    color: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.office-text strong {
    font-size: 0.95rem;
    color: var(--text-primary);
    display: block;
    margin-bottom: 0.3rem;
}

.office-text p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.sos-verification-badge {
    margin-top: auto;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(14, 116, 144, 0.1) 100%);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sos-verification-badge i {
    font-size: 1.8rem;
    color: var(--accent-emerald);
}

.sos-verification-badge .v-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
    display: block;
}

.sos-verification-badge .v-desc {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ==========================================================================
   Toast / Modal Notification
   ========================================================================== */
.toast-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: 1.5rem;
}

.toast-modal.show {
    opacity: 1;
    visibility: visible;
}

.toast-card {
    background: #0f172a;
    border: 1px solid var(--border-highlight);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    max-width: 440px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transform: scale(0.9);
    transition: var(--transition);
}

.toast-modal.show .toast-card {
    transform: scale(1);
}

.toast-icon {
    font-size: 3.5rem;
    margin-bottom: 1.2rem;
}

.toast-icon.success {
    color: var(--accent-emerald);
}

.toast-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.8rem;
}

.toast-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1.8rem;
    line-height: 1.7;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: #060910;
    border-top: 1px solid var(--border-subtle);
    padding: 5rem 0 2rem;
    position: relative;
    z-index: 1;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.9fr 1.1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-logo {
    margin-bottom: 1.2rem;
}

.footer-brand-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.legal-tag {
    font-size: 0.8rem;
    color: var(--gold-light);
    background: rgba(197, 160, 89, 0.1);
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-sm);
    display: inline-block;
    border: 1px solid var(--border-highlight);
}

.footer-col h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.92rem;
}

.footer-links a:hover {
    color: var(--gold-light);
    padding-inline-start: 5px;
}

.footer-newsletter-text {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    color: #ffffff;
    outline: none;
    font-size: 0.88rem;
    width: 100%;
}

.newsletter-form input:focus {
    border-color: var(--gold-primary);
}

.newsletter-form button {
    background: var(--gold-gradient);
    border: none;
    color: #090e17;
    padding: 0 1.2rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
}

.newsletter-form button:hover {
    box-shadow: var(--shadow-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-bottom strong {
    color: var(--gold-light);
}

.footer-legal-links {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

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

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: #090e17;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: var(--shadow-gold);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-4px);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-description {
        margin-inline: auto;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-stats-row {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 2rem;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .advantage-banner {
        grid-template-columns: 1fr;
        padding: 2.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: #090e17;
        border-left: 1px solid var(--border-subtle);
        padding: 6rem 2rem 2rem;
        flex-direction: column;
        align-items: flex-start;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
    }

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

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        width: 100%;
    }

    .nav-cta {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .about-grid,
    .leadership-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-stats-row {
        flex-direction: column;
        gap: 1rem;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .sectors-grid {
        grid-template-columns: 1fr;
    }

    .visual-card-wrapper {
        width: 300px;
        height: 300px;
    }

    .card-top-right,
    .card-bottom-left {
        display: none;
    }
}
