@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    /* === Unified Dashboard Color Palette === */
    --primary-color: #f8fafc;          /* page background (was dark navy) */
    --secondary-color: #f1f5f9;        /* alt section background (was dark slate) */
    --accent-color: #2563eb;           /* primary blue (was green) */
    --accent-hover: #1d4ed8;           /* blue hover */
    --text-color: #0f172a;             /* dark body text (was light) */
    --muted-text: #475569;             /* secondary text */
    --white: #ffffff;
    --black: #000000;
    --card-bg: #ffffff;                /* white cards (was #111827) */
    --border-color: #e2e8f0;           /* light border (was white/8%) */

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --big-heading: 48px;
    --heading: 32px;
    --subheading: 24px;
    --text: 16px;
    --small-text: 14px;

    /* Spacing */
    --space-xs: 5px;
    --space-sm: 10px;
    --space-md: 20px;
    --space-lg: 40px;
    --space-xl: 80px;

    /* Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 50px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.4s ease;

    /* Dashboard Legacy Aliases (to fix broken pages) */
    --bg-main: var(--primary-color);
    --bg-card: var(--card-bg);
    --text-main: var(--text-color);
    --text-secondary: var(--muted-text);
    --border: var(--border-color);
    --primary: var(--accent-color);
    --primary-light: rgba(37, 99, 235, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

body {
    background-color: var(--primary-color);
    color: var(--text-color);
    font-family: var(--font-family);
    padding-top: 80px; /* Matched to navbar height */
}

html {
    scroll-behavior: smooth;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px; /* Precise height */
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    background: #0f172a; /* Solid dark navy */
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.logo img {
    width: 50px;
    height: auto;
}

.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-md);
}


.nav-links {
    display: flex;
    list-style: none;
    gap: var(--space-md);
}

.nav-links a {
    color: #f1f5f9;
    text-decoration: none;
    font-size: var(--text);
    font-weight: 500;
    transition: var(--transition-fast);
}

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

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

.header-auth a {
    text-decoration: none;
    font-size: .95rem;
    font-weight: 600;
    transition: var(--transition-fast);
}

.login-btn {
    color: #f1f5f9;
}

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

.signup-btn {
    background: var(--accent-color);
    color: var(--white);
    padding: 8px 18px;
    border-radius: var(--radius-full);
}

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

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
    z-index: 1100;
}

.nav-toggle:hover {
    transform: translateY(-2px);
}

/* HERO SECTION EXACT STYLE */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 160px 22px 80px;
    overflow: hidden;
}

/* background image */
.hero-bg {
    position: absolute;
    inset: 0;
    background: url("../images/stockbar.jpg") center/cover no-repeat;
    transform: scale(1.1);
}

/* blue overlay matching dashboard primary */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(15, 23, 42, 0.60),
            rgba(37, 99, 235, 0.65));
}

/* content */
.hero-content {
    position: relative;
    z-index: 5;
    max-width: 900px;
}

.hero-content h1 {
    font-size: clamp(2.8rem, 7vw, 5.4rem);
    line-height: 1.15;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 28px;
}

.hero-content h1 span {
    color: #93c5fd;
}

.hero-content h3 {
    color: #93c5fd;
    margin-bottom: 10px;
}

.hero-content p {
    max-width: 850px;
    margin: auto;
    color: var(--white);
    font-size: clamp(1rem, 2.8vw, 1.55rem);
    line-height: 1.8;
    margin-bottom: 40px;
}

/* buttons */
.hero-btns {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
}

.hero-btn {
    width: 100%;
    max-width: 720px;
    padding: 24px;
    border-radius: 16px;
    text-decoration: none;
    font-size: 1.45rem;
    font-weight: 700;
    transition: .3s ease;
}

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

.hero-btn.secondary {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
    transition: var(--transition);
}

/* === UTILITY COMPONENTS === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    text-decoration: none;
    border: none;
    font-size: 1rem;
}

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

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

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

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

/* === DASHBOARD SPECIFIC === */
.security-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #dcfce7;
    color: #166534;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    width: fit-content;
    margin: 0 auto 20px;
}

.security-badge i {
    width: 16px;
    height: 16px;
}

.onboarding-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin: 2rem 0;
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

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

.card-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-light);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

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

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-color);
}

.card-desc {
    color: var(--muted-text);
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.footer {
    text-align: center;
    padding: 40px 20px;
    color: var(--muted-text);
    border-top: 1px solid var(--border-color);
    margin-top: 40px;
}

/* === ENHANCED INVESTOR DASHBOARD === */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: var(--card-bg);
    padding: 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: var(--shadow-sm);
}

.stat-card .label {
    font-size: 0.85rem;
    color: var(--muted-text);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-card .value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-color);
}

.stat-card .trend {
    font-size: 0.85rem;
    font-weight: 700;
}

.stat-card .trend.up { color: #16a34a; }
.stat-card .trend.neutral { color: var(--accent-color); }

/* Progress Bar */
.progress-container {
    margin-top: 15px;
    background: var(--secondary-color);
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-color), #60a5fa);
    width: 65%; /* Mock progress */
}

/* Activity Table */
.activity-section {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-top: 30px;
}

.activity-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.activity-table {
    width: 100%;
    border-collapse: collapse;
}

.activity-table th {
    text-align: left;
    padding: 12px;
    font-size: 0.85rem;
    color: var(--muted-text);
    border-bottom: 1px solid var(--border-color);
}

.activity-table td {
    padding: 16px 12px;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-color);
}

.status-badge {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
}

.status-badge.pending { background: #fef9c3; color: #854d0e; }
.status-badge.completed { background: #dcfce7; color: #166534; }

/* features */
.hero-features {
    margin-top: 42px;
    display: grid;
    gap: 18px;
    color: white;
    font-size: 1.15rem;
}

/* ABOUT SERVICES */

.about {
    background: var(--primary-color);
    padding: var(--space-xl) var(--space-md);
}

.about-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    align-items: center;
}

/* tag */
.section-tag {
    display: inline-block;
    color: var(--accent-color);
    font-size: var(--small-text);
    letter-spacing: 4px;
    font-weight: bold;
    margin-bottom: var(--space-md);
}

/* heading */
.about-content h2 {
    color: var(--text-color);
    font-size: clamp(2.2rem, 6vw, 4rem);
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

.about-content h2 span {
    color: var(--accent-color);
}

/* line */
.about-line {
    width: 140px;
    height: 6px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-lg);
}

/* text */
.about-content p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 2;
    margin-bottom: var(--space-md);
}

.about-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin: var(--space-lg) 0;
}

.service-box {
    display: flex;
    align-items: center;
    gap: var(--space-sm);

    background: var(--card-bg);
    padding: 18px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);

    transition: var(--transition-normal);
}

.service-box i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.service-box span {
    color: var(--text-color);
    font-size: var(--text);
    font-weight: 600;
}

.service-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.about-image {
    width: 100%;
    display: flex;
    justify-content: center;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    /* reduce size */
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* MISSION BOX
   SAME ABOUT SECTION */
.mission-box {
    margin-top: var(--space-xl);
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);

    display: flex;
    align-items: flex-start;
    gap: var(--space-md);

    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.mission-box:hover {
    transform: translateY(-4px);
}

/* icon */
.mission-icon {
    min-width: 70px;
    height: 70px;
    border-radius: var(--radius-full);

    background: rgba(37, 99, 235, .10);

    display: flex;
    justify-content: center;
    align-items: center;
}

.mission-icon i {
    color: var(--accent-color);
    font-size: 1.7rem;
}

/* content */
.mission-content h3 {
    color: var(--text-color);
    font-size: clamp(1.7rem, 4vw, 2.5rem);
    margin: var(--space-sm) 0;
}

.mission-content h3 span {
    color: var(--accent-color);
}

.mission-content p {
    color: var(--text-color);
    line-height: 1.9;
    font-size: 1rem;
}

/* INVESTMENT DIVISION */
.divisions {
    padding: var(--space-xl) var(--space-md);
    background: var(--secondary-color);
}

/* header */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: auto auto var(--space-xl);
}

.section-header h2 {
    color: var(--text-color);
    font-size: clamp(2rem, 6vw, 4rem);
    margin: var(--space-sm) 0;
}

.section-header h2 span {
    color: var(--accent-color);
}

.section-header p {
    color: var(--text-color);
    line-height: 1.9;
    font-size: 1.05rem;
}

/* grid */
.divisions-grid {
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

/* cards */
.division-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);

    transition: var(--transition-normal);
}

.division-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.division-image {
    position: relative;
    height: 220px;
}

.division-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* icon */
.division-image i {
    position: absolute;
    bottom: 15px;
    left: 15px;
    width: 55px;
    height: 55px;
    border-radius: var(--radius-full);
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--accent-color);
    color: var(--white);
    font-size: 1.3rem;
}

.division-card h3 {
    color: var(--text-color);
    font-size: 1.4rem;
    margin-bottom: var(--space-sm);
}

.division-card p {
    color: var(--text-color);
    line-height: 1.8;
}

/* INVESTMENT PRODUCTS */
.products {
    padding: var(--space-xl) var(--space-md);
    background: var(--primary-color);
}

/* header */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: auto auto var(--space-xl);
}

.section-header h3 {
    color: var(--text-color);
    font-size: clamp(2rem, 6vw, 4rem);
    margin: var(--space-sm) 0;
}

.section-header p {
    color: var(--text-color);
    line-height: 1.9;
}

/* grid */
.products-grid {
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

/* card */
.product-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    transition: var(--transition-normal);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

/* top */
.product-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-lg);
}

.product-top i {
    width: 55px;
    height: 55px;
    border-radius: var(--radius-full);

    display: flex;
    justify-content: center;
    align-items: center;

    background: rgba(37, 99, 235, .10);
    color: var(--accent-color);
    font-size: 1.3rem;
}

.product-rate {
    color: var(--accent-color);
    font-size: 1rem;
    font-weight: 700;
}

/* text */
.product-card h3 {
    color: var(--text-color);
    font-size: 1.35rem;
    margin-bottom: var(--space-sm);
}

.product-card p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

/* stats */
.product-stats span {
    display: block;
    color: var(--text-color);
    font-size: 1.4rem;
    font-weight: 700;
}

.product-stats small {
    color: var(--muted-text);
    font-size: var(--small-text);
}

/* INVESTMENT PLANS */
.plans {
    padding: var(--space-xl) var(--space-md);
    background: var(--secondary-color);
}

.plans-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

/* card */
.plan-card {
    position: relative;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    transition: var(--transition-normal);
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.plan-card h3 {
    color: var(--text-color);
    font-size: 1.4rem;
    margin-bottom: var(--space-sm);
}

.plan-percent {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 8px 14px;
    border-radius: var(--radius-full);
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.plan-card ul {
    list-style: none;
    margin-bottom: var(--space-lg);
}

.plan-card ul li {
    color: var(--text-color);
    margin-bottom: 12px;
}

/* badge */
.offer-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #38bdf8;
    color: var(--text-color);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: .8rem;
    font-weight: 700;
}

/* buttons */
.plan-btn {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 14px;
    border-radius: var(--radius-md);
    background: var(--accent-color);
    color: var(--white);
    font-weight: 700;
}

.special .plan-btn {
    background: #1d4ed8;
}

/* CALCULATOR SECTION */
.calculator-section {
    padding: var(--space-xl) var(--space-md);
    background: var(--secondary-color);
}

.calculator-box {
    max-width: 620px;
    margin: auto;
    background: #2563eb;
    padding: 32px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, .15);
    box-shadow: 0 15px 40px rgba(37, 99, 235, .25);
}

/* title */
.calculator-box h2 {
    color: var(--white);
    font-size: clamp(2.4rem, 7vw, 4.5rem);
    text-align: center;
    line-height: 1.2;
    margin-bottom: var(--space-xl);
}

/* inputs */
.calc-group {
    margin-bottom: var(--space-lg);
}

.calc-group label {
    display: block;
    color: #d1d5db;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.calc-group input,
.calc-group select {
    width: 100%;
    height: 64px;
    border-radius: 16px;
    border: 2px solid #14b8a6;
    background: transparent;
    color: var(--white);
    font-size: 1.1rem;
    padding: 0 18px;
    outline: none;
    transition: 3s ease;
}

.calc-group select:focus,
.calc-group input:focus {
    border-color: #22c55e;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, .12);
}

.calc-group select option {
    background: #000;
    color: #fff;
}

/* button */
.calc-btn {
    width: 100%;
    height: 64px;
    border: none;
    border-radius: 16px;
    margin-top: 8px;
    background: linear-gradient(90deg, #22c55e, #14b8a6);
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 700;
    cursor: pointer;
}

/* returns box */
.returns-box {
    margin-top: var(--space-xl);
    background: rgba(255, 255, 255, .05);
    border-radius: 24px;
    padding: 30px;
}

.returns-box h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: var(--space-lg);
}

.return-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
}

.return-row span {
    color: #d1d5db;
    font-size: 1.2rem;
}

.return-row strong {
    color: var(--white);
    font-size: 1.25rem;
}

.returns-box hr {
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, .08);
    margin: 8px 0;
}

.return-row.total strong {
    color: var(--accent-color);
}


/* TRACK RECORD */
.track-record {
    padding: var(--space-xl) var(--space-md);
    background: var(--primary-color);
}

/* grid */
.track-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

/* card */
.track-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
    transition: var(--transition-normal);
}

.track-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

/* text */
.track-card h3 {
    color: var(--text-color);
    font-size: 2rem;
    margin-bottom: 6px;
}

.track-card span {
    display: block;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.track-card p {
    color: var(--text-color);
    line-height: 1.8;
}

/* HOW IT WORKS */
.how-works {
    padding: var(--space-xl) var(--space-md);
    background: var(--secondary-color);
}

/* line under title */
.title-line {
    width: 110px;
    height: 4px;
    margin: var(--space-sm) auto var(--space-md);
    border-radius: var(--radius-full);
    background: var(--accent-color);
}

/* steps */
.work-step {
    max-width: 850px;
    margin: 0 auto var(--space-xl);
    display: block;
    flex-direction: column;
    gap: var(--space-xl);
    align-items: center;
}

.work-step.reverse .work-image {
    order: 0;
}

/* text */
.work-text {
    margin-bottom: var(--space-md);
}

.step-number {
    display: inline-block;
    color: var(--accent-color);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.work-text h3 {
    color: var(--text-color);
    font-size: 2rem;
    margin-bottom: var(--space-sm);
}

.mini-line {
    width: 70px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
}

.work-text p {
    color: var(--text-color);
    line-height: 1.9;
    margin-bottom: var(--space-md);
}

.work-text ul {
    padding-left: 20px;
    margin-bottom: var(--space-md);
}

.work-text ul li {
    color: var(--text-color);
    margin-bottom: 10px;
}

/* image */
.work-image {
    position: relative;
    width: 100%;
    margin-top: var(--space-md);
}

.work-image img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
}

/* badges */
.image-badge {
    position: absolute;
    bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(15, 23, 42, .95);
    color: var(--white);
    padding: 12px 18px;
    border-radius: var(--radius-full);
    font-size: .95rem;
    font-weight: 600;
}

.image-badge i {
    color: var(--accent-color);
}

.image-badge.right {
    right: 18px;
    left: auto;
}

.image-badge.left {
    left: 18px;
    right: auto;
}

.work-step:not(:last-child) {
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--border-color);
}

/* READY TO START CTA */
.cta-invest {
    padding: var(--space-xl) var(--space-md);
    background: var(--secondary-color);
}

.cta-box {
    max-width: 1000px;
    margin: auto;
    text-align: center;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.cta-box h2 {
    color: var(--text-color);
    font-size: clamp(2rem, 6vw, 4rem);
    margin-bottom: var(--space-md);
}

.cta-box p {
    color: var(--text-color);
    line-height: 1.9;
    max-width: 700px;
    margin: auto auto var(--space-lg);
}

/* buttons */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.cta-btn {
    padding: 16px 28px;
    border-radius: var(--radius-full);
    font-weight: 700;
    text-decoration: none;
}

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

.cta-btn.secondary {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}

/* CRYPTO TABLE */
.crypto-market {
    padding: var(--space-xl) var(--space-md);
    background: var(--secondary-color);
}

.crypto-header {
    text-align: center;
    max-width: 800px;
    margin: auto auto var(--space-xl);
}

.crypto-header h2 {
    color: var(--text-color);
    font-size: clamp(2rem, 6vw, 4rem);
    margin-bottom: var(--space-md);
}

.crypto-header p {
    color: var(--text-color);
    line-height: 1.9;
}

.table-wrap {
    max-width: 1100px;
    margin: auto;
    background: var(--card-bg);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

/* table */
.crypto-table {
    width: 100%;
    border-collapse: collapse;
}

.crypto-table thead {
    background: #1e3a8a;
}

.crypto-table th {
    color: var(--white);
    text-align: left;
    padding: 18px 22px;
    font-size: 1rem;
}

.crypto-table td {
    color: var(--text-color);
    padding: 18px 22px;
    border-top: 1px solid var(--border-color);
    font-size: 1rem;
}

.crypto-table tbody tr:hover {
    background: rgba(255, 255, 255, .03);
}

/* icons */
.crypto-table td i {
    margin-right: 10px;
    font-size: 1.15rem;
}

.btc {
    color: #f7931a;
}

.eth {
    color: #627eea;
}

.sol {
    color: #14f195;
}

.bnb {
    color: #f3ba2f;
}

.doge {
    color: #c2a633;
}

.xrp {
    color: #00a3ff;
}

.ada {
    color: #2a6df4;
}

.trx {
    color: #ef0027;
}

.link {
    color: #2a5ada;
}

.ton {
    color: #0098ea;
}

/* gains / losses */
.green {
    color: #22c55e !important;
    font-weight: 700;
}

.red {
    color: #ef4444 !important;
    font-weight: 700;
}

/* footer */
.powered-by {
    padding: 16px 22px;
    color: #94a3b8;
    font-size: .95rem;
    border-top: 1px solid rgba(255, 255, 255, .05);
}

/* TESTIMONIALS */
.testimonials {
    padding: var(--space-xl) var(--space-md);
    background: var(--primary-color);
}

.testimonial-slider {
    max-width: 500px;
    margin: auto;
    position: relative;
}

@keyframes fade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.testimonial-card {
    display: none;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px;
    animation: fade .6s ease;
}

.testimonial-card.active {
    display: block;
}

.testimonial-card h3 {
    color: var(--text-color);
    margin-bottom: 5px;
}

.testimonial-card span {
    color: var(--accent-color);
    font-size: .95rem;
}

.testimonial-card p {
    color: var(--text-color);
    line-height: 1.8;
    margin: var(--space-md) 0;
}

.client-head {
    align-items: center;
    display: flex;
    gap: 14px;
    margin-bottom: var(--space-md);
}


/* abbreviation circle */
.client-abbr {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--accent-color);
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

/* name */
.client-head h3 {
    color: var(--text-color);
    margin-bottom: 4px;

}

.client-head span {
    color: var(--text-color);
    font-size: .92rem;
}

/* arrows */
.prev-btn,
.next-btn {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    background: var(--card-bg);
    color: var(--text-color);
    cursor: pointer;
}

.prev-btn {
    left: -55px;
}

.next-btn {
    right: -55px;
}

/* dots */
.slider-dots {
    text-align: center;
    margin-top: 18px;
}

.dot {
    width: 10px;
    height: 10px;
    display: inline-block;
    margin: 0 5px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
}

.dot.active {
    background: var(--accent-color);
}


.stars {
    color: #fde68a;
    margin-top: 12px;
    letter-spacing: 2px;
}

/* FOOTER */
.footer {
    background: #0f172a;
    padding: var(--space-xl) var(--space-md) var(--space-md);
}

.footer-grid {
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.footer-box h3 {
    color: var(--white);
    margin-bottom: var(--space-md);
}

.footer-box p,
.footer-box a {
    display: block;
    color: #94a3b8;
    margin-bottom: 12px;
    line-height: 1.8;
    text-decoration: none;
}

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

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: var(--space-sm);
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);

    display: flex;
    justify-content: center;
    align-items: center;

    color: var(--white);
}

.footer-bottom {
    text-align: center;
    color: #64748b;
    margin-top: var(--space-xl);
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.breadcrumb {
    padding: 90px 20px 30px;
    margin-top: 15px;
    text-align: center;
    background: var(--accent-color);
}

.breadcrumb-path {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 10px;
}

.breadcrumb-path a {
    color: var(--secondary-color);
    text-decoration: none;
}

.breadcrumb-path a:hover {
    text-decoration: underline;
}

.breadcrumb h2 {
    color: var(--white);
    font-size: clamp(2rem, 5vw, 3.5rem);
}

/* JOURNEY SECTION */
.journey-section {
    padding: var(--space-xl) var(--space-md);
    background: var(--secondary-color);
}

/* journey box */
.journey-box,
.choose-box {
    max-width: 1000px;
    margin: auto auto var(--space-xl);
    padding: 35px;

    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    background: var(--card-bg);
}

/* item */
.journey-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px 0;
}

.journey-item:not(:last-child) {
    border-bottom: 1px solid var(--border-color);
}

/* year circles */
.year-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    color: white;
    font-weight: 700;
    font-size: .95rem;
    flex-shrink: 0;
}

.year-one {
    background: #10b981;
}

.year-two {
    background: #3b82f6;
}

.year-three {
    background: #8b5cf6;
}

.year-four {
    background: #0ea5e9;
}

/* text */
.journey-content h3 {
    color: var(--text-color);
    margin-bottom: 8px;
}

.journey-content p {
    color: var(--text-color);
    line-height: 1.8;
}

/* choose box */
.choose {
    padding: var(--space-sm);
    background: var(--primary-color);
}

.choose-box h2 {
    color: var(--text-color);
    text-align: center;
}

.choose-box ul {
    list-style: none;
    margin-top: 25px;
    padding-left: 20px;
}

.choose-box li::before {
    content: "✔";
    padding-right: 20px;
}

.choose-box ul li {
    color: var(--text-color);
    margin-bottom: 16px;
    line-height: 1.8;
}

/* GLOBAL PRESENCE */
.global-section,
.values-section {
    padding: var(--space-xl) var(--space-md);
    background: var(--secondary-color);
}

.global-grid {
    max-width: 900px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.global-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
}

.global-card h3 {
    font-size: 2rem;
    margin-bottom: 8px;
}

.global-card span {
    color: var(--text-color);
}

.green {
    color: #22c55e;
}

.yellow {
    color: #facc15;
}

.purple {
    color: #a855f7;
}

/* VALUES */
.values-grid {
    max-width: 1100px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.value-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
}

.value-card i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 18px;
}

.value-card h3 {
    color: var(--text-color);
    margin-bottom: 12px;
}

.value-card p {
    color: var(--text-color);
    line-height: 1.8;
}

/* DIVERSIFIED STRATEGY */
.strategy-section {
    padding: var(--space-xl) var(--space-md);
    background: var(--secondary-color);
}

.strategy-grid {
    max-width: 1100px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.strategy-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 35px 28px;
    text-align: center;
    transition: .3s ease;
}

.strategy-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.strategy-card h3 {
    color: var(--text-color);
    font-size: 2.4rem;
    margin-bottom: 12px;
}

.strategy-card h4 {
    color: var(--text-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.strategy-card p {
    color: var(--text-color);
    line-height: 1.8;
}

.strategy-card .green {
    color: #22c55e;
}

/* CLEAN CONTACT SECTION */
.contact-clean {
    padding: var(--space-xl) var(--space-md);
    background: var(--secondary-color);
    text-align: center;
}

/* icons */
.top-contact-icon {
    width: 110px;
    height: 110px;
    border-radius: 28px;

    display: flex;
    justify-content: center;
    align-items: center;

    margin: 0 auto 28px;
    font-size: 2.5rem;
    color: white;
}

.mini-icon {
    width: 78px;
    height: 78px;
    border-radius: 18px;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 1.8rem;
    color: white;
    flex-shrink: 0;
}

.green-bg {
    background: var(--accent-color);
}

.purple-bg {
    background: #9333ea;
}

/* headings */
.contact-clean h2 {
    color: var(--text-color);
    font-size: clamp(2rem, 5vw, 3.3rem);
    margin-bottom: 10px;
}

.contact-intro {
    max-width: 700px;
    margin: 0 auto 45px;
    color: var(--text-color);
    line-height: 1.8;
    font-size: 1.15rem;
}

/* rows */
.contact-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;

    margin-bottom: 28px;
}

.contact-info {
    text-align: left;
}

.contact-info span {
    display: block;
    color: #9ca3af;
    margin-bottom: 6px;
}

.contact-info h3 {
    color: var(--text-color);
    font-size: 1.8rem;
}

/* office box */
.office-icon,
.support-icon {
    margin-top: 55px;
}

.office-title {
    margin-bottom: 25px;
}

.quick-info {
    color: var(--text-color);
}

.office-box {
    max-width: 720px;
    margin: auto;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 35px 25px;
}

.office-box h3 {
    color: var(--text-color);
    margin-bottom: 15px;
}

.office-box p {
    color: var(--text-color);
    line-height: 1.9;
    font-size: 1.08rem;
}

/* button */
.live-chat-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 16px 34px;
    background: #9333ea;
    color: white;
    text-decoration: none;
    border-radius: var(--radius-full);
    font-weight: 700;
    transition: .3s ease;
}

.live-chat-btn:hover {
    transform: translateY(-4px);
}

.contact-section {
    background: var(--primary-color);
}

.contact-form-box {
    max-width: 600px;
    margin: 50px auto;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.contact-form-box h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--text-color);
}

.contact-form-box p {
    font-size: 15px;
    color: var(--muted-text);
    margin-bottom: 25px;
}

.input-group {
    margin-bottom: 18px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 14px;
    background: var(--bg-main, #f8fafc);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    outline: none;
    color: var(--text-color);
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

button {
    width: 100%;
    padding: 14px;
    border: none;
    background: var(--accent-color);
    color: white;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease;
}

button:hover {
    background: var(--accent-hover);
}

/* FULL MARKET PAGE */
.market-hero,
.ticker-section,
.chart-section,
.overview-section {
    padding: var(--space-sm) var(--space-sm);
    background: var(--secondary-color);
}

/* hero */
.market-hero {
    text-align: center;
    margin-top: 30px;
}

.market-tag {
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 50px;
}

.market-hero h2 {
    color: var(--text-color);
    font-size: clamp(2.2rem, 5vw, 4rem);
}

.market-text {
    max-width: 700px;
    margin: 18px auto 0;
    color: var(--text-color);
    line-height: 1.8;
}

/* boxes */
.chart-box,
.overview-box {
    max-width: 1250px;
    margin: auto;
    background: var(--card-bg);
    padding: 18px;
    border-radius: 22px;
    border: 1px solid var(--border-color);
}















@keyframes scrollTicker {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(-100%);
    }
}









@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 50%;
        height: 100vh;
        background: var(--text-color);
        box-shadow: var(--shadow-lg);
        z-index: 999;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding-top: 100px 25px;
        gap: 22px;
        transition: .4s ease;
    }

    .nav-links.show {
        left: 0;

    }

    .nav-links a {
        font-size: 1.1rem;
        text-decoration: none;
        width: 100%;
        padding: 10px 0;
    }

    .navbar {
        padding: var(--space-md) var(--space-md);
    }

    .nav-toggle {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero {
        padding: 180px 18px 70px;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .hero-content p {
        font-size: 1.15rem;
    }

    .hero-btn {
        font-size: 1.1rem;
        padding: 20px;
    }

    .hero-features {
        font-size: 1rem;
    }

    .service-box {
        padding: 16px;
    }

    .mission-box {
        flex-direction: column;
        padding: var(--space-md);
    }

    .mission-icon {
        width: 60px;
        height: 60px;
    }

    .mission-content h3 {
        font-size: 1.5rem;
    }

    .divisions {
        padding: var(--space-xl) var(--space-sm);
    }

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

    .division-card {
        padding: var(--space-md);
    }

    .products {
        padding: var(--space-xl) var(--space-sm);
    }

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

    .product-card {
        padding: var(--space-md);
    }

    .plans {
        padding: var(--space-xl) var(--space-sm);
    }

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

    .calculator-section {
        padding: var(--space-xl) var(--space-sm);
    }

    .calculator-box {
        max-width: 100%;
        padding: 22px;
        border-radius: 16px;
    }

    .calculator-box h2 {
        font-size: 3rem;
    }

    .calc-group select,
    .calc-group input,
    .calc-btn {
        height: 62px;
        font-size: 1.1rem;
    }

    .returns-box {
        padding: 22px;
    }

    .returns-box h3 {
        font-size: 1.6rem;
    }

    .return-row span,
    .return-row strong {
        font-size: 1rem;
    }

    .track-record {
        padding: var(--space-xl) var(--space-sm);
    }

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

    .track-card {
        padding: var(--space-md);
    }

    .how-works {
        padding: var(--space-xl) var(--space-sm);
    }

    .work-text h3 {
        font-size: 1.5rem;
    }

    .work-image img {
        height: 250px;
    }

    .image-badge {
        bottom: 10px;
        font-size: .82rem;
        padding: 10px 14px;
    }

    .image-badge.left {
        left: 10px;
        right: auto;
    }

    .image-badge.right {
        right: 10px;
        left: auto;
    }

    .cta-invest,
    .crypto-market {
        padding: var(--space-xl) var(--space-sm);
    }

    .cta-box {
        padding: var(--space-lg);
    }

    .crypto-market {
        padding: var(--space-xl) var(--space-sm);
    }

    .table-wrap {
        overflow-x: auto;
    }

    .crypto-table {
        min-width: 600px;
    }

    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }

    .testimonial-slider {
        max-width: 100%;
        padding: 0 15px;
    }

    .testimonial-card {
        width: 100%;
        max-width: 380px;
        margin: auto;
    }

    .testimonials,
    .footer {
        padding: var(--space-xl) var(--space-sm);
    }

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


    .journey-section {
        padding: var(--space-xl) var(--space-sm);
    }

    .journey-box,
    .choose-box {
        padding: 22px;
    }

    .journey-item {
        flex-direction: column;
    }

    .year-circle {
        width: 60px;
        height: 60px;
    }

    .global-section,
    .values-section {
        padding: var(--space-xl) var(--space-sm);
    }

    /* 2 beside each other */
    .global-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .global-card,
    .value-card {
        padding: 22px;
    }

    .strategy-section {
        padding: var(--space-xl) var(--space-sm);
    }

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

    .strategy-card {
        padding: 25px;
    }

    .contact-section {
        padding: var(--space-xl) var(--space-sm);
    }

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

    .contact-card {
        padding: 24px;
    }

    .contact-clean {
        padding: var(--space-xl) var(--space-sm);
    }

    .top-contact-icon {
        width: 95px;
        height: 95px;
        font-size: 2rem;
    }

    .mini-icon {
        width: 62px;
        height: 62px;
        font-size: 1.4rem;
    }

    .contact-row {
        gap: 14px;
    }

    .contact-info h3 {
        font-size: 1.25rem;
    }

    .office-box {
        padding: 28px 18px;
    }

    .market-hero,
    .ticker-section,
    .chart-section,
    .overview-section {
        padding: var(--space-xl) var(--space-sm);
    }

    .chart-box,
    .overview-box {
        padding: 10px;
        border-radius: 18px;
    }

    .market-hero,
    .ticker-section,
    .chart-section,
    .overview-section {
        padding: var(--space-sm) var(--space-sm);
        background: var(--secondary-color);
    }


}

/* ==========================================================================
   CONTACT PAGE REDESIGN STYLES
   ========================================================================== */

.contact-hero-modern {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
    border-bottom: 1px solid var(--border-color);
}

.contact-hero-modern .tagline {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary-light);
    color: var(--accent-color);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.contact-hero-modern h1 {
    font-size: 2.5rem;
    color: var(--header-color);
    margin-bottom: 15px;
}

.contact-hero-modern p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--muted-text);
}

.contact-grid-section {
    padding: 40px 0 100px;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    padding: 0 20px;
}

@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}

/* Info Cards */
.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card-modern {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.icon-box.green { background: rgba(34, 197, 94, 0.1); color: #22c55e; }
.icon-box.blue { background: rgba(59, 130, 246, 0.1); color: #3b82f6; }
.icon-box.purple { background: rgba(168, 85, 247, 0.1); color: #a855f7; }

.text-box span {
    font-size: 0.8rem;
    color: var(--muted-text);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.text-box h3 {
    font-size: 1.1rem;
    margin: 5px 0;
    color: var(--header-color);
}

.text-box p {
    font-size: 0.9rem;
    color: var(--muted-text);
}

/* Live Chat Card - Sharpened */
.live-chat-card {
    margin-top: 20px;
    padding: 40px 30px;
    background: #0f172a; /* Solid dark navy for maximum sharpness */
    border-radius: 20px;
    color: #ffffff;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.live-chat-card i {
    font-size: 3.5rem;
    color: #3b82f6; /* Vibrant blue */
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.3));
}

.live-chat-card h3 { 
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
}

.live-chat-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #cbd5e1; /* Brighter, sharper gray */
    margin-bottom: 25px;
    font-weight: 400;
}

.chat-trigger {
    display: inline-block;
    padding: 12px 30px;
    background: var(--accent-color);
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.chat-trigger:hover { background: #1e40af; }

/* Form Panel */
.contact-form-panel {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.03);
}

.form-glass-box h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--header-color);
}

.form-glass-box p {
    color: var(--muted-text);
    margin-bottom: 40px;
}

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

@media (max-width: 600px) {
    .form-row { grid-template-columns: 1fr; }
}

.submit-btn-modern {
    width: 100%;
    padding: 16px;
    background: var(--accent-color);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.3s ease;
    margin-top: 20px;
}

.submit-btn-modern:hover { background: #1e40af; }