/* ===== CSS Variables ===== */
:root {
    --primary: #1A535C;
    --primary-dark: #133d43;
    --primary-light: #2a7a86;
    --accent: #B08B59;
    --accent-dark: #8a6c44;
    --accent-light: #c9a872;
    --dark: #2D2D2D;
    --dark-light: #3d3d3d;
    --text: #2D2D2D;
    --text-light: #5a5a5a;
    --text-muted: #888;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-bg: #f5f7f8;
    --border: #e0e4e6;
    --success: #28a745;
    --danger: #dc3545;
    
    --shadow-sm: 0 2px 8px rgba(26, 83, 92, 0.08);
    --shadow-md: 0 4px 20px rgba(26, 83, 92, 0.12);
    --shadow-lg: 0 8px 40px rgba(26, 83, 92, 0.16);
    --shadow-xl: 0 20px 60px rgba(26, 83, 92, 0.2);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

/* ===== Stock Ticker ===== */
.stock-ticker {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    padding: 12px 0;
    overflow: hidden;
    position: relative;
}

.ticker-wrap {
    display: flex;
    width: 100%;
    overflow: hidden;
}

.ticker-content {
    display: flex;
    animation: ticker 40s linear infinite;
    white-space: nowrap;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 30px;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.ticker-item i.fa-chart-line {
    color: var(--accent);
}

.ticker-item.up i.fa-caret-up {
    color: var(--success);
}

.ticker-item.down i.fa-caret-down {
    color: var(--danger);
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 5% 100px;
    background: linear-gradient(135deg, var(--off-white) 0%, var(--light-bg) 50%, rgba(26, 83, 92, 0.05) 100%);
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(176, 139, 89, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(26, 83, 92, 0.08) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231A535C' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    animation: fadeInUp 0.6s ease-out;
}

.hero-badge i {
    font-size: 14px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease-out 0.1s backwards;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title .subtitle-text {
    display: block;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 500;
    color: var(--text-light);
    margin-top: 10px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease-out 0.3s backwards;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: var(--border);
}

.hero-cta {
    animation: fadeInUp 0.6s ease-out 0.4s backwards;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.image-frame {
    position: relative;
    width: 350px;
    height: 400px;
    background: linear-gradient(145deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    animation: fadeInRight 0.8s ease-out 0.3s backwards;
    overflow: hidden;
}

.frame-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-radius: 0 var(--radius-xl) 0 100%;
    z-index: 1;
    opacity: 0.9;
}

.profile-placeholder {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-placeholder i {
    font-size: 80px;
    color: rgba(255, 255, 255, 0.5);
}

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 15px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}

.floating-card i {
    color: var(--accent);
    font-size: 20px;
}

.floating-card.card-1 {
    top: 20%;
    left: -30px;
    animation: float 4s ease-in-out infinite;
}

.floating-card.card-2 {
    bottom: 20%;
    right: -30px;
    animation: float 4s ease-in-out infinite 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== CTA Buttons ===== */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(176, 139, 89, 0.4);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(176, 139, 89, 0.5);
}

.cta-button:active {
    transform: translateY(0);
}

.cta-button .btn-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.cta-button.large {
    padding: 20px 40px;
    font-size: 18px;
}

.cta-button i.fa-arrow-right {
    transition: transform 0.3s ease;
}

.cta-button:hover i.fa-arrow-right {
    transform: translateX(4px);
}

/* ===== Sections ===== */
.section {
    padding: 100px 5%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(26, 83, 92, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-tag.center {
    margin-left: auto;
    margin-right: auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-title.center {
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-text {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* ===== Two Column Layout ===== */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.two-column.reverse {
    direction: rtl;
}

.two-column.reverse > * {
    direction: ltr;
}

/* ===== About Section ===== */
.about-section {
    background: var(--white);
}

.about-image-container {
    position: relative;
}

.about-image {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(145deg, var(--primary-light) 0%, var(--primary) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.about-image i {
    font-size: 120px;
    color: rgba(255, 255, 255, 0.3);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    padding: 20px 25px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.exp-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.exp-text {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.9;
}

.feature-list {
    list-style: none;
    margin-top: 30px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 1rem;
    color: var(--text);
}

.feature-list i {
    color: var(--primary);
    font-size: 18px;
}

/* ===== Benefits Section ===== */
.benefits-section {
    background: linear-gradient(180deg, var(--light-bg) 0%, var(--white) 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.benefit-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: rgba(26, 83, 92, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.benefit-icon i {
    font-size: 22px;
    color: var(--primary);
}

.benefit-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.benefit-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.benefits-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.visual-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.visual-card.main-card {
    padding: 30px;
    width: 280px;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 14px;
}

.card-header i {
    color: var(--primary);
}

.card-chart {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    height: 120px;
    padding: 20px 0;
}

.card-chart .bar {
    flex: 1;
    background: linear-gradient(180deg, rgba(26, 83, 92, 0.3) 0%, rgba(26, 83, 92, 0.1) 100%);
    border-radius: 4px 4px 0 0;
    transition: var(--transition);
}

.card-chart .bar.active {
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-light) 100%);
}

.card-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--success);
    text-align: center;
}

.visual-card.side-card {
    position: absolute;
    bottom: 20px;
    left: 0;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 14px;
    animation: float 4s ease-in-out infinite;
}

.visual-card.side-card i {
    color: var(--accent);
    font-size: 20px;
}

/* ===== Learn Section ===== */
.learn-section {
    background: var(--white);
}

.learn-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.learn-card {
    background: var(--light-bg);
    padding: 35px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.learn-card:hover {
    background: var(--white);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.learn-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.learn-icon i {
    font-size: 28px;
    color: var(--white);
}

.learn-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.learn-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== Testimonials Section ===== */
.testimonials-section {
    background: linear-gradient(180deg, var(--light-bg) 0%, var(--white) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: var(--accent);
    font-size: 16px;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    color: var(--text-muted);
    font-size: 20px;
}

.author-info strong {
    display: block;
    font-size: 0.95rem;
    color: var(--dark);
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ===== CTA Section ===== */
.cta-section {
    background: var(--white);
    padding: 80px 5%;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-xl);
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(176, 139, 89, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-box h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

.cta-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 40px;
}

.cta-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
}

.cta-features i {
    color: var(--accent);
}

/* ===== Footer ===== */
.footer {
    background: var(--dark);
    padding: 60px 5% 30px;
    color: var(--white);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-disclaimer {
    max-width: 400px;
}

.footer-disclaimer p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

.footer-disclaimer i {
    margin-top: 3px;
    color: var(--accent);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

/* ===== Fixed CTA Button ===== */
.fixed-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
   
    padding: 20px 20px 25px;
    display: flex;
    justify-content: center;
    z-index: 1000;
}

.fixed-cta .fixed-btn {
    width: 100%;
    max-width: 400px;
    justify-content: center;
    padding: 18px 30px;
    font-size: 15px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(176, 139, 89, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(176, 139, 89, 0.6), 0 0 0 8px rgba(176, 139, 89, 0.1);
    }
}

.fixed-cta-spacer {
    height: 100px;
}

/* ===== Live Notifications ===== */
#live-notifications {
    position: fixed;
    bottom: 120px;
    left: 20px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.notification-bubble {
    background: var(--white);
    padding: 12px 18px;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    animation: slideInLeft 0.4s ease-out, fadeOut 0.4s ease-out 4s forwards;
    border: 1px solid var(--border);
}

.notification-bubble .notif-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-bubble .notif-icon i {
    color: var(--white);
    font-size: 14px;
}

.notification-bubble .notif-text {
    color: var(--text);
}

.notification-bubble .notif-text strong {
    color: var(--primary);
}

.notification-bubble .notif-time {
    color: var(--text-muted);
    font-size: 11px;
    margin-left: 5px;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateX(-50px);
    }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 60px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image {
        margin-top: 60px;
    }
    
    .image-frame {
        width: 280px;
        height: 320px;
    }
    
    .floating-card.card-1 {
        left: -10px;
    }
    
    .floating-card.card-2 {
        right: -10px;
    }
    
    .two-column {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .two-column.reverse {
        direction: ltr;
    }
    
    .learn-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 70px 5%;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 10px;
        flex-wrap: nowrap;
        justify-content: center;
    }
    
    .stat-item {
        flex: 1;
        min-width: 0;
    }
    
    .stat-number {
        font-size: 1.4rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
        white-space: nowrap;
    }
    
    .stat-divider {
        width: 1px;
        height: 35px;
        flex-shrink: 0;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .learn-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-box {
        padding: 50px 30px;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .footer-disclaimer {
        max-width: 100%;
    }
    
    .footer-disclaimer p {
        justify-content: center;
        text-align: center;
    }
    
    #live-notifications {
        left: 10px;
        right: 10px;
    }
    
    .notification-bubble {
        font-size: 12px;
        padding: 10px 14px;
    }
}

@media (max-width: 480px) {
    .hero-badge {
        font-size: 11px;
        padding: 8px 16px;
    }
    
    .hero-stats {
        gap: 6px;
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
    }
    
    .stat-divider {
        height: 30px;
    }
    
    .floating-card {
        padding: 10px 14px;
        font-size: 12px;
    }
    
    .cta-button {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .cta-button .btn-icon {
        width: 20px;
        height: 20px;
    }
    
    .fixed-cta .fixed-btn {
        padding: 14px 20px;
        font-size: 13px;
    }
    
    .ticker-item {
        font-size: 12px;
        padding: 0 20px;
    }
}

/* ===== Modal Styles ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 700px;
    width: 100%;
    max-height: 85vh;
    overflow: hidden;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-xl);
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal-header h2 i {
    font-size: 1.2rem;
    opacity: 0.9;
}

.modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 18px;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.modal-body {
    padding: 30px;
    max-height: calc(85vh - 100px);
    overflow-y: auto;
}

.modal-body h3 {
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 700;
    margin: 25px 0 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-body h3:first-child {
    margin-top: 0;
}

.modal-body h3 i {
    font-size: 0.9rem;
}

.modal-body p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.modal-body ul {
    list-style: none;
    margin: 15px 0;
}

.modal-body ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.modal-body ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 0.8rem;
}

.modal-body .highlight-box {
    background: linear-gradient(135deg, rgba(26, 83, 92, 0.08) 0%, rgba(26, 83, 92, 0.03) 100%);
    border-left: 4px solid var(--primary);
    padding: 20px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 20px 0;
}

.modal-body .highlight-box p {
    margin: 0;
    color: var(--text);
}

.modal-body .contact-info {
    background: var(--light-bg);
    padding: 20px;
    border-radius: var(--radius-md);
    margin-top: 20px;
}

.modal-body .contact-info p {
    margin: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-body .contact-info i {
    color: var(--primary);
    width: 20px;
}

.modal-body .last-update {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

/* Scrollbar for modal */
.modal-body::-webkit-scrollbar {
    width: 6px;
}

.modal-body::-webkit-scrollbar-track {
    background: var(--light-bg);
    border-radius: 3px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}

@media (max-width: 768px) {
    .modal-content {
        max-height: 90vh;
    }
    
    .modal-header {
        padding: 20px;
    }
    
    .modal-header h2 {
        font-size: 1.2rem;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .modal-body h3 {
        font-size: 1rem;
    }
    
    .modal-body p,
    .modal-body ul li {
        font-size: 0.9rem;
    }
}

