/* Color Variables */
:root {
    --primary-dark: #1a1f2e;
    --primary-orange: #FF6B35;
    --text-light: #6c757d;
    --border-light: #e9ecef;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Header & Navigation */
.navbar {
    background-color: #d5d8dc !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.navbar-brand {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: #1a1f2e !important;
}

.nav-link {
    color: #5a6b7a !important;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    text-decoration: none;
}

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

.nav-link.active {
    color: var(--primary-orange) !important;
    font-weight: 600;
}

/* Header Button */
.btn-header-call {
    background-color: var(--primary-orange);
    color: white !important;
    border: none;
    border-radius: 50px;
    padding: 0.6rem 1.4rem;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.btn-header-call:hover {
    background-color: #e55a1f;
    color: white !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.35);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #2d3647 100%);
    color: white;
    padding: 6rem 0;
}

.hero-section.hero-lg {
    padding: 8rem 0;
}

.hero-label {
    color: var(--primary-orange);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-section h1 .accent {
    color: var(--primary-orange);
}

.hero-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.hero-stats {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Button Styles */
.btn-primary-custom {
    background-color: var(--primary-orange);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary-custom:hover {
    background-color: #e55a1f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
    color: white;
    text-decoration: none;
}

.btn-secondary-custom {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 0.6rem 1.8rem;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary-custom:hover {
    background-color: white;
    color: var(--primary-orange);
    text-decoration: none;
}

/* Hero Image Card */
.hero-image-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.hero-image-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #ddd;
}

.hero-image-info {
    padding: 1rem;
    text-align: center;
}

.hero-info-label {
    color: var(--primary-orange);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.hero-info-title {
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.section-title h2 .accent {
    color: var(--primary-orange);
}

.section-label {
    color: var(--primary-orange);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.accent-line {
    width: 60px;
    height: 4px;
    background-color: var(--primary-orange);
    margin: 1rem auto;
}

.section-title p {
    color: var(--text-light);
    font-size: 1rem;
}

/* Featured Products */
.featured-product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    display: flex;
}

.featured-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.featured-product-image {
    width: 40%;
    background: linear-gradient(135deg, #f5f5f5 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #ddd;
}

.featured-product-content {
    width: 60%;
    padding: 1.5rem;
}

.badge-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fce4ec;
    color: #e91e63;
    margin-bottom: 1rem;
}

.featured-product-content h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.price-range {
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.explore-link {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.explore-link:hover {
    color: #e55a1f;
}

/* About Section */
.about-features {
    list-style: none;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #666;
}

.feature-item i {
    color: var(--primary-orange);
    font-weight: 700;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-box {
    background: white;
    border-radius: 10px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-left: 4px solid var(--primary-orange);
}

.stat-box-1 {
    border-left-color: var(--primary-orange);
}

.stat-box-2 {
    border-left-color: #9c27b0;
}

.stat-box-3 {
    border-left-color: #4caf50;
}

.stat-box .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.stat-box .stat-label {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 10px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: #fce4ec;
    color: #e91e63;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1rem;
}

.service-card h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.learn-more {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 1rem;
    display: inline-block;
    transition: all 0.3s;
}

.learn-more:hover {
    color: #e55a1f;
}

/* Product Categories */
.product-category-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.product-category-item.reverse {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.product-category-item.reverse > * {
    direction: ltr;
}

.category-text h4 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 1rem 0;
    color: var(--primary-dark);
}

.category-text p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.category-badge {
    background-color: #fce4ec;
    color: #e91e63;
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-features {
    list-style: none;
    margin: 1.5rem 0;
}

.category-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: #666;
}

.category-features i {
    color: var(--primary-orange);
    font-weight: 700;
}

.category-image {
    position: relative;
}

.placeholder-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e9ecef 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #ddd;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Why Shop With Us */
.why-card {
    background: white;
    border-radius: 10px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.why-icon {
    width: 60px;
    height: 60px;
    background-color: #fce4ec;
    color: #e91e63;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1rem;
}

.why-card h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.why-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Store Cards */
.store-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-left: 4px solid var(--primary-orange);
}

.store-card h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.store-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

.store-link {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.store-link:hover {
    color: #e55a1f;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff8555 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-banner h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cta-banner p {
    font-size: 1.05rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

/* Contact Section */
.contact-info-card {
    background-color: var(--primary-dark);
    border-radius: 15px;
    padding: 2.5rem;
    color: white;
    min-height: 100%;
}

.contact-form-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.store-info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

.store-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 107, 53, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-orange);
    flex-shrink: 0;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
}

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

.social-icon:hover {
    background-color: var(--primary-orange);
    color: white;
    transform: translateY(-2px);
}

/* Contact Form */
.contact-input {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.contact-input:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.1);
    outline: none;
}

.form-label {
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

/* Map Container */
.map-container {
    margin-top: 3rem;
}

/* Quick Contact Cards */
.quick-contact-card {
    background: white;
    border-radius: 10px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.quick-contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.quick-icon {
    width: 60px;
    height: 60px;
    background-color: #fce4ec;
    color: #e91e63;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1rem;
}

.quick-contact-card h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.quick-contact-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.quick-link {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.quick-link:hover {
    color: #e55a1f;
}

/* Mission Section */
.mission-section {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff8555 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.mission-section h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.mission-section p {
    font-size: 1.05rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

/* Values Section */
.value-card {
    background: white;
    border-radius: 10px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.value-icon {
    width: 60px;
    height: 60px;
    background-color: #fce4ec;
    color: #e91e63;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1rem;
}

.value-card h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--primary-dark);
}

.value-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Stats Section */
.stats-section {
    background-color: var(--primary-dark);
    color: white;
    padding: 4rem 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-orange);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* About Image */
.about-image-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Partnership Features */
.partnership-features {
    list-style: none;
    margin: 1.5rem 0;
}

.partnership-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #666;
}

.partnership-features i {
    color: var(--primary-orange);
    font-weight: 700;
}

/* Utility Classes */
.bg-light {
    background-color: #f8f9fa;
}

.py-5 {
    padding: 3rem 0;
}

.py-4 {
    padding: 2rem 0;
}

.accent {
    color: var(--primary-orange);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section {
        padding: 4rem 0;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-primary-custom,
    .btn-secondary-custom {
        width: 100%;
        justify-content: center;
    }
    
    .product-category-item,
    .product-category-item.reverse {
        grid-template-columns: 1fr;
    }
    
    .product-category-item.reverse {
        direction: ltr;
    }
    
    .about-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-product-card {
        flex-direction: column;
    }
    
    .featured-product-image {
        width: 100%;
        height: 200px;
    }
    
    .featured-product-content {
        width: 100%;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-info-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 1.5rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
    
    .section-title h2 {
        font-size: 1.5rem;
    }
    
    .cta-banner h3 {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Footer Styles */
footer {
    background-color: var(--primary-dark) !important;
}

.footer-box {
    background-color: #2a3444 !important;
    border: 1px solid rgba(255,255,255,0.05);
}

footer h5,
footer h6 {
    color: white !important;
}

footer p {
    color: rgba(255, 255, 255, 0.8) !important;
}

.footer-link {
    color: #b0b8c1 !important;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-link:hover {
    color: white !important;
}

.newsletter-form {
    display: flex;
    align-items: center;
}

.newsletter-input {
    border: 1px solid rgba(255,255,255,0.2) !important;
    background-color: transparent !important;
    color: white !important;
    padding: 12px 16px !important;
    border-radius: 50px 0 0 50px !important;
    border-right: none !important;
    font-size: 14px;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: rgba(255,255,255,0.5) !important;
}

.newsletter-input:focus {
    background-color: rgba(255,255,255,0.05) !important;
    border-color: rgba(255,255,255,0.3) !important;
    color: white !important;
    box-shadow: none !important;
}

.newsletter-btn {
    background-color: white !important;
    color: #1a1f2e !important;
    border: none !important;
    border-radius: 0 50px 50px 0 !important;
    padding: 12px 20px !important;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background-color: var(--primary-orange) !important;
    color: white !important;
}
