/* =========================================
   WOW BEAN EXPERIENCE SECTION STYLES
   ========================================= */

.bean-experience-section {
    position: relative;
    padding: 120px 0;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

/* Dark overlay to make content pop */
.bean-experience-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.95) 0%, rgba(51, 33, 29, 0.85) 100%);
    z-index: 1;
}

/* Animated Coffee Steam */
.coffee-steam-container {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    opacity: 0.4;
}

.steam {
    position: absolute;
    bottom: -50px;
    background: #FFF;
    border-radius: 50%;
    filter: blur(15px);
    animation: rise 8s infinite ease-in;
    opacity: 0;
}

.steam:nth-child(1) { width: 50px; height: 50px; left: 30%; animation-duration: 7s; animation-delay: 0s; }
.steam:nth-child(2) { width: 80px; height: 80px; left: 50%; animation-duration: 9s; animation-delay: 2s; }
.steam:nth-child(3) { width: 60px; height: 60px; left: 70%; animation-duration: 8s; animation-delay: 4s; }

@keyframes rise {
    0% { bottom: -50px; transform: translateX(0) scale(1); opacity: 0; }
    20% { opacity: 0.5; }
    50% { transform: translateX(-20px) scale(1.5); }
    80% { opacity: 0.2; }
    100% { bottom: 100%; transform: translateX(20px) scale(2); opacity: 0; }
}

/* Content Container */
.bean-content-wrapper {
    position: relative;
    z-index: 10;
}

/* Interactive Bean Cards */
.bean-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(218, 159, 91, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.bean-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(218, 159, 91, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.bean-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(218, 159, 91, 0.2);
}

.bean-card:hover::before {
    opacity: 1;
}

/* Card Icons */
.bean-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: rgba(218, 159, 91, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
}

.bean-icon-wrapper::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px dashed var(--primary);
    border-radius: 50%;
    animation: spin 10s linear infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.bean-card:hover .bean-icon-wrapper {
    background: var(--primary);
    transform: scale(1.1);
}

.bean-card:hover .bean-icon-wrapper::after {
    opacity: 1;
}

.bean-card:hover .bean-icon-wrapper i {
    color: #111 !important;
}

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

/* Card Typography */
.bean-card h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.bean-card:hover h3 {
    color: var(--primary);
}

.bean-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Central Highlight Element */
.bean-highlight {
    text-align: center;
    margin-bottom: 60px;
}

.bean-highlight-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.bean-highlight-title span {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.bean-highlight-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(218, 159, 91, 0.3);
    z-index: -1;
    transform: skewX(-15deg);
}

.bean-highlight-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 991px) {
    .bean-highlight-title { font-size: 2.8rem; }
    .bean-card { margin-bottom: 30px; }
}

@media (max-width: 767px) {
    .bean-highlight-title { font-size: 2.2rem; }
    .bean-experience-section { padding: 80px 0; }
}