/* Reset and Base Styles */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    /* Offset for fixed header */
}

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

:root {
    --primary-orange: #ff6b00;
    --primary-orange-light: #ff8c00;
    --dark-text: #1a1e29;
    --gray-text: #4b5563;
    --light-bg: #ffffff;
    --font-main: 'Montserrat', sans-serif;
    --border-radius: 8px;
    --border-radius-large: 16px;
    --transition: all 0.3s ease;
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.08);
}

body {
    font-family: var(--font-main);
    color: var(--dark-text);
    background-color: var(--light-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    outline: none;
}

.btn-primary {
    background: linear-gradient(90deg, var(--primary-orange) 0%, var(--primary-orange-light) 100%);
    color: white;
    padding: 12px 28px;
    font-size: 15px;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

.btn-large {
    padding: 12px 28px;
    font-size: 15px;
    border-radius: var(--border-radius);
    gap: 8px;
}

.btn-large i {
    font-size: 20px;
    transition: var(--transition);
}

.btn-large:hover i {
    transform: translateX(4px);
}

/* Header */
.header {
    background-color: var(--light-bg);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    padding: 12px 0;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.header.scrolled {
    background-color: var(--light-bg);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    padding: 12px 0;
}

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

.logo img {
    height: 48px;
    object-fit: contain;
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 28px;
    color: var(--dark-text);
    cursor: pointer;
}

.navbar {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links li a {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-text);
    position: relative;
    padding-bottom: 5px;
    transition: var(--transition);
}

.nav-links li a:hover {
    color: var(--primary-orange);
}

.nav-links li a.active {
    color: var(--primary-orange);
}

.nav-links li a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-orange);
}

/* Hero Section */
.hero {
    position: relative;
    margin-top: 80px;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    min-height: 88vh;
    display: flex;
    align-items: flex-start;
    padding-top: 80px;
    padding-bottom: 80px;
    /* Space for overlapping info bar */
}

/* Add a subtle overlay to ensure text readability if background is busy */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    max-width: 550px;
    padding: 0px 0 30px 0;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
    color: #1a1e29;
    letter-spacing: -1px;
}

.hero-content h1 .dot {
    color: var(--primary-orange);
}

.hero-content p {
    font-size: 17px;
    color: var(--gray-text);
    margin-bottom: 24px;
    line-height: 1.6;
    max-width: 480px;
}

.hero-content p strong {
    color: var(--dark-text);
    font-weight: 700;
}

/* Info Bar */
.info-bar-container {
    position: absolute;
    bottom: 20px;
    /* Overlap effect */
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 10;
}

.info-bar {
    background: var(--light-bg);
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-soft);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    gap: 8px;
}

.info-item .icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background-color: rgba(255, 107, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    font-size: 40px;
    margin-bottom: 4px;
    transition: var(--transition);
}

.info-item:hover .icon {
    transform: scale(1.1);
    background-color: var(--primary-orange);
    color: white;
}

.info-item .text {
    display: flex;
    flex-direction: column;
}

.info-item .label {
    font-size: 12px;
    color: var(--gray-text);
    font-weight: 500;
}

.info-item .value {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-text);
}

.info-item .value.orange-text {
    color: var(--primary-orange);
}

.divider {
    width: 1px;
    height: 36px;
    background-color: #e5e7eb;
}

/* Investment Plans Section */
.investment-plans {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px 0;
    color: white;
}

.investment-plans::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(5, 10, 25, 0.9) 0%, rgba(5, 10, 25, 0.7) 50%, rgba(5, 10, 25, 0.95) 100%);
    z-index: 1;
}

.plans-container {
    position: relative;
    z-index: 2;
}

.plans-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-orange);
    letter-spacing: 1px;
}

.section-subtitle .line {
    width: 40px;
    height: 1px;
    background-color: var(--primary-orange);
}

.plans-header h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
}

.plans-header p {
    font-size: 14px;
    color: #cbd5e1;
}

.orange-text {
    color: var(--primary-orange) !important;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(300px, 500px));
    justify-content: center;
    gap: 30px;
    margin-bottom: 25px;
}

.plan-card {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: var(--border-radius-large);
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), inset 0 0 20px rgba(59, 130, 246, 0.1);
    transition: var(--transition);
}

.plan-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4), inset 0 0 30px rgba(59, 130, 246, 0.2);
}

.plan-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.badge-orange {
    background: linear-gradient(90deg, #ea580c 0%, #f97316 100%);
    color: white;
}

.badge-blue {
    background: rgba(30, 58, 138, 0.8);
    color: #93c5fd;
    border: 1px solid rgba(59, 130, 246, 0.5);
}

.plan-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.plan-title h3 {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-orange);
    line-height: 1;
    margin-bottom: 8px;
}

.plan-title .small-text {
    font-size: 18px;
    color: white;
    font-weight: 700;
}

.plan-title p {
    font-size: 14px;
    color: #94a3b8;
    max-width: 250px;
}

.plan-image {
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.plan-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.5));
}

.plan-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.plan-features li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-icon {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    background: var(--primary-orange);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-text {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.plan-features li:not(.example-li) .feature-text {
    flex-direction: row;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 8px;
}

.feature-label {
    font-size: 12px;
    color: #cbd5e1;
}

.feature-value {
    font-size: 12px;
    font-weight: 600;
}

.example-li {
    margin-top: 5px;
}

.feature-desc {
    font-size: 11px;
    color: #94a3b8;
    line-height: 1.4;
    margin-top: 4px;
}

.btn-full {
    width: 100%;
}

.important-note {
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.note-icon {
    font-size: 32px;
    color: var(--primary-orange);
}

.note-text {
    flex: 1;
    font-size: 13px;
    color: #cbd5e1;
    line-height: 1.6;
}

.note-doc-icon {
    font-size: 36px;
    color: #fbbf24;
    opacity: 0.8;
}

/* About Section */
.about-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 30px 0;
    color: var(--dark-text);
    background-color: var(--light-bg);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-content {
    max-width: 500px;
}

.about-content h2 {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1e29;
}

.about-text-block p {
    font-size: 14px;
    color: var(--gray-text);
    margin-bottom: 15px;
    line-height: 1.6;
}

.font-bold {
    font-weight: 700;
}

.about-features {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    margin-top: 10px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.feature-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(255, 107, 0, 0.1);
    color: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.feature-item span {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark-text);
}

.quote-block {
    border-left: 3px solid var(--primary-orange);
    padding-left: 15px;
    margin-bottom: 30px;
}

.quote-block p {
    font-size: 13px;
    color: var(--gray-text);
    line-height: 1.5;
}

.about-stats-container {
    display: flex;
    align-items: flex-end;
    height: 100%;
    justify-content: flex-end;
    position: relative;
    padding-bottom: 20px;
}

.stats-bar {
    background: white;
    border-radius: var(--border-radius-large);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    padding: 15px 20px;
    gap: 15px;
    justify-content: space-between;
    width: 110%;
    margin-left: -40%;
    z-index: 5;
    position: relative;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-right: 1px solid #e5e7eb;
    padding-right: 15px;
    flex: 1;
}

.stat-item:last-child {
    border-right: none;
    padding-right: 0;
}

.stat-icon {
    font-size: 24px;
    margin-bottom: 5px;
}

.stat-item h4 {
    font-size: 15px;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 2px;
}

.stat-item p {
    font-size: 10px;
    color: var(--gray-text);
    font-weight: 500;
    line-height: 1.3;
}

/* Process Section */
.process-section {
    padding: 30px 0;
    background-size: 100% 100%;
    background-position: center;
    position: relative;
    background-color: #fff9f5;
}

.process-header {
    text-align: center;
    margin-bottom: 35px;
}

.section-subtitle.center {
    justify-content: center;
}

.process-header h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #1a1e29;
}

.process-subtitle {
    font-size: 24px;
    font-weight: 700;
    color: #1a1e29;
    margin-bottom: 15px;
}

.short-line {
    width: 60px;
    height: 3px;
    background-color: var(--primary-orange);
    margin: 0 auto;
}

.process-flow {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin-bottom: 25px;
    gap: 15px;
    position: relative;
}

.process-step {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-number {
    background-color: var(--primary-orange);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    position: absolute;
    top: -18px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(234, 88, 12, 0.3);
}

.step-card {
    background: white;
    border-radius: 12px;
    padding: 30px 15px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    width: 100%;
    border: 1px solid rgba(234, 88, 12, 0.1);
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-orange);
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.15);
    background-color: white;
}

.step-card h4 {
    font-size: 14px;
    font-weight: 800;
    color: #1a1e29;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 11px;
    color: var(--gray-text);
    line-height: 1.4;
}

.step-arrow {
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: var(--primary-orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    z-index: 3;
}

.process-step:last-child .step-arrow {
    display: none;
}

.plan-badges-small {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-top: 10px;
    width: 100%;
}

.badge-light {
    background: rgba(234, 88, 12, 0.1);
    color: var(--primary-orange);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    width: 100%;
}

.or-text {
    font-size: 10px;
    color: var(--gray-text);
    font-weight: 600;
}

.process-cta-bar {
    background: white;
    border-radius: var(--border-radius-large);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 40px;
    border: 1px solid rgba(234, 88, 12, 0.1);
    margin-bottom: 30px;
}

.cta-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    border-right: 1px solid #e5e7eb;
    padding-right: 30px;
    margin-right: 30px;
}

.cta-icon {
    font-size: 48px;
}

.cta-text h4 {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 4px;
}

.cta-text p {
    font-size: 13px;
    color: var(--gray-text);
}

.cta-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.cta-badges {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 11px;
    color: var(--dark-text);
    font-weight: 600;
}

.cta-badges .dot {
    color: var(--primary-orange);
    font-size: 16px;
}

.cta-badges i {
    color: var(--primary-orange);
    margin-right: 4px;
}

/* ROI Section */
.roi-section {
    padding: 25px 0;
    background-size: 100% 100%;
    background-position: center;
    position: relative;
    background-color: #fff9f5;
}

.roi-header {
    text-align: center;
    margin-bottom: 25px;
}

.badge-pill {
    background-color: rgba(234, 88, 12, 0.1);
    color: var(--primary-orange);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 15px;
}

.roi-header h2 {
    font-size: 37px;
    font-weight: 800;
    color: #1a1e29;
    line-height: 1.2;
    margin-bottom: 7px;
}

.roi-subtitle {
    font-size: 14px;
    color: var(--gray-text);
    font-weight: 500;
}

.roi-table-wrapper {
    max-width: 780px;
    margin: 0 auto 25px;
}

.roi-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(234, 88, 12, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    background: white;
}

.roi-table thead {
    background: var(--primary-orange);
    color: white;
}

.roi-table th {
    padding: 10px 15px;
    font-weight: 600;
    font-size: 12px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.roi-table th:last-child {
    border-right: none;
}

.roi-table td {
    padding: 12px 15px;
    text-align: center;
    border-bottom: 1px solid #f1f5f9;
    border-right: 1px solid #f1f5f9;
    font-size: 14px;
    color: #1a1e29;
    font-weight: 600;
}

.roi-table td:last-child {
    border-right: none;
}

.roi-table tr:last-child td {
    border-bottom: none;
}

.roi-table td:first-child {
    text-align: left;
}

.td-content {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: flex-start;
}

.td-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(234, 88, 12, 0.1);
    color: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.roi-examples {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 25px;
}

.example-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    flex: 0 0 350px;
    border: 1px solid rgba(234, 88, 12, 0.1);
    display: flex;
    gap: 15px;
}

.ex-icon-wrapper {
    flex-shrink: 0;
}

.ex-icon {
    width: 48px;
    height: 48px;
    background: rgba(234, 88, 12, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    font-size: 24px;
}

.ex-content {
    flex: 1;
}

.ex-content h4 {
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 10px;
}

.ex-line {
    width: 100%;
    height: 1px;
    background: #e5e7eb;
    margin-bottom: 15px;
}

.ex-details ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.ex-details li {
    font-size: 13px;
    color: var(--dark-text);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.ex-details li i {
    color: var(--primary-orange);
    font-size: 10px;
}

.ex-result {
    text-align: left;
}

.ex-result p {
    font-size: 11px;
    color: var(--gray-text);
    margin-bottom: 4px;
    font-weight: 500;
}

.ex-amount {
    font-size: 26px;
}

.small-slash {
    font-size: 12px;
    color: var(--gray-text);
    font-weight: 500;
}

.roi-footer {
    text-align: center;
}

.btn-calc {
    margin-bottom: 15px;
    font-size: 14px;
    padding: 10px 25px;
}

.btn-calc i {
    font-size: 18px;
    margin-right: 5px;
}

.roi-footer p {
    font-size: 13px;
    color: #1a1e29;
    font-weight: 500;
    margin-bottom: 15px;
}

/* Mission & Vision Section */
.mv-section {
    padding: 30px 0;
    background: #ffffff;
}

.mv-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: var(--primary-orange);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-label span,
.mv-card-label span {
    display: inline-block;
    width: 30px;
    height: 1px;
    background-color: currentColor;
}

.mv-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: #1a1e29;
    margin-bottom: 10px;
}

.mv-subtitle {
    font-size: 16px;
    color: var(--gray-text);
    font-weight: 500;
}

.mv-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    padding-top: 15px;
}

.mv-card {
    background: white;
    border-radius: 16px;
    padding: 30px 20px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    flex: 1;
    max-width: 420px;
    position: relative;
    border: 1px solid #f1f5f9;
    text-align: center;
}

.mv-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.mv-icon-wrapper.orange-icon {
    background-color: #fff4ed;
    color: var(--primary-orange);
}

.mv-icon-wrapper.blue-icon {
    background-color: #eff6ff;
    color: #3b82f6;
}

.blue-text {
    color: #3b82f6 !important;
}

.mv-card-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    margin-top: 10px;
}

.mv-card h3 {
    font-size: 18px;
    font-weight: 800;
    color: #1a1e29;
    margin-bottom: 15px;
    line-height: 1.4;
}

.mv-line {
    width: 100%;
    height: 1px;
    background-color: #f1f5f9;
    margin-bottom: 15px;
}

.mv-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.mv-list li {
    font-size: 13px;
    color: var(--dark-text);
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
    font-weight: 500;
}

.mv-list li:last-child {
    margin-bottom: 0;
}

.mv-list li i {
    font-size: 16px;
    margin-top: 2px;
}

/* Calculator Section */
.calculator-section {
    padding: 40px 0;
    background-color: #fff9f5;
}

.calc-header {
    text-align: center;
    margin-bottom: 25px;
}

.calc-header h2 {
    font-size: 38px;
    font-weight: 800;
    color: #1a1e29;
    margin-bottom: 15px;
}

.calc-header p {
    font-size: 16px;
    color: var(--gray-text);
    font-weight: 500;
}

.calc-card {
    background: white;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 50px rgba(234, 88, 12, 0.08);
    border: 1px solid rgba(234, 88, 12, 0.1);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.calc-input-group label,
.calc-toggle-group label,
.calc-result-group p {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--gray-text);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

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

.currency-symbol {
    position: absolute;
    left: 20px;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-orange);
}

.input-wrapper input {
    width: 100%;
    padding: 16px 20px 16px 45px;
    font-size: 20px;
    font-weight: 700;
    color: #1a1e29;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    outline: none;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.input-wrapper input:focus {
    border-color: var(--primary-orange);
    background: white;
    box-shadow: 0 0 0 4px rgba(234, 88, 12, 0.1);
}

.min-amount {
    font-size: 12px;
    color: var(--gray-text);
    margin-top: 8px;
    font-weight: 500;
}

/* Custom Toggle Switch for Calculator */
.toggle-switch {
    position: relative;
    display: flex;
    background: #f1f5f9;
    border-radius: 12px;
    padding: 4px;
    overflow: hidden;
}

.toggle-switch input[type="radio"] {
    display: none;
}

.toggle-label {
    flex: 1;
    text-align: center;
    padding: 14px 10px;
    font-size: 14px !important;
    font-weight: 700 !important;
    color: var(--gray-text) !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    margin: 0 !important;
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.toggle-switch input[type="radio"]:checked+.toggle-label {
    color: white !important;
}

.toggle-bg {
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(50% - 4px);
    height: calc(100% - 8px);
    background: var(--primary-orange);
    border-radius: 8px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

#annualPayout:checked~.toggle-bg {
    transform: translateX(100%);
}

.calc-result-group {
    text-align: right;
    border-left: 1px solid #f1f5f9;
    padding-left: 30px;
}

.result-amount {
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
    gap: 5px;
}

.result-amount .orange-text {
    font-size: 36px;
}

.result-freq {
    font-size: 14px;
    color: var(--gray-text);
    font-weight: 600;
}

/* Social Connect Section */
.social-section {
    padding: 50px 0;
    background-color: #fafbfc;
    text-align: center;
}

.social-heading {
    font-size: 32px;
    font-weight: 800;
    color: #1a1e29;
    margin-bottom: 30px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-btn {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-btn.linkedin {
    background-color: #0077b5;
}

.social-btn.facebook {
    background-color: #1877f2;
}

.social-btn.youtube {
    background-color: #ff0000;
}

/* Testimonial Section */
.testimonial-section {
    padding: 30px 0;
    background-color: #ffffff;
}

.testimonial-header {
    text-align: center;
    margin-bottom: 20px;
}

.testimonial-header h2 {
    font-size: 38px;
    font-weight: 800;
    color: #1a1e29;
    margin-bottom: 15px;
}

.testimonial-header .short-line {
    width: 60px;
    height: 4px;
    background-color: var(--primary-orange);
    margin: 0 auto;
    border-radius: 2px;
}

.video-wrapper {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    padding-bottom: 38%;
    /* Custom reduced Aspect Ratio */
    height: 0;
    background: #000;
    border: 10px solid white;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Footer Section */
.site-footer {
    background-color: var(--dark-text);
    padding: 60px 0 20px;
    color: #e2e8f0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-logo-wrapper {
    background: white;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    width: 300px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.footer-brand {
    color: #cda25b;
    /* Gold color */
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 1px;
}

.footer-middle,
.footer-right {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-middle {
    margin-left: 50px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-item i {
    color: var(--primary-orange);
    font-size: 20px;
}

.contact-item span {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.address-item {
    align-items: flex-start;
}

.address-item span {
    line-height: 1.6;
}

.footer-divider-vertical {
    width: 1px;
    height: 60px;
    background-color: var(--primary-orange);
    opacity: 0.5;
}

.footer-bottom {
    text-align: center;
    font-size: 13px;
    color: #94a3b8;
}

/* Floating Call Button */
.floating-call-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--primary-orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
    z-index: 999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.floating-call-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.6);
    color: white;
}

/* Simple Animations */
@keyframes simpleFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.hero-content {
    animation: simpleFadeIn 1s ease-out;
}

.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

.plan-card,
.step-card,
.mv-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.plan-card:hover,
.step-card:hover,
.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 48px;
    }

    .nav-links {
        gap: 20px;
    }

    .process-flow {
        flex-wrap: wrap;
        justify-content: center;
    }

    .process-step {
        flex: 0 0 calc(25% - 15px);
        margin-bottom: 30px;
    }

    .step-arrow {
        display: none;
    }

    .process-cta-bar {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .cta-left {
        border-right: none;
        padding-right: 0;
        margin-right: 0;
        border-bottom: 1px solid #e5e7eb;
        padding-bottom: 20px;
        flex-direction: column;
    }
}

@media (max-width: 991px) {
    .mobile-menu-toggle {
        display: block;
    }

    .navbar {
        position: fixed;
        top: 78px;
        right: -100%;
        left: auto;
        width: 75%;
        height: calc(100vh - 78px);
        background-color: var(--light-bg);
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 24px;
        transition: 0.4s ease-in-out;
        box-shadow: none;
        overflow-y: auto;
    }

    .navbar.active {
        right: 0;
        box-shadow: -15px 10px 20px -10px rgba(0, 0, 0, 0.1);
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 24px;
        margin-bottom: 32px;
    }

    .nav-links li a {
        font-size: 18px;
        display: inline-block;
    }

    .header-action {
        width: 100%;
    }

    .header-action .btn {
        width: 100%;
    }

    .hero {
        background-position: 70% center;
    }

    .info-bar {
        flex-wrap: wrap;
        padding: 24px;
        gap: 24px;
        border-radius: var(--border-radius);
    }

    .info-item {
        flex: 0 0 calc(50% - 12px);
    }

    .divider {
        display: none;
    }

    .info-bar-container {
        position: relative;
        bottom: 0;
        transform: none;
        left: 0;
        margin-top: -40px;
        margin-bottom: 40px;
        padding: 0 24px;
    }

    .hero {
        background-position: 70% center;
        flex-direction: column;
        padding-bottom: 60px;
    }

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

    .about-container {
        grid-template-columns: 1fr;
    }

    .stats-bar {
        width: 100%;
        margin-left: 0;
        flex-wrap: wrap;
        gap: 15px;
        padding: 20px;
    }

    .stat-item {
        border-right: none;
        padding-right: 0;
        flex: 0 0 calc(50% - 10px);
        margin-bottom: 10px;
    }

    .roi-examples {
        flex-direction: column;
        align-items: center;
    }

    .example-card {
        flex: 0 0 auto;
        width: 100%;
        max-width: 400px;
    }

    .mv-cards {
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }

    .mv-card {
        width: 100%;
        max-width: 600px;
    }

    .calc-card {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 500px;
    }

    .calc-result-group {
        text-align: left;
        border-left: none;
        border-top: 1px solid #f1f5f9;
        padding-left: 0;
        padding-top: 25px;
    }

    .result-amount {
        justify-content: flex-start;
    }

    .footer-content {
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
    }

    .footer-divider-vertical {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .hero::before {
        background: linear-gradient(to right, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    }

    .info-bar-container {
        position: relative;
        bottom: 0;
        top: auto;
        right: auto;
        left: 0;
        transform: none;
        width: 100%;
        margin-top: 40px;
        margin-bottom: 30px;
        padding: 0 16px;
    }

    .info-bar {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        padding: 16px;
        gap: 16px;
        border-radius: 8px;
    }

    .info-item {
        flex: 0 0 calc(50% - 8px);
        padding: 10px 0;
        border: none;
    }

    .info-item .icon {
        width: 44px;
        height: 44px;
        font-size: 24px;
        margin-bottom: 8px;
    }

    .plans-header h2 {
        font-size: 32px;
    }

    .plan-card {
        padding: 20px;
    }

    .plan-title h3 {
        font-size: 36px;
    }

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

    .about-content h2 {
        font-size: 28px;
    }

    .about-section {
        background-position: left center;
    }

    .about-features {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .stats-bar {
        flex-direction: column;
        max-width: 280px;
        margin: 0 auto;
    }

    .stat-item {
        flex: 0 0 100%;
        border-bottom: 1px solid #e5e7eb;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    .stat-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .important-note {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .note-doc-icon {
        display: none;
    }

    .process-header h2 {
        font-size: 32px;
    }

    .process-subtitle {
        font-size: 20px;
    }

    .process-section {
        background-size: cover;
        background-position: center center;
    }

    .process-step {
        flex: 0 0 100%;
        margin-bottom: 25px;
    }

    .cta-badges {
        flex-direction: column;
        gap: 8px;
    }

    .cta-badges .dot {
        display: none;
    }

    .roi-section {
        background-size: cover;
        background-position: center center;
    }

    .roi-header h2 {
        font-size: 32px;
    }

    .roi-table-wrapper {
        overflow-x: hidden;
    }

    .roi-table th,
    .roi-table td {
        white-space: normal;
        padding: 8px 6px;
        font-size: 11px;
    }

    .td-content {
        gap: 6px;
    }

    .td-icon {
        width: 24px;
        height: 24px;
        font-size: 14px;
        border-radius: 4px;
    }

    .example-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .ex-details li {
        justify-content: center;
    }

    .ex-result {
        text-align: center;
    }

    .mv-header h2 {
        font-size: 32px;
    }

    .mv-card h3 {
        font-size: 18px;
    }

    .mv-card {
        padding: 30px 20px;
    }

    .calculator-section {
        padding: 50px 0;
    }

    .calc-header h2 {
        font-size: 28px;
    }

    .calc-card {
        padding: 25px;
    }

    .toggle-label {
        font-size: 13px !important;
    }

    .social-section {
        padding: 40px 0;
    }

    .social-heading {
        font-size: 24px;
    }

    .social-btn {
        width: 50px;
        height: 50px;
        font-size: 26px;
    }

    .testimonial-section {
        padding: 40px 0;
    }

    .testimonial-header h2 {
        font-size: 28px;
    }

    .video-wrapper {
        border-width: 4px;
        border-radius: 12px;
        padding-bottom: 56.25%;
        /* Restore 16:9 ratio for mobile */
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }

    .footer-middle {
        margin-left: 0;
    }

    .contact-item {
        justify-content: center;
    }

    .address-item {
        align-items: center;
    }

    .floating-call-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
}