
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: #f8fafc;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: url(../images/bgc.jpg)no-repeat center center;
    background-size: cover;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    animation: slide 30s linear infinite;
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100px); }
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.shape {
    position: absolute;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.shape1 {
    top: 10%;
    right: 10%;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #10b981, #059669);
    border-radius: 20px;
    animation-delay: 0s;
}

.shape2 {
    top: 60%;
    right: 70%;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ef4444, #dc2626);
    border-radius: 50%;
    animation-delay: 7s;
}

.shape3 {
    top: 30%;
    right: 85%;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #f59e0b, #d97706);
    transform: rotate(45deg);
    animation-delay: 14s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(90deg); }
    50% { transform: translateY(20px) rotate(180deg); }
    75% { transform: translateY(-10px) rotate(270deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: burlywood;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-family: 'Amiri', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.cta-container {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-button {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(45deg, #10b981, #059669);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
}

/* Live Chart Section */
.live-chart {
    padding: 80px 0;
    background: #1f2937;
    color: white;
}

.chart-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.chart-info h2 {
    font-family: 'Amiri', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #10b981;
}

.chart-info p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.chart-visual {
    background: linear-gradient(135deg, #374151 0%, #4b5563 100%);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.chart-header {
    display: flex;
    justify-content: between;
    align-items: center;
    margin-bottom: 20px;
}

.chart-title {
    font-weight: 600;
    color: #f3f4f6;
}

.chart-value {
    color: #10b981;
    font-weight: 700;
    font-size: 1.2rem;
}

.chart-svg {
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
}

.stock-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.metric {
    text-align: center;
    padding: 10px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 10px;
}

.metric-value {
    font-weight: 700;
    color: #10b981;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.metric-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Profit Showcase Section */
.profit-showcase {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.profit-showcase h2 {
    text-align: center;
    font-family: 'Amiri', serif;
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #166534;
}

.profit-showcase .subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #16a34a;
    margin-bottom: 60px;
}

.profit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.profit-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid #dcfce7;
}

.profit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.profit-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.stock-name {
    font-weight: 700;
    color: #166534;
    font-size: 1.2rem;
}

.profit-badge {
    background: linear-gradient(45deg, #10b981, #059669);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.profit-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.detail-item {
    text-align: center;
}

.detail-value {
    font-weight: 700;
    font-size: 1.1rem;
    color: #166534;
}

.detail-label {
    font-size: 0.9rem;
    color: #6b7280;
    margin-top: 5px;
}

.profit-chart {
    height: 60px;
    background: linear-gradient(45deg, #dcfce7, #bbf7d0);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.profit-line {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(to top, #10b981, #34d399);
    border-radius: 10px;
    animation: growWidth 2s ease-out;
}

@keyframes growWidth {
    from { width: 0; }
    to { width: var(--width); }
}

/* Image-Text Sections */
.image-text-section {
    padding: 100px 0;
    background: white;
}

.image-text-section:nth-child(even) {
    background: #f8fafc;
}

.image-text-section.reverse {
    background: #f0f9ff;
}

.image-text-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.image-text-section.reverse .image-text-container {
    grid-template-columns: 1fr 1fr;
}

.text-content h2 {
    font-family: 'Amiri', serif;
    font-size: 2.2rem;
    color: #1e3a8a;
    margin-bottom: 20px;
    line-height: 1.3;
}

.text-content p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 30px;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.feature-list li {
    padding: 8px 0;
    font-size: 1rem;
    color: #374151;
}

.secondary-cta {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(45deg, #1e3a8a, #3b82f6);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.secondary-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
}

/* AI Dashboard Styles */
.ai-dashboard {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    border-radius: 20px;
    padding: 25px;
    color: white;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.header-title {
    font-weight: 600;
    font-size: 1.1rem;
}

.status-indicator {
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-indicator.active {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.analysis-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.analysis-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
}

.analysis-card.positive {
    border-color: rgba(16, 185, 129, 0.3);
    background: rgba(16, 185, 129, 0.05);
}

.analysis-card.neutral {
    border-color: rgba(251, 191, 36, 0.3);
    background: rgba(251, 191, 36, 0.05);
}

.stock-symbol {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.prediction {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.analysis-card.positive .prediction {
    color: #10b981;
}

.analysis-card.neutral .prediction {
    color: #fbbf24;
}

.confidence {
    font-size: 0.8rem;
    opacity: 0.8;
}

.ai-insights {
    background: rgba(16, 185, 129, 0.1);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.insight-title {
    font-weight: 600;
    color: #10b981;
    margin-bottom: 8px;
}

.insight-text {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Community Visual Styles */
.community-visual {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    overflow: hidden;
}

.chat-container {
    padding: 0;
}

.chat-header {
    background: linear-gradient(45deg, #1e3a8a, #3b82f6);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-title {
    font-weight: 600;
    font-size: 1.1rem;
}

.online-count {
    font-size: 0.9rem;
    background: rgba(255,255,255,0.1);
    padding: 5px 12px;
    border-radius: 15px;
}

.chat-messages {
    padding: 20px;
    max-height: 300px;
}

.message {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(45deg, #3b82f6, #1e3a8a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.expert-avatar {
    background: linear-gradient(45deg, #10b981, #059669) !important;
    font-size: 1.2rem;
}

.message-content {
    flex: 1;
}

.sender {
    font-weight: 600;
    color: #1e3a8a;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.message.expert .sender {
    color: #059669;
}

.text {
    color: #374151;
    font-size: 0.95rem;
    line-height: 1.4;
    background: #f1f5f9;
    padding: 10px 15px;
    border-radius: 15px;
    border-top-left-radius: 5px;
}

.message.expert .text {
    background: #dcfce7;
}

.typing-indicator {
    padding: 15px 20px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #64748b;
    font-size: 0.9rem;
}

.dots {
    display: flex;
    gap: 3px;
}

.dots span {
    width: 6px;
    height: 6px;
    background: #64748b;
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out;
}

.dots span:nth-child(1) { animation-delay: -0.32s; }
.dots span:nth-child(2) { animation-delay: -0.16s; }

@keyframes typing {
    0%, 80%, 100% { transform: scale(0); opacity: 0.5; }
    40% { transform: scale(1); opacity: 1; }
}

.community-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.community-stats .stat {
    text-align: center;
    padding: 15px;
    background: rgba(30, 58, 138, 0.05);
    border-radius: 12px;
}

.community-stats .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 5px;
}

.community-stats .stat-label {
    font-size: 0.9rem;
    color: #64748b;
}

/* Portfolio Dashboard Styles */
.portfolio-dashboard {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 1px solid #e5e7eb;
}

.portfolio-header {
    margin-bottom: 20px;
}

.portfolio-header h3 {
    color: #1e3a8a;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.portfolio-value {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.total-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e3a8a;
}

.daily-change {
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
}

.daily-change.positive {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.portfolio-chart {
    margin: 20px 0;
    height: 150px;
}

.mini-chart {
    width: 100%;
    height: 100%;
}

.holdings {
    border-top: 1px solid #e5e7eb;
    padding-top: 15px;
}

.holding-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
}

.holding-item:last-child {
    border-bottom: none;
}

.stock-info {
    display: flex;
    flex-direction: column;
}

.symbol {
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 3px;
}

.shares {
    font-size: 0.85rem;
    color: #64748b;
}

.holding-value {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.value {
    font-weight: 600;
    color: #374151;
    margin-bottom: 3px;
}

.change {
    font-size: 0.85rem;
    font-weight: 600;
}

.change.positive {
    color: #059669;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.benefit-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 58, 138, 0.1);
    border-radius: 12px;
    flex-shrink: 0;
}

.benefit-text h4 {
    color: #1e3a8a;
    font-size: 1rem;
    margin-bottom: 5px;
}

.benefit-text p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: white;
}

.features h2 {
    text-align: center;
    font-family: 'Amiri', serif;
    font-size: 2.8rem;
    margin-bottom: 60px;
    color: #1e3a8a;
    position: relative;
}

.features h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #1e3a8a, #3b82f6);
    margin: 20px auto;
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #1e3a8a, #3b82f6, #06b6d4);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #1e3a8a;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1e3a8a;
    font-weight: 600;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.testimonials h2 {
    text-align: center;
    font-family: 'Amiri', serif;
    font-size: 2.8rem;
    margin-bottom: 60px;
    color: #0c4a6e;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    border-left: 4px solid #0284c7;
}

.testimonial-quote {
    font-size: 1.1rem;
    color: #374151;
    margin-bottom: 20px;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(45deg, #0284c7, #0ea5e9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.author-info h4 {
    font-weight: 600;
    color: #0c4a6e;
    margin-bottom: 5px;
}

.author-info p {
    color: #64748b;
    font-size: 0.9rem;
}

.testimonial-profit {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(45deg, #10b981, #059669);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.stat-item {
    padding: 20px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #34d399;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Risk Warning */
.risk-warning {
    padding: 60px 0;
    background: #fef2f2;
    border-top: 3px solid #ef4444;
    border-bottom: 3px solid #ef4444;
}

.risk-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.risk-warning h3 {
    color: #dc2626;
    font-size: 1.5rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.risk-warning p {
    color: #7f1d1d;
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    text-align: center;
    color: white;
}

.final-cta h2 {
    font-family: 'Amiri', serif;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.urgent-notice {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 20px;
    margin: 40px 0;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.urgent-notice h3 {
    color: #fbbf24;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .chart-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .features h2 {
        font-size: 2.2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .profit-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .image-text-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .image-text-section.reverse .image-text-container {
        grid-template-columns: 1fr;
    }
    
    .analysis-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .community-stats {
        grid-template-columns: 1fr;
    }
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}
.floating-button-container {
    position: fixed;
    bottom: 30px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    z-index: 1000;
    pointer-events: none;
    }
    @keyframes bounce {
    0%, 100% {
    transform: translateY(0);
    }
    50% {
    transform: translateY(-10px);
    }
    }
    .floating-button {
    position: relative;
    background: #05C705;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: bounce 2s infinite;
    transition: all 0.3s ease;
    white-space: nowrap;
    pointer-events: auto;
    }
    
    .floating-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }
    
    .floating-button .icon {
    font-size: 24px;
    }
    
    @media (max-width: 768px) {
    .floating-button-container {
    bottom: 20px;
    }
    
    .floating-button {
    font-size: 16px;
    padding: 12px 24px;
    }
    }
    
    @media (max-width: 480px) {
    .floating-button {
    font-size: 14px;
    padding: 10px 20px;
    }
    
    .floating-button .icon {
    font-size: 18px;
    }
    }
