/* Index Page Specific Styles */
/* This file is intentionally left mostly blank as the main styles for the index page are in styles.css */

/* Add any index-specific styles here that are not already in styles.css */

/* Logo styles */
.logo-img {
    max-height: 80px;
    width: auto;
    display: block;
}

/* Products Section Background */
.products {
    position: relative;
    overflow: hidden;
    z-index: 1;
    padding: var(--spacing-2xl) 0;
}

.products-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/background.png');
    background-size: 80% auto;
    background-position: center right;
    background-repeat: no-repeat;
    opacity: 0.06;
    transform: rotate(-2deg);
    z-index: -1;
    pointer-events: none;
}

.product-grid {
    position: relative;
    z-index: 2;
}

.product-card {
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* WhatsApp Card Button */
.whatsapp-card {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 16px;
    padding: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    z-index: 100;
    width: auto;
    max-width: 280px;
    transition: all 0.3s ease;
    border-left: 4px solid #25d366;
    overflow: hidden;
}

.whatsapp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1) 0%, rgba(255, 255, 255, 0) 60%);
    z-index: -1;
}

.whatsapp-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: #25d366;
    border-radius: 50%;
    margin-right: 12px;
    color: #ffffff;
    font-size: 24px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-card-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
}

.whatsapp-card-content {
    display: flex;
    flex-direction: column;
}

.whatsapp-card-title {
    font-weight: 600;
    font-size: 16px;
    color: #333333;
    margin-bottom: 2px;
}

.whatsapp-card-text {
    font-size: 13px;
    color: #666666;
}

.whatsapp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

/* Order Process Horizontal Layout */
.order-process-section {
    background-color: var(--light-bg);
    padding: var(--spacing-2xl) 0;
}

.horizontal-process-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 50px 0;
    justify-content: center;
}

.process-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.process-card-content {
    padding: 30px;
    flex: 1;
}

.process-step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 86, 179, 0.3);
}

.process-card .process-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.process-card .process-text {
    color: var(--text-color);
}

.process-card .process-text p {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.6;
}

.process-card-image {
    height: 220px;
    overflow: hidden;
}

.process-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.process-card:hover .process-card-image img {
    transform: scale(1.05);
}

.process-action {
    text-align: center;
    margin-top: 40px;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .horizontal-process-container {
        flex-direction: column;
        align-items: center;
    }
    
    .process-card {
        width: 100%;
        max-width: 500px;
    }
}

/* Responsive logo adjustments */
@media (max-width: 768px) {
    .logo-img {
        max-height: 60px;
    }
    
    .whatsapp-card {
        bottom: 20px;
        right: 20px;
        padding: 10px;
        max-width: 240px;
    }
    
    .whatsapp-card-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
        margin-right: 10px;
    }
    
    .whatsapp-card-title {
        font-size: 14px;
    }
    
    .whatsapp-card-text {
        font-size: 12px;
    }
    
    .process-card-image {
        height: 180px;
    }
} 