.find-us {
    padding: 80px 0;
    background: #fff;
    position: relative;
}

.container-find {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.find-us .title-find {
    margin: 0 0 60px 0;
}

.find-us .title-line-find {
    width: 100%;
    height: 4px;
    background: #ddd;
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
}

.find-us .title-line-find::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 15%;
    background: #FBB03B;
}

.find-us .title-text-find {
    font-size: 40px;
    font-weight: 600;
    text-transform: uppercase;
    color: #000;
    margin: 0;
}

.find-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.find-card {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.find-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FBB03B 0%, #f39c12 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.find-card:hover::before {
    transform: scaleX(1);
}

.find-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.find-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FBB03B 0%, #f39c12 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.find-card:hover .find-icon {
    transform: scale(1.1) rotate(5deg);
}

.find-icon svg {
    width: 40px;
    height: 40px;
    fill: white;
}

.find-title {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.find-content {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.8;
}

.find-address {
    font-size: 16px;
    color: #495057;
    line-height: 1.8;
}

.find-contacts a {
    display: block;
    color: #495057;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
    font-size: 16px;
}

.find-contacts a:hover {
    color: #FBB03B;
}

.find-contacts a:last-child {
    margin-bottom: 0;
}

.find-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.find-social a {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.find-social a:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(251, 176, 59, 0.3);
    background: #FBB03B;
}

.find-social a img {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
}

.find-social a:hover img {
    filter: brightness(0) invert(1);
}

/* Responsive */
@media (max-width: 992px) {
    .find-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .find-us {
        padding: 50px 0;
    }
    
    .find-us .title-text-find {
        font-size: 28px;
    }
    
    .find-card {
        padding: 30px 20px;
    }
    
    .find-title {
        font-size: 20px;
    }
    
    .find-content,
    .find-address,
    .find-contacts a {
        font-size: 15px;
    }
}