/* Business Landing Page CSS - PRODUCTION READY - ALL ISSUES FIXED */
/* ===== ALL MOBILE FIXES APPLIED ===== */

/* ===== BASE & RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #4299e1;
    --secondary-color: #667eea;
    --accent-color: #25D366;
    --whatsapp-green: #25D366;
    --whatsapp-dark-green: #128C7E;
    --whatsapp-light-green: #DCF8C6;
    --success-color: #48bb78;
    --danger-color: #f56565;
    --warning-color: #ed8936;
    --dark-color: #2d3748;
    --light-color: #f7fafc;
    --text-color: #4a5568;
    --text-light: #718096;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Segoe UI', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--light-color);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* ===== UTILITY CLASSES ===== */
.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--light-color);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    width: 100%;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    background: rgba(66, 153, 225, 0.1);
    padding: 8px 20px;
    border-radius: 20px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
    line-height: 1.2;
    width: 100%;
    overflow-wrap: break-word;
}

.section-title .highlight {
    color: var(--primary-color);
    position: relative;
}

.section-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(66, 153, 225, 0.2);
    z-index: -1;
    border-radius: 4px;
}

.section-description {
    color: var(--text-light);
    font-size: 18px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
    overflow-wrap: break-word;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn i {
    font-size: 18px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-success {
    background: var(--success-color);
    color: white;
    border: none;
}

.btn-success:hover {
    background: #38a169;
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--text-color);
    border-color: var(--border-color);
}

.btn-ghost:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-small {
    padding: 8px 16px;
    font-size: 14px;
}

.btn-block {
    width: 100%;
}

/* ===== ANIMATED BACKGROUND ===== */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(66, 153, 225, 0.1) 0%, rgba(102, 126, 234, 0.1) 100%);
    animation: float 20s infinite linear;
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    left: -200px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    right: -150px;
    animation-delay: -5s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 10%;
    animation-delay: -10s;
}

.shape-4 {
    width: 150px;
    height: 150px;
    bottom: 30%;
    right: 10%;
    animation-delay: -15s;
}

/* ===== SCROLL BUBBLE - FIXED POSITION (CENTER-MIDDLE) ===== */
.scroll-bubble {
    position: fixed;
    top: 50%; /* Center vertically */
    right: 30px;
    transform: translateY(-50%); /* Perfect vertical centering */
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    z-index: 999;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.scroll-bubble:hover {
    transform: translateY(-50%) scale(1.1); /* Maintain centering while scaling */
}

.scroll-bubble i {
    margin: 0;
    padding: 0;
    display: block;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes pulse {
    0%, 100% { transform: translateY(-50%) scale(1); }
    50% { transform: translateY(-50%) scale(1.05); }
}

/* ===== HERO SECTION ===== */
.hero-section {
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
    margin: 0;
    box-sizing: border-box;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-text {
    animation: fadeInUp 1s ease-out;
    width: 100%;
    overflow-wrap: break-word;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    animation: slideInLeft 1s ease-out;
    width: fit-content;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--dark-color);
    line-height: 1.2;
    margin-bottom: 20px;
    width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-text {
    color: var(--accent-color);
    position: relative;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(37, 211, 102, 0.2);
    z-index: -1;
    border-radius: 4px;
}

.hero-description {
    font-size: 18px;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 30px;
    width: 100%;
    overflow-wrap: break-word;
}

.hero-description strong {
    color: var(--dark-color);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    width: 100%;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    width: 100%;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    width: 100%;
}

.hero-visual {
    animation: fadeInRight 1s ease-out;
    width: 100%;
    position: relative;
}

.dashboard-showcase {
    position: relative;
    height: 400px;
    width: 100%;
    max-width: 100%;
}

.dashboard-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 2;
    height: 250px;
    width: 100%;
    box-sizing: border-box;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    width: 100%;
}

.dashboard-header h4 {
    color: var(--dark-color);
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dashboard-header h4 i {
    color: var(--accent-color);
}

.live-badge {
    background: var(--success-color);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
    width: 100%;
}

.dashboard-stats .stat {
    text-align: center;
}

.dashboard-stats .number {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-color);
    display: block;
}

.dashboard-stats .label {
    font-size: 14px;
    color: var(--text-light);
}

.chart-placeholder {
    height: 100px;
    background: linear-gradient(90deg, #f0f4f8 25%, #e2e8f0 50%, #f0f4f8 75%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
    border-radius: var(--radius-sm);
    width: 100%;
}

.floating-card {
    position: absolute;
    width: 120px;
    height: 120px;
    background: white;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: var(--shadow-lg);
    z-index: 1;
    transition: var(--transition);
    animation: float 6s ease-in-out infinite;
}

.floating-card:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

.floating-card i {
    font-size: 32px;
}

.floating-card span {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-color);
}

.floating-card.saas {
    top: 20px;
    right: 20px;
    color: var(--primary-color);
    animation-delay: 0s;
}

.floating-card.ecommerce {
    bottom: 40px;
    left: 20px;
    color: var(--warning-color);
    animation-delay: -2s;
}

.floating-card.digital {
    bottom: 20px;
    right: 40px;
    color: var(--danger-color);
    animation-delay: -4s;
}

/* ===== SERVICES SECTION ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    width: 100%;
}

.service-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover::before {
    opacity: 1;
}

/* FIXED: Service Icon Position - Perfect Center */
.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(66, 153, 225, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 32px;
    margin: 0 auto 15px auto; /* Center horizontally */
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--primary-color);
    color: white;
}

.service-card h3 {
    font-size: 22px;
    color: var(--dark-color);
    margin-bottom: 15px;
    text-align: center;
}

.service-description {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
    text-align: center;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-color);
}

.service-features li i {
    color: var(--success-color);
    font-size: 14px;
}

.service-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    justify-content: center;
}

.service-link:hover {
    gap: 15px;
    color: var(--secondary-color);
}

/* ===== WHATSAPP SECTION ===== */
.whatsapp-section .solution-tabs {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.tab-buttons {
    display: flex;
    background: var(--light-color);
    border-bottom: 1px solid var(--border-color);
    flex-wrap: wrap;
    width: 100%;
}

.tab-btn {
    flex: 1;
    min-width: 120px;
    padding: 20px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.tab-btn:hover {
    color: var(--primary-color);
    background: rgba(66, 153, 225, 0.05);
}

.tab-btn.active {
    color: var(--primary-color);
    background: white;
    border-bottom: 3px solid var(--primary-color);
}

.tab-content {
    padding: 40px;
    width: 100%;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease-out;
    width: 100%;
}

.tab-pane.active {
    display: block;
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    width: 100%;
}

.solution-text h3 {
    font-size: 28px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.solution-text > p {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 16px;
}

.feature-list {
    list-style: none;
    margin-bottom: 30px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--text-color);
}

.feature-list li i {
    color: var(--success-color);
    font-size: 16px;
}

.solution-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.solution-image {
    position: relative;
    width: 100%;
}

.whatsapp-demo {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    width: 100%;
}

.whatsapp-chat {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin: 20px;
    height: 300px;
    display: flex;
    flex-direction: column;
    width: calc(100% - 40px);
}

.chat-header {
    background: var(--light-color);
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
    width: 100%;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.avatar {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}

.name {
    font-weight: 600;
    color: var(--dark-color);
}

.status {
    font-size: 12px;
    color: var(--success-color);
}

.chat-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.message {
    padding: 10px 15px;
    border-radius: 18px;
    max-width: 70%;
    word-wrap: break-word;
}

.message.received {
    background: var(--light-color);
    align-self: flex-start;
    border-bottom-left-radius: 5px;
}

.message.sent {
    background: var(--primary-color);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 5px;
}

.typing {
    display: flex;
    gap: 4px;
    padding: 15px;
}

.typing span {
    width: 8px;
    height: 8px;
    background: var(--text-light);
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out;
}

.typing span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ===== SAAS PRODUCTS SECTION ===== */
.products-showcase {
    position: relative;
    width: 100%;
}

.product-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
    justify-content: center;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 10px;
}

.category {
    padding: 10px 20px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}

.category:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.category.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
    width: 100%;
}

/* PRODUCT BORDER/Separator Added */
.product-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid var(--border-color);
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 4px 12px;
    background: var(--primary-color);
    color: white;
    font-size: 12px;
    font-weight: 600;
    border-radius: 12px;
    z-index: 2;
}

/* UPDATED: Product Icon/Image Container - READY FOR IMAGE */
.product-icon {
    width: 60px;
    height: 60px;
    background: rgba(66, 153, 225, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 28px;
    margin: 0 auto 15px auto; /* Perfect center */
    transition: var(--transition);
    overflow: hidden; /* For images */
}

/* For Image Support - Add this to use image inside .product-icon */
.product-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* or cover based on your preference */
    border-radius: var(--radius-md);
}

.product-card:hover .product-icon {
    transform: scale(1.1);
    background: var(--primary-color);
    color: white;
}

.product-card:hover .product-icon img {
    filter: brightness(0) invert(1); /* Makes image white when hovered */
}

.product-card h4 {
    font-size: 18px;
    color: var(--dark-color);
    margin-bottom: 12px;
    line-height: 1.4;
    text-align: center;
}

.product-description {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
    min-height: 60px;
    text-align: center;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    justify-content: center;
}

.product-features span {
    padding: 4px 12px;
    background: var(--light-color);
    color: var(--text-color);
    font-size: 12px;
    font-weight: 500;
    border-radius: 15px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.products-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    width: 100%;
}

/* ===== WHATSAPP-STYLE MODAL ===== */
.whatsapp-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 15px;
    box-sizing: border-box;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: white;
    border-radius: var(--radius-lg);
    width: 95%;
    max-width: 500px; /* Mobile-like width */
    height: 85vh;
    max-height: 700px;
    overflow: hidden;
    position: relative;
    z-index: 10001;
    box-shadow: var(--shadow-xl);
    animation: modalIn 0.3s ease-out;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

/* WhatsApp Header */
.whatsapp-header {
    background: var(--whatsapp-dark-green);
    color: white;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 10;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.back-btn {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.whatsapp-avatar {
    width: 40px;
    height: 40px;
    background: var(--whatsapp-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-name {
    font-weight: 600;
    font-size: 16px;
}

.contact-status {
    font-size: 12px;
    opacity: 0.9;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.close-modal {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
}

/* WhatsApp Body */
.whatsapp-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: #e5ddd5;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath fill='%23f0f0f0' d='M0,0 L100,0 L100,100 L0,100 Z'/%3E%3Cpath fill='%23d1e3ff' d='M50,50 L100,0 L100,100 L0,100 Z'/%3E%3C/svg%3E");
    background-size: cover;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.message-date {
    text-align: center;
    margin: 10px 0;
    font-size: 12px;
    color: #666;
    background: rgba(255, 255, 255, 0.9);
    padding: 5px 15px;
    border-radius: 15px;
    align-self: center;
}

/* Message Styles */
.message {
    max-width: 80%;
    padding: 8px 12px;
    border-radius: 18px;
    position: relative;
    animation: messageIn 0.3s ease-out;
}

.message.received {
    background: white;
    align-self: flex-start;
    border-bottom-left-radius: 5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.message.sent {
    background: var(--whatsapp-light-green);
    align-self: flex-end;
    border-bottom-right-radius: 5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.message-content {
    font-size: 14px;
    line-height: 1.4;
}

.message-time {
    font-size: 11px;
    color: #666;
    text-align: right;
    margin-top: 3px;
}

/* Product Image Message */
.product-image-message {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-image-placeholder {
    width: 100%;
    height: 150px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 50px;
}

.image-caption {
    padding: 10px;
    background: white;
    border-radius: 8px;
}

.image-caption h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.product-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

/* Product Features List */
.features-title {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.product-features-list {
    list-style: none;
    padding-left: 0;
}

.product-features-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    font-size: 13px;
    color: #555;
}

.product-features-list li i {
    color: var(--whatsapp-green);
    font-size: 12px;
}

/* Quick Reply Container */
.quick-reply-container {
    margin-top: 20px;
    background: white;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.quick-reply-title {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-color);
    font-size: 14px;
}

.quick-reply-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quick-reply-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    text-align: center;
}

.buy-now-btn {
    background: var(--whatsapp-green);
    color: white;
}

.buy-now-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.demo-btn {
    background: white;
    color: var(--whatsapp-green);
    border: 2px solid var(--whatsapp-green);
}

.demo-btn:hover {
    background: var(--whatsapp-green);
    color: white;
    transform: translateY(-2px);
}

/* Typing Indicator */
.typing-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 10px 15px;
    border-radius: 18px;
    align-self: flex-start;
    max-width: 150px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.typing-dots {
    display: flex;
    gap: 3px;
}

.typing-dots span {
    width: 6px;
    height: 6px;
    background: #999;
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out;
}

.typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

.typing-text {
    font-size: 12px;
    color: #666;
}

/* WhatsApp Input */
.whatsapp-input {
    padding: 15px;
    background: #f0f0f0;
    border-top: 1px solid #ddd;
}

.input-container {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    border-radius: 25px;
    padding: 5px 15px;
}

.input-container input {
    flex: 1;
    border: none;
    padding: 10px;
    font-size: 14px;
    outline: none;
    background: transparent;
}

.send-btn {
    background: var(--whatsapp-green);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.send-btn:hover {
    background: #128C7E;
    transform: scale(1.1);
}

/* Modal Animations */
@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes messageIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== E-COMMERCE SECTION ===== */
.ecommerce-solutions {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
}

.ecommerce-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.ecommerce-visual {
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.store-preview {
    width: 100%;
    max-width: 400px;
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.store-header {
    background: var(--light-color);
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
}

.store-name {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.store-nav {
    display: flex;
    gap: 20px;
}

.store-nav span {
    font-size: 14px;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.store-nav span:hover {
    color: var(--primary-color);
}

.store-products {
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.product-item {
    height: 80px;
    background: var(--light-color);
    border-radius: var(--radius-sm);
}

.ecommerce-content {
    padding: 40px;
    width: 100%;
}

.ecommerce-content h3 {
    font-size: 28px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.ecommerce-content > p {
    color: var(--text-light);
    margin-bottom: 25px;
}

.ecommerce-features {
    list-style: none;
    margin-bottom: 30px;
}

.ecommerce-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--text-color);
}

.ecommerce-features li i {
    color: var(--success-color);
}

.ecommerce-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.ecommerce-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    width: 100%;
}

.service-box {
    background: white;
    border-radius: var(--radius-md);
    padding: 25px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    width: 100%;
    box-sizing: border-box;
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-box .service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: rgba(66, 153, 225, 0.1);
    color: var(--primary-color);
}

.service-box h4 {
    font-size: 18px;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.service-box p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.5;
}

/* ===== DIGITAL MARKETING SECTION ===== */
.marketing-services {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.tab-nav {
    display: flex;
    background: var(--light-color);
    border-bottom: 1px solid var(--border-color);
    width: 100%;
}

.tab-nav-btn {
    flex: 1;
    padding: 20px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.tab-nav-btn:hover {
    color: var(--primary-color);
    background: rgba(66, 153, 225, 0.05);
}

.tab-nav-btn.active {
    color: var(--primary-color);
    background: white;
    border-bottom: 3px solid var(--primary-color);
}

.tab-panes {
    padding: 40px;
    width: 100%;
}

.marketing-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    width: 100%;
}

.marketing-text h3 {
    font-size: 28px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.marketing-text > p {
    color: var(--text-light);
    margin-bottom: 25px;
}

.marketing-text ul {
    list-style: none;
    margin-bottom: 30px;
}

.marketing-text ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--text-color);
}

.marketing-text ul li i {
    color: var(--success-color);
}

.marketing-visual {
    display: flex;
    justify-content: center;
    width: 100%;
}

.seo-chart {
    display: flex;
    align-items: flex-end;
    gap: 20px;
    height: 200px;
    padding: 20px;
    background: var(--light-color);
    border-radius: var(--radius-md);
    width: 100%;
}

.chart-bar {
    width: 60px;
    background: linear-gradient(to top, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: var(--radius-sm);
    position: relative;
    transition: height 1s ease-in-out;
}

.chart-bar span {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-color);
    white-space: nowrap;
}

.marketing-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    padding: 40px;
    background: var(--light-color);
    width: 100%;
}

.package-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.package-card.popular {
    border: 2px solid var(--primary-color);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.package-header {
    text-align: center;
    margin-bottom: 25px;
}

.package-header h4 {
    font-size: 22px;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.package-header .price {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
}

.package-header .price span {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 400;
}

.package-features {
    list-style: none;
    margin-bottom: 30px;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--text-color);
}

.package-features li i {
    width: 20px;
}

.package-features li i.fa-check {
    color: var(--success-color);
}

.package-features li i.fa-times {
    color: var(--danger-color);
}

.package-card .btn {
    width: 100%;
}

/* ===== PARTNER SECTION ===== */
.partner-program {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.partner-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    width: 100%;
}

.benefit-card {
    text-align: center;
    padding: 30px;
    background: var(--light-color);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    width: 100%;
    box-sizing: border-box;
}

.benefit-card:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: rgba(66, 153, 225, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 32px;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.benefit-card h4 {
    font-size: 20px;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.partner-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: var(--radius-lg);
    padding: 50px;
    text-align: center;
    color: white;
    width: 100%;
    box-sizing: border-box;
}

.cta-card h3 {
    font-size: 32px;
    margin-bottom: 15px;
    color: white;
}

.cta-card > p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.partner-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.partner-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.partner-stats .stat {
    text-align: center;
}

.partner-stats .number {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 5px;
    color: white;
}

.partner-stats .label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* ===== TESTIMONIALS ===== */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    width: 100%;
}

.testimonial-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    width: 100%;
    box-sizing: border-box;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.client-avatar {
    width: 60px;
    height: 60px;
    background: rgba(66, 153, 225, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 24px;
}

.client-info h4 {
    font-size: 18px;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.client-role {
    font-size: 14px;
    color: var(--text-light);
}

.rating {
    margin-left: auto;
    color: #fbbf24;
}

.testimonial-text {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
    padding-left: 20px;
    border-left: 3px solid var(--border-color);
}

.testimonial-footer {
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.service-used {
    font-size: 14px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ===== FINAL CTA ===== */
.final-cta-section {
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.final-cta-section::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 1000 100" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="white"/><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" opacity=".5" fill="white"/><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="white"/></svg>');
    background-size: 300% 100%;
    background-position: center;
    opacity: 0.1;
    animation: wave 20s linear infinite;
}

@keyframes wave {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: white;
    line-height: 1.2;
}

.cta-content > p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 30px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.cta-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-features i {
    color: var(--success-color);
}

/* ===== ENHANCED CONTACT SECTION ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
    width: 100%;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    width: 100%;
}

.contact-info-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.whatsapp-card .contact-icon {
    background: rgba(37, 211, 102, 0.1);
    color: var(--accent-color);
}

.phone-card .contact-icon {
    background: rgba(66, 153, 225, 0.1);
    color: var(--primary-color);
}

.email-card .contact-icon {
    background: rgba(245, 101, 101, 0.1);
    color: var(--danger-color);
}

.location-card .contact-icon {
    background: rgba(237, 137, 54, 0.1);
    color: var(--warning-color);
}

.contact-info-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-info-card h3 {
    font-size: 20px;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.contact-info-card > p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 14px;
}

.contact-details {
    margin-bottom: 25px;
    text-align: left;
    width: 100%;
}

.contact-details p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-color);
}

.contact-details i {
    width: 16px;
    color: var(--text-light);
}

.contact-info-card .btn {
    margin-top: auto;
    width: 100%;
}

.contact-form-wrapper {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    box-sizing: border-box;
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h3 {
    font-size: 24px;
    color: var(--dark-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.form-header p {
    color: var(--text-light);
    font-size: 14px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
    width: 100%;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 14px;
}

.form-group label i {
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
    background: white;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-actions {
    margin-top: 30px;
}

.form-note {
    font-size: 12px;
    color: var(--text-light);
    text-align: center;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.quick-contact-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    background: white;
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
    width: 100%;
    box-sizing: border-box;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--light-color);
    border-radius: var(--radius-md);
    transition: var(--transition);
    width: 100%;
    box-sizing: border-box;
}

.quick-link:hover {
    background: white;
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.quick-link i {
    font-size: 32px;
    color: var(--primary-color);
}

.quick-link h4 {
    font-size: 16px;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.quick-link a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
}

.quick-link a:hover {
    color: var(--secondary-color);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* ===== RESPONSIVE DESIGN - MOBILE FIXES ===== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 42px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .dashboard-showcase {
        height: 350px;
    }
}

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .dashboard-showcase {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .solution-content,
    .ecommerce-card,
    .marketing-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .partner-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* MOBILE RESPONSIVE FIXES */
@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .hero-section {
        padding: 80px 0 40px;
    }
    
    .hero-title {
        font-size: 32px;
        line-height: 1.3;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-description {
        font-size: 16px;
        padding: 0 10px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 10px;
    }
    
    .stat-item {
        padding: 15px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .hero-cta {
        flex-direction: column;
        padding: 0 10px;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .tab-buttons,
    .tab-nav {
        flex-direction: column;
    }
    
    .tab-btn,
    .tab-nav-btn {
        padding: 15px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        padding: 0 10px;
    }
    
    /* UPDATED: Products CTA Responsive Fix */
    .products-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 0 15px;
    }
    
    .products-cta .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    /* WhatsApp Modal Mobile */
    .modal-content {
        width: 98%;
        height: 90vh;
        max-height: 600px;
    }
    
    .whatsapp-header {
        padding: 12px 15px;
    }
    
    .whatsapp-body {
        padding: 15px;
    }
    
    .product-image-placeholder {
        height: 120px;
        font-size: 40px;
    }
    
    .quick-reply-buttons {
        flex-direction: column;
    }
    
    .floating-card {
        width: 90px;
        height: 90px;
    }
    
    .floating-card i {
        font-size: 22px;
    }
    
    .floating-card span {
        font-size: 11px;
    }
    
    /* Scroll bubble mobile adjustment */
    .scroll-bubble {
        top: 50%;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 26px;
        padding: 0 10px;
    }
    
    .section-title {
        font-size: 24px;
        padding: 0 10px;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 6px 15px;
    }
    
    .hero-description {
        font-size: 15px;
        padding: 0 10px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }
    
    .product-categories {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
        padding-left: 10px;
        padding-right: 10px;
        margin-left: -10px;
        margin-right: -10px;
    }
    
    .category {
        flex-shrink: 0;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }
    
    .cta-content h2 {
        font-size: 28px;
        padding: 0 15px;
    }
    
    .cta-actions,
    .partner-actions {
        flex-direction: column;
        width: 100%;
        padding: 0 15px;
    }
    
    .cta-actions .btn,
    .partner-actions .btn {
        width: 100%;
    }
    
    .cta-features {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 0 15px;
    }
    
    /* Scroll bubble small screen adjustment */
    .scroll-bubble {
        width: 45px;
        height: 45px;
        font-size: 18px;
        right: 10px;
    }
    
    /* WhatsApp Modal Small Screens */
    .modal-content {
        height: 95vh;
        max-height: none;
        border-radius: 0;
        width: 100%;
    }
    
    .whatsapp-modal {
        padding: 0;
    }
    
    .message {
        max-width: 90%;
    }
}

/* Mobile-specific fixes */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-section {
        padding: 60px 0 20px;
    }
    
    .hero-title {
        font-size: 22px;
        line-height: 1.4;
    }
    
    .hero-description {
        font-size: 14px;
        margin-bottom: 20px;
        line-height: 1.5;
    }
    
    .dashboard-showcase {
        height: 220px;
        padding: 0 10px;
    }
    
    .dashboard-card {
        padding: 15px;
        height: 180px;
    }
    
    .dashboard-stats .number {
        font-size: 20px;
    }
    
    .dashboard-stats .label {
        font-size: 12px;
    }
    
    .floating-card {
        width: 70px;
        height: 70px;
    }
    
    .floating-card i {
        font-size: 18px;
    }
    
    .floating-card span {
        font-size: 10px;
        text-align: center;
        line-height: 1.2;
    }
    
    .service-card,
    .product-card {
        padding: 20px;
        margin: 0 5px;
    }
    
    .tab-content {
        padding: 15px;
    }
    
    .ecommerce-services {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }
    
    .marketing-packages {
        grid-template-columns: 1fr;
        padding: 15px;
    }
    
    .partner-cta {
        padding: 25px 15px;
    }
    
    .contact-form-wrapper {
        padding: 20px;
    }
    
    /* Products CTA Mobile Optimization */
    .products-cta {
        padding: 0 10px;
    }
    
    .products-cta .btn {
        max-width: 100%;
        padding: 14px 20px;
        font-size: 15px;
    }
    
    /* Ensure no horizontal scroll */
    body, html {
        overflow-x: hidden;
        max-width: 100vw;
    }
    
    * {
        max-width: 100vw;
    }
}

/* Fix for iOS Safari 100vh issue */
@supports (-webkit-touch-callout: none) {
    .hero-section,
    .final-cta-section {
        min-height: -webkit-fill-available;
    }
}

/* Print styles */
@media print {
    .animated-bg,
    .scroll-bubble,
    .hero-cta,
    .btn,
    .whatsapp-modal,
    .modal-overlay {
        display: none !important;
    }
}