/* Shipping Page - Modern Kenya-Focused Design */

/* Hero Section */
.shipping-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    background: linear-gradient(135deg, #8B4513 0%, #D2691E 50%, #FFD700 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-badge i {
    font-size: 1.2rem;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.hero-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-around;
    z-index: 1;
}

.honey-drip {
    width: 30px;
    height: 80px;
    background: linear-gradient(to bottom, transparent 0%, #FFD700 60%, #FFA500 100%);
    border-radius: 0 0 50% 50%;
    animation: drip 3s ease-in-out infinite;
}

.honey-drip:nth-child(2) {
    animation-delay: 1s;
}

.honey-drip:nth-child(3) {
    animation-delay: 2s;
}

@keyframes drip {
    0%, 100% { transform: translateY(0); opacity: 0; }
    50% { transform: translateY(20px); opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Main Section */
.shipping-info-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #FFF9E6 0%, #F9F5E9 50%, #FFF 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #8B4513;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.title-icon {
    font-size: 3rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.section-intro {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Coverage Section - Compact Design */
.coverage-section {
    margin-bottom: 80px;
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.coverage-card {
    background: white;
    border-radius: 12px;
    padding: 20px 18px;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.coverage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
}

.coverage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.12);
    border-color: #FFD700;
}

.coverage-card.major-cities::before {
    background: linear-gradient(90deg, #4CAF50, #8BC34A);
}

.coverage-card.regional::before {
    background: linear-gradient(90deg, #2196F3, #03A9F4);
}

.card-icon {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 12px;
    color: #FFD700;
}

.coverage-card.major-cities .card-icon {
    color: #4CAF50;
}

.coverage-card.regional .card-icon {
    color: #2196F3;
}

.coverage-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #8B4513;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 600;
}

.city-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.city-list li {
    padding: 6px 10px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    background: #F9F5E9;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.city-list li:hover {
    background: #FFD700;
    color: #8B4513;
    transform: translateX(3px);
}

.city-list li i {
    color: #4CAF50;
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* How It Works Section */
.how-it-works {
    margin: 80px 0;
    padding: 60px 40px;
    background: white;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(139, 69, 19, 0.1);
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 50px;
}

.step-card {
    flex: 1;
    min-width: 150px;
    max-width: 180px;
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #8B4513;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.step-icon {
    font-size: 3rem;
    color: #8B4513;
    margin: 30px 0 15px;
}

.step-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #8B4513;
    margin-bottom: 10px;
    font-weight: 600;
}

.step-card p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
}

.step-arrow {
    font-size: 1.5rem;
    color: #FFD700;
    margin: 0 -10px;
}

/* Contact Banner */
.contact-banner {
    margin: 60px 0 40px;
    background: linear-gradient(135deg, #FFF9E6 0%, #FFE8B3 100%);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    border: 3px solid #FFD700;
}

.banner-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #8B4513;
    margin-bottom: 15px;
}

.banner-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: #8B4513;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.2);
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.3);
    background: #6B3410;
}

.contact-btn.whatsapp {
    background: #25D366;
}

.contact-btn.whatsapp:hover {
    background: #20BA5A;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .steps-container {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }

    .step-card {
        max-width: 100%;
    }

    .city-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .coverage-grid {
        grid-template-columns: 1fr;
    }

    .how-it-works {
        padding: 40px 20px;
    }

    .contact-options {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-btn {
        width: 100%;
        justify-content: center;
    }

    .city-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .shipping-hero {
        height: 50vh;
        min-height: 400px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-badge {
        font-size: 0.85rem;
        padding: 10px 20px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .title-icon {
        font-size: 2rem;
    }

    .coverage-card {
        padding: 20px 15px;
    }

    .banner-content h3 {
        font-size: 1.8rem;
    }

    .city-list {
        grid-template-columns: 1fr;
    }
}