/* Custom CSS for Markish Bales */

:root {
    --primary-color: #2563eb;
    --secondary-color: #7c3aed;
    --success-color: #25D366;
    --dark-color: #1e293b;
    --light-color: #f8fafc;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-success: linear-gradient(135deg, #25D366 0%, #1EBE5F 100%);
    --gradient-dark: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--success-color);
    color: white;
    border-radius: 50px;
    padding: 15px 25px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    color: white;
}

.whatsapp-float i {
    font-size: 24px;
}

.whatsapp-text {
    font-weight: 600;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 10px;
    margin-right: 10px;
}

.logo-icon i {
    color: white;
    font-size: 20px;
}

.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 24px;
    color: var(--dark-color);
    display: flex;
    align-items: center;
}

.nav-link {
    font-weight: 600;
    color: var(--dark-color) !important;
    transition: color 0.3s ease;
    padding: 10px 15px !important;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.nav-link.active {
    color: var(--primary-color) !important;
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 15px;
    right: 15px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.btn-order {
    background: var(--gradient-success);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    color: white;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), 
                url('https://images.unsplash.com/photo-1490481651871-ab68de25d43d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.display-4 {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, #fff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
}

.hero-features {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-feature i {
    font-size: 24px;
    color: var(--success-color);
}

.hero-feature h6 {
    margin-bottom: 5px;
    color: white;
}

.hero-feature small {
    opacity: 0.8;
    color: #e2e8f0;
}

/* Stats Section */
.stats-section {
    background: var(--light-color);
    padding: 80px 0;
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
}

.stat-card {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 3.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    color: #666;
    font-weight: 500;
    font-size: 1.1rem;
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title h2 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.8rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

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

.section-title p {
    color: #64748b;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Bale Cards - Homepage */
.bale-card-home {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    background: white;
    position: relative;
}

.bale-card-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    z-index: 1;
}

.bale-card-home:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.bale-card-home .card-header {
    background: white;
    border-bottom: 1px solid #f1f5f9;
    padding: 30px 25px 15px;
}

.bale-card-home .card-header h4 {
    font-size: 1.8rem;
    color: var(--dark-color);
}

.bale-card-home .card-header small {
    color: #64748b;
    font-weight: 500;
}

.bale-card-home .card-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.bale-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 20px;
    position: relative;
}

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

.bale-card-home:hover .bale-image img {
    transform: scale(1.1);
}

.bale-price {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2.8rem;
    color: var(--primary-color);
    margin: 15px 0;
    line-height: 1;
}

.bale-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    justify-content: center;
}

.bale-category {
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    color: #475569;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid #e2e8f0;
}

.bale-features-summary {
    background: #f8fafc;
    padding: 20px;
    border-radius: 15px;
    text-align: left;
    margin-bottom: 25px;
    border: 1px solid #e2e8f0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.4;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-item i {
    flex-shrink: 0;
    font-size: 1rem;
}

.bale-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-success);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.bale-card-home.featured {
    border: 2px solid var(--success-color);
    transform: scale(1.05);
}

.bale-card-home.featured:hover {
    transform: scale(1.05) translateY(-15px);
}

/* Bale Cards - Bale Packs Page */
.bale-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    background: white;
}

.bale-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
}

.bale-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.bale-card .card-header {
    background: white;
    border-bottom: 1px solid #f1f5f9;
    padding: 25px 20px 10px;
}

.bale-card .card-header h5 {
    font-size: 1.5rem;
    color: var(--dark-color);
}

.bale-card .card-header small {
    font-size: 0.85rem;
    font-weight: 600;
}

.bale-card .card-body {
    padding: 20px;
}

.bale-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.bale-features li {
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #475569;
    display: flex;
    align-items: flex-start;
}

.bale-features li i {
    margin-top: 3px;
    flex-shrink: 0;
}

/* Product Cards */
.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
}

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

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    z-index: 2;
}

.product-badge.new {
    background: var(--primary-color);
}

.product-badge.hot {
    background: #ef4444;
}

.product-badge.sale {
    background: var(--success-color);
}

.product-info {
    padding: 25px;
}

.product-title {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 1.2rem;
    color: var(--dark-color);
}

.product-category {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.product-price {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* WhatsApp CTA */
.whatsapp-cta {
    background: var(--gradient-success);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.whatsapp-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1551650975-87deedd944c3?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
}

/* Page Header */
.page-header {
    background: var(--gradient-primary);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::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"><path d="M0,50 Q250,0 500,50 T1000,50 V100 H0 Z" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 100% 100px;
    background-position: bottom;
    background-repeat: no-repeat;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 30px;
}

/* Tabs */
.nav-tabs {
    border: none;
    margin-bottom: 30px;
}

.nav-tabs .nav-link {
    border: none;
    background: #f1f5f9;
    color: #64748b;
    padding: 18px 50px;
    border-radius: 50px;
    margin: 0 10px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-tabs .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-tabs .nav-link:hover {
    background: #e2e8f0;
    color: #475569;
    transform: translateY(-2px);
}

.nav-tabs .nav-link.active {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
    transform: translateY(-2px);
}

/* Shipping Cards */
.shipping-card {
    background: white;
    padding: 50px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.shipping-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
}

.shipping-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.shipping-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.shipping-card:hover .shipping-icon {
    transform: scale(1.1) rotate(5deg);
}

.shipping-icon i {
    color: white;
    font-size: 40px;
}

.shipping-card h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.shipping-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--gradient-dark);
    color: white;
    padding: 100px 0 40px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
}

.footer-logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    text-decoration: none;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    display: inline-block;
}

.text-white-70 {
    color: rgba(255, 255, 255, 0.7);
}

.bg-white-20 {
    background: rgba(255, 255, 255, 0.2);
}

.footer-title {
    color: white;
    margin-bottom: 25px;
    font-weight: 700;
    font-size: 1.3rem;
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
    padding-left: 15px;
}

.footer-links a::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--success-color);
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: white;
    padding-left: 20px;
}

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

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.footer-contact i {
    margin-right: 15px;
    color: var(--success-color);
    width: 20px;
    font-size: 1.1rem;
    margin-top: 3px;
}

.footer-contact a {
    color: var(--success-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #1EBE5F;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

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

.social-link:hover {
    background: var(--gradient-primary);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

/* Highlight Animation */
.bale-highlight {
    animation: highlightPulse 2s ease-in-out;
    box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.3), 0 20px 40px rgba(0,0,0,0.15);
    border: 2px solid var(--success-color);
    position: relative;
}

.bale-highlight::before {
    content: 'Selected';
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-success);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

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

/* Modal */
.modal-content {
    border-radius: 20px;
    border: none;
    overflow: hidden;
}

.modal-header {
    background: var(--gradient-primary);
    color: white;
    border-radius: 20px 20px 0 0;
    border: none;
    padding: 25px;
}

.btn-close-white {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.btn-close-white:hover {
    opacity: 1;
}

.modal-body {
    padding: 30px;
}

/* Quantity Selector */
.quantity-selector {
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 200px;
}

.quantity-btn {
    width: 45px;
    height: 45px;
    border: 2px solid #e2e8f0;
    background: white;
    border-radius: 10px;
    font-size: 1.2rem;
    color: #475569;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: scale(1.1);
}

.quantity-input {
    text-align: center;
    max-width: 80px;
    font-weight: 600;
    font-size: 1.2rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
}

.quantity-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Order Summary */
.order-summary {
    background: #f8fafc;
    padding: 25px;
    border-radius: 15px;
    margin-top: 30px;
    border: 1px solid #e2e8f0;
}

.order-summary h6 {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.order-summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: #64748b;
    font-weight: 500;
}

.order-total {
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 2px solid #e2e8f0;
    font-weight: 700;
    color: var(--dark-color);
    font-size: 1.3rem;
}

/* Buttons */
.btn {
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.btn:focus:not(:active)::after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: #475569;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #334155;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(71, 85, 105, 0.3);
}

.btn-success {
    background: var(--gradient-success);
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-success:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.btn-lg {
    font-size: 1.1rem;
    padding: 18px 40px;
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.btn-outline-light:hover {
    background: white;
    color: var(--dark-color);
    transform: translateY(-5px);
}

/* Comparison Table */
.table-responsive {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.table {
    margin-bottom: 0;
}

.table th {
    font-weight: 700;
    color: var(--dark-color);
    background: #f8fafc;
    border-bottom: 2px solid #e2e8f0;
    padding: 20px;
    font-size: 1.1rem;
}

.table td {
    vertical-align: middle;
    color: #475569;
    padding: 20px;
    border-color: #f1f5f9;
    font-weight: 500;
}

.table-hover tbody tr:hover {
    background-color: #f8fafc;
    transform: scale(1.01);
    transition: all 0.2s ease;
}

/* CTA Box */
.cta-box {
    background: var(--gradient-primary);
    padding: 60px;
    border-radius: 25px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-box::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"><path d="M0,0 Q250,50 500,0 T1000,0 V100 H0 Z" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 100% 100px;
    background-position: top;
    background-repeat: no-repeat;
}

.cta-box h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    position: relative;
}

.cta-box p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 30px;
    position: relative;
}

/* Form Styles */
.form-group {
    margin-bottom: 25px;
}

.form-label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px;
    display: block;
}

.form-control {
    padding: 12px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .display-4 {
        font-size: 3rem;
    }
    
    .section-title h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .hero {
        padding: 80px 0;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 20px;
    }
    
    .bale-card-home.featured {
        transform: scale(1);
    }
    
    .bale-card-home.featured:hover {
        transform: scale(1) translateY(-15px);
    }
    
    .nav-tabs .nav-link {
        padding: 15px 30px;
        margin: 5px;
    }
}

@media (max-width: 768px) {
    .whatsapp-float .whatsapp-text {
        display: none;
    }
    
    .whatsapp-float {
        padding: 15px;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .bale-price {
        font-size: 2.2rem;
    }
    
    .cta-box {
        padding: 40px 20px;
    }
    
    .cta-box h3 {
        font-size: 1.8rem;
    }
    
    .table-responsive {
        font-size: 0.9rem;
    }
    
    .table th,
    .table td {
        padding: 15px 10px;
    }
    
    .modal-dialog {
        margin: 20px;
    }
    
    .shipping-card {
        padding: 30px 20px;
    }
    
    .shipping-icon {
        width: 80px;
        height: 80px;
    }
    
    .shipping-icon i {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .logo-icon {
        width: 35px;
        height: 35px;
    }
    
    .logo-icon i {
        font-size: 18px;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .nav-tabs .nav-link {
        padding: 12px 20px;
        font-size: 0.9rem;
        margin: 3px;
        width: 100%;
        max-width: 300px;
    }
    
    .bale-categories {
        gap: 5px;
    }
    
    .bale-category {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}