/* ===== CSS VARIABLES ===== */
:root {
    --primary-color: #1e3a8a;
    --primary-dark: #1e2f5c;
    --secondary-color: #3b82f6;
    --accent-color: #fbbf24;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --bg-primary: #ffffff;
    --bg-secondary: #f3f4f6;
    --bg-tertiary: #e5e7eb;
    --border-color: #d1d5db;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] {
    --primary-color: #3b82f6;
    --primary-dark: #2563eb;
    --secondary-color: #60a5fa;
    --accent-color: #fbbf24;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --text-primary: #f9fafb;
    --text-secondary: #d1d5db;
    --bg-primary: #111827;
    --bg-secondary: #1f2937;
    --bg-tertiary: #374151;
    --border-color: #4b5563;
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Tajawal', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    transition: all 0.3s ease;
    overflow-x: hidden;
}

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

/* ===== LIGHTNING EFFECTS ===== */
.lightning-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.lightning {
    position: absolute;
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--accent-color), transparent);
    opacity: 0;
    animation: lightning-strike 4s infinite;
}

.lightning-1 { left: 10%; animation-delay: 0s; }
.lightning-2 { left: 50%; animation-delay: 1s; }
.lightning-3 { left: 90%; animation-delay: 2s; }

@keyframes lightning-strike {
    0%, 90%, 100% { opacity: 0; transform: translateY(-100px); }
    95% { opacity: 1; transform: translateY(0); }
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #f9a8a8;
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .navbar {
    background: rgba(17, 24, 39, 0.95);
}

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

/* ===== ZEUS LOGO SVG STYLES ===== */
.zeus-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 5px;
    transition: all 0.3s ease;
}

.zeus-logo:hover {
    transform: scale(1.05);
}

.logo-svg {
    width: 180px;
    height: 60px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.zeus-logo .logo-img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
    border-radius: 10px;
}

.footer-logo .logo-img {
    height: 45px;
}

.logo-svg:hover {
    filter: drop-shadow(0 6px 12px rgba(251, 191, 36, 0.4));
    transform: translateY(-2px);
}

/* ===== HERO LOGO STYLES ===== */
.hero-logo {
    margin-bottom: 2rem;
    text-align: center;
    animation: fadeInDown 1s ease;
}

.hero-logo-svg {
    width: 300px;
    height: 120px;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.4));
    animation: heroLogoGlow 3s ease-in-out infinite;
}

.hero-logo-img {
    max-width: 300px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.4));
    animation: heroLogoGlow 3s ease-in-out infinite;
}

@keyframes heroLogoGlow {
    0%, 100% { 
        filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.4));
        transform: scale(1);
    }
    50% { 
        filter: drop-shadow(0 12px 24px rgba(251, 191, 36, 0.6));
        transform: scale(1.02);
    }
}

/* ===== FOOTER LOGO STYLES ===== */
.footer-logo-svg {
    width: 150px;
    height: 60px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.footer-logo-svg:hover {
    filter: drop-shadow(0 4px 8px rgba(251, 191, 36, 0.3));
    transform: translateY(-1px);
}

/* ===== LOGO ANIMATIONS ===== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== CLOUD ANIMATIONS ===== */
.cloud-group,
.hero-cloud-group,
.footer-cloud-group {
    animation: cloudFloat 4s ease-in-out infinite;
}

.hero-cloud-group {
    animation-duration: 6s;
}

.footer-cloud-group {
    animation-duration: 5s;
}

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

/* ===== LIGHTNING ENHANCEMENTS ===== */
.bolt-1,
.bolt-2,
.bolt-3 {
    filter: drop-shadow(0 0 3px var(--accent-color));
}

.hero-bolt-1,
.hero-bolt-2,
.hero-bolt-3 {
    filter: drop-shadow(0 0 6px var(--accent-color));
}

/* ===== LOGO TEXT STYLES ===== */
.logo-text-svg,
.hero-logo-text {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
    font-weight: 900;
}

.hero-logo-text {
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

/* ===== NAV CONTROLS ===== */
.nav-controls {
    display: flex;
    gap: 15px;
    align-items: center;
}

.lang-toggle, .theme-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lang-toggle:hover, .theme-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.lang-toggle option {
    color: #111;
}

/* ===== MAIN CONTENT ===== */
.main-content {
    margin-top: 80px;
    position: relative;
    z-index: 2;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    background: radial-gradient(ellipse at 25% 45%, #f9a8a8 0%, #fde8e8 1000%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 70% 80%, rgba(255, 255, 255, 0.6) 0%, transparent 60%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    z-index: 1;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: none;
    background: linear-gradient(45deg, #be185d, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #9f1239;
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(251, 191, 36, 0.4);
}

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

.hero .btn-secondary {
    color: #be185d;
    border-color: #f472b6;
}

.hero .btn-secondary:hover {
    background: #f472b6;
    color: #ffffff;
    transform: translateY(-3px);
}

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

/* ===== SECTIONS ===== */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.about-text {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
}

.features {
    /* display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem; */
}

.feature-card {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

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

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== LICENSES SECTION ===== */
.licenses-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.license-card {
    background: var(--bg-primary);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 3rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.license-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.license-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.license-info {
    padding: 2rem;
}

.license-info h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.license-info p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.license-details {
    background: var(--bg-tertiary);
    padding: 1.5rem;
    border-radius: 15px;
    border-right: 4px solid var(--accent-color);
}

.license-details p {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.license-details strong {
    color: var(--primary-color);
}

.license-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: var(--accent-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.license-images {
    display: flex;
    /* flex-direction: column; */
    gap: 1rem;
    padding: 2rem;
    background: var(--bg-tertiary);
    border-radius: 15px;
}

.license-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.license-image-container:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.license-img {
    width: 100%;
    height: auto;
    max-height: 150px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: var(--bg-tertiary);
    min-height: 120px;
}

.license-img:hover {
    transform: scale(1.02);
}

.license-card:first-child .license-images {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.license-card:last-child .license-images {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.license-card:last-child .license-img {
    max-height: 200px;
    max-width: 100%;
}

/* ===== REWARDS SECTION ===== */
.rewards-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

.reward-card {
    background: var(--bg-secondary);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.reward-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.reward-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
}

.reward-card h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.reward-table {
    overflow-x: auto;
    margin-bottom: 1.5rem;
}

.reward-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-primary);
    border-radius: 15px;
    overflow: hidden;
}

.reward-table th {
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    text-align: center;
    font-weight: 600;
}

.reward-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-primary);
}

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

.reward-table tr:hover {
    background: var(--bg-tertiary);
}

.reward-note {
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    font-weight: 500;
    text-align: center;
    margin-top: 1rem;
}

/* ===== SIGNALS SCHEDULE ===== */
.signals-schedule {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.signal-zone-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.signal-zone-title {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-color);
}

.signal-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-primary);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.signal-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
    border-right: 4px solid var(--accent-color);
}

.signal-time {
    font-weight: 600;
    color: var(--primary-color);
    flex: 1;
}

.signal-clock {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-color);
    padding: 0.5rem 1rem;
    background: var(--bg-tertiary);
    border-radius: 10px;
    margin: 0 1rem;
}

.signal-zone {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

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

.service-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.price-tag {
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 700;
    display: inline-block;
}

.price-tag span {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ===== MARKET DATA SECTION ===== */
.market-data-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.market-ticker {
    display: flex;
    flex-direction: column;
    background: var(--bg-primary);
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.market-status {
    padding: 2rem 1.5rem;
    text-align: center;
    color: var(--text-secondary);
}

.market-error {
    color: var(--danger-color);
}

.ticker-item {
    background: var(--bg-primary);
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    border-radius: 0;
    box-shadow: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: background 0.2s ease;
}

.ticker-item:last-child {
    border-bottom: none;
}

.ticker-item:hover {
    transform: none;
    background: var(--bg-secondary);
    box-shadow: none;
}

.ticker-info {
    flex: 1;
    min-width: 0;
}

.ticker-quote {
    flex-shrink: 0;
    text-align: right;
}

.ticker-name {
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ticker-symbol {
    margin-top: 0.25rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.ticker-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.ticker-change {
    margin-top: 0.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    background: transparent;
    padding: 0;
    border-radius: 0;
}

.ticker-change.up {
    color: #ef4444;
}

.ticker-change.down {
    color: #10b981;
}

.ticker-change.flat {
    color: var(--text-secondary);
}

.ticker-change.positive {
    background: var(--success-color);
    color: white;
}

.ticker-change.negative {
    background: var(--danger-color);
    color: white;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

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

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.author-info strong {
    display: block;
    color: var(--primary-color);
    font-weight: 700;
}

.author-info span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.contact-content {
    display: flex;
    /* grid-template-columns: 1fr 1fr;
    gap: 3rem; */
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-primary);
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.contact-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-color);
    color: var(--primary-color);
    border-radius: 50%;
}

.contact-details h3 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-secondary);
}

.contact-form {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    background: var(--bg-secondary);
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
}

/* ===== CHAT SECTION ===== */
.chat-section {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    width: 400px;
    max-width: 90vw;
}

.chat-container {
    background: var(--bg-primary);
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.chat-header {
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-chat {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-chat:hover {
    background: rgba(255, 255, 255, 0.2);
}

.chat-messages {
    height: 300px;
    overflow-y: auto;
    padding: 1rem;
    background: var(--bg-secondary);
}

.message {
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 15px;
    max-width: 80%;
}

.bot-message {
    background: var(--primary-color);
    color: white;
    margin-right: auto;
}

.user-message {
    background: var(--accent-color);
    color: var(--primary-color);
    margin-left: auto;
}

.chat-input {
    display: flex;
    padding: 1rem;
    gap: 0.5rem;
    background: var(--bg-primary);
}

.chat-input input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 25px;
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.chat-input button {
    padding: 0.75rem 1.5rem;
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.chat-input button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 100px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo p {
    margin-top: 1rem;
    opacity: 0.8;
}

.footer-links h4,
.footer-social h4 {
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-links ul {
    list-style: none;
}

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

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .nav-container {
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .chat-section {
        width: 100%;
        right: 10px;
        left: 10px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .license-content {
        grid-template-columns: 1fr;
    }
    
    .license-images {
        padding: 1rem;
    }
    
    .license-img {
        max-height: 120px;
    }
    
    .license-card:last-child .license-img {
        max-height: 150px;
    }
    
    .reward-table {
        font-size: 0.9rem;
    }
    
    .reward-table th,
    .reward-table td {
        padding: 0.75rem 0.5rem;
    }
    
    .signal-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .signal-clock {
        margin: 0;
    }
    
    .logo-svg {
        width: 140px;
        height: 45px;
    }
    
    .hero-logo-svg {
        width: 240px;
        height: 96px;
    }

    .hero-logo-img {
        max-width: 240px;
    }
    
    .footer-logo-svg {
        width: 120px;
        height: 48px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .feature-card,
    .service-card,
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .license-info,
    .reward-card {
        padding: 1.5rem;
    }
    
    .reward-table {
        font-size: 0.8rem;
    }
    
    .reward-table th,
    .reward-table td {
        padding: 0.5rem 0.25rem;
    }
    
    .signal-item {
        padding: 1rem;
    }
    
    .license-images {
        padding: 0.5rem;
    }
    
    .license-img {
        max-height: 100px;
    }
    
    .license-card:last-child .license-img {
        max-height: 120px;
    }
    
    .logo-svg {
        width: 120px;
        height: 40px;
    }
    
    .hero-logo-svg {
        width: 200px;
        height: 80px;
    }

    .hero-logo-img {
        max-width: 200px;
    }
    
    .footer-logo-svg {
        width: 100px;
        height: 40px;
    }
}

/* ===== ENGLISH LTR SUPPORT ===== */
html[dir="ltr"] {
    direction: ltr;
}

html[dir="ltr"] .nav-container {
    flex-direction: row;
}

html[dir="ltr"] .hero-buttons {
    flex-direction: row;
}

html[dir="ltr"] .footer-links a:hover {
    transform: translateX(-5px);
}

/* ===== ANIMATIONS ===== */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 5px rgba(251, 191, 36, 0.5); }
    50% { box-shadow: 0 0 20px rgba(251, 191, 36, 0.8); }
}

.animate-pulse {
    animation: pulse 2s infinite;
}

.animate-glow {
    animation: glow 2s infinite;
}

/* ===== SCROLLBAR STYLING ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/* ===== LOGO LOADING ANIMATION ===== */
.logo-loading {
    animation: logoPulse 2s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% { 
        opacity: 1;
        transform: scale(1);
    }
    50% { 
        opacity: 0.8;
        transform: scale(0.98);
    }
}

/* ===== DARK THEME LOGO ADJUSTMENTS ===== */
[data-theme="dark"] .logo-svg,
[data-theme="dark"] .hero-logo-svg,
[data-theme="dark"] .footer-logo-svg {
    filter: drop-shadow(0 4px 8px rgba(251, 191, 36, 0.2));
}

[data-theme="dark"] .logo-svg:hover,
[data-theme="dark"] .hero-logo-svg:hover,
[data-theme="dark"] .footer-logo-svg:hover {
    filter: drop-shadow(0 6px 12px rgba(251, 191, 36, 0.4));
}

/* ===== LOGO INTERACTIVE EFFECTS ===== */
.zeus-logo:active .logo-svg {
    transform: scale(0.95);
    transition: transform 0.1s ease;
}

.hero-logo:active .hero-logo-svg {
    transform: scale(0.98);
    transition: transform 0.1s ease;
}

/* ===== ACCESSIBILITY ===== */
.logo-svg:focus,
.hero-logo-svg:focus,
.footer-logo-svg:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
    border-radius: 4px;
}

/* ===== PRINT STYLES ===== */
@media print {
    .logo-svg,
    .hero-logo-svg,
    .footer-logo-svg {
        filter: none !important;
        animation: none !important;
    }
}
/* ===== LICENSE IMAGE STYLES ===== */
.license-img {
    width: 100%;
    height: 150px;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

.license-img:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}
/* ===== LICENSE IMAGE ENHANCEMENTS ===== */
.license-img {
    cursor: pointer;
    transition: all 0.3s ease;
}

.license-img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 3px solid var(--accent-color);
}

.license-img:active {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* ===== IMAGE VIEWER MODAL ===== */
.image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.image-modal-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 15px;
    overflow: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.image-modal-content img {
    width: 100%;
    height: auto;
    display: block;
}

.image-modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 30px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* ===== CONTACT SECTION ENHANCEMENTS ===== */
.contact-section {
    padding: 80px 0;
}

.contact-info {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 2px solid var(--accent-color);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.contact-details h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.contact-details p {
    font-size: 18px;
}

.contact-details a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: bold;
}

.contact-details a:hover {
    text-decoration: underline;
}
/* ===== MOBILE RESPONSIVE FIXES ===== */
/* Fix 1: testimonials-grid min 400px causes overflow on mobile */
@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Fix 2: features grid min 300px overflows on small phones */
@media (max-width: 640px) {
    .features {
        grid-template-columns: 1fr;
    }

    /* Fix 3: signals schedule min 280px overflows */
    .signals-schedule {
        grid-template-columns: 1fr;
    }

    /* Fix 4: footer grid min 250px — force single column */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links a:hover {
        transform: none;
    }

    .social-links {
        justify-content: center;
    }
}

/* Fix 5: license images — stack vertically on mobile */
@media (max-width: 600px) {
    .license-images {
        flex-direction: column;
        padding: 1rem;
    }

    .license-card:first-child .license-images {
        grid-template-columns: 1fr;
    }

    .license-card:last-child .license-images {
        flex-direction: column;
        align-items: stretch;
    }

    .license-img,
    .license-card:last-child .license-img {
        max-height: none;
        height: auto;
        min-height: unset;
    }
}

/* Fix 6: nav-container padding too wide on mobile */
@media (max-width: 480px) {
    .nav-container {
        padding: 0.75rem 1rem;
        gap: 8px;
    }

    .zeus-logo .logo-img {
        height: 36px;
    }

    .lang-toggle {
        padding: 6px 10px;
        font-size: 12px;
    }

    .theme-toggle {
        padding: 6px 10px;
    }

    /* Fix 7: section-title too large on phones */
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }

    /* Fix 8: reward-card padding breathing room */
    .reward-card {
        padding: 1.25rem;
    }

    /* Fix 9: signal-item text wrapping */
    .signal-item {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .signal-clock {
        margin: 0;
    }
}

/* Fix 10: prevent any element from causing horizontal scroll */
@media (max-width: 768px) {
    .main-content,
    section,
    .container {
        max-width: 100%;
        overflow-x: hidden;
    }
}

.media-video {
    width: 100%;
    height: auto;
}
