/* ============================================
   CONTACT SECTION STYLES
   ============================================ */

/* Contact Card */
.contact-card {
    border-radius: 20px;
    overflow: hidden;
}

/* Contact Header */
.contact-header {
    background: linear-gradient(135deg, var(--color-main) 0%, var(--color-main-active) 100%);
    color: white;
    padding: 2.5rem 2rem;
}

.contact-header h4 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

/* Price Badge */
.price-badge {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 1rem 1.5rem;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.price-label {
    font-size: 0.85rem;
    color: #718096;
    margin-bottom: 0.25rem;
}

.price-value {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--color-main);
    line-height: 1;
}

/* Facebook Cover */
.facebook-cover {
    position: relative;
    overflow: hidden;
}

.cover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(24, 119, 242, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.facebook-cover:hover .cover-overlay {
    opacity: 1;
}

.cover-overlay p {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Contact Methods */
.contact-methods {
    background: #f8f9fa;
}

.contact-method-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.contact-method-card.messenger {
    border-color: #e3f2fd;
}

.contact-method-card.messenger:hover {
    border-color: #1877f2;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.contact-method-card.line {
    border-color: #e8f5e9;
}

.contact-method-card.line:hover {
    border-color: #06c755;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

.contact-method-card.phone {
    border-color: #e3f2fd;
}

.contact-method-card.phone:hover {
    border-color: #2196f3;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.contact-method-card.shopee {
    border-color: #ffe5e5;
}

.contact-method-card.shopee:hover {
    border-color: #ee4d2d;
    background: linear-gradient(135deg, #ffe5e5 0%, #ffd6d6 100%);
}

.contact-method-card.tiktok {
    border-color: #f3f4f6;
}

.contact-method-card.tiktok:hover {
    border-color: #000000;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}

.method-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.messenger .method-icon {
    background: linear-gradient(135deg, #1877f2 0%, #0c63d4 100%);
}

.line .method-icon {
    background: linear-gradient(135deg, #06c755 0%, #00b900 100%);
}

.phone .method-icon {
    background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
}

.shopee .method-icon {
    background: linear-gradient(135deg, #ee4d2d 0%, #d73211 100%);
}

.tiktok .method-icon {
    background: linear-gradient(135deg, #000000 0%, #2d2d2d 100%);
}

.contact-method-card:hover .method-icon {
    transform: rotate(10deg) scale(1.1);
}

.method-content {
    flex: 1;
}

.method-content h6 {
    color: #2d3748;
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.method-content p {
    color: #718096;
    margin: 0;
}

.method-arrow {
    font-size: 1.5rem;
    color: #cbd5e0;
    transition: all 0.3s ease;
}

.contact-method-card:hover .method-arrow {
    transform: translateX(10px);
    color: var(--color-main);
}

/* Contact Info Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0;
    background: white;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    border-right: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    transform: translateY(-3px);
}

.info-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--color-main) 0%, var(--color-main-active) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(69, 99, 125, 0.3);
    transition: all 0.3s ease;
}

.info-item:hover .info-icon {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 8px 25px rgba(69, 99, 125, 0.4);
}

.info-content h6 {
    color: #2d3748;
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.info-content p {
    color: #718096;
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-header {
        padding: 2rem 1.5rem;
        text-align: center;
    }

    .contact-header h4 {
        font-size: 1.5rem;
    }

    .price-badge {
        margin-top: 1rem;
    }

    .price-value {
        font-size: 1.5rem;
    }

    .method-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .method-content h6 {
        font-size: 1rem;
    }

    .feature-card {
        padding: 1.5rem !important;
    }

    .feature-card-icon {
        width: 60px !important;
        height: 60px !important;
        font-size: 1.5rem !important;
    }
}

@media (max-width: 480px) {
    .contact-method-card {
        padding: 1rem;
    }
}

/* ============================================
   FEATURE CARDS (Why Choose Us)
   ============================================ */

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--color-main);
}

.feature-card-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--color-main) 0%, var(--color-main-active) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(69, 99, 125, 0.3);
    transition: all 0.4s ease;
}

.feature-card:hover .feature-card-icon {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 12px 35px rgba(69, 99, 125, 0.5);
}

/* Icon Color Variants */
.feature-card-icon.delivery {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.feature-card:hover .feature-card-icon.delivery {
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.5);
}

.feature-card-icon.quality {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.feature-card:hover .feature-card-icon.quality {
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.5);
}

.feature-card-icon.support {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.feature-card:hover .feature-card-icon.support {
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.5);
}

.feature-card-content h5 {
    color: #2d3748;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.feature-card-content p {
    color: #718096;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}